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 relevance

1234567

/dokuwiki/lib/scripts/
H A Dtextselection.js13 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 Dhelpers.js8 * 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 Deditor.js136 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 Ddelay.js30 * Provide a delayed start
33 * call that object’s method “start”.
53 start: function () { method in Delay
H A Dqsearch.js132 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 Dlocktimer.js48 // start timer
73 * (Re)start the warning timer
/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'];
/dokuwiki/inc/Parsing/Lexer/
H A DStateStack.php22 * @param string $start Starting state name.
24 public function __construct($start)
26 $this->stack = [$start];
23 __construct($start) global() argument
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
/dokuwiki/inc/
H A Dhttputils.php123 $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 Dpageutils.php26 * 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 DSettingFieldset.php8 * Used to start a new settings "display-group".
/dokuwiki/data/pages/wiki/
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/Menu/Item/
H A DIndex.php23 if ($conf['start'] == $ID && !$conf['sitemap']) {
/dokuwiki/lib/plugins/usermanager/
H A Dadmin.php30 protected $start = 0; // index of first user to be displayed
90 * @return int current start value for pageination
94 return $this->start;
136 $this->start = $INPUT->int('start', 0);
155 $this->start = 0;
172 case 'start':
173 $this->start = 0;
176 $this->start -= $this->pagesize;
179 $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 Drenderer.php258 * 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 Dxhtml.php52 * @param int $start The byte position for the edit start
59 * Key 'start': set in startSectionEdit(),
61 * Key 'range': calculated from 'start' and
68 public function startSectionEdit($start, $data)
87 $data['start'] = $start;
105 if (!is_null($end) && $end <= $data['start']) {
111 $data['range'] = $data['start'] . '-' . (is_null($end) ? '' : $end);
112 unset($data['start']);
65 startSectionEdit($start, $data) global() argument
[all...]
/dokuwiki/inc/Utf8/
H A DPhpString.php172 * @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 DTableFormatter.php267 * @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 DSlika.php33 * Start processing the image
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php213 * 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 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/lib/plugins/authplain/
H A Dauth.php300 * @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 Ddetail.php43 //start output and load template
/dokuwiki/vendor/simplepie/simplepie/src/
H A DCaption.php77 * Start time
156 * Get the start time

1234567