Home
last modified time | relevance | path

Searched refs:first (Results 1 – 25 of 39) sorted by relevance

12

/dokuwiki/inc/Ui/
H A DRevisions.php43 * @param int $first
48 protected function getRevisions(&$first, &$hasNext) argument
64 $revlist = $changelog->getRevisions($first, $num + 1);
65 if (count($revlist) == 0 && $first > -1) {
67 $first = -1;
68 return $this->getRevisions($first, $hasNext);
88 * @param int $first
93 protected function navigation($first, $hasNext, $callback) argument
98 $last = $first + $conf['recent'];
99 if ($first > -1) {
[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;
49 $first = $this->first;
51 $recents = $this->getRecents($first, $hasNext);
104 $form->addHTML($this->htmlNavigation($first, $hasNext));
112 * @param int $first
118 protected function getRecents(&$first, &$hasNext) argument
135 $recents = getRecents($first, $conf['recent'] + 1, getNS($ID), $flags);
[all …]
H A DMediaRevisions.php42 * @param int $first skip the first n changelog lines
50 public function show($first = -1) argument
56 if ($first === null) $first = -1;
58 $revisions = $this->getRevisions($first, $hasNext);
116 $first,
H A DPageRevisions.php40 * @param int $first skip the first n changelog lines
48 public function show($first = -1) argument
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/inc/
H A Dchangelog_getrevisions.test.php48 $first = 0;
54 $revs = $pagelog->getRevisions($first, $num);
63 $first = 0;
68 $revs = $pagelog->getRevisions($first, $num);
72 $revs = $pagelog->getRevisions($first, $num);
76 $revs = $pagelog->getRevisions($first, $num);
85 $first = 1;
90 $revs = $pagelog->getRevisions($first, $num);
94 $revs = $pagelog->getRevisions($first, $num);
98 $revs = $pagelog->getRevisions($first, $num);
[all …]
/dokuwiki/vendor/composer/
H A DClassLoader.php199 $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];
498 if (isset($this->prefixLengthsPsr4[$first])) {
531 if (isset($this->prefixesPsr0[$first])) {
[all …]
/dokuwiki/lib/plugins/extension/lang/bg/
H A Dintro_search.txt1 …*! Повече по темата можете да прочетете в [[doku>security#plugin_security|plugin security]] first.
/dokuwiki/vendor/splitbrain/lesserphp/src/Functions/
H A DColorOperation.php170 [$first, $second] = $args[2];
171 $first = Asserts::assertColor($first);
174 $first_a = $this->alpha($first);
191 $w1 * $first[1] + $w2 * $second[1],
192 $w1 * $first[2] + $w2 * $second[2],
193 $w1 * $first[3] + $w2 * $second[3],
/dokuwiki/inc/ChangeLog/
H A DChangeLog.php196 * @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);
289 } elseif ($first > 0 && $num == 0) {
[all …]
/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/en/
H A Dintro_search.txt1 …ecurity risk**, you may want to read about [[doku>security#plugin_security|plugin security]] first.
/dokuwiki/lib/plugins/styling/
H A Dscript.js58 var $form = $styling_plugin.find('form.styling').first();
/dokuwiki/inc/
H A Dchangelog.php162 * @param int $first number of first entry returned (for paginating
171 function getRecents($first, $num, $ns = '', $flags = 0) argument
240 if (--$first >= 0) continue; // skip first entries
H A Dhtml.php336 * @param int $first skip the first n changelog lines
340 function html_revisions($first = -1, $media_id = '') argument
344 (new MediaRevisions($media_id))->show($first);
347 (new PageRevisions($INFO['id']))->show($first);
359 * @param int $first
363 function html_recent($first = 0, $show_changes = 'both') argument
366 (new Recent($first, $show_changes))->show();
/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/inc/Remote/
H A DApiCore.php472 * @param int $first skip the first n changelog lines, 0 starts at the current revision
478 public function getPageHistory($page, $first = 0) argument
487 $revisions = $pagelog->getRevisions($first - 1, $conf['recent']);
928 * @param int $first skip the first n changelog lines, 0 starts at the current revision
934 public function getMediaHistory($media, $first = 0) argument
950 $revisions = $medialog->getRevisions($first - 1, $conf['recent']);
H A DLegacyApiCore.php490 public function legacyGetPageVersions($id, $first = 0) argument
492 $revisions = $this->getPageHistory($id, $first);
/dokuwiki/lib/scripts/
H A Dtree.js42 $sublist = $listitem.find('ul').first();
/dokuwiki/vendor/php81_bc/strftime/
H A DREADME.md106 | `%U` | Week number of the given year, starting with the first Sunday as the first week …
107 | `%V` | ISO-8601:1988 week number of the given year, starting withthe first week of the year wit…
108 …meric representation of the week of the year, starting with the first Monday as the first week …
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php1172 $first = floor(ord($content[0]) / 40);
1179 if ($first <= 2) { // ie. 0 <= ord($content[0]) < 120 (0x78)
1181 array_unshift($oid, $first);
1220 $first = new BigInteger($part1);
1221 $first = $first->multiply($forty);
1222 $first = $first->add(new BigInteger($part2));
1224 array_unshift($parts, $first->toString());
/dokuwiki/lib/plugins/popularity/
H A Dhelper.php229 $first = (int) substr(array_shift($list), 0, 10);
231 $dur = ($last - $first) / (60 * 60 * 24); // number of days in the changelog
/dokuwiki/vendor/splitbrain/php-jsstrip/
H A DREADME.md18 You'll have to convert your code to use ';' first.
/dokuwiki/lib/tpl/dokuwiki/css/
H A Dpagetools.less31 /* on same vertical level as first headline, because .page has 2em padding */
H A Dcontent.less225 button.toolbutton:first-child {
246 button.toolbutton:first-child {

12