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 186) sorted by relevance

12345678

/dokuwiki/_test/tests/inc/
H A Dpageutils_nons.test.php11 $conf['start'] = 'start';
20 ['0:0:start', 'start'],
32 $conf['start'] = 'start';
41 ['0:0:start', '0'],
42 ['0:start', '0'],
H A Dtemplate_tpl_get_action.php8 $ID = 'start'; // run all tests on the start page
26 'id' => 'start',
52 'id' => 'start',
78 'id' => 'start',
104 'id' => 'start',
129 'id' => 'start',
144 'id' => 'start',
161 'id' => 'start',
177 'id' => 'start',
193 'id' => 'start',
[all …]
H A Dcommon_wl.test.php9 $conf['start'] = 'start';
11 $this->assertEquals(DOKU_BASE . DOKU_SCRIPT . '?id=start' , wl());
18 $conf['start'] = 'start';
20 $this->assertEquals(DOKU_BASE . 'start' , wl());
27 $conf['start'] = 'start';
29 $this->assertEquals(DOKU_BASE . DOKU_SCRIPT . '/start' , wl());
H A Dchangelog_getlastrevisionat.test.php40 * start at exact current revision of mailinglist page
76 * start at exact last revision of mailinglist page
103 * Start at non existing revision somewhere between existing revisions
/dokuwiki/_test/tests/TreeBuilder/
H A DPageTreeBuilderTest.php17 saveWikiText('namespace:start', 'This is the start page', 'test');
20 saveWikiText('namespace:subns:start', 'This is the subns start page', 'test');
22 saveWikiText('namespace:subns:deeper:start', 'This is the deeper start page', 'test');
48 '+namespace:start',
52 '++namespace:subns:start',
55 '+++namespace:subns:deeper:start',
64 '+namespace:start',
68 '++namespace:subns:start',
80 '+namespace:subns:start',
82 '++namespace:subns:deeper:start'
[all …]
H A DControlPageBuilderTest.php23 '+briefs:start',
24 '+qhsr:start',
27 '++qhsr:hse:start',
33 '+tech:start',
/dokuwiki/_test/tests/File/
H A DPageResolverTest.php53 ['lev1:lev2:context', '..:..:lev3:..:page:....:...', 'page:start'],
61 // start pages
62 ['context', '.:', 'start'],
63 ['foo:context', '.:', 'foo:start'],
64 ['context', 'foo:', 'foo:start'],
65 ['foo:context', 'foo:', 'foo:start'],
66 ['context', '~foo:', 'context:foo:start'],
67 ['foo:context', '~foo:', 'foo:context:foo:start'],
74 ['context', ':..', 'start'],
75 ['context', ':foo:bar:..', 'foo:bar:start'],
[all …]
/dokuwiki/_test/tests/TreeBuilder/cp/
H A Dsimple.txt1 * [[briefs:start|Briefs]]
2 * [[qhsr:start|QHSR]]
5 * [[qhsr:hse:start|HSE]]
11 * [[tech:start|Tech Info]]
/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 + text.length;
[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.js139 var search = "\n"+this.value.substr(0,selection.start);
156 if (match2 && this.value.substr(selection.start).match(/^($|\r?\n)/)) {
158 this.value.substr(selection.start);
159 selection.start = linestart + 1;
178 selection.start = selection.start - 2;
179 selection.end = selection.start;
182 this.value.substr(selection.start);
183 selection.start = linestart;
196 selection.start = selection.start + 2;
197 selection.end = selection.start;
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);
/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/vendor/paragonie/constant_time_encoding/src/
H A DBinary.php65 * @param int $start
74 int $start = 0, argument
82 return substr($str, $start, $length);
84 return substr($str, $start);
/dokuwiki/inc/Parsing/Lexer/
H A DStateStack.php22 * @param string $start Starting state name.
24 public function __construct($start) argument
26 $this->stack = [$start];
/dokuwiki/_test/tests/conf/
H A DCascadeNormalTest.php21 $this->assertEquals('start', $conf['start'], 'default value');
/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 of range
/dokuwiki/inc/TreeBuilder/
H A DPageTreeBuilder.php20 * associated with the namespace's start page.
24 /** @var array Used to remember already seen start pages */
55 * @param string $namespace The namespace to start from
163 $id = $this->getStartpage($id); // use the start page for the namespace
189 // Skip already shown start pages
223 * Get the start page for the given namespace
225 * @param string $ns The namespace to get the start page for
226 * @return string The start page id
/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/lib/plugins/usermanager/
H A Dadmin.php31 protected $start = 0; // index of first user to be displayed variable in admin_plugin_usermanager
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 += $this->pagesize;
183 $this->start = $this->users_total;
[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 a block quote
[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) argument
184 if ($start > 0) $ret .= self::substr($string, 0, $start);
186 $ret .= self::substr($string, $start + $length);
/dokuwiki/inc/Menu/Item/
H A DIndex.php23 if ($conf['start'] == $ID && !$conf['sitemap']) {

12345678