Home
last modified time | relevance | path

Searched +full:line -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 194) sorted by path

12345678

/dokuwiki/
H A D.htaccess.dist34 ## Not all installations will require the following line. If you do,
H A DCOPYING291 the "copyright" line and a pointer to where the full notice is found.
293 <one line to give the program's name and a brief idea of what it does.>
/dokuwiki/bin/
H A Ddwpage.php13 * Checkout and commit pages from the command line while maintaining the history
41 'Utility to help command line Dokuwiki page editing, allow ' .
H A Dindexer.php12 * Update the Search Index from command line
H A Dplugin.php25 $options->setHelp('Excecutes Plugin command line tools');
/dokuwiki/conf/
H A Dacronyms.conf15 EOL End of line
H A Dmysql.conf.php.example55 * should be a table with exact one line containing at least the password
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt20 **Paragraphs** are created from blank lines. If you want to **force a newline** without a paragraph, you can use two backslashes followed by a whitespace or the end of line.
23 two backslashes are only recognized at the end of a line\\
27 two backslashes are only recognized at the end of a line\\
86 * For Mozilla and Firefox it can be enabled through different workaround mentioned in the [[http://kb.mozillazine.org/Links_to_local_pages_do_not_work|Mozilla Knowledge Base]]. However, there will still be a JavaScript warning about trying to open a Windows Share. To remove this warning (for all users), put the following line in ''conf/lang/en/lang.php'' (more details at [[doku>localization#changing_some_localized_texts_and_strings_in_your_installation|localization]]): <code - conf/lang/en/lang.php>
125 By using four or more dashes, you can make a horizontal line:
422 There are additional [[doku>syntax_highlighting|advanced options]] available for syntax highlighting, such as highlighting lines or adding line numbers.
/dokuwiki/inc/Cache/
H A DCache.php156 * @param bool $clean true to clean line endings, false to leave line endings alone
208 foreach ($lines as $line) {
209 $i = strpos($line, ',');
210 $stats[substr($line, 0, $i)] = $line;
H A DCacheInstructions.php22 * @param bool $clean true to clean line endings, false to leave line endings alone
/dokuwiki/inc/ChangeLog/
H A DChangeLog.php109 * Parses a changelog line into its components and save revision info to the cache pool
111 * @param string $value changelog line
112 * @return array|bool parsed line or false
130 * containing the requested changelog line is read.
138 * - type: log line type
142 * - extra: extra data (varies by line type)
173 foreach ($lines as $line) {
174 $this->parseAndCacheLogLine($line);
184 * only that a line with the date exists in the changelog.
485 * - $head: position of first read changelog line
[all...]
H A DChangeLogTrait.php15 * @return array added log line as revision info
20 * Parses a changelog line into its components
22 * @param string $line changelog line
23 * @return array|bool parsed line or false
27 public static function parseLogLine($line) argument
29 $info = sexplode("\t", rtrim($line, "\n"), 8);
30 if ($info[3]) { // we need at least the page id to consider it a valid line
34 'type' => $info[2], // log line type
38 'extra' => $info[6], // extra data (varies by line typ
[all...]
H A DMediaChangeLog.php46 * @param int $timestamp log line date (optional)
47 * @return array revision info of added log line
H A DPageChangeLog.php46 * @param int $timestamp log line date (optional)
47 * @return array revision info of added log line
H A DRevisionInfo.php29 * - type: change type (log line type)
33 * - extra: extra data (varies by line type)
56 * link button depend on relation to current page or media file. A changelog line does
/dokuwiki/inc/Debug/
H A DDebugHelper.php59 $self['line'] ?? $call['line'] ?? 0
104 $backtrace[0]['line']
118 * @param int $line
126 $line,
139 $line
149 * @param int $line
157 $line
165 'line' => $line,
120 dbgCustomDeprecationEvent($alternative, $deprecatedThing, $caller, $file, $line, $callerOffset = 1) global() argument
153 triggerDeprecationEvent(array $backtrace, $alternative, $deprecatedThing, $caller, $file, $line) global() argument
[all...]
/dokuwiki/inc/
H A DDifferenceEngine.php155 $line = $to_lines[$yi];
156 if (($this->ychanged[$yi] = empty($xhash[$line])))
158 $yhash[$line] = 1;
159 $this->yv[] = $line;
163 $line = $from_lines[$xi];
164 if (($this->xchanged[$xi] = empty($yhash[$line])))
166 $this->xv[] = $line;
269 $line = $flip ? $this->yv[$x] : $this->xv[$x];
270 if (empty($ymatches[$line]))
272 $matches = $ymatches[$line];
1166 addedLine($line, $escaped = false) global() argument
1174 deletedLine($line, $escaped = false) global() argument
1186 contextLine($line) global() argument
[all...]
H A DErrorHandler.php116 new FatalException($error['message'], 0, $error['type'], $error['file'], $error['line'])
187 foreach ($e->getTrace() as $line) {
189 isset($line['class']) &&
190 preg_match('/\w+?_plugin_(\w+)/', $line['class'], $match)
196 isset($line['file']) &&
197 preg_match('/lib\/plugins\/(\w+)\//', str_replace('\\', '/', $line['file']), $match)
H A DLogger.php60 * @param int $line A line number for the above file
63 public static function error($message, $details = null, $file = '', $line = 0) argument
69 $line
79 * @param int $line A line number for the above file argument
82 public static function debug($message, $details = null, $file = '', $line = 0)
88 $line
98 * @param int $line A line numbe
95 deprecated($message, $details = null, $file = '', $line = 0) global() argument
112 log($message, $details = null, $file = '', $line = 0) global() argument
[all...]
H A DMailer.class.php149 * @param bool $clean remove all non-ASCII chars and line feeds?
602 * Returns a complete, EOL terminated header line, wraps it if necessary
606 * @return string line
/dokuwiki/inc/File/
H A DPageFile.php221 * changelog line.
/dokuwiki/inc/HTTP/
H A DHTTPClient.php675 * Safely read a \n-terminated line from a socket
677 * Always returns a complete line, including the terminating \n.
779 array_shift($lines); //skip first line (status)
780 foreach ($lines as $line) {
781 [$key, $val] = sexplode(':', $line, 2, '');
/dokuwiki/inc/Search/
H A DIndexer.php867 foreach ($lines as $line) {
868 $pages = array_merge($pages, $this->parseTuples($page_idx, $line));
904 foreach ($index as $wid => $line) {
905 $freq = $this->countTuples($line);
922 foreach ($index as $wid => $line) {
923 $freq = $this->countTuples($line);
1033 * Retrieve a line from the index.
1037 * @param int $id the line number
1038 * @return string a line with trailing whitespace removed
1050 while (($line
1044 saveIndexKey($idx, $suffix, $id, $line) global() argument
1156 updateTuple($line, $id, $count) global() argument
1181 parseTuples(& $keys, $line) global() argument
1206 countTuples($line) global() argument
[all...]
/dokuwiki/inc/Subscriptions/
H A DBulkSubscriptionSender.php202 // TODO I'm not happy with the following line and passing $this->mailer around. Not sure how to solve it better
H A DSubscriberManager.php60 $line = "$user $style $data\n";
62 return io_saveFile($file, $line, true);
191 foreach ($lines as $line) {
193 if (strpos($line, ' ') === false) {
194 $line = trim($line) . " every\n";
198 if (!preg_match($re, $line, $m)) {

12345678