Home
last modified time | relevance | path

Searched full:first (Results 1 – 25 of 400) sorted by relevance

12345678910>>...16

/dokuwiki/_test/tests/inc/
H A Dchangelog_getrevisions.test.php15 * $first counts inclusive zero, after the current page
19 1371579614, 1368622240, // revisions, corresponds to respectively $first = 0 and 1
48 $first = 0;
54 $revs = $pagelog->getRevisions($first, $num);
59 * request first recentest revision
60 * (so skips first line which belongs to the current existing page)
63 $first = 0;
68 $revs = $pagelog->getRevisions($first, $num);
72 $revs = $pagelog->getRevisions($first, $num);
76 $revs = $pagelog->getRevisions($first, $num);
[all …]
H A Dparserutils_set_metadata.test.php58 // first revision with numeric user
60 saveWikiText($this->id, 'Test1', 'Test first edit');
64 … $this->assertEquals(array('1'=>'Tester1'), $meta['contributor'], 'First edit contributors error');
72 … $this->assertNotEquals($last_edit_date, $meta['date']['modified'], 'First edit date merge error');
75 // third revision with the first user
/dokuwiki/inc/Ui/
H A DRevisions.php41 * Get revisions, and set correct pagination parameters (first, hasNext)
43 * @param int $first
48 protected function getRevisions(&$first, &$hasNext) argument
64 $revlist = $changelog->getRevisions($first, $num + 1);
65 if (count($revlist) == 0 && $first > -1) {
66 // resets to zero if $first requested a too high number
67 $first = -1;
68 return $this->getRevisions($first, $hasNext);
88 * @param int $first
93 protected function navigation($first, $hasNext, $callback) argument
[all …]
H A DRecent.php17 protected $first; variable in dokuwiki\\Ui\\Recent
23 * @param int $first skip the first n changelog lines
26 public function __construct($first = 0, $show_changes = 'both') argument
28 $this->first = $first;
48 // get recent items, and set correct pagination parameters (first, hasNext)
49 $first = $this->first;
51 $recents = $this->getRecents($first, $hasNext);
104 $form->addHTML($this->htmlNavigation($first, $hasNext));
110 * Get recent items, and set correct pagination parameters (first, hasNext)
112 * @param int $first
[all …]
H A DMediaRevisions.php42 * @param int $first skip the first n changelog lines
50 public function show($first = -1) argument
55 // get revisions, and set correct pagination parameters (first, hasNext)
56 if ($first === null) $first = -1;
58 $revisions = $this->getRevisions($first, $hasNext);
116 $first,
118 static fn($n) => media_managerURL(['first' => $n], '&', false, true)
H A DPageRevisions.php40 * @param int $first skip the first n changelog lines
48 public function show($first = -1) argument
53 // get revisions, and set correct pagination parameters (first, hasNext)
54 if ($first === null) $first = -1;
56 $revisions = $this->getRevisions($first, $hasNext);
114 … echo $this->navigation($first, $hasNext, static fn($n) => ['do' => 'revisions', 'first' => $n]);
/dokuwiki/_test/tests/Form/
H A DDropdownElementTest.php16 $options = array('first', 'second', 'third');
18 $this->assertEquals('first', $element->val());
22 $this->assertEquals('first', $element->val());
25 … $options = array('first' => 'A first Label', 'second' => 'The second Label', 'third' => 'Just 3');
27 $this->assertEquals('first', $element->val());
31 $this->assertEquals('first', $element->val());
45 $this->assertEquals('first', $option->attr('value'));
46 $this->assertEquals('A first Label', $option->text());
58 'first' => array(
85 $this->assertEquals('first', $option->attr('value'));
[all …]
H A DCheckableElementTest.php14 $form->addRadioButton('foo', 'label text first')->val('first')->attr('checked', 'checked');
27 $this->assertEquals('first', $inputs->get(0)->attr('value'));
43 $form->addRadioButton('foo', 'label text first')->val('first')->attr('checked', 'checked');
50 $this->assertEquals('first', $inputs->get(0)->attr('value'));
/dokuwiki/inc/parser/
H A Dxhtmlsummary.php4 * The summary XHTML form selects either up to the first two paragraphs
5 * it find in a page or the first section (whichever comes first)
11 * It also attempts to capture the first heading in a page for
/dokuwiki/lib/scripts/
H A Dsearch.js39 $me.parent().siblings().find('ul:first').attr('aria-expanded', 'false');
42 $me.parent().find('ul:first').attr('aria-expanded', 'true');
44 $me.parent().find('ul:first').attr('aria-expanded', 'false');
H A Dtree.js17 jQuery('ul:first', this.$obj).attr('role', 'tree');
18 jQuery('ul', this.$obj).not(':first').attr('role', 'group');
42 $sublist = $listitem.find('ul').first();
/dokuwiki/inc/Action/
H A DRecent.php42 (new Ui\Recent($INPUT->extract('first')->int('first'), $this->showType))->show();
H A DRevisions.php27 (new PageRevisions($INFO['id']))->show($INPUT->int('first', -1));
/dokuwiki/vendor/composer/
H A DClassLoader.php32 * the autoloader will first look for the class under the component/
69 …* Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2'…
199 $first = $prefix[0];
200 if (!isset($this->prefixesPsr0[$first][$prefix])) {
201 $this->prefixesPsr0[$first][$prefix] = $paths;
206 $this->prefixesPsr0[$first][$prefix] = array_merge(
208 $this->prefixesPsr0[$first][$prefix]
211 $this->prefixesPsr0[$first][$prefix] = array_merge(
212 $this->prefixesPsr0[$first][$prefix],
497 $first = $class[0];
[all …]
/dokuwiki/inc/TreeBuilder/
H A DTreeSort.php43 * Comparator to sort namespace first, then by ID
69 * Comparator to sort namespace first, then by title
83 * Comparator to sort by namespace first
H A DAbstractBuilder.php133 if (!$this->generated) throw new \RuntimeException('need to call generate() first');
146 if (!$this->generated) throw new \RuntimeException('need to call generate() first');
164 if (!$this->generated) throw new \RuntimeException('need to call generate() first');
175 if (!$this->generated) throw new \RuntimeException('need to call generate() first');
183 … * return an integer less than, equal to, or greater than zero if the first argument is considered
193 if (!$this->generated) throw new \RuntimeException('need to call generate() first');
/dokuwiki/inc/lang/en/
H A Dedit.txt1 …u can **improve** it. If you want to test some things, learn to make your first steps on the [[pla…
/dokuwiki/lib/plugins/revert/lang/en/
H A Dintro.txt3 … the automatic reversion of a spam attack. To find a list of spammy pages first enter a search str…
/dokuwiki/lib/plugins/extension/lang/bg/
H A Dintro_search.txt1 …*! Повече по темата можете да прочетете в [[doku>security#plugin_security|plugin security]] first.
/dokuwiki/lib/plugins/extension/lang/en/
H A Dintro_search.txt1 …ecurity risk**, you may want to read about [[doku>security#plugin_security|plugin security]] first.
/dokuwiki/data/pages/wiki/
H A Dwelcome.txt8 ===== Create your first pages =====
20 …[this>doku.php?do=admin&page=config|configuration settings]] (be sure to login as superuser first).
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Dprogress.php15 * - First Release
117 'Width','ACTIVE-WINDOW','AUDIT-CONTROL','FIRST','LAST',
127 'ADD-COLUMNS-FROM','ADD-EVENTS-PROCEDURE','ADD-FIELDS-FROM','ADD-FIRST',
149 'FILL','FIND-BY-ROWID','FIND-CURRENT','FIND-FIRST',
156 'GET-ERROR-ROW ','GET-FILE-NAME ','GET-FILE-OFFSET ','GET-FIRST',
185 'SAX-PARSE','SAX-PARSE-FIRST','SAX-PARSE-NEXT','SCROLL-TO-CURRENT-ROW',
216 'FIRST-OF','FRAME-DB','FRAME-DOWN',
298 'FILL-WHERE-STRING','FIRST-ASYNC-REQUEST','FIRST-BUFFER','FIRST-CHILD',
299 'FIRST-COLUMN','FIRST-DATASET','FIRST-DATA-SOURCE','FIRST-object',
300 'FIRST-PROCEDURE','FIRST-QUERY','FIRST-SERVER','FIRST-SERVER-SOCKET',
[all …]
/dokuwiki/inc/ChangeLog/
H A DChangeLog.php189 * A negative $first let read the current revision too.
196 * @param int $first skip the first n changelog lines
203 public function getRevisions($first, $num) argument
217 if ($first < 0) {
218 $first = 0;
223 $first = max($first + 1, 0);
244 while ($count < $num + $first) {
286 $num = max(min(count($lines) - $first, $num), 0);
287 if ($first > 0 && $num > 0) {
288 $lines = array_slice($lines, max(count($lines) - $first - $num, 0), $num);
[all …]
/dokuwiki/_test/tests/Remote/OpenApiDoc/
H A DDocBlockMethodTest.php16 * @param string $foo First variable
41 'description' => 'First variable',
/dokuwiki/inc/Utf8/
H A DUnicode.php57 // First octet of 2 octet sequence
63 // First octet of 3 octet sequence
69 // First octet of 4 octet sequence
75 /* First octet of 5 octet sequence.
88 // First octet of 6 octet sequence, see comments for 5 octet sequence.
94 /* Current octet is neither in the US-ASCII range nor a legal first

12345678910>>...16