/dokuwiki/inc/ |
H A D | Logger.php | 63 * @param int $line A line number for the above file argument 66 public static function error($message, $details = null, $file = '', $line = 0) 72 $line 82 * @param int $line A line number for the above file 85 public static function debug($message, $details = null, $file = '', $line = 0) 91 $line 101 * @param int $line A line numbe 79 debug($message, $details = null, $file = '', $line = 0) global() argument 95 deprecated($message, $details = null, $file = '', $line = 0) global() argument 112 log($message, $details = null, $file = '', $line = 0) global() argument [all...] |
H A D | confutils.php | 11 * 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 D | changelog.php | 16 * 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 D | DifferenceEngine.php | 155 $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 D | ErrorHandler.php | 116 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)
|
/dokuwiki/inc/Debug/ |
H A D | DebugHelper.php | 59 $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/ChangeLog/ |
H A D | ChangeLogTrait.php | 15 * @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 D | PageChangeLog.php | 46 * @param int $timestamp log line date (optional) 47 * @return array revision info of added log line
|
H A D | MediaChangeLog.php | 46 * @param int $timestamp log line date (optional) 47 * @return array revision info of added log line
|
/dokuwiki/lib/scripts/ |
H A D | compatibility.js | 17 var line = 'DEPRECATED function call'+func+'. '+msg; 20 console.warn(line); 22 console.log(line);
|
/dokuwiki/vendor/splitbrain/php-cli/src/ |
H A D | Colors.php | 107 * Convenience function to print a line in a given color 109 * @param string $line the line to print, a new line is added automatically 115 public function ptln($line, $color, $channel = STDOUT) 118 fwrite($channel, rtrim($line) . "\n"); 108 ptln($line, $color, $channel = STDOUT) global() argument
|
H A D | TableFormatter.php | 297 foreach ($lines as &$line) { 298 $line = rtrim($line); 299 if ($this->strlen($line) <= $width) { 302 $words = explode(' ', $line); 303 $line = ''; 313 # Remember color so we can reapply it after a line break 322 $line .= rtrim($actual) . $break; 327 $line .= $this->substr($actual, 0, $width) . $break; 334 $line [all...] |
/dokuwiki/vendor/geshi/geshi/src/geshi/ |
H A D | abap.php | 125 'at line-selection', 181 'modify line', 189 'read line', 248 'as line', 267 'begin of line', 314 'during line-selection', 321 'end of line', 405 'initial line of', 406 'initial line', 420 'line forma [all...] |
H A D | reg.php | 27 * - Add a verification to the multi-line portion of the hex field regex 28 * for a '\' character on the line preceding the line of the multi-line 35 * all lines after the first does not verify that the previous line contains 36 * a line continuation character '\'. This regex also does not check for 37 * end of line as it should. 193 // Highlight Hexadecimal Values (Single-Line and Multi-Line)
|
H A D | ezt.php | 43 // First character of the line is an asterisk. Rest of the line is spaces/null 56 'END-PROC','FILE','GET','GOTO','HEADING','IF','JOB','LINE', 63 'AFTER-BREAK','AFTER-LINE','BEFORE-BREAK','BEFORE-LINE',
|
/dokuwiki/lib/plugins/logviewer/ |
H A D | admin.php | 162 array_shift($lines); // Discard the first line 188 $line = $lines[$i]; 189 if (str_starts_with($line, ' ')) { 192 while (str_starts_with($line, ' ')) { 193 echo hsc(substr($line, 2)) . '<br />'; 195 $line = $lines[$i] ?? ''; 201 [$dt, $file, $msg] = sexplode("\t", $line, 3, '');
|
/dokuwiki/inc/Cache/ |
H A D | CacheInstructions.php | 22 * @param bool $clean true to clean line endings, false to leave line endings alone
|
H A D | Cache.php | 156 * @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/Search/ |
H A D | Indexer.php | 867 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/vendor/simplepie/simplepie/idn/ |
H A D | ReadMe.txt | 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) { 101 echo $IDN->encode(trim($line), 'ucs4_string');
|
/dokuwiki/vendor/kissifrot/php-ixr/src/Client/ |
H A D | Client.php | 118 $line = fgets($fp, 4096); 120 // Check line for '200' 121 if (strstr($line, '200') === false) { 126 if (trim($line) == '') { 131 $contents .= $line; 134 $debugContents .= $line;
|
/dokuwiki/lib/plugins/authplain/ |
H A D | auth.php | 98 * Creates a string suitable for saving as a line 155 // prepare user line 418 foreach ($lines as $line) { 419 $line = preg_replace('/(?<!\\\\)#.*$/', '', $line); //ignore comments (unless escaped) 420 $line = trim($line); 421 if (empty($line)) continue; 423 $row = $this->splitUserData($line); 439 * Get the user line spli 436 splitUserData($line) global() argument [all...] |
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/ |
H A D | MBOXCreator.php | 36 foreach ($lines as $line) { 37 $linlen = strlen($line); 40 $c = substr($line, $i, 1); 50 $output .= $newline.$escape.$eol; // soft line break; " =\r\n" is okay
|
/dokuwiki/inc/Subscriptions/ |
H A D | SubscriberManager.php | 60 $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/vendor/geshi/geshi/ |
H A D | BUGS | 11 - Using the extra line number highlighting feature without actually using line numbers
|