Home
last modified time | relevance | path

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

1234567

/dokuwiki/
H A DCOPYING289 to attach them to the start of each source file to most effectively
H A Dfeed.php
/dokuwiki/conf/
H A Ddokuwiki.php17 $conf['start'] = 'start'; //name of start page
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt311 Table rows have to start and end with a ''|'' for normal rows or a ''^'' for headers.
H A Dwelcome.txt10 Your wiki needs to have a start page. As long as it doesn't exist, this link will be red: [[:start]].
/dokuwiki/inc/Action/
H A DSearch.php41 if ($ID !== $conf['start'] && !$INPUT->has('q')) {
/dokuwiki/inc/ChangeLog/
H A DChangeLog.php315 * @param int $rev revision timestamp used as start date
347 $start = 0;
350 $start = $count - 1;
353 for ($i = $start; $i >= 0 && $i < $count; $i += $step) {
H A DChangeLogTrait.php180 * @param int $head start point chunk
/dokuwiki/inc/
H A DDifferenceEngine.php441 $start = $i;
452 $runlength = $i - $start;
459 while ($start > 0 && $lines[$start - 1] == $lines[$i - 1]) {
460 $changed[--$start] = 1;
462 while ($start > 0 && $changed[$start - 1])
463 $start--;
484 while ($i < $len && $lines[$start] == $lines[$i]) {
485 $changed[$start
[all...]
H A DJpegMeta.php1055 case 0xDA: // SOS: Start of scan... the image itself and the last block on the file
1217 elseif ($marker == 0xDA) { // SOS: Start of scan... the image itself and the last block on the file
3109 // Assume that if the start and end bytes are defined, the bytes inbetween are defined as well.
3202 function _hexDump(&$data, $start = 0, $length = -1) {
3203 if (($length == -1) || (($length + $start) > strlen($data))) {
3206 $end = $start + $length;
3214 while ($start < $end) {
3219 $c = ord($data[$start]);
3221 $start++;
3199 _hexDump(& $data, $start = 0, $length = 1) global() argument
/dokuwiki/inc/Extension/
H A DAuthPlugin.php78 * ususal capabilities start with lowercase letter
79 * shortcut capabilities start with uppercase letter
336 * @param int $start index of first user to be returned
341 public function retrieveUsers($start = 0, $limit = 0, $filter = null)
368 * @param int $start
372 public function retrieveGroups($start = 0, $limit = 0)
343 retrieveUsers($start = 0, $limit = 0, $filter = null) global() argument
374 retrieveGroups($start = 0, $limit = 0) global() argument
/dokuwiki/inc/File/
H A DPageResolver.php59 if (page_exists($id . $conf['start'], $rev, true, $isDateAt)) {
60 // start page inside namespace
61 return $id . $conf['start'];
70 // fall back to default start page
71 return $id . $conf['start'];
H A DResolver.php55 // relative to current page (makes the current page a start page)
/dokuwiki/inc/Form/
H A DLegacyForm.php11 * example. When you start new forms, just use Form\Form
/dokuwiki/inc/HTTP/
H A DHTTPClient.php34 public $start = 0.0; // for timings
160 $this->start = microtime(true);
590 $time_used = microtime(true) - $this->start;
636 $time_used = microtime(true) - $this->start;
690 $time_used = microtime(true) - $this->start;
742 echo '<b>' . $info . '</b> ' . (microtime(true) - $this->start) . 's<br />';
760 echo '*' . $info . '* ' . (microtime(true) - $this->start) . "s\n";
33 public $start = 0.0; // for timings global() variable in dokuwiki\\HTTP\\HTTPClient
/dokuwiki/inc/Menu/Item/
H A DIndex.php23 if ($conf['start'] == $ID && !$conf['sitemap']) {
/dokuwiki/inc/Parsing/Lexer/
H A DLexer.php17 * parser once. Lexer modes must not start with leading underscores.
36 * @param string $start Starting handler.
39 public function __construct($handler, $start = "accept", $case = false)
43 $this->modeStack = new StateStack($start);
38 __construct($handler, $start = 'accept', $case = false) global() argument
H A DStateStack.php22 * @param string $start Starting state name.
24 public function __construct($start)
26 $this->stack = [$start];
23 __construct($start) global() argument
/dokuwiki/inc/Remote/
H A DApiCore.php
/dokuwiki/inc/Ui/
H A DEditor.php150 // start editor html output
H A DIndex.php79 $nofollow = ($ID != $conf['start'] || $conf['sitemap']) ? 'rel="nofollow"' : '';
H A DMediaRevisions.php69 // start listing
H A DPageDiff.php549 (?(?= # start a conditional expression with a positive look ahead ...
H A DPageRevisions.php68 // start listing
H A DRecent.php74 // start listing of recent items

1234567