Home
last modified time | relevance | path

Searched refs:file (Results 26 – 50 of 162) sorted by last modified time

1234567

/dokuwiki/lib/styles/
H A Dfeed.css33 content: "This data file is meant to be read in a XML feed reader. See document source."
/dokuwiki/lib/tpl/dokuwiki/css/
H A D_edit.css2 * This file provides styles for the edit view (?do=edit), preview
H A D_forms.css1 /* TODO: this file is not up to the best standards and will be fixed after an overhaul of the form code */
4 * This file provides styles for forms in general and specifically
H A D_toc.css2 * This file provides styles for the TOC (table of contents), the
H A Dbasic.less2 * This file provides the most basic styles.
5 * want to integrate this file into the other project as well, or use
H A Dprint.css2 * This file provides the styles for printing.
77 dl.file dt {
/dokuwiki/inc/
H A DMailer.class.php76 * Attach a file
78 * @param string $path Path to the file to attach
79 * @param string $mime Mimetype of the attached file
81 * @param string $embed Unique key to reference this file from the HTML part
98 * Attach a file
100 * @param string $data The file contents to attach
101 * @param string $mime Mimetype of the attached file
103 * @param string $embed Unique key to reference this file from the HTML part
131 // get file and mime type
134 $file
[all...]
H A DStyleUtils.php68 $stylesheets = []; // mode, file => base
127 * Checks if configured style files exist and, if necessary, adjusts file extensions in config
130 * @param string $file
136 protected function getValidatedStyles($stylesheets, $file, $mode, $incbase, $webbase)
139 if (!file_exists($incbase . $file)) {
140 [$extension, $basename] = array_map('strrev', sexplode('.', strrev($file), 2, ''));
145 msg("Stylesheet $file not found, using $basename.$newExtension instead. " .
149 msg("Stylesheet $file not found, please contact the developer of \"$this->tpl\" template.", 2);
152 $stylesheets[$mode][fullpath($incbase . $file)] = $webbase;
137 getValidatedStyles($stylesheets, $file, $mode, $incbase, $webbase) global() argument
/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/vendor/simplepie/simplepie/idn/
H A Didna_convert.class.php57 * Holds all relevant mapping tables, loaded from a seperate file on construct
100 $this->NP = unserialize(join('', file(dirname(__FILE__).'/npdata.ser')));
/dokuwiki/lib/scripts/
H A Dfileuploaderextended.js54 var fileElement = this._find(item, 'file');
90 // template for one item in file list
92 '<span class="qq-upload-file hidden"></span>' +
109 file: 'qq-upload-file',
166 var fileElement = this._find(item, 'file');
205 var file = this._inputs[id];
210 if (file != null) {
212 return file.value.replace(/.*(\/|\\)/, "");
233 throw new Error('file wit
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/Content/Type/
H A DSniffer.php69 public $file; variable in SimplePie\\Content\\Type\\Sniffer
72 * Create an instance of the class with the input file
74 * @param Sniffer $file Input file
76 public function __construct($file) argument
78 $this->file = $file;
82 * Get the Content-Type of the specified file
88 if (isset($this->file->headers['content-type'])) {
89 if (!isset($this->file
[all...]
/dokuwiki/inc/lang/id/
H A Dstopwords.txt2 # When you edit this file be sure to use UNIX line endings (single newline)
/dokuwiki/vendor/kissifrot/php-ixr/
H A DREADME.md22 A [Composer](http://getcomposer.org/) file has been added to this repository.
37 To your composer.json file
/dokuwiki/vendor/simplepie/simplepie/src/
H A DMisc.php147 public static function error($message, $level, $file, $line) argument
176 @error_log("$note: $message in $file on line $line", 0);
2064 document.writeln('<embed src="'+player+'" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" quality="high" width="'+width+'" height="'+height+'" wmode="transparent" flashvars="file='+link+'&autostart=false&repeat='+loop+'&showdigits=true&showfsbutton=false"></embed>');
2078 * of the newest file.
2093 foreach (glob($root . '/SimplePie/*.php') as $file) {
2094 if (($mtime = filemtime($file)) > $time) {
/dokuwiki/lib/plugins/popularity/lang/it/
H A Dintro.txt7 I dati raccolti contengono informazioni come la versione di DokuWiki, il numero e le dimensioni delle pagine e dei file, i plugin installati e informazioni sulla versione di PHP presente nel sistema.
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A DREADME.md
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DFileInfo.php8 * stores meta data about a file in an Archive
32 * @param string $path The path of the file, can also be set later through setPath()
59 * Factory to build FileInfo from existing file or directory
61 * @param string $path path to a file on the local file system
75 $file = new FileInfo();
77 $file->setPath($path);
78 $file->setIsdir(is_dir($path));
79 $file->setMode(fileperms($path));
80 $file
[all...]
H A DTar.php19 protected $file = ''; variable in splitbrain\\PHPArchive\\Tar
47 * Open an existing TAR file for reading
49 * @param string $file
53 public function open($file) argument
55 $this->file = $file;
57 // update compression to mach file
59 $this->setCompression($this->complevel, $this->filetype($file));
62 // open file handles
64 $this->fh = @gzopen($this->file, 'r
233 create($file = '') global() argument
270 addFile($file, $fileinfo = '') global() argument
422 save($file) global() argument
692 filetype($file) global() argument
[all...]
H A DZip.php20 protected $file = ''; variable in splitbrain\\PHPArchive\\Zip
33 * You can call this function before adding each file to set differen compression levels
34 * for each file.
49 * Open an existing ZIP file for reading
51 * @param string $file
54 public function open($file) argument
56 $this->file = $file;
57 $this->fh = @fopen($this->file, 'rb');
59 throw new ArchiveIOException('Could not open file fo
271 create($file = '') global() argument
305 addFile($file, $fileinfo = '') global() argument
528 save($file) global() argument
[all...]
/dokuwiki/conf/
H A Dacl.auth.php.dist7 # Editing this file by hand shouldn't be necessary. Use the ACL
H A Dacronyms.conf14 EOF End of file
/dokuwiki/inc/Search/
H A DIndexer.php188 // Special handling for titles so the index file is simpler
1003 return file($fn, FILE_IGNORE_NEW_LINES);
1129 * Read the index directory or a cache file and returns
/dokuwiki/inc/Subscriptions/
H A DMediaSubscriptionSender.php14 * @param string $id Media file for which the notification is
22 $file = mediaFN($id);
28 'SIZE' => filesize_h(filesize($file)),
37 $headers = ['Message-Id' => $this->getMessageID($id, @filemtime($file))];
/dokuwiki/data/
H A D_dummy1 You can safely delete this file

1234567