| /dokuwiki/_test/tests/inc/ |
| H A D | changelog_getrevisions.test.php | 15 * $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 D | parserutils_set_metadata.test.php | 58 // 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 D | Revisions.php | 41 * 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 D | Recent.php | 17 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 D | PageRevisions.php | 40 * @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); 116 … echo $this->navigation($first, $hasNext, static fn($n) => ['do' => 'revisions', 'first' => $n]);
|
| H A D | MediaRevisions.php | 42 * @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); 118 $first, 120 static fn($n) => media_managerURL(['first' => $n], '&', false, true)
|
| /dokuwiki/_test/tests/Form/ |
| H A D | DropdownElementTest.php | 16 $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 D | CheckableElementTest.php | 14 $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/_test/tests/Search/Index/ |
| H A D | TupleOpsTest.php | 88 [5 => 'first', 'bar' => 'second', 'foo' => null], 89 ['first' => 10, 'second' => 7] 94 [5 => 'first', 'bar' => 'second', 'foo' => null], 95 ['first' => 1, 'second' => 1] 100 [5 => 'first', 'foo' => 'second', 14 => 'third'], 101 ['first' => 10, 'second' => 1, 'third' => 100] 112 [5 => 'first'],
|
| /dokuwiki/inc/parser/ |
| H A D | xhtmlsummary.php | 4 * 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 D | search.js | 39 $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 D | tree.js | 17 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 D | Recent.php | 42 (new Ui\Recent($INPUT->extract('first')->int('first'), $this->showType))->show();
|
| /dokuwiki/inc/Parsing/ParserMode/ |
| H A D | GfmQuote.php | 34 * must begin with `>` at column 0; the first non-`>` line ends the 66 * The pattern requires a column-0 `>` on every line. The first 71 * The first line uses (?:^|\n)> rather than \n> so the blockquote 146 * absolute byte position of the content's first character within 155 * @param int $lineStart absolute byte offset of the line's first 185 * first content character within the source. Sub-handler positions 186 * are relative to the sub-parsed body, which begins at the first 189 * the source. Lines after the first drift slightly because the 196 * first content character within the source 242 * 2. Drops the first and last `linebreak` calls so the run starts
|
| H A D | Header.php | 19 // Parser prepends a newline, so the first line matches too). It is a 21 // position lands on the heading's first character — keeping any blank
|
| /dokuwiki/ |
| H A D | AI_POLICY.md | 7 added by a long-time maintainer or first-time contributor. Each commit must have a responsible huma… 17 **Drive-by AI contributions are not welcome**. If you are a first-time contributor it is expected t… 20 marked as "good first-issue" are not an invitation for AI fixes - they are meant to be a starting p… 58 …tion is not finished when the pull request is opened. […] AI changes the cost of creating the first
|
| /dokuwiki/vendor/composer/ |
| H A D | ClassLoader.php | 32 * 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 D | TreeSort.php | 43 * 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 D | AbstractBuilder.php | 133 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/_test/tests/ChangeLog/ |
| H A D | PageChangeLogTest.php | 20 saveWikiText($page, 'first content', 'create', false); 47 * An external deletion is detected and persisted on first read as its own revision 55 saveWikiText($page, 'first content', 'create', false); 66 // first read detects and persists the external deletion 90 saveWikiText($page, 'first content', 'create', false); 121 saveWikiText($page, 'first content', 'create', false); 184 saveWikiText($page, 'first content', 'create', false); 245 saveWikiText($page, 'first content', 'create', false); 280 saveWikiText($page, 'first content', 'create', false); 323 saveWikiText($page, 'first content', 'create', false);
|
| /dokuwiki/lib/plugins/revert/lang/en/ |
| H A D | intro.txt | 3 … the automatic reversion of a spam attack. To find a list of spammy pages first enter a search str…
|
| /dokuwiki/inc/lang/en/ |
| H A D | edit.txt | 1 …u can **improve** it. If you want to test some things, learn to make your first steps on the [[pla…
|
| /dokuwiki/lib/plugins/extension/lang/en/ |
| H A D | intro_search.txt | 1 …ecurity risk**, you may want to read about [[doku>security#plugin_security|plugin security]] first.
|
| /dokuwiki/lib/plugins/extension/lang/bg/ |
| H A D | intro_search.txt | 1 …*! Повече по темата можете да прочетете в [[doku>security#plugin_security|plugin security]] first.
|
| /dokuwiki/data/pages/wiki/ |
| H A D | welcome.txt | 8 ===== Create your first pages ===== 20 …[this>doku.php?do=admin&page=config|configuration settings]] (be sure to login as superuser first).
|