/dokuwiki/lib/scripts/ |
H A D | textselection.js | 13 this.start = 0; 20 return this.end - this.start; 24 return (!this.obj) ? '' : this.obj.value.substring(this.start,this.end); 41 sel.start = textArea.selectionStart; 51 * start and end properties and pass it back to this function. 58 selection.obj.setSelectionRange(selection.start, selection.end); 69 * @param {int} opts.startofs number of charcters at the start to skip from new selection 78 selection.obj.value.substring(0, selection.start) + text + 84 selection.end = selection.start + text.replace(/\r?\n/g, '\r\n').length; 86 selection.end = selection.start [all...] |
H A D | helpers.js | 8 * Supports negative start and length and omitting length, but not 12 function substr_replace(str, replace, start, length) { argument 14 a2 = (start < 0 ? str.length : 0) + start; 17 } else if (length < 0 && start < 0 && length <= start) {
|
H A D | editor.js | 136 var search = "\n"+this.value.substr(0,selection.start); 153 if (match2 && this.value.substr(selection.start).match(/^($|\r?\n)/)) { 155 this.value.substr(selection.start); 156 selection.start = linestart + 1; 175 selection.start = selection.start - 2; 176 selection.end = selection.start; 179 this.value.substr(selection.start); 180 selection.start = linestart; 193 selection.start [all...] |
H A D | delay.js | 30 * Provide a delayed start 33 * call that object’s method “start”. 53 start: function () { method in Delay
|
H A D | qsearch.js | 132 var start, length, replace, nsL, nsR, eli, runaway; 148 start = eli - 2; 152 start = eli + 1; 158 start = Math.floor(nsL + ((nsR - nsL) / 2)); 163 replace, start, length);
|
H A D | locktimer.js | 48 // start timer 73 * (Re)start the warning timer
|
/dokuwiki/inc/File/ |
H A D | PageResolver.php | 59 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'];
|
/dokuwiki/inc/Parsing/Lexer/ |
H A D | StateStack.php | 22 * @param string $start Starting state name. 24 public function __construct($start) 26 $this->stack = [$start]; 23 __construct($start) global() argument
|
H A D | Lexer.php | 17 * 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
|
/dokuwiki/inc/ |
H A D | httputils.php | 123 $start = (int)$p[0]; 126 if ($start > $end || $start > $size || $end > $size) { 131 $len = $end - $start + 1; 132 $ranges[] = [$start, $end, $len]; 152 [$start, $end, $len] = $ranges[$i]; 158 echo "Content-Range: bytes $start-$end/$size" . HTTP_HEADER_LF; 163 header("Content-Range: bytes $start-$end/$size"); 168 fseek($fh, $start); //seek to start o [all...] |
H A D | pageutils.php | 26 * For $param='id' $conf['start'] is returned if no id was found. 85 if (page_exists($id . $conf['start'])) { 86 // start page inside namespace 87 $id .= $conf['start']; 96 $id .= $conf['start']; 107 if ($id === '' && $param == 'id') $id = $conf['start']; 219 * Returns the ID without the namespace or current namespace for 'start' pages 231 if ($p === $conf['start'] || $p === false || $p === '') { 234 return $conf['start'];
|
/dokuwiki/lib/plugins/config/core/Setting/ |
H A D | SettingFieldset.php | 8 * Used to start a new settings "display-group".
|
/dokuwiki/data/pages/wiki/ |
H A D | welcome.txt | 10 Your wiki needs to have a start page. As long as it doesn't exist, this link will be red: [[:start]].
|
/dokuwiki/inc/Menu/Item/ |
H A D | Index.php | 23 if ($conf['start'] == $ID && !$conf['sitemap']) {
|
/dokuwiki/lib/plugins/usermanager/ |
H A D | admin.php | 31 protected $start = 0; // index of first user to be displayed 91 * @return int current start value for pageination 95 return $this->start; 137 $this->start = $INPUT->int('start', 0); 156 $this->start = 0; 173 case 'start': 174 $this->start = 0; 177 $this->start -= $this->pagesize; 180 $this->start 25 protected $start = 0; // index of first user to be displayed global() variable in admin_plugin_usermanager [all...] |
/dokuwiki/inc/parser/ |
H A D | renderer.php | 258 * Start strong (bold) formatting 272 * Start emphasis (italics) formatting 286 * Start underline formatting 300 * Start monospace formatting 314 * Start a subscript 328 * Start a superscript 342 * Start deleted (strike-through) formatting 356 * Start a footnote 415 * Start the content of a list item 450 * Start [all...] |
H A D | xhtml.php | 53 * @param int $start The byte position for the edit start 60 * Key 'start': set in startSectionEdit(), 62 * Key 'range': calculated from 'start' and 69 public function startSectionEdit($start, $data) 88 $data['start'] = $start; 106 if (!is_null($end) && $end <= $data['start']) { 112 $data['range'] = $data['start'] . '-' . (is_null($end) ? '' : $end); 113 unset($data['start']); 65 startSectionEdit($start, $data) global() argument [all...] |
/dokuwiki/inc/Utf8/ |
H A D | PhpString.php | 172 * @param int $start the replacing will begin at the start'th offset into string. 175 * replacement into string at the given start offset. 181 public static function substr_replace($string, $replacement, $start, $length = 0) 184 if ($start > 0) $ret .= self::substr($string, 0, $start); 186 $ret .= self::substr($string, $start + $length); 190 substr_replace($string, $replacement, $start, $length = 0) global() argument
|
/dokuwiki/vendor/splitbrain/php-cli/src/ |
H A D | TableFormatter.php | 267 * @param int $start 271 protected function substr($string, $start = 0, $length = null) argument 274 return mb_substr($string, $start, $length); 278 return substr($string, $start, $length); 280 return substr($string, $start);
|
/dokuwiki/vendor/splitbrain/slika/src/ |
H A D | Slika.php | 33 * Start processing the image
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ |
H A D | ASN1.php | 213 * Sometimes we want to get the BER encoding of a particular tag. $start lets us do that without having to reencode. 218 * @param int $start 222 private static function decode_ber($encoded, $start = 0, $encoded_pos = 0) 224 $current = ['start' => $start]; 255 $start += $startOffset; 262 $start++; 275 $start += $length; 310 'length' => $length + $start - $current['start'] 243 _decode_ber($encoded, $start = 0, $encoded_pos = 0) global() argument [all...] |
/dokuwiki/inc/Extension/ |
H A D | AuthPlugin.php | 78 * 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/lib/plugins/authplain/ |
H A D | auth.php | 300 * @param int $start index of first user to be returned 305 public function retrieveUsers($start = 0, $limit = 0, $filter = []) 319 if ($i >= $start) { 335 * @param int $start index of first group to be returned 339 public function retrieveGroups($start = 0, $limit = 0) 350 return array_splice($groups, $start, $limit); 352 return array_splice($groups, $start); 298 retrieveUsers($start = 0, $limit = 0, $filter = array()) global() argument 332 retrieveGroups($start = 0, $limit = 0) global() argument
|
/dokuwiki/lib/exe/ |
H A D | detail.php | 43 //start output and load template
|
/dokuwiki/vendor/simplepie/simplepie/src/ |
H A D | Caption.php | 76 * Start time 155 * Get the start time
|