Searched +full:recent -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 41) sorted by relevance
12
| /dokuwiki/inc/Ui/ |
| H A D | Recent.php | 11 * DokuWiki Recent Interface 15 class Recent extends Ui class 21 * Recent Ui constructor 33 * Display recent changes 48 // get recent items, and set correct pagination parameters (first, hasNext) 54 echo p_locale_xhtml('recent'); 58 . sprintf($lang['recent_global'], getNS($ID), wl('', 'do=recent')) 66 $form->setHiddenField('do', 'recent'); 69 … // show dropdown selector, whether include not only recent pages but also recent media files? 74 // start listing of recent items [all …]
|
| H A D | Revisions.php | 58 $num = $conf['recent']; 62 * see also Ui\Recent::getRecents() 98 $last = $first + $conf['recent']; 100 $first = max($first - $conf['recent'], -1);
|
| /dokuwiki/inc/ |
| H A D | changelog.php | 174 $recent = []; 178 return $recent; 181 // read all recent changes. (kept short) 241 $recent[] = $x; 248 return $recent; 276 $recent = []; 279 return $recent; 282 // read all recent changes. (kept short) 288 if (!$lines) return $recent; 301 $recent[] = $rec; [all …]
|
| H A D | TaskRunner.php | 89 * Trims the recent changes cache (or imports the old changelog) as needed. 106 // Trim the Recent Changes 107 // Trims the recent changes cache to the last $conf['changes_days'] recent 108 // changes or $conf['recent'] items, which ever is larger. 118 if (count($lines) <= $conf['recent']) { 156 …$extra = $conf['recent'] - count($out_lines); // do we need extra lines do bring us up to m…
|
| /dokuwiki/inc/Action/ |
| H A D | Recent.php | 8 * Class Recent 10 * The recent changes view 14 class Recent extends AbstractAction class 42 (new Ui\Recent($INPUT->extract('first')->int('first'), $this->showType))->show();
|
| /dokuwiki/inc/Menu/Item/ |
| H A D | Recent.php | 6 * Class Recent 8 * Show the site wide recent changes 10 class Recent extends AbstractItem class
|
| /dokuwiki/lib/plugins/revert/ |
| H A D | admin.php | 120 * List recent edits matching the given filter 135 foreach ($recents as $recent) { 137 if (!str_contains(rawWiki($recent['id']), (string) $filter)) continue; 141 $date = dformat($recent['date']); 143 echo ($recent['type'] === DOKU_CHANGE_TYPE_MINOR_EDIT) ? '<li class="minor">' : '<li>'; 145 echo '<input type="checkbox" name="revert[]" value="' . hsc($recent['id']) . 149 echo '<a href="' . wl($recent['id'], "do=diff") . '">'; 160 echo '<a href="' . wl($recent['id'], "do=revisions") . '">'; 171 … echo html_wikilink(':' . $recent['id'], (useHeading('navigation')) ? null : $recent['id']); 172 echo ' – ' . htmlspecialchars($recent['sum']); [all …]
|
| H A D | plugin.info.txt | 6 desc Allows you to mass revert recent edits to remove Spam or vandalism
|
| /dokuwiki/lib/tpl/dokuwiki/css/ |
| H A D | _recent.css | 2 * This file provides styles for the recent changes (?do=recent) and 6 /*____________ list of revisions / recent changes ____________*/
|
| /dokuwiki/inc/ChangeLog/ |
| H A D | RevisionInfo.php | 9 * - Ui\Recent 104 * used in [Ui\recent] 122 * used in [Ui\recent, Ui\Revisions] 140 * used in [Ui\recent, Ui\Revisions] 151 * used in [Ui\recent, Ui\Revisions] 170 * used in [Ui\recent, Ui\Revisions] 256 * diff link icon in recent changes list, to compare (this) current revision with previous one 257 * all items in "recent changes" are current revision of the page or media 335 * used in [Ui\recent] 364 * used in [Ui\recent, Ui\Revisions] [all …]
|
| /dokuwiki/inc/Remote/ |
| H A D | ApiCore.php | 352 * Get recent page changes 354 … * Returns a list of recent changes to wiki pages. The results can be limited to changes newer than 357 * Only changes within the configured `$conf['recent']` range are returned. This is the default 360 * @link https://www.dokuwiki.org/config:recent 371 foreach ($recents as $recent) { 373 $recent['id'], 374 $recent['date'], 375 $recent['user'], 376 $recent['ip'], 377 $recent['sum'], [all …]
|
| H A D | LegacyApiCore.php | 454 foreach ($recents as $recent) { 456 'name' => $recent->id, 457 'lastModified' => $this->toDate($recent->revision), 458 'author' => $recent->author, 459 'version' => $recent->revision, 460 'perms' => auth_quickaclcheck($recent->id), 461 'size' => @filesize(wikiFN($recent->id)), 474 foreach ($recents as $recent) { 476 'name' => $recent->id, 477 'lastModified' => $this->toDate($recent->revision), [all …]
|
| /dokuwiki/inc/Feed/ |
| H A D | FeedCreatorOptions.php | 39 'feed_mode' => 'recent', 71 // we only support 'list', 'search', 'recent' but accept anything so plugins can take over 72 $this->options['feed_mode'] = $INPUT->str('mode', 'recent'); 84 $this->options['items'] = max(0, $INPUT->int('num', $conf['recent']));
|
| H A D | FeedCreator.php | 42 'recent' => $this->fetchItemsFromRecentChanges(), 155 * Add recent changed pages to the feed object
|
| /dokuwiki/inc/Menu/ |
| H A D | SiteMenu.php | 14 protected $types = ['Recent', 'Media', 'Index'];
|
| /dokuwiki/vendor/openpsa/universalfeedcreator/lib/ |
| H A D | UniversalFeedCreator.php | 132 …* @param string $filename optional the filename where a recent version of the feed is s… 145 * Turns on caching and checks if there is a recent version of this feed in the cache. 153 …* @param string $filename optional the filename where a recent version of the feed is saved. If no…
|
| /dokuwiki/.github/workflows/ |
| H A D | deletedFiles.yml | 1 # This workflow updates the list of deleted files based on the recent changes and creates a pull re… 61 body: "This updates the list of deleted files based on the recent changes."
|
| /dokuwiki/conf/ |
| H A D | dokuwiki.php | 32 $conf['recent'] = 20; //how many entries to show in recent 33 $conf['recent_days'] = 7; //How many days of recent changes to keep. (days) 34 $conf['breadcrumbs'] = 10; //how many recent visited pages to show 52 …pages'] = ''; //Regexp for pages to be skipped from RSS, Search and Recent Changes 129 // 'current' - most recent revision of page
|
| /dokuwiki/vendor/kissifrot/php-ixr/ |
| H A D | README.md | 18 This fork makes it usable on more recent systems (PHP 5.4+ ones)
|
| /dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/ |
| H A D | FeedCreator.php | 225 * Turns on caching and checks if there is a recent version of this feed in the cache. 232 …* @param string $filename optional the filename where a recent version of the feed is saved. If… 254 …* @param string $filename optional the filename where a recent version of the feed is save…
|
| /dokuwiki/_test/tests/inc/ |
| H A D | template_tpl_get_action.php | 160 'type' => 'recent', 164 'do' => 'recent', 170 $this->assertEquals($expect, tpl_get_action('recent'));
|
| /dokuwiki/inc/Cache/ |
| H A D | CacheRenderer.php | 34 // - if the cache is more recent than the purgefile we know no links can have been updated
|
| /dokuwiki/_test/tests/general/ |
| H A D | general_html.test.php | 25 ['/doku.php', 'GET', ['do' => 'recent']],
|
| /dokuwiki/_test/tests/lib/exe/ |
| H A D | ajax_requests.test.php | 22 [ 'medialist', ['ns' => '', 'recent' => '', 'do' => ''], null ],
|
| /dokuwiki/_test/tests/Remote/ |
| H A D | ApiCoreTest.php | 319 'timestamp' => 0 // all recent changes 536 $conf['recent'] = 3; //set number of results per page 546 $params = ['page' => $id, 'first' => $conf['recent']]; // second page 554 $params = ['page' => $id, 'first' => $conf['recent'] * 2]; // third page 786 'timestamp' => 0 // all recent changes
|
12