Home
last modified time | relevance | path

Searched refs:file (Results 1 – 25 of 162) sorted by path

1234567

/dokuwiki/
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 DREADME9 See COPYING and file headers for license info
/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
H A Dlocal.php.dist5 * to this file and change them.
7 * When using the installer, a correct local.php file be generated for
H A Dmysql.conf.php.example19 * or at least include this file in local.protected.php.
/dokuwiki/data/
H A D_dummy1 You can safely delete this file
H A Ddeleted.files676 lib/images/icon-file.png
/dokuwiki/data/attic/
H A D_dummy1 You can safely delete this file
/dokuwiki/data/cache/
H A D_dummy1 You can safely delete this file
/dokuwiki/data/index/
H A D_dummy1 You can safely delete this file
/dokuwiki/data/locks/
H A D_dummy1 You can safely delete this file
/dokuwiki/data/log/
H A D_dummy1 You can safely delete this file
/dokuwiki/data/media_attic/
H A D_dummy1 You can safely delete this file
/dokuwiki/data/media_meta/
H A D_dummy1 You can safely delete this file
/dokuwiki/data/meta/
H A D_dummy1 You can safely delete this file
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt67 * DokuWiki does not use [[wp>CamelCase]] to automatically create links by default, but this behavior can be enabled in the [[doku>config]] file. Hint: If DokuWiki is a link, then it's enabled.
89 * Customization of the english language file
186 Unfortunately not all browsers understand all video and audio formats. To mitigate the problem, you can upload your file in different formats for maximum browser compatibility.
194 Additionally DokuWiki supports a "poster" image which will be shown before the video has started. That image needs to have the same filename as the video and be either a jpg or png file. In the example above a ''video.jpg'' file would work.
268 The same can be done to produce any kind of HTML, it just needs to be added to the [[doku>entities|pattern file]].
270 There are three exceptions which do not come from that pattern file: multiplication entity (640x480), 'single' and "double quotes". They can be turned off through a [[doku>config:typography|config option]].
380 You can include code blocks into your documents by either indenting them by at least two spaces (like used for the previous examples) or by using the tags ''%%<code>%%'' or ''%%<file>%%''.
388 <file>
389 This is pretty much the same, but you could use it to show that you quoted a file
[all...]
/dokuwiki/data/tmp/
H A D_dummy1 You can safely delete this file
/dokuwiki/inc/Cache/
H A DCache.php16 public $ext = ''; // file ext for cache data, secondary identifier for this item
17 public $cache = ''; // cache file name
32 * @param string $ext file extension
71 * 'files' => cache must be younger than mtime of each file
72 * (nb. dependency passes if file doesn't exist)
100 * files - expire cache if any file in this array was updated more recently than the cache
128 foreach ($this->depends['files'] as $file) {
129 if ($this->_time <= @filemtime($file)) {
198 static $file;
205 $file
[all...]
H A DCacheImageMod.php10 /** @var string source file */
11 protected $file;
14 * @param string $file Original source file
20 public function __construct($file, $w, $h, $ext, $crop)
26 $this->file = $file;
29 parent::__construct($file, $fullext);
35 if (!file_exists($this->file)) {
50 [$this->file],
12 protected $file; global() variable in dokuwiki\\Cache\\CacheImageMod
21 __construct($file, $w, $h, $ext, $crop) global() argument
[all...]
H A DCacheInstructions.php12 * @param string $file source file for cache
14 public function __construct($id, $file)
16 parent::__construct($id, $file, 'i');
15 __construct($id, $file) global() argument
H A DCacheParser.php10 public $file = ''; // source file for cache
11 public $mode = ''; // input mode (represents the processing the input file will undergo) variable in dokuwiki\\Cache\\CacheParser
17 * @param string $file source file for cache
20 public function __construct($id, $file, $mode)
27 $this->file = $file;
31 parent::__construct($file . $INPUT->server->str('HTTP_HOST') . $INPUT->server->str('SERVER_PORT'), '.' . $mode);
41 if (!file_exists($this->file)) {
21 __construct($id, $file, $mode) global() argument
[all...]
/dokuwiki/inc/ChangeLog/
H A DChangeLog.php25 * @param int $chunk_size maximum block size read from file
44 * @return string path to file
80 * The "current" revision means current version of the page or media file. It is either
81 * identical with or newer than the "last" revision, that depends on whether the file
83 * The value of identifier can be determined by timestamp as far as the file exists,
228 // read whole file
229 $lines = file($logfile);
235 $fp = fopen($logfile, 'rb'); // "file pointer"
483 * - $fp: file pointer only defined for chuck reading, needs closing.
573 * When the file ha
[all...]
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/inc/Debug/
H A DDebugHelper.php58 $self['file'] ?? $call['file'] ?? '',
103 $backtrace[0]['file'],
117 * @param string $file
125 $file,
138 $file,
148 * @param string $file
156 $file,
164 'file' => $file,
119 dbgCustomDeprecationEvent($alternative, $deprecatedThing, $caller, $file, $line, $callerOffset = 1) global() argument
152 triggerDeprecationEvent(array $backtrace, $alternative, $deprecatedThing, $caller, $file, $line) global() argument
[all...]

1234567