Home
last modified time | relevance | path

Searched refs:line (Results 1 – 25 of 78) sorted by path

1234

/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/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;
/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...]
/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 Dauth.php143 foreach ($acl as $line) {
144 $line = trim($line);
145 if (empty($line) || ($line[0] == '#')) continue; // skip blank lines & comments
146 [$id, $rest] = preg_split('/[ \t]+/', $line, 2);
149 if (strstr($line, '%USER%')) {
150 // if user is not logged in, this ACL line is meaningless - skip it
158 if (strstr($line, '%GROUP%')) {
H A Dchangelog.php16 * parses a changelog line into it's components
18 * @param string $line changelog line
19 * @return array|bool parsed line or false
25 function parseChangelogLine($line)
28 return ChangeLog::parseLogLine($line);
296 foreach ($lines as $line) {
297 $rec = _handleRecentLogLine($line, $ns, $flags, $seen);
314 * Parse a line and checks whether it should be included argument
322 * @param string $line changelo
20 parseChangelogLine($line) global() argument
[all...]
H A Dconfutils.php11 * line prefix used to negate single value config items
146 foreach ($lines as $line) {
147 $line = trim(preg_replace('/#.*$/', '', $line));
148 if ($line === '') continue;
149 [$key, $val] = sexplode('=', $line, 2, '');
232 foreach ($lines as $line) {
234 $line = preg_replace('/(?<![&\\\\])#.*$/', '', $line);
235 $line
[all...]
H A Dinfoutils.php373 * @param string $line line number
378 function msg($message, $lvl = 0, $line = '', $file = '', $allow = MSG_PUBLIC)
392 'line' => $line,
399 if ($msgdata['line'] || $msgdata['file']) {
401 $msgdata['msg'] .= ' [' . $basename . ':' . $msgdata['line'] . ']';
494 // was the msg as single line string? use it as header
535 $location = $call['file'] . ':' . ($call['line'] ?? '0');
355 msg($message, $lvl = 0, $line = '', $file = '', $allow = MSG_PUBLIC) global() argument
H A Dio.php318 * Replace one or more occurrences of a line in a file.
320 * The default, when $maxlines is 0 is to delete all matching lines then append a single line.
321 * A regex that matches any part of the line will remove the entire line in this mode.
324 * Otherwise each line is matched and replaced individually, up to the first $maxlines lines
334 * @param string $newline new line to insert
336 * @param int $maxlines number of occurrences of the line to replace
373 foreach ($lines as $i => $line) {
375 // $matched will be set to 0|1 depending on whether pattern is matched and line replaced
376 $lines[$i] = preg_replace($pattern, $replace, $line,
[all...]
/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 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)) {
/dokuwiki/inc/lang/ar/
H A Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
2 # When you edit this file be sure to use UNIX line endings (single newline)
/dokuwiki/inc/lang/az/
H A Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
2 # When you edit this file be sure to use UNIX line endings (single newline)
/dokuwiki/inc/lang/ca-valencia/
H A Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
2 # When you edit this file be sure to use UNIX line endings (single newline)
/dokuwiki/inc/lang/cy/
H A Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
2 # When you edit this file be sure to use UNIX line endings (single newline)
/dokuwiki/inc/lang/da/
H A Dstopwords.txt1 # This is a list of words the indexer ignores, one word per line
2 # When you edit this file be sure to use UNIX line endings (single newline)

1234