]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/RecentChanges.php
Enhancement: Mozilla RecentChanges sidebar now defaults to 10 changes
[SourceForge/phpwiki.git] / lib / plugin / RecentChanges.php
1 <?php // -*-php-*-
2 rcs_id('$Id: RecentChanges.php,v 1.81 2003-11-28 21:06:31 carstenklapp 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 preg_match("/^$WikiNameRegexp\$/", $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             $lines->pushContent($this->format_revision($rev));
311
312             if ($first)
313                 $this->setValidators($rev);
314             $first = false;
315         }
316         if ($lines)
317             $html->pushContent($lines);
318         if ($first)
319             $html->pushContent(HTML::p(array('class' => 'rc-empty'),
320                                        $this->empty_message()));
321         
322         return $html;
323     }
324
325     function format_revision ($rev) {
326         $args = &$this->_args;
327
328         $class = 'rc-' . $this->importance($rev);
329
330         $time = $this->time($rev);
331         if (! $rev->get('is_minor_edit'))
332             $time = HTML::strong(array('class' => 'pageinfo-majoredit'), $time);
333
334         $line = HTML::li(array('class' => $class));
335
336
337         if ($args['difflinks'])
338             $line->pushContent($this->diffLink($rev), ' ');
339
340         if ($args['historylinks'])
341             $line->pushContent($this->historyLink($rev), ' ');
342
343         $line->pushContent($this->pageLink($rev), ' ',
344                            $time, ' ',
345                            $this->summaryAsHTML($rev),
346                            ' ... ',
347                            $this->authorLink($rev));
348         return $line;
349     }
350 }
351
352
353 class _RecentChanges_SideBarFormatter
354 extends _RecentChanges_HtmlFormatter
355 {
356     function rss_icon () {
357         //omit rssicon
358     }
359     function title () {
360         //title click opens the normal RC or RE page in the main browser frame
361         extract($this->_args);
362         $titlelink = WikiLink($show_minor ? _("RecentEdits") : _("RecentChanges"));
363         $titlelink->setAttr('target', '_content');
364         return HTML($this->logo(), $titlelink);
365     }
366     function logo () {
367         //logo click opens the HomePage in the main browser frame
368         global $Theme;
369         $img = HTML::img(array('src' => $Theme->getImageURL('logo'),
370                                'border' => 0,
371                                'align' => 'right',
372                                'style' => 'height:2.5ex'
373                                ));
374         $linkurl = WikiLink(HOME_PAGE, false, $img);
375         $linkurl->setAttr('target', '_content');
376         return $linkurl;
377     }
378
379     function authorLink ($rev) {
380         $author = $rev->get('author');
381         if ( $this->authorHasPage($author) ) {
382             $linkurl = WikiLink($author);
383             $linkurl->setAttr('target', '_content'); // way to do this using parent::authorLink ??
384             return $linkurl;
385         } else
386             return $author;
387     }
388
389     function diffLink ($rev) {
390         $linkurl = parent::diffLink($rev);
391         $linkurl->setAttr('target', '_content');
392         // FIXME: Smelly hack to get smaller diff buttons in sidebar
393         $linkurl = new RawXML(str_replace('<img ', '<img style="height:2ex" ', asXML($linkurl)));
394         return $linkurl;
395     }
396     function historyLink ($rev) {
397         $linkurl = parent::historyLink($rev);
398         $linkurl->setAttr('target', '_content');
399         // FIXME: Smelly hack to get smaller history buttons in sidebar
400         $linkurl = new RawXML(str_replace('<img ', '<img style="height:2ex" ', asXML($linkurl)));
401         return $linkurl;
402     }
403     function pageLink ($rev) {
404         $linkurl = parent::pageLink($rev);
405         $linkurl->setAttr('target', '_content');
406         return $linkurl;
407     }
408     // Overriding summaryAsHTML, because there is no way yet to
409     // return summary as transformed text with
410     // links setAttr('target', '_content') in Mozilla sidebar.
411     // So for now don't create clickable links inside summary
412     // in the sidebar, or else they target the sidebar and not the
413     // main content window.
414     function summaryAsHTML ($rev) {
415         if ( !($summary = $this->summary($rev)) )
416             return '';
417         return HTML::strong(array('class' => 'wiki-summary'),
418                                 "[",
419                                 /*TransformLinks(*/$summary,/* $rev->get('markup')),*/
420                                 "]");
421     }
422
423
424     function format ($changes) {
425         $this->_args['daylist'] = false; //don't show day buttons in Mozilla sidebar
426         $html = _RecentChanges_HtmlFormatter::format ($changes);
427         $html = HTML::div(array('class' => 'wikitext'), $html);
428         global $request;
429         $request->discardOutput();
430         
431         printf("<?xml version=\"1.0\" encoding=\"%s\"?>\n", CHARSET);
432         printf('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"');
433         printf('  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
434         printf('<html xmlns="http://www.w3.org/1999/xhtml">');
435
436         printf("<head>\n");
437         extract($this->_args);
438         $title = WIKI_NAME . $show_minor ? _("RecentEdits") : _("RecentChanges");
439         printf("<title>" . $title . "</title>\n");
440         global $Theme;
441         $css = $Theme->getCSS();
442         $css->PrintXML();
443         printf("</head>\n");
444
445         printf("<body class=\"sidebar\">\n");
446         $html->PrintXML();
447         printf("\n</body>\n");
448         printf("</html>\n");
449
450         $request->finish(); // cut rest of page processing short
451     }
452 }
453
454
455 class _RecentChanges_RssFormatter
456 extends _RecentChanges_Formatter
457 {
458     var $_absurls = true;
459
460     function time ($rev) {
461         return Iso8601DateTime($rev->get('mtime'));
462     }
463
464     function pageURI ($rev) {
465         return WikiURL($rev, '', 'absurl');
466     }
467
468     function format ($changes) {
469         
470         include_once('lib/RssWriter.php');
471         $rss = new RssWriter;
472
473
474         $rss->channel($this->channel_properties());
475
476         if (($props = $this->image_properties()))
477             $rss->image($props);
478         if (($props = $this->textinput_properties()))
479             $rss->textinput($props);
480
481         $first = true;
482         while ($rev = $changes->next()) {
483             $rss->addItem($this->item_properties($rev),
484                           $this->pageURI($rev));
485             if ($first)
486                 $this->setValidators($rev);
487             $first = false;
488         }
489
490         global $request;
491         $request->discardOutput();
492         $rss->finish();
493         printf("\n<!-- Generated by PhpWiki:\n%s-->\n", $GLOBALS['RCS_IDS']);
494
495         // Flush errors in comment, otherwise it's invalid XML.
496         global $ErrorManager;
497         if (($errors = $ErrorManager->getPostponedErrorsAsHTML()))
498             printf("\n<!-- PHP Warnings:\n%s-->\n", AsXML($errors));
499
500         $request->finish();     // NORETURN!!!!
501     }
502
503     function image_properties () {
504         global $Theme;
505
506         $img_url = AbsoluteURL($Theme->getImageURL('logo'));
507         if (!$img_url)
508             return false;
509
510         return array('title' => WIKI_NAME,
511                      'link' => WikiURL(HOME_PAGE, false, 'absurl'),
512                      'url' => $img_url);
513     }
514
515     function textinput_properties () {
516         return array('title' => _("Search"),
517                      'description' => _("Title Search"),
518                      'name' => 's',
519                      'link' => WikiURL(_("TitleSearch"), false, 'absurl'));
520     }
521
522     function channel_properties () {
523         global $request;
524
525         $rc_url = WikiURL($request->getArg('pagename'), false, 'absurl');
526
527         return array('title' => WIKI_NAME,
528                      'link' => $rc_url,
529                      'description' => _("RecentChanges"),
530                      'dc:date' => Iso8601DateTime(time()));
531
532         /* FIXME: other things one might like in <channel>:
533          * sy:updateFrequency
534          * sy:updatePeriod
535          * sy:updateBase
536          * dc:subject
537          * dc:publisher
538          * dc:language
539          * dc:rights
540          * rss091:language
541          * rss091:managingEditor
542          * rss091:webmaster
543          * rss091:lastBuildDate
544          * rss091:copyright
545          */
546     }
547
548
549
550
551     function item_properties ($rev) {
552         $page = $rev->getPage();
553         $pagename = $page->getName();
554
555         return array( 'title'           => split_pagename($pagename),
556                       'description'     => $this->summary($rev),
557                       'link'            => $this->pageURL($rev),
558                       'dc:date'         => $this->time($rev),
559                       'dc:contributor'  => $rev->get('author'),
560                       'wiki:version'    => $rev->getVersion(),
561                       'wiki:importance' => $this->importance($rev),
562                       'wiki:status'     => $this->status($rev),
563                       'wiki:diff'       => $this->diffURL($rev),
564                       'wiki:history'    => $this->historyURL($rev)
565                       );
566     }
567 }
568
569 class NonDeletedRevisionIterator extends WikiDB_PageRevisionIterator
570 {
571     /** Constructor
572      *
573      * @param $revisions object a WikiDB_PageRevisionIterator.
574      */
575     function NonDeletedRevisionIterator ($revisions, $check_current_revision = true) {
576         $this->_revisions = $revisions;
577         $this->_check_current_revision = $check_current_revision;
578     }
579
580     function next () {
581         while (($rev = $this->_revisions->next())) {
582             if ($this->_check_current_revision) {
583                 $page = $rev->getPage();
584                 $check_rev = $page->getCurrentRevision();
585             }
586             else {
587                 $check_rev = $rev;
588             }
589             if (! $check_rev->hasDefaultContents())
590                 return $rev;
591         }
592         $this->free();
593         return false;
594     }
595
596     function free () {
597         $this->_revisions->free();
598     }
599 }
600
601 class WikiPlugin_RecentChanges
602 extends WikiPlugin
603 {
604     function getName () {
605         return _("RecentChanges");
606     }
607
608     function getVersion() {
609         return preg_replace("/[Revision: $]/", '',
610                             "\$Revision: 1.81 $");
611     }
612
613     function managesValidators() {
614         // Note that this is a bit of a fig.
615         // We set validators based on the most recently changed page,
616         // but this fails when the most-recent page is deleted.
617         // (Consider that the Last-Modified time will decrease
618         // when this happens.)
619
620         // We might be better off, leaving this as false (and junking
621         // the validator logic above) and just falling back to the
622         // default behavior (handled by WikiPlugin) of just using
623         // the WikiDB global timestamp as the mtime.
624
625         // Nevertheless, for now, I leave this here, mostly as an
626         // example for how to use appendValidators() and managesValidators().
627         
628         return true;
629     }
630             
631     function getDefaultArguments() {
632         return array('days'         => 2,
633                      'show_minor'   => false,
634                      'show_major'   => true,
635                      'show_all'     => false,
636                      'show_deleted' => 'sometimes',
637                      'limit'        => false,
638                      'format'       => false,
639                      'daylist'      => false,
640                      'difflinks'    => true,
641                      'historylinks' => false,
642                      'caption'      => ''
643                      );
644     }
645
646     function getArgs ($argstr, $request, $defaults = false) {
647         $args = WikiPlugin::getArgs($argstr, $request, $defaults);
648
649         $action = $request->getArg('action');
650         if ($action != 'browse' && ! $request->isActionPage($action))
651             $args['format'] = false; // default -> HTML
652
653         if ($args['format'] == 'rss' && empty($args['limit']))
654             $args['limit'] = 15; // Fix default value for RSS.
655
656         if ($args['format'] == 'sidebar' && empty($args['limit']))
657             $args['limit'] = 10; // Fix default value for sidebar.
658
659         return $args;
660     }
661
662     function getMostRecentParams ($args) {
663         extract($args);
664
665         $params = array('include_minor_revisions' => $show_minor,
666                         'exclude_major_revisions' => !$show_major,
667                         'include_all_revisions' => !empty($show_all));
668
669         if ($limit != 0)
670             $params['limit'] = $limit;
671
672         if ($days > 0.0)
673             $params['since'] = time() - 24 * 3600 * $days;
674         elseif ($days < 0.0)
675             $params['since'] = 24 * 3600 * $days - time();
676
677
678         return $params;
679     }
680
681     function getChanges ($dbi, $args) {
682         $changes = $dbi->mostRecent($this->getMostRecentParams($args));
683
684         $show_deleted = $args['show_deleted'];
685         if ($show_deleted == 'sometimes')
686             $show_deleted = $args['show_minor'];
687
688         if (!$show_deleted)
689             $changes = new NonDeletedRevisionIterator($changes, !$args['show_all']);
690
691         return $changes;
692     }
693
694     function format ($changes, $args) {
695         global $Theme;
696         $format = $args['format'];
697
698         $fmt_class = $Theme->getFormatter('RecentChanges', $format);
699         if (!$fmt_class) {
700             if ($format == 'rss')
701                 $fmt_class = '_RecentChanges_RssFormatter';
702             elseif ($format == 'rss091') {
703                 include_once "lib/RSSWriter091.php";
704                 $fmt_class = '_RecentChanges_RssFormatter091';
705             }
706             elseif ($format == 'sidebar')
707                 $fmt_class = '_RecentChanges_SideBarFormatter';
708             else
709                 $fmt_class = '_RecentChanges_HtmlFormatter';
710         }
711
712         $fmt = new $fmt_class($args);
713         return $fmt->format($changes);
714     }
715
716     function run ($dbi, $argstr, $request) {
717         $args = $this->getArgs($argstr, $request);
718
719         // HACKish: fix for SF bug #622784  (1000 years of RecentChanges ought
720         // to be enough for anyone.)
721         $args['days'] = min($args['days'], 365000);
722         
723         // Hack alert: format() is a NORETURN for rss formatters.
724         return $this->format($this->getChanges($dbi, $args), $args);
725     }
726 };
727
728
729 class DayButtonBar extends HtmlElement {
730
731     function DayButtonBar ($plugin_args) {
732         $this->HtmlElement('p', array('class' => 'wiki-rc-action'));
733
734         // Display days selection buttons
735         extract($plugin_args);
736
737         // Custom caption
738         if (! $caption) {
739             if ($show_minor)
740                 $caption = _("Show minor edits for:");
741             elseif ($show_all)
742                 $caption = _("Show all changes for:");
743             else
744                 $caption = _("Show changes for:");
745         }
746
747         $this->pushContent($caption, ' ');
748
749         global $Theme;
750         $sep = $Theme->getButtonSeparator();
751
752         $n = 0;
753         foreach (explode(",", $daylist) as $days) {
754             if ($n++)
755                 $this->pushContent($sep);
756             $this->pushContent($this->_makeDayButton($days));
757         }
758     }
759
760     function _makeDayButton ($days) {
761         global $Theme, $request;
762
763         if ($days == 1)
764             $label = _("1 day");
765         elseif ($days < 1)
766             $label = "..."; //alldays
767         else
768             $label = sprintf(_("%s days"), abs($days));
769
770         $url = $request->getURLtoSelf(array('action' => 'browse', 'days' => $days));
771
772         return $Theme->makeButton($label, $url, 'wiki-rc-action');
773     }
774 }
775
776 // $Log: not supported by cvs2svn $
777 // Revision 1.80  2003/11/27 15:17:01  carstenklapp
778 // Theme & appearance tweaks: Converted Mozilla sidebar link into a Theme
779 // button, to allow an image button for it to be added to Themes. Output
780 // RSS button in small text size when theme has no button image.
781 //
782 // Revision 1.79  2003/04/29 14:34:20  dairiki
783 // Bug fix: "add sidebar" link didn't work when USE_PATH_INFO was false.
784 //
785 // Revision 1.78  2003/03/04 01:55:05  dairiki
786 // Fix to ensure absolute URL for logo in RSS recent changes.
787 //
788 // Revision 1.77  2003/02/27 23:23:38  dairiki
789 // Fix my breakage of CSS and sidebar RecentChanges output.
790 //
791 // Revision 1.76  2003/02/27 22:48:44  dairiki
792 // Fixes invalid HTML generated by PageHistory plugin.
793 //
794 // (<noscript> is block-level and not allowed within <p>.)
795 //
796 // Revision 1.75  2003/02/22 21:39:05  dairiki
797 // Hackish fix for SF bug #622784.
798 //
799 // (The root of the problem is clearly a PHP bug.)
800 //
801 // Revision 1.74  2003/02/21 22:52:21  dairiki
802 // Make sure to interpret relative links (like [/Subpage]) in summary
803 // relative to correct basepage.
804 //
805 // Revision 1.73  2003/02/21 04:12:06  dairiki
806 // Minor fixes for new cached markup.
807 //
808 // Revision 1.72  2003/02/17 02:19:01  dairiki
809 // Fix so that PageHistory will work when the current revision
810 // of a page has been "deleted".
811 //
812 // Revision 1.71  2003/02/16 20:04:48  dairiki
813 // Refactor the HTTP validator generation/checking code.
814 //
815 // This also fixes a number of bugs with yesterdays validator mods.
816 //
817 // Revision 1.70  2003/02/16 05:09:43  dairiki
818 // Starting to fix handling of the HTTP validator headers, Last-Modified,
819 // and ETag.
820 //
821 // Last-Modified was being set incorrectly (but only when DEBUG was not
822 // defined!)  Setting a Last-Modified without setting an appropriate
823 // Expires: and/or Cache-Control: header results in browsers caching
824 // the page unconditionally (for a certain period of time).
825 // This is generally bad, since it means people don't see updated
826 // page contents right away --- this is particularly confusing to
827 // the people who are editing pages since their edits don't show up
828 // next time they browse the page.
829 //
830 // Now, we don't allow caching of pages without revalidation
831 // (via the If-Modified-Since and/or If-None-Match request headers.)
832 // (You can allow caching by defining CACHE_CONTROL_MAX_AGE to an
833 // appropriate value in index.php, but I advise against it.)
834 //
835 // Problems:
836 //
837 //   o Even when request is aborted due to the content not being
838 //     modified, we currently still do almost all the work involved
839 //     in producing the page.  So the only real savings from all
840 //     this logic is in network bandwidth.
841 //
842 //   o Plugins which produce "dynamic" output need to be inspected
843 //     and made to call $request->addToETag() and
844 //     $request->setModificationTime() appropriately, otherwise the
845 //     page can change without the change being detected.
846 //     This leads to stale pages in cache again...
847 //
848 // Revision 1.69  2003/01/18 22:01:43  carstenklapp
849 // Code cleanup:
850 // Reformatting & tabs to spaces;
851 // Added copyleft, getVersion, getDescription, rcs_id.
852 //
853
854 // (c-file-style: "gnu")
855 // Local Variables:
856 // mode: php
857 // tab-width: 8
858 // c-basic-offset: 4
859 // c-hanging-comment-ender-p: nil
860 // indent-tabs-mode: nil
861 // End:
862 ?>