Home
last modified time | relevance | path

Searched refs:file (Results 51 – 75 of 162) sorted by relevance

1234567

/dokuwiki/lib/exe/
H A Dcss.php157 foreach ($cssData['files'] as $file => $location) {
158 $display = str_replace(fullpath(DOKU_INC), '', fullpath($file));
160 echo css_loadfile($file, $location);
226 // try to use line number to find affected file
263 * the ones defined in a templates style.ini file
325 // print the default classes for interwiki links and file downloads
358 $file = 'lib/images/interwiki/' . $iw . '.' . $ext;
360 if (file_exists(DOKU_INC . $file)) {
362 echo ' background-image: url(' . DOKU_BASE . $file . ')';
371 * Prints classes for file downloa
394 css_loadfile($file, $location = '') global() argument
410 __construct($file) global() argument
[all...]
/dokuwiki/inc/Extension/
H A DPluginTrait.php43 $file = DOKU_PLUGIN . '/' . $ext . '/plugin.info.txt';
44 if (file_exists($file)) {
45 $raw = confToHash($file);
50 if (empty($raw[$line])) Logger::error(sprintf($msg, $ext, $line, $file));
56 Logger::error(sprintf('Extension %s does not provide a plugin.info.txt in %s', $ext, $file));
135 $file = DOKU_CONF . 'plugin_lang/' . $plugin . '/' . $conf['lang'] . '/' . $id . '.' . $ext;
136 if (!file_exists($file)) {
137 $file = DOKU_PLUGIN . $plugin . '/lang/' . $conf['lang'] . '/' . $id . '.' . $ext;
138 if (!file_exists($file)) {
140 $file
[all...]
H A DPluginController.php235 foreach ($files as $file) {
236 if (file_exists($file)) {
237 include_once($file);
260 $file = $this->lastLocalConfigFile;
263 " * NOTE: Plugins will not be added to this file unless there " .
269 // backup current file (remove any existing backup)
270 if (file_exists($file)) {
271 $backup = $file . '.bak';
273 if (!@copy($file, $backup)) return false;
277 return io_saveFile($file,
[all...]
/dokuwiki/lib/scripts/
H A Dhelpers.js54 * Report an error from a JS file to the console
57 * @param file The file in which the error occurred
59 function logError(e, file) { argument
61 console.error('The error "%s: %s" occurred in file "%s". ' +
64 e.name, e.message, file);
H A Dfileuploader.js2 * http://github.com/valums/file-uploader
4 * Multiple file upload component with progress-bar, drag-and-drop.
251 * Creates upload button, validates upload, but doesn't create file list or dd.
274 typeError: "{file} has invalid extension. Only {extensions} are allowed.",
275 sizeError: "{file} is too large, maximum file size is {sizeLimit}.",
276 minSizeError: "{file} is too small, minimum file size is {minSizeLimit}.",
277 emptyError: "{file} is empty, please select files again without it.",
402 _validateFile: function(file){
881 add(file) global() argument
1148 AnonymousFunctionc6e2ab792c00(file) global() argument
[all...]
/dokuwiki/lib/images/fileicons/
H A DREADME2 https://github.com/splitbrain/file-icon-generator/blob/master/example-dokuwiki.php
/dokuwiki/inc/ChangeLog/
H A DChangeLogTrait.php13 * Adds an entry to the changelog file
73 * @return string path to file
92 * Set chunk size for file reading
93 * Chunk size zero let read whole file at once
95 * @param int $chunk_size maximum block size read from file
106 * If file larger than $chunk_size, only chunk is read that could contain $rev.
119 $file = $this->getChangelogFilename();
121 if (!file_exists($file)) {
130 if (filesize($file) < $this->chunk_size || $this->chunk_size == 0) {
131 // read whole file
[all...]
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A DREADME.md
/dokuwiki/lib/tpl/dokuwiki/css/
H A D_media_fullscreen.css2 * This file provides the styles for the fullscreen media manager
42 #mediamanager__page .file {
75 #mediamanager__page .file .panelHeader,
76 #mediamanager__page .file .panelContent {
79 [dir=rtl] #mediamanager__page .file .panelHeader,
80 [dir=rtl] #mediamanager__page .file .panelContent {
178 /*____________ file list panel ____________*/
180 /* file list header */
230 /* file list content */
252 /* file lis
[all...]
H A D_fileuploader.css2 * This file provides the styles for the file uploader
16 /* select file button */
77 .qq-upload-file {
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DReadMe.txt8 * This file is encoded in UTF-8 *
47 idna_convert.create.npdata.php - Useful for (re)creating the NPData file
50 ReadMe.txt - This file
51 LICENCE - The LGPL licence file
54 MAKE SURE to copy the npdata.ser file into the same folder as the class file
91 3. The input is read from a UCS-4 coded file and encoded line by line. By
99 // Iterate through the input file line by line
100 foreach (file('ucs4-domains.txt') as $line) {
109 Should you need to recreate the npdata.ser file, whic
[all...]
/dokuwiki/inc/Remote/
H A DApiCore.php817 * Get a media file's content
819 * Returns the content of the given media file. When no revision is given, the current revision is returned.
822 * @param string $media file id
824 * @return string Base64 encoded media file contents
834 throw new AccessDeniedException('You are not allowed to read this media file', 211);
837 $file = mediaFN($media, $rev);
838 if (!@ file_exists($file)) {
839 throw new RemoteException('The requested media file (revision) does not exist', 221);
842 $data = io_readFile($file, false);
847 * Return info about a media file
681 putAttachment($id, $file, $params = array()) global() argument
[all...]
/dokuwiki/lib/plugins/config/core/
H A DWriter.php9 * Writes the settings to the correct local file
16 /** @var string the file where the config will be saved to */
39 // backup current file (remove any existing backup)
69 * Update last modified time stamp of the config file
83 * Invalidate the opcache of the given file (if possible) argument
86 * @param string $file
88 protected function opcacheUpdate($file)
94 opcache_invalidate($file);
100 * or the directory its in is not writable or the file exists and is not writable
113 * Returns the PHP intro header for the config file
[all...]
/dokuwiki/lib/plugins/usermanager/lang/en/
H A Dimport.txt3 Requires a CSV file of users with at least four columns.
6 For an example of a suitable file, try the "Export Users" function above.
/dokuwiki/inc/lang/id/
H A Duploadmail.txt1 Sebuah file telah diupload di DokuWiki Anda. Berikut detailnya:
/dokuwiki/lib/plugins/styling/lang/en/
H A Dintro.txt2 All changes are stored in a local configuration file and are upgrade safe
/dokuwiki/inc/lang/it/
H A Duploadmail.txt1 Un file è stato caricato sul tuo DokuWiki. Seguono i dettagli:
/dokuwiki/vendor/
H A DREADME3 All file within here are manged through composer and should not be
/dokuwiki/inc/lang/ia/
H A Duploadmail.txt1 Un file ha essite incargate in tu DokuWiki. Ecce le detalios:
/dokuwiki/inc/
H A Dtemplate.php24 * Access a template file
26 * Returns the path to the given file inside the current template, uses
29 * @param string $file
34 function template($file)
38 if (@is_readable(DOKU_INC . 'lib/tpl/' . $conf['template'] . '/' . $file))
39 return DOKU_INC . 'lib/tpl/' . $conf['template'] . '/' . $file;
41 return DOKU_INC . 'lib/tpl/dokuwiki/' . $file;
85 * Everything that doesn't use the main template file isn't
1114 * Returns metadata as configured in mediameta config file, ready for creating html
1292 $file
23 template($file) global() argument
1699 tpl_includeFile($file) global() argument
[all...]
/dokuwiki/lib/plugins/usermanager/lang/it/
H A Dimport.txt3 Richiesto un file CSV di utenti con almeno quattro colonne.
6 Per un esempio di file tipo, prova la funzione "Esporta Utenti" che trovi qui sopra.
/dokuwiki/inc/lang/en/
H A Duploadmail.txt1 A file was uploaded to your DokuWiki. Here are the details:
/dokuwiki/lib/plugins/styling/lang/it/
H A Dintro.txt2 Tutte le modifiche sono salvate in un file di configurazione locale e sono aggiornate in modo sicuro
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSimplePie.php385 * No file source
390 * Remote file source
395 * Local file source
400 * fsockopen() file source
405 * cURL file source
410 * file_get_contents() file source
466 public $file; variable in SimplePie\\SimplePie
604 * @var string Web-accessible path to the handler_image.php file.
798 * @param \SimplePie\File &$file
801 public function set_file(&$file) argument
3181 store_links(& $file, $hub, $self) global() argument
[all...]
/dokuwiki/lib/plugins/popularity/
H A Dhelper.php20 * Name of the file which determine if the the autosubmit is enabled,
31 * Name of the file which determine when the popularity data was manually
33 * (If this file doesn't exist, the data has never been sent)
108 * Initialize an empty list to be used in file traversing
226 $list = (array) @file($conf['metadir'] . '/_dokuwiki.changes');
284 * @param string $file current file or directory relative to $base
285 * @param string $type Type either 'd' for directory or 'f' for file
290 public function searchCountCallback(&$data, $base, $file, $type, $lvl, $opts)
300 if ($opts['all'] || str_ends_with($file, '
289 searchCountCallback(& $data, $base, $file, $type, $lvl, $opts) global() argument
[all...]

1234567