Home
last modified time | relevance | path

Searched refs:file (Results 201 – 225 of 3491) sorted by last modified time

12345678910>>...140

/plugin/structtasks/
H A DLICENSE289 to attach them to the start of each source file to most effectively
290 convey the exclusion of warranty; and each file should have at least
H A DREADME27 See the LICENSING file for details
/plugin/structtasks/_test/
H A DGeneralTest.php21 $file = __DIR__ . '/../plugin.info.txt';
22 $this->assertFileExists($file);
24 $info = confToHash($file);
H A DStructtasksTest.php25 $file = __DIR__ . "/json/$json.struct.json";
26 if (!file_exists($file)) {
27 throw new \RuntimeException("$file does not exist");
30 $json = file_get_contents($file);
34 throw new \RuntimeException("build of $schema from $file failed");
/plugin/orphanswanted/
H A DCOPYING289 to attach them to the start of each source file to most effectively
290 convey the exclusion of warranty; and each file should have at least
/plugin/button/
H A DLICENSE289 to attach them to the start of each source file to most effectively
290 convey the exclusion of warranty; and each file should have at least
/plugin/bibtex4dw/
H A DCHANGELOG.md37 * Display of PDF files: If a PDF file with a name identical to the BibTeX key of a reference esists in a configurable namespace, a link to this file will be added to the end of the reference, permitted the user has read access to this namespace
H A DLICENSE289 to attach them to the start of each source file to most effectively
290 convey the exclusion of warranty; and each file should have at least
H A DREADME.md80 See the COPYING file in your DokuWiki folder for details
/plugin/bibtex4dw/lib/
H A Dbibtexrender.php34 'file' => array(),
93 $this->_conf['file'] = explode(';',$this->plugin->getConf('file'));
110 if (array_key_exists('file', $this->_conf)) {
159 // For file, allow multiple entries
160 if ('file' == $optkey) {
197 * Internal function parsing the contents of the BibTeX file
204 foreach($this->_conf['file'] as $file) {
205 $bibtex .= $this->_loadBibtexFile($file, 'pag
[all...]
/plugin/copycode/
H A DREADME.md10 - Refactoring of the script.js file to make it easier to maintain
13 - File cleaning (useless whitespaces and writes to the console, unix file format conversion)
36 - Added german language file
43 - Added dutch language file
52 - Fix \<file\> tag with no filename did not work when trying to copy the code block (https://github.com/nicolasprigent/Dokuwiki-Copycode-plugin/issues/4)
H A DLICENSE289 to attach them to the start of each source file to most effectively
290 convey the exclusion of warranty; and each file should have at least
H A DREADME27 See the LICENSING file for details
/plugin/tag/
H A DCOPYING294 to attach them to the start of each source file to most effectively
295 convey the exclusion of warranty; and each file should have at least
/plugin/imapmarkers/
H A DREADME.md166 Extract the zip file and rename the extracted folder to ```imapmarkers```.
/plugin/imapmarkers/_test/
H A DGeneralTest.php21 $file = __DIR__ . '/../plugin.info.txt';
22 $this->assertFileExists($file);
24 $info = confToHash($file);
/plugin/recommend/helper/
H A Dlog.php25 return @file($this->path);
/plugin/translation/_test/
H A DGeneralTest.php21 $file = __DIR__ . '/../plugin.info.txt';
22 $this->assertFileExists($file);
24 $info = confToHash($file);
/plugin/translation/
H A DREADME25 See the COPYING file in your DokuWiki folder for details
/plugin/todo/syntax/
H A Dlist.php207 * This function is called for every found file or
215 * one deeper nested) also make sure to check the file type (for example
220 * @param string $file - current file or directory relative to $base
221 * @param string $type - Type either 'd' for directory or 'f' for file
226 public function search_todos(&$data, $base, $file, $type, $lvl, $opts) { argument
227 $item['id'] = pathID($file); //get current file ID
233 if(substr($file, -4) != '.txt') return true;
/plugin/bureaucracy/
H A DREADME25 See the COPYING file in your DokuWiki folder for details
H A DLICENSE289 to attach them to the start of each source file to most effectively
290 convey the exclusion of warranty; and each file should have at least
/plugin/bureaucracy/helper/
H A Dactionmail.php128 $file = $field->getParam('file');
129 if(!$file['size']) {
131 } else if($file['size'] > $this->getConf('maxEmailAttachmentSize')) {
132 $message = $file['name'] . ' ' . $this->getLang('attachmentMailToLarge');
133 …msg(sprintf($this->getLang('attachmentMailToLarge_userinfo'), hsc($file['name']), filesize_h($this…
135 $message = $file['name'];
136 $mail->attachFile($file['tmp_name'], $file['type'], $file['name']);
H A Dactiontemplate.php395 $file = $field->getParam('file');
399 if(!$file['size']) {
404 $id = $ns.':'.$file['name'];
414 array('name' => $file['tmp_name']),
H A Dfieldfile.php64 $file = $this->getParam('file');
65 if($file['error'] == 1 || $file['error'] == 2) {
67 } else if($file['error'] == 4) {
71 } else if( $file['error'] || !is_uploaded_file($file['tmp_name'])) {
72 …throw new Exception(hsc($this->opt['label']) .' '. $lang['uploadfail'] . ' (' .$file['error'] . ')…

12345678910>>...140