Lines Matching +full:runs +full:- +full:on
23 * @todo refactor to remove dependencies on globals
35 $output = $INPUT->has('debug') && $conf['allowdebug'];
37 $this->sendGIF();
40 $ID = cleanID($INPUT->str('id'));
46 header('Content-Type: text/plain');
52 if ($evt->advise_before()) {
55 $this->runIndexer() ||
56 $this->runSitemapper() ||
57 $this->sendDigest() ||
58 $this->runTrimRecentChanges() ||
59 $this->runTrimRecentChanges(true))
61 $evt->advise_after();
68 $this->sendGIF();
82 header('Content-Type: image/gif');
83 header('Content-Length: ' . strlen($img));
129 $trim_time = time() - $conf['recent_days'] * 86400;
157 … // however the extra robustness in making the changelog cache self-correcting is worth it
159 …$extra = $conf['recent'] - count($out_lines); // do we need extra lines do bring us up to m…
162 $out_lines = array_merge(array_slice($old_lines, -$extra), $out_lines);
168 … 'removedChangelogLines' => $extra > 0 ? array_slice($old_lines, 0, -$extra) : $old_lines,
195 * Runs the indexer for the current page
210 $indexer = (new Indexer())->setLogger(function ($msg) {
214 $indexer->deletePage($ID, true);
216 $indexer->addPage($ID, true);
220 $msg = $e::class . ' : ' . $e->getMessage();
230 * The map is placed in the root directory named sitemap.xml.gz - This
260 $sent = $sub->sendBulk($ID);