Lines Matching +full:runs +full:- +full:on
20 * @todo refactor to remove dependencies on globals
32 $output = $INPUT->has('debug') && $conf['allowdebug'];
34 $this->sendGIF();
37 $ID = cleanID($INPUT->str('id'));
43 header('Content-Type: text/plain');
49 if ($evt->advise_before()) {
52 $this->runIndexer() ||
53 $this->runSitemapper() ||
54 $this->sendDigest() ||
55 $this->runTrimRecentChanges() ||
56 $this->runTrimRecentChanges(true))
58 $evt->advise_after();
65 $this->sendGIF();
79 header('Content-Type: image/gif');
80 header('Content-Length: ' . strlen($img));
126 $trim_time = time() - $conf['recent_days'] * 86400;
154 … // however the extra robustness in making the changelog cache self-correcting is worth it
156 …$extra = $conf['recent'] - count($out_lines); // do we need extra lines do bring us up to m…
159 $out_lines = array_merge(array_slice($old_lines, -$extra), $out_lines);
165 … 'removedChangelogLines' => $extra > 0 ? array_slice($old_lines, 0, -$extra) : $old_lines,
192 * Runs the indexer for the current page
212 * The map is placed in the root directory named sitemap.xml.gz - This
242 $sent = $sub->sendBulk($ID);