]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/RecentChanges.php
enforce PagePermissions, errormsg if not Admin
[SourceForge/phpwiki.git] / lib / plugin / RecentChanges.php
1 <?php // -*-php-*-
2 rcs_id('$Id: RecentChanges.php,v 1.86 2004-03-12 13:31:43 rurban Exp $');
3 /**
4  Copyright 1999, 2000, 2001, 2002 $ThePhpWikiProgrammingTeam
5
6  This file is part of PhpWiki.
7
8  PhpWiki is free software; you can redistribute it and/or modify
9  it under the terms of the GNU General Public License as published by
10  the Free Software Foundation; either version 2 of the License, or
11  (at your option) any later version.
12
13  PhpWiki is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  GNU General Public License for more details.
17
18  You should have received a copy of the GNU General Public License
19  along with PhpWiki; if not, write to the Free Software
20  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 /**
24  */
25 class _RecentChanges_Formatter
26 {
27     var $_absurls = false;
28
29     function _RecentChanges_Formatter ($rc_args) {
30         $this->_args = $rc_args;
31         $this->_diffargs = array('action' => 'diff');
32
33         if ($rc_args['show_minor'] || !$rc_args['show_major'])
34             $this->_diffargs['previous'] = 'minor';
35
36         // PageHistoryPlugin doesn't have a 'daylist' arg.
37         if (!isset($this->_args['daylist']))
38             $this->_args['daylist'] = false;
39     }
40
41     function include_versions_in_URLs() {
42         return (bool) $this->_args['show_all'];
43     }
44
45     function date ($rev) {
46         global $Theme;
47         return $Theme->getDay($rev->get('mtime'));
48     }
49
50     function time ($rev) {
51         global $Theme;
52         return $Theme->formatTime($rev->get('mtime'));
53     }
54
55     function diffURL ($rev) {
56         $args = $this->_diffargs;
57         if ($this->include_versions_in_URLs())
58             $args['version'] = $rev->getVersion();
59         $page = $rev->getPage();
60         return WikiURL($page->getName(), $args, $this->_absurls);
61     }
62
63     function historyURL ($rev) {
64         $page = $rev->getPage();
65         return WikiURL($page, array('action' => _("PageHistory")),
66                        $this->_absurls);
67     }
68
69     function pageURL ($rev) {
70         return WikiURL($this->include_versions_in_URLs() ? $rev : $rev->getPage(),
71                        '', $this->_absurls);
72     }
73
74     function authorHasPage ($author) {
75         global $WikiNameRegexp, $request;
76         $dbi = $request->getDbh();
77         return isWikiWord($author) && $dbi->isWikiPage($author);
78     }
79
80     function authorURL ($author) {
81         return $this->authorHasPage() ? WikiURL($author) : false;
82     }
83
84
85     function status ($rev) {
86         if ($rev->hasDefaultContents())
87             return 'deleted';
88         $page = $rev->getPage();
89         $prev = $page->getRevisionBefore($rev->getVersion());
90         if ($prev->hasDefaultContents())
91             return 'new';
92         return 'updated';
93     }
94
95     function importance ($rev) {
96         return $rev->get('is_minor_edit') ? 'minor' : 'major';
97     }
98
99     function summary($rev) {
100         if ( ($summary = $rev->get('summary')) )
101             return $summary;
102
103         switch ($this->status($rev)) {
104             case 'deleted':
105                 return _("Deleted.");
106             case 'new':
107                 return _("New page.");
108             default:
109                 return '';
110         }
111     }
112
113     function setValidators($most_recent_rev) {
114         $rev = $most_recent_rev;
115         $validators = array('RecentChanges-top' =>
116                             array($rev->getPageName(), $rev->getVersion()),
117                             '%mtime' => $rev->get('mtime'));
118         global $request;
119         $request->appendValidators($validators);
120     }
121 }
122
123 class _RecentChanges_HtmlFormatter
124 extends _RecentChanges_Formatter
125 {
126     function diffLink ($rev) {
127         global $Theme;
128         return $Theme->makeButton(_("(diff)"), $this->diffURL($rev), 'wiki-rc-action');
129     }
130
131     function historyLink ($rev) {
132         global $Theme;
133         return $Theme->makeButton(_("(hist)"), $this->historyURL($rev), 'wiki-rc-action');
134     }
135
136     function pageLink ($rev, $link_text=false) {
137         $page = $rev->getPage();
138         global $Theme;
139         if ($this->include_versions_in_URLs()) {
140             $version = $rev->getVersion();
141             $exists = !$rev->hasDefaultContents();
142         }
143         else {
144             $version = false;
145             $cur = $page->getCurrentRevision();
146             $exists = !$cur->hasDefaultContents();
147         }
148         if ($exists)
149             return $Theme->linkExistingWikiWord($page->getName(), $link_text, $version);
150         else
151             return $Theme->linkUnknownWikiWord($page->getName(), $link_text);
152     }
153
154     function authorLink ($rev) {
155         $author = $rev->get('author');
156         if ( $this->authorHasPage($author) ) {
157             return WikiLink($author);
158         } else
159             return $author;
160     }
161
162     function summaryAsHTML ($rev) {
163         if ( !($summary = $this->summary($rev)) )
164             return '';
165         return  HTML::strong( array('class' => 'wiki-summary'),
166                               "[",
167                               TransformLinks($summary, $rev->get('markup'), $rev->getPageName()),
168                               "]");
169     }
170
171     function rss_icon () {
172         global $request, $Theme;
173
174         $rss_url = $request->getURLtoSelf(array('format' => 'rss'));
175         return HTML::small(array('style' => 'font-weight:normal;vertical-align:middle;'), $Theme->makeButton("RSS", $rss_url, 'rssicon'));
176     }
177
178     function description () {
179         extract($this->_args);
180         // FIXME: say something about show_all.
181         if ($show_major && $show_minor)
182             $edits = _("edits");
183         elseif ($show_major)
184             $edits = _("major edits");
185         else
186             $edits = _("minor edits");
187
188         if ($timespan = $days > 0) {
189             if (intval($days) != $days)
190                 $days = sprintf("%.1f", $days);
191         }
192         $lmt = abs($limit);
193         /**
194          * Depending how this text is split up it can be tricky or
195          * impossible to translate with good grammar. So the seperate
196          * strings for 1 day and %s days are necessary in this case
197          * for translating to multiple languages, due to differing
198          * overlapping ideal word cutting points.
199          *
200          * en: day/days "The %d most recent %s [during (the past] day) are listed below."
201          * de: 1 Tag    "Die %d jüngste %s [innerhalb (von des letzten] Tages) sind unten aufgelistet."
202          * de: %s days  "Die %d jüngste %s [innerhalb (von] %s Tagen) sind unten aufgelistet."
203          *
204          * en: day/days "The %d most recent %s during [the past] (day) are listed below."
205          * fr: 1 jour   "Les %d %s les plus récentes pendant [le dernier (d'une] jour) sont énumérées ci-dessous."
206          * fr: %s jours "Les %d %s les plus récentes pendant [les derniers (%s] jours) sont énumérées ci-dessous."
207          */
208         if ($limit > 0) {
209             if ($timespan) {
210                 if (intval($days) == 1)
211                     $desc = fmt("The %d most recent %s during the past day are listed below.",
212                                 $limit, $edits);
213                 else
214                     $desc = fmt("The %d most recent %s during the past %s days are listed below.",
215                                 $limit, $edits, $days);
216             } else
217                 $desc = fmt("The %d most recent %s are listed below.",
218                             $limit, $edits);
219         }
220         elseif ($limit < 0) {  //$limit < 0 means we want oldest pages
221             if ($timespan) {
222                 if (intval($days) == 1)
223                     $desc = fmt("The %d oldest %s during the past day are listed below.",
224                                 $lmt, $edits);
225                 else
226                     $desc = fmt("The %d oldest %s during the past %s days are listed below.",
227                                 $lmt, $edits, $days);
228             } else
229                 $desc = fmt("The %d oldest %s are listed below.",
230                             $lmt, $edits);
231         }
232
233         else {
234             if ($timespan) {
235                 if (intval($days) == 1)
236                     $desc = fmt("The most recent %s during the past day are listed below.",
237                                 $edits);
238                 else
239                     $desc = fmt("The most recent %s during the past %s days are listed below.",
240                                 $edits, $days);
241             } else
242                 $desc = fmt("All %s are listed below.", $edits);
243         }
244         return HTML::p(false, $desc);
245     }
246
247
248     function title () {
249         extract($this->_args);
250         return array($show_minor ? _("RecentEdits") : _("RecentChanges"),
251                      ' ',
252                      $this->rss_icon(),
253                      $this->sidebar_link());
254     }
255
256     function empty_message () {
257         return _("No changes found");
258     }
259     
260         
261     function sidebar_link() {
262         extract($this->_args);
263         $pagetitle = $show_minor ? _("RecentEdits") : _("RecentChanges");
264
265         global $request;
266         $sidebarurl = WikiURL($pagetitle, array('format' => 'sidebar'), 'absurl');
267
268         $addsidebarjsfunc =
269             "function addPanel() {\n"
270             ."    window.sidebar.addPanel (\"" . sprintf("%s - %s", WIKI_NAME, $pagetitle) . "\",\n"
271             ."       \"$sidebarurl\",\"\");\n"
272             ."}\n";
273         $jsf = JavaScript($addsidebarjsfunc);
274
275         global $Theme;
276         $sidebar_button = $Theme->makeButton("sidebar", 'javascript:addPanel();', 'sidebaricon');
277         $addsidebarjsclick = asXML(HTML::small(array('style' => 'font-weight:normal;vertical-align:middle;'), $sidebar_button));
278         $jsc = JavaScript("if ((typeof window.sidebar == 'object') &&\n"
279                                 ."    (typeof window.sidebar.addPanel == 'function'))\n"
280                                 ."   {\n"
281                                 ."       document.write('$addsidebarjsclick');\n"
282                                 ."   }\n"
283                                 );
284         return HTML(new RawXML("\n"), $jsf, new RawXML("\n"), $jsc);
285     }
286
287     function format ($changes) {
288         include_once('lib/InlineParser.php');
289         
290         $html = HTML(HTML::h2(false, $this->title()));
291         if (($desc = $this->description()))
292             $html->pushContent($desc);
293         
294         if ($this->_args['daylist'])
295             $html->pushContent(new DayButtonBar($this->_args));
296
297         $last_date = '';
298         $lines = false;
299         $first = true;
300
301         while ($rev = $changes->next()) {
302             if (($date = $this->date($rev)) != $last_date) {
303                 if ($lines)
304                     $html->pushContent($lines);
305                 $html->pushContent(HTML::h3($date));
306                 $lines = HTML::ul();
307                 $last_date = $date;
308
309             }
310             // enforce view permission
311             if (mayAccessPage('view',$rev->_pagename)) {
312                 $lines->pushContent($this->format_revision($rev));
313
314                 if ($first)
315                     $this->setValidators($rev);
316                 $first = false;
317             }
318         }
319         if ($lines)
320             $html->pushContent($lines);
321         if ($first)
322             $html->pushContent(HTML::p(array('class' => 'rc-empty'),
323                                        $this->empty_message()));
324         
325         return $html;
326     }
327
328     function format_revision ($rev) {
329         $args = &$this->_args;
330
331         $class = 'rc-' . $this->importance($rev);
332
333         $time = $this->time($rev);
334         if (! $rev->get('is_minor_edit'))
335             $time = HTML::strong(array('class' => 'pageinfo-majoredit'), $time);
336
337         $line = HTML::li(array('class' => $class));
338
339
340         if ($args['difflinks'])
341             $line->pushContent($this->diffLink($rev), ' ');
342
343         if ($args['historylinks'])
344             $line->pushContent($this->historyLink($rev), ' ');
345
346         $line->pushContent($this->pageLink($rev), ' ',
347                            $time, ' ',
348                            $this->summaryAsHTML($rev),
349                            ' ... ',
350                            $this->authorLink($rev));
351         return $line;
352     }
353 }
354
355
356 class _RecentChanges_SideBarFormatter
357 extends _RecentChanges_HtmlFormatter
358 {
359     function rss_icon () {
360         //omit rssicon
361     }
362     function title () {
363         //title click opens the normal RC or RE page in the main browser frame
364         extract($this->_args);
365         $titlelink = WikiLink($show_minor ? _("RecentEdits") : _("RecentChanges"));
366         $titlelink->setAttr('target', '_content');
367         return HTML($this->logo(), $titlelink);
368     }
369     function logo () {
370         //logo click opens the HomePage in the main browser frame
371         global $Theme;
372         $img = HTML::img(array('src' => $Theme->getImageURL('logo'),
373                                'border' => 0,
374                                'align' => 'right',
375                                'style' => 'height:2.5ex'
376                                ));
377         $linkurl = WikiLink(HOME_PAGE, false, $img);
378         $linkurl->setAttr('target', '_content');
379         return $linkurl;
380     }
381
382     function authorLink ($rev) {
383         $author = $rev->get('author');
384         if ( $this->authorHasPage($author) ) {
385             $linkurl = WikiLink($author);
386             $linkurl->setAttr('target', '_content'); // way to do this using parent::authorLink ??
387             return $linkurl;
388         } else
389             return $author;
390     }
391
392     function diffLink ($rev) {
393         $linkurl = parent::diffLink($rev);
394         $linkurl->setAttr('target', '_content');
395         // FIXME: Smelly hack to get smaller diff buttons in sidebar
396         $linkurl = new RawXML(str_replace('<img ', '<img style="height:2ex" ', asXML($linkurl)));
397         return $linkurl;
398     }
399     function historyLink ($rev) {
400         $linkurl = parent::historyLink($rev);
401         $linkurl->setAttr('target', '_content');
402         // FIXME: Smelly hack to get smaller history buttons in sidebar
403         $linkurl = new RawXML(str_replace('<img ', '<img style="height:2ex" ', asXML($linkurl)));
404         return $linkurl;
405     }
406     function pageLink ($rev) {
407         $linkurl = parent::pageLink($rev);
408         $linkurl->setAttr('target', '_content');
409         return $linkurl;
410     }
411     // Overriding summaryAsHTML, because there is no way yet to
412     // return summary as transformed text with
413     // links setAttr('target', '_content') in Mozilla sidebar.
414     // So for now don't create clickable links inside summary
415     // in the sidebar, or else they target the sidebar and not the
416     // main content window.
417     function summaryAsHTML ($rev) {
418         if ( !($summary = $this->summary($rev)) )
419             return '';
420         return HTML::strong(array('class' => 'wiki-summary'),
421                                 "[",
422                                 /*TransformLinks(*/$summary,/* $rev->get('markup')),*/
423                                 "]");
424     }
425
426
427     function format ($changes) {
428         $this->_args['daylist'] = false; //don't show day buttons in Mozilla sidebar
429         $html = _RecentChanges_HtmlFormatter::format ($changes);
430         $html = HTML::div(array('class' => 'wikitext'), $html);
431         global $request;
432         $request->discardOutput();
433         
434         printf("<?xml version=\"1.0\" encoding=\"%s\"?>\n", CHARSET);
435         printf('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"');
436         printf('  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
437         printf('<html xmlns="http://www.w3.org/1999/xhtml">');
438
439         printf("<head>\n");
440         extract($this->_args);
441         $title = WIKI_NAME . $show_minor ? _("RecentEdits") : _("RecentChanges");
442         printf("<title>" . $title . "</title>\n");
443         global $Theme;
444         $css = $Theme->getCSS();
445         $css->PrintXML();
446         printf("</head>\n");
447
448         printf("<body class=\"sidebar\">\n");
449         $html->PrintXML();
450         printf("\n</body>\n");
451         printf("</html>\n");
452
453         $request->finish(); // cut rest of page processing short
454     }
455 }
456
457
458 class _RecentChanges_RssFormatter
459 extends _RecentChanges_Formatter
460 {
461     var $_absurls = true;
462
463     function time ($rev) {
464         return Iso8601DateTime($rev->get('mtime'));
465     }
466
467     function pageURI ($rev) {
468         return WikiURL($rev, '', 'absurl');
469     }
470
471     function format ($changes) {
472         
473         include_once('lib/RssWriter.php');
474         $rss = new RssWriter;
475
476
477         $rss->channel($this->channel_properties());
478
479         if (($props = $this->image_properties()))
480             $rss->image($props);
481         if (($props = $this->textinput_properties()))
482             $rss->textinput($props);
483
484         $first = true;
485         while ($rev = $changes->next()) {
486             // enforce view permission
487             if (mayAccessPage('view',$rev->_pagename)) {
488                 $rss->addItem($this->item_properties($rev),
489                               $this->pageURI($rev));
490                 if ($first)
491                     $this->setValidators($rev);
492                 $first = false;
493             }
494         }
495
496         global $request;
497         $request->discardOutput();
498         $rss->finish();
499         printf("\n<!-- Generated by PhpWiki:\n%s-->\n", $GLOBALS['RCS_IDS']);
500
501         // Flush errors in comment, otherwise it's invalid XML.
502         global $ErrorManager;
503         if (($errors = $ErrorManager->getPostponedErrorsAsHTML()))
504             printf("\n<!-- PHP Warnings:\n%s-->\n", AsXML($errors));
505
506         $request->finish();     // NORETURN!!!!
507     }
508
509     function image_properties () {
510         global $Theme;
511
512         $img_url = AbsoluteURL($Theme->getImageURL('logo'));
513         if (!$img_url)
514             return false;
515
516         return array('title' => WIKI_NAME,
517                      'link' => WikiURL(HOME_PAGE, false, 'absurl'),
518                      'url' => $img_url);
519     }
520
521     function textinput_properties () {
522         return array('title' => _("Search"),
523                      'description' => _("Title Search"),
524                      'name' => 's',
525                      'link' => WikiURL(_("TitleSearch"), false, 'absurl'));
526     }
527
528     function channel_properties () {
529         global $request;
530
531         $rc_url = WikiURL($request->getArg('pagename'), false, 'absurl');
532
533         return array('title' => WIKI_NAME,
534                      'link' => $rc_url,
535                      'description' => _("RecentChanges"),
536                      'dc:date' => Iso8601DateTime(time()));
537
538         /* FIXME: other things one might like in <channel>:
539          * sy:updateFrequency
540          * sy:updatePeriod
541          * sy:updateBase
542          * dc:subject
543          * dc:publisher
544          * dc:language
545          * dc:rights
546          * rss091:language
547          * rss091:managingEditor
548          * rss091:webmaster
549          * rss091:lastBuildDate
550          * rss091:copyright
551          */
552     }
553
554
555
556
557     function item_properties ($rev) {
558         $page = $rev->getPage();
559         $pagename = $page->getName();
560
561         return array( 'title'           => split_pagename($pagename),
562                       'description'     => $this->summary($rev),
563                       'link'            => $this->pageURL($rev),
564                       'dc:date'         => $this->time($rev),
565                       'dc:contributor'  => $rev->get('author'),
566                       'wiki:version'    => $rev->getVersion(),
567                       'wiki:importance' => $this->importance($rev),
568                       'wiki:status'     => $this->status($rev),
569                       'wiki:diff'       => $this->diffURL($rev),
570                       'wiki:history'    => $this->historyURL($rev)
571                       );
572     }
573 }
574
575 class NonDeletedRevisionIterator extends WikiDB_PageRevisionIterator
576 {
577     /** Constructor
578      *
579      * @param $revisions object a WikiDB_PageRevisionIterator.
580      */
581     function NonDeletedRevisionIterator ($revisions, $check_current_revision = true) {
582         $this->_revisions = $revisions;
583         $this->_check_current_revision = $check_current_revision;
584     }
585
586     function next () {
587         while (($rev = $this->_revisions->next())) {
588             if ($this->_check_current_revision) {
589                 $page = $rev->getPage();
590                 $check_rev = $page->getCurrentRevision();
591             }
592             else {
593                 $check_rev = $rev;
594             }
595             if (! $check_rev->hasDefaultContents())
596                 return $rev;
597         }
598         $this->free();
599         return false;
600     }
601
602     function free () {
603         $this->_revisions->free();
604     }
605 }
606
607 class WikiPlugin_RecentChanges
608 extends WikiPlugin
609 {
610     function getName () {
611         return _("RecentChanges");
612     }
613
614     function getVersion() {
615         return preg_replace("/[Revision: $]/", '',
616                             "\$Revision: 1.86 $");
617     }
618
619     function managesValidators() {
620         // Note that this is a bit of a fig.
621         // We set validators based on the most recently changed page,
622         // but this fails when the most-recent page is deleted.
623         // (Consider that the Last-Modified time will decrease
624         // when this happens.)
625
626         // We might be better off, leaving this as false (and junking
627         // the validator logic above) and just falling back to the
628         // default behavior (handled by WikiPlugin) of just using
629         // the WikiDB global timestamp as the mtime.
630
631         // Nevertheless, for now, I leave this here, mostly as an
632         // example for how to use appendValidators() and managesValidators().
633         
634         return true;
635     }
636             
637     function getDefaultArguments() {
638         return array('days'         => 2,
639                      'show_minor'   => false,
640                      'show_major'   => true,
641                      'show_all'     => false,
642                      'show_deleted' => 'sometimes',
643                      'limit'        => false,
644                      'format'       => false,
645                      'daylist'      => false,
646                      'difflinks'    => true,
647                      'historylinks' => false,
648                      'caption'      => ''
649                      );
650     }
651
652     function getArgs ($argstr, $request, $defaults = false) {
653         $args = WikiPlugin::getArgs($argstr, $request, $defaults);
654
655         $action = $request->getArg('action');
656         if ($action != 'browse' && ! $request->isActionPage($action))
657             $args['format'] = false; // default -> HTML
658
659         if ($args['format'] == 'rss' && empty($args['limit']))
660             $args['limit'] = 15; // Fix default value for RSS.
661
662         if ($args['format'] == 'sidebar' && empty($args['limit']))
663             $args['limit'] = 10; // Fix default value for sidebar.
664
665         return $args;
666     }
667
668     function getMostRecentParams ($args) {
669         extract($args);
670
671         $params = array('include_minor_revisions' => $show_minor,
672                         'exclude_major_revisions' => !$show_major,
673                         'include_all_revisions' => !empty($show_all));
674
675         if ($limit != 0)
676             $params['limit'] = $limit;
677
678         if ($days > 0.0)
679             $params['since'] = time() - 24 * 3600 * $days;
680         elseif ($days < 0.0)
681             $params['since'] = 24 * 3600 * $days - time();
682
683
684         return $params;
685     }
686
687     function getChanges ($dbi, $args) {
688         $changes = $dbi->mostRecent($this->getMostRecentParams($args));
689
690         $show_deleted = $args['show_deleted'];
691         if ($show_deleted == 'sometimes')
692             $show_deleted = $args['show_minor'];
693
694         if (!$show_deleted)
695             $changes = new NonDeletedRevisionIterator($changes, !$args['show_all']);
696
697         return $changes;
698     }
699
700     function format ($changes, $args) {
701         global $Theme;
702         $format = $args['format'];
703
704         $fmt_class = $Theme->getFormatter('RecentChanges', $format);
705         if (!$fmt_class) {
706             if ($format == 'rss')
707                 $fmt_class = '_RecentChanges_RssFormatter';
708             elseif ($format == 'rss091') {
709                 include_once "lib/RSSWriter091.php";
710                 $fmt_class = '_RecentChanges_RssFormatter091';
711             }
712             elseif ($format == 'sidebar')
713                 $fmt_class = '_RecentChanges_SideBarFormatter';
714             else
715                 $fmt_class = '_RecentChanges_HtmlFormatter';
716         }
717
718         $fmt = new $fmt_class($args);
719         return $fmt->format($changes);
720     }
721
722     function run($dbi, $argstr, &$request, $basepage) {
723         $args = $this->getArgs($argstr, $request);
724
725         // HACKish: fix for SF bug #622784  (1000 years of RecentChanges ought
726         // to be enough for anyone.)
727         $args['days'] = min($args['days'], 365000);
728         
729         // Hack alert: format() is a NORETURN for rss formatters.
730         return $this->format($this->getChanges($dbi, $args), $args);
731     }
732 };
733
734
735 class DayButtonBar extends HtmlElement {
736
737     function DayButtonBar ($plugin_args) {
738         $this->HtmlElement('p', array('class' => 'wiki-rc-action'));
739
740         // Display days selection buttons
741         extract($plugin_args);
742
743         // Custom caption
744         if (! $caption) {
745             if ($show_minor)
746                 $caption = _("Show minor edits for:");
747             elseif ($show_all)
748                 $caption = _("Show all changes for:");
749             else
750                 $caption = _("Show changes for:");
751         }
752
753         $this->pushContent($caption, ' ');
754
755         global $Theme;
756         $sep = $Theme->getButtonSeparator();
757
758         $n = 0;
759         foreach (explode(",", $daylist) as $days) {
760             if ($n++)
761                 $this->pushContent($sep);
762             $this->pushContent($this->_makeDayButton($days));
763         }
764     }
765
766     function _makeDayButton ($days) {
767         global $Theme, $request;
768
769         if ($days == 1)
770             $label = _("1 day");
771         elseif ($days < 1)
772             $label = "..."; //alldays
773         else
774             $label = sprintf(_("%s days"), abs($days));
775
776         $url = $request->getURLtoSelf(array('action' => 'browse', 'days' => $days));
777
778         return $Theme->makeButton($label, $url, 'wiki-rc-action');
779     }
780 }
781
782 // $Log: not supported by cvs2svn $
783 // Revision 1.85  2004/02/17 12:11:36  rurban
784 // added missing 4th basepage arg at plugin->run() to almost all plugins. This caused no harm so far, because it was silently dropped on normal usage. However on plugin internal ->run invocations it failed. (InterWikiSearch, IncludeSiteMap, ...)
785 //
786 // Revision 1.84  2004/02/15 22:29:42  rurban
787 // revert premature performance fix
788 //
789 // Revision 1.83  2004/02/15 21:34:37  rurban
790 // PageList enhanced and improved.
791 // fixed new WikiAdmin... plugins
792 // editpage, Theme with exp. htmlarea framework
793 //   (htmlarea yet committed, this is really questionable)
794 // WikiUser... code with better session handling for prefs
795 // enhanced UserPreferences (again)
796 // RecentChanges for show_deleted: how should pages be deleted then?
797 //
798 // Revision 1.82  2004/01/25 03:58:43  rurban
799 // use stdlib:isWikiWord()
800 //
801 // Revision 1.81  2003/11/28 21:06:31  carstenklapp
802 // Enhancement: Mozilla RecentChanges sidebar now defaults to 10 changes
803 // instead of 1. Make diff buttons smaller with css. Added description
804 // line back in at the top.
805 //
806 // Revision 1.80  2003/11/27 15:17:01  carstenklapp
807 // Theme & appearance tweaks: Converted Mozilla sidebar link into a Theme
808 // button, to allow an image button for it to be added to Themes. Output
809 // RSS button in small text size when theme has no button image.
810 //
811 // Revision 1.79  2003/04/29 14:34:20  dairiki
812 // Bug fix: "add sidebar" link didn't work when USE_PATH_INFO was false.
813 //
814 // Revision 1.78  2003/03/04 01:55:05  dairiki
815 // Fix to ensure absolute URL for logo in RSS recent changes.
816 //
817 // Revision 1.77  2003/02/27 23:23:38  dairiki
818 // Fix my breakage of CSS and sidebar RecentChanges output.
819 //
820 // Revision 1.76  2003/02/27 22:48:44  dairiki
821 // Fixes invalid HTML generated by PageHistory plugin.
822 //
823 // (<noscript> is block-level and not allowed within <p>.)
824 //
825 // Revision 1.75  2003/02/22 21:39:05  dairiki
826 // Hackish fix for SF bug #622784.
827 //
828 // (The root of the problem is clearly a PHP bug.)
829 //
830 // Revision 1.74  2003/02/21 22:52:21  dairiki
831 // Make sure to interpret relative links (like [/Subpage]) in summary
832 // relative to correct basepage.
833 //
834 // Revision 1.73  2003/02/21 04:12:06  dairiki
835 // Minor fixes for new cached markup.
836 //
837 // Revision 1.72  2003/02/17 02:19:01  dairiki
838 // Fix so that PageHistory will work when the current revision
839 // of a page has been "deleted".
840 //
841 // Revision 1.71  2003/02/16 20:04:48  dairiki
842 // Refactor the HTTP validator generation/checking code.
843 //
844 // This also fixes a number of bugs with yesterdays validator mods.
845 //
846 // Revision 1.70  2003/02/16 05:09:43  dairiki
847 // Starting to fix handling of the HTTP validator headers, Last-Modified,
848 // and ETag.
849 //
850 // Last-Modified was being set incorrectly (but only when DEBUG was not
851 // defined!)  Setting a Last-Modified without setting an appropriate
852 // Expires: and/or Cache-Control: header results in browsers caching
853 // the page unconditionally (for a certain period of time).
854 // This is generally bad, since it means people don't see updated
855 // page contents right away --- this is particularly confusing to
856 // the people who are editing pages since their edits don't show up
857 // next time they browse the page.
858 //
859 // Now, we don't allow caching of pages without revalidation
860 // (via the If-Modified-Since and/or If-None-Match request headers.)
861 // (You can allow caching by defining CACHE_CONTROL_MAX_AGE to an
862 // appropriate value in index.php, but I advise against it.)
863 //
864 // Problems:
865 //
866 //   o Even when request is aborted due to the content not being
867 //     modified, we currently still do almost all the work involved
868 //     in producing the page.  So the only real savings from all
869 //     this logic is in network bandwidth.
870 //
871 //   o Plugins which produce "dynamic" output need to be inspected
872 //     and made to call $request->addToETag() and
873 //     $request->setModificationTime() appropriately, otherwise the
874 //     page can change without the change being detected.
875 //     This leads to stale pages in cache again...
876 //
877 // Revision 1.69  2003/01/18 22:01:43  carstenklapp
878 // Code cleanup:
879 // Reformatting & tabs to spaces;
880 // Added copyleft, getVersion, getDescription, rcs_id.
881 //
882
883 // (c-file-style: "gnu")
884 // Local Variables:
885 // mode: php
886 // tab-width: 8
887 // c-basic-offset: 4
888 // c-hanging-comment-ender-p: nil
889 // indent-tabs-mode: nil
890 // End:
891 ?>