Home
last modified time | relevance | path

Searched refs:file (Results 176 – 200 of 3491) sorted by last modified time

12345678910>>...140

/plugin/cloud/
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
H A Dsyntax.php177 if (@file_exists($swfile)) $stopwords = file($swfile, FILE_IGNORE_NEW_LINES);
182 …if (@file_exists($swfile)) $stopwords = array_merge($stopwords, file($swfile, FILE_IGNORE_NEW_LINE…
246 $idx = file($conf['cachedir'].'/index.idx');
247 $word_idx = file($conf['cachedir'].'/word.idx');
/plugin/caption/
H A DREADME.md27 See the LICENSE 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/xlsx2dw/
H A DREADME.md29 3. Choose a table file. You can select example table from `/_test/test-tables/` folder.
H A Dplugin.info.txt6 desc Convert XLS/XLSX/ODS file to DokuWiki text
H A Dscript.js21 var file = e.target.files?.[0];
22 if(!file)
24 let fileName = file.name;
45 reader.readAsArrayBuffer(file);
76 async function getFormattedTableFromODS(file) { argument
78 await zip.loadAsync(file);
196 async function getFormattedTableFromXLS(file) { argument
204 let xlsxWorkbook = XLSX.read(file);
210 async function getFormattedTableFromXLSX(file) { argument
213 await workbook.xlsx.load(file);
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js51251 dir = file.dir,
51252 date = file.date;
51715 var dir = file.dir,
51716 date = file.date;
52307 file: function file(name, data, o) {
52367 if (!file) {
52376 if (file && !file.dir) {
54606 var i, file;
54609 file = this.files[i];
54613 file.handleUTF8();
[all …]
/plugin/xlsx2dw/packages/jszip/
H A Djszip.js493 var file = streamInfo["file"],
498 comment = file.comment,
508 dir = file.dir,
509 date = file.date;
991 var dir = file.dir, date = file.date;
1616 if (!file) {
1624 if (file && !file.dir) {
3657 var i, file;
3659 file = this.files[i];
3663 file.handleUTF8();
[all …]
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs1594 if(file[0] == 0x50 && file[1] == 0x4b) return parse_zip(file, options);
1595 if((file[0] | 0x20) == 0x6d && (file[1]|0x20) == 0x69) return parse_mad(file, options);
1596 if(file.length < 512) throw new Error("CFB file size " + file.length + " < 512");
2132 if(i === 0) file.start = file.size ? file.start - 1 : ENDOFCHAIN;
2160 file.content.copy(o, o.l, 0, file.size);
2172 if(file.size > 0 && file.size < 0x1000) {
2174 file.content.copy(o, o.l, 0, file.size);
3163 if(!file) {
5520 case 'file-entry': // 4.3 <manifest:file-entry>
25839 if(o.type === "file") return write_dl(o.file, out);
[all …]
/plugin/xlsx2dw/_test/
H A DGeneralTest.php21 $file = __DIR__ . '/../plugin.info.txt';
22 $this->assertFileExists($file);
24 $info = confToHash($file);
/plugin/gallery/
H A DREADME25 See the COPYING file in your DokuWiki folder for details
/plugin/api/_test/
H A Dpages.test.php27 $file = __DIR__ . '/../plugin.info.txt';
28 self::$PLUGIN_INFO = confToHash($file);
H A Dutils.php18 $file = __DIR__ . '/../plugin.info.txt';
19 self::$PLUGIN_INFO = confToHash($file);
H A Dpage.test.php27 $file = __DIR__ . '/../plugin.info.txt';
28 self::$PLUGIN_INFO = confToHash($file);
/plugin/api/
H A DREADME.md50 Used in the `wl` function of the `common.php` file to create a link.
/plugin/dev/skel/_test/
H A DGeneralTest.php20 $file = __DIR__ . '/../@@PLUGIN_TYPE@@.info.txt';
21 $this->assertFileExists($file);
23 $info = confToHash($file);
/plugin/dev/
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 DLangProcessor.php29 * @param string $file
32 public function processLangFile($file) argument
35 include $file;
46 $this->removeLangKey($file, $subkey, $key);
49 $this->removeLangKey($file, $key);
57 * @param string $file
60 public function processSettingsFile($file) argument
63 include $file;
67 $this->removeLangKey($file, $key);
72 * Remove the given key from the given language file
79 removeLangKey($file, $key, $sub = '') global() argument
158 metaExtract($file) global() argument
183 jsExtract($file) global() argument
205 phpExtract($file) global() argument
218 extract($file, $regex) global() argument
[all...]
H A DREADME48 See the LICENSING file for details
H A DSVGIcon.php71 * Clean an existing SVG file
73 * @param string $file
77 public function cleanSVGFile($file) argument
79 $svgdata = io_readFile($file, false);
81 throw new \Exception('Failed to read ' . $file);
85 $ok = io_saveFile($file, $svgdata);
86 if ($ok) $this->logger->success('saved ' . $file);
H A DSkeletor.php11 * This class does not write any files, but only provides the data for the actual file creation.
78 $data = file($dir . '/' . $type . '.info.txt', FILE_IGNORE_NEW_LINES);
178 * @param bool $translate if true the settings language file will be be added, too
194 * existing english language file.
196 * @param bool $conf if true the settings language file will be be added, too
265 * Load a skeleton file, do the replacements and add it to the list of files
277 $file = __DIR__ . '/skel/' . $skel;
278 if (!file_exists($file)) {
279 throw new RuntimeException('Skeleton file not found: ' . $skel);
281 $content = file_get_contents($file);
[all...]
H A Dcli.php64 $options->registerCommand('downloadSvg', 'Download an SVG file from a known icon repository.');
69 $options->registerOption('keep-ns', 'Keep the SVG namespace. Use when the file is not inlined into HTML.', 'k',
72 $options->registerCommand('cleanSvg', 'Clean a existing SVG files to reduce their file size.');
74 $options->registerOption('keep-ns', 'Keep the SVG namespace. Use when the file is not inlined into HTML.', 'k',
224 * Delete the given file if it exists
226 * @param string $file
228 protected function deleteFile($file)
230 if (!file_exists($file)) return;
231 if (@unlink($file)) {
232 $this->success('Delete ' . $file);
214 deleteFile($file) global() argument
[all...]
/plugin/dev/skel/
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

12345678910>>...140