]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/RecentChanges.php
function run: @return mixed
[SourceForge/phpwiki.git] / lib / plugin / RecentChanges.php
1 <?php
2
3 /**
4  * Copyright 1999,2000,2001,2002,2007 $ThePhpWikiProgrammingTeam
5  * Copyright 2008-2009 Marc-Etienne Vargenau, Alcatel-Lucent
6  *
7  * This file is part of PhpWiki.
8  *
9  * PhpWiki is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * PhpWiki is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
21  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22  */
23
24 include_once 'lib/WikiPlugin.php';
25
26 class _RecentChanges_Formatter
27 {
28     public $_absurls = false;
29     public $action = "RecentChanges";
30
31     function _RecentChanges_Formatter($rc_args)
32     {
33         $this->_args = $rc_args;
34         $this->_diffargs = array('action' => 'diff');
35
36         if ($rc_args['show_minor'] || !$rc_args['show_major'])
37             $this->_diffargs['previous'] = 'minor';
38
39         // PageHistoryPlugin doesn't have a 'daylist' arg.
40         if (!isset($this->_args['daylist']))
41             $this->_args['daylist'] = false;
42     }
43
44     function title()
45     {
46         global $request;
47         extract($this->_args);
48         if ($author) {
49             $title = $author;
50             if ($title == '[]') {
51                 $title = $request->_user->getID();
52             }
53             $title = _("UserContribs") . ": $title";
54         } elseif ($owner) {
55             $title = $owner;
56             if ($title == '[]') {
57                 $title = $request->_user->getID();
58             }
59             $title = _("UserContribs") . ": $title";
60         } elseif ($only_new) {
61             $title = _("RecentNewPages");
62         } elseif ($show_minor) {
63             $title = _("RecentEdits");
64         } else $title = _("RecentChanges");
65
66         if (!empty($category))
67             $title = $category;
68         elseif (!empty($pagematch))
69             $title .= ":$pagematch";
70         return $title;
71     }
72
73     function include_versions_in_URLs()
74     {
75         return (bool)$this->_args['show_all'];
76     }
77
78     function date($rev)
79     {
80         global $WikiTheme;
81         return $WikiTheme->getDay($rev->get('mtime'));
82     }
83
84     function time($rev)
85     {
86         global $WikiTheme;
87         return $WikiTheme->formatTime($rev->get('mtime'));
88     }
89
90     function diffURL($rev)
91     {
92         $args = $this->_diffargs;
93         if ($this->include_versions_in_URLs())
94             $args['version'] = $rev->getVersion();
95         $page = $rev->getPage();
96         return WikiURL($page->getName(), $args, $this->_absurls);
97     }
98
99     function historyURL($rev)
100     {
101         $page = $rev->getPage();
102         return WikiURL($page, array('action' => _("PageHistory")),
103             $this->_absurls);
104     }
105
106     function pageURL($rev)
107     {
108         return WikiURL($this->include_versions_in_URLs() ? $rev : $rev->getPage(),
109             '', $this->_absurls);
110     }
111
112     function authorHasPage($author)
113     {
114         global $request;
115         $dbi = $request->getDbh();
116         return isWikiWord($author) && $dbi->isWikiPage($author);
117     }
118
119     function authorURL($author)
120     {
121         return $this->authorHasPage() ? WikiURL($author) : false;
122     }
123
124     function status($rev)
125     {
126         if ($rev->hasDefaultContents())
127             return 'deleted';
128         $page = $rev->getPage();
129         $prev = $page->getRevisionBefore($rev->getVersion());
130         if ($prev->hasDefaultContents())
131             return 'new';
132         return 'updated';
133     }
134
135     function importance($rev)
136     {
137         return $rev->get('is_minor_edit') ? 'minor' : 'major';
138     }
139
140     function summary($rev)
141     {
142         if (($summary = $rev->get('summary')))
143             return $summary;
144
145         switch ($this->status($rev)) {
146             case 'deleted':
147                 return _("Deleted");
148             case 'new':
149                 return _("New page");
150             default:
151                 return '';
152         }
153     }
154
155     function setValidators($most_recent_rev)
156     {
157         $rev = $most_recent_rev;
158         $validators = array('RecentChanges-top' =>
159         array($rev->getPageName(), $rev->getVersion()),
160             '%mtime' => $rev->get('mtime'));
161         global $request;
162         $request->appendValidators($validators);
163     }
164 }
165
166 class _RecentChanges_HtmlFormatter
167     extends _RecentChanges_Formatter
168 {
169     function diffLink($rev)
170     {
171         global $WikiTheme;
172         $button = $WikiTheme->makeButton(_("diff"), $this->diffURL($rev), 'wiki-rc-action');
173         $button->setAttr('rel', 'nofollow');
174         return HTML("(", $button, ")");
175     }
176
177     /* deletions: red, additions: green */
178     function diffSummary($rev)
179     {
180         $html = $this->diffURL($rev);
181         return '';
182     }
183
184     function historyLink($rev)
185     {
186         global $WikiTheme;
187         $button = $WikiTheme->makeButton(_("hist"), $this->historyURL($rev), 'wiki-rc-action');
188         $button->setAttr('rel', 'nofollow');
189         return HTML("(", $button, ")");
190     }
191
192     function pageLink($rev, $link_text = false)
193     {
194
195         return WikiLink($this->include_versions_in_URLs() ? $rev : $rev->getPage(),
196             'auto', $link_text);
197         /*
198         $page = $rev->getPage();
199         global $WikiTheme;
200         if ($this->include_versions_in_URLs()) {
201             $version = $rev->getVersion();
202             if ($rev->isCurrent())
203                 $version = false;
204             $exists = !$rev->hasDefaultContents();
205         }
206         else {
207             $version = false;
208             $cur = $page->getCurrentRevision();
209             $exists = !$cur->hasDefaultContents();
210         }
211         if ($exists)
212             return $WikiTheme->linkExistingWikiWord($page->getName(), $link_text, $version);
213         else
214             return $WikiTheme->linkUnknownWikiWord($page->getName(), $link_text);
215         */
216     }
217
218     function authorLink($rev)
219     {
220         return WikiLink($rev->get('author'), 'if_known');
221     }
222
223     /* Link to all users contributions (contribs and owns) */
224     function authorContribs($rev)
225     {
226         $author = $rev->get('author');
227         if (preg_match("/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/", $author)) return '';
228         return HTML('(',
229             Button(array('action' => _("RecentChanges"),
230                     'format' => 'contribs',
231                     'author' => $author,
232                     'days' => 360),
233                 _("contribs"),
234                 $author),
235             ' | ',
236             Button(array('action' => _("RecentChanges"),
237                     'format' => 'contribs',
238                     'owner' => $author,
239                     'days' => 360),
240                 _("new pages"),
241                 $author),
242             ')');
243     }
244
245     function summaryAsHTML($rev)
246     {
247         if (!($summary = $this->summary($rev)))
248             return '';
249         return HTML::span(array('class' => 'wiki-summary'),
250             "(",
251             // TransformLinks($summary, $rev->getPageName()),
252             // We do parse the summary:
253             // 1) if the summary contains {{foo}}, the template must no be
254             //    expanded
255             // 2) if the summary contains camel case, and DISABLE_MARKUP_WIKIWORD
256             //    is true, the camel case must not be linked.
257             // Side-effect: brackets are not linked. TBD.
258             $summary,
259             ")");
260     }
261
262     function format_icon($format, $filter = array())
263     {
264         global $request, $WikiTheme;
265         $args = $this->_args;
266         // remove links not used for those formats
267         unset($args['daylist']);
268         unset($args['difflinks']);
269         unset($args['historylinks']);
270         $rss_url = $request->getURLtoSelf
271         (array_merge($args,
272             array('action' => $this->action, 'format' => $format),
273             $filter));
274         return $WikiTheme->makeButton($format, $rss_url, 'rssicon');
275     }
276
277     function rss_icon($args = array())
278     {
279         return $this->format_icon("rss", $args);
280     }
281
282     function rss2_icon($args = array())
283     {
284         return $this->format_icon("rss2", $args);
285     }
286
287     function atom_icon($args = array())
288     {
289         return $this->format_icon("atom", $args);
290     }
291
292     function rdf_icon($args = array())
293     {
294         return DEBUG ? $this->format_icon("rdf", $args) : '';
295     }
296
297     function rdfs_icon($args = array())
298     {
299         return DEBUG ? $this->format_icon("rdfs", $args) : '';
300     }
301
302     function owl_icon($args = array())
303     {
304         return DEBUG ? $this->format_icon("owl", $args) : '';
305     }
306
307     function grazr_icon($args = array())
308     {
309         global $request, $WikiTheme;
310         if (is_localhost()) return '';
311         if (SERVER_PROTOCOL == "https") return '';
312         $our_url = WikiURL($request->getArg('pagename'),
313             array_merge(array('action' => $this->action, 'format' => 'rss2'), $args),
314             true);
315         $rss_url = 'http://grazr.com/gzpanel.html?' . $our_url;
316         return $WikiTheme->makeButton("grazr", $rss_url, 'rssicon');
317     }
318
319     function pre_description()
320     {
321         extract($this->_args);
322         // FIXME: say something about show_all.
323         if ($show_major && $show_minor)
324             $edits = _("edits");
325         elseif ($show_major)
326             $edits = _("major edits"); else
327             $edits = _("minor edits");
328         if (isset($caption) and $caption == _("Recent Comments"))
329             $edits = _("comments");
330         if (!empty($only_new)) {
331             $edits = _("created new pages");
332         }
333         if (!empty($author)) {
334             global $request;
335             if ($author == '[]')
336                 $author = $request->_user->getID();
337             $edits .= sprintf(_(" for pages changed by %s"), $author);
338         }
339         if (!empty($owner)) {
340             global $request;
341             if ($owner == '[]')
342                 $owner = $request->_user->getID();
343             $edits .= sprintf(_(" for pages owned by %s"), $owner);
344         }
345         if (!empty($category)) {
346             $edits .= sprintf(_(" for all pages linking to %s"), $category);
347         }
348         if (!empty($pagematch)) {
349             $edits .= sprintf(_(" for all pages matching “%s”"), $pagematch);
350         }
351         if ($timespan = $days > 0) {
352             if (intval($days) != $days)
353                 $days = sprintf("%.1f", $days);
354         }
355         $lmt = abs($limit);
356         /**
357          * Depending how this text is split up it can be tricky or
358          * impossible to translate with good grammar. So the separate
359          * strings for 1 day and %s days are necessary in this case
360          * for translating to multiple languages, due to differing
361          * overlapping ideal word cutting points.
362          *
363          * en: day/days "The %d most recent %s [during (the past] day) are listed below."
364          * de: 1 Tag    "Die %d jüngste %s [innerhalb (von des letzten] Tages) sind unten aufgelistet."
365          * de: %s days  "Die %d jüngste %s [innerhalb (von] %s Tagen) sind unten aufgelistet."
366          *
367          * en: day/days "The %d most recent %s during [the past] (day) are listed below."
368          * fr: 1 jour   "Les %d %s les plus récentes pendant [le dernier jour) sont énumérées ci-dessous."
369          * fr: %s jours "Les %d %s les plus récentes pendant [les derniers (%s] jours) sont énumérées ci-dessous."
370          */
371         if ($limit > 0) {
372             if ($timespan) {
373                 if (intval($days) == 1)
374                     $desc = fmt("The %d most recent %s during the past day are listed below.",
375                         $limit, $edits);
376                 else
377                     $desc = fmt("The %d most recent %s during the past %s days are listed below.",
378                         $limit, $edits, $days);
379             } else
380                 $desc = fmt("The %d most recent %s are listed below.",
381                     $limit, $edits);
382         } elseif ($limit < 0) { //$limit < 0 means we want oldest pages
383             if ($timespan) {
384                 if (intval($days) == 1)
385                     $desc = fmt("The %d oldest %s during the past day are listed below.",
386                         $lmt, $edits);
387                 else
388                     $desc = fmt("The %d oldest %s during the past %s days are listed below.",
389                         $lmt, $edits, $days);
390             } else
391                 $desc = fmt("The %d oldest %s are listed below.",
392                     $lmt, $edits);
393         } else {
394             if ($timespan) {
395                 if (intval($days) == 1)
396                     $desc = fmt("The most recent %s during the past day are listed below.",
397                         $edits);
398                 else
399                     $desc = fmt("The most recent %s during the past %s days are listed below.",
400                         $edits, $days);
401             } else
402                 $desc = fmt("All %s are listed below.", $edits);
403         }
404         return $desc;
405     }
406
407     function description()
408     {
409         return HTML::p(false, $this->pre_description());
410     }
411
412     /* was title */
413     function headline()
414     {
415         extract($this->_args);
416         return array($this->title(),
417             ' ',
418             $this->rss_icon(),
419             $this->rss2_icon(),
420             $this->atom_icon(),
421             $this->rdf_icon(),
422             /*$this->rdfs_icon(),
423               $this->owl_icon(),*/
424             $this->grazr_icon(),
425             $this->sidebar_link());
426     }
427
428     function empty_message()
429     {
430         if (isset($this->_args['caption']) and $this->_args['caption'] == _("Recent Comments"))
431             return _("No comments found");
432         else
433             return _("No changes found");
434     }
435
436     function sidebar_link()
437     {
438         extract($this->_args);
439         $pagetitle = $show_minor ? _("RecentEdits") : _("RecentChanges");
440
441         $sidebarurl = WikiURL($pagetitle, array('format' => 'sidebar'), 'absurl');
442
443         $addsidebarjsfunc =
444             "function addPanel() {\n"
445                 . "    window.sidebar.addPanel (\"" . sprintf("%s - %s", WIKI_NAME, $pagetitle) . "\",\n"
446                 . "       \"$sidebarurl\",\"\");\n"
447                 . "}\n";
448         $jsf = JavaScript($addsidebarjsfunc);
449
450         global $WikiTheme;
451         $sidebar_button = $WikiTheme->makeButton("sidebar", 'javascript:addPanel();', 'sidebaricon',
452             array('title' => _("Click to add this feed to your sidebar"),
453                 'style' => 'font-size:9pt;font-weight:normal; vertical-align:middle;'));
454         $addsidebarjsclick = asXML($sidebar_button);
455         $jsc = JavaScript("if ((typeof window.sidebar == 'object') &&\n"
456                 . "    (typeof window.sidebar.addPanel == 'function'))\n"
457                 . "   {\n"
458                 . "       document.write('$addsidebarjsclick');\n"
459                 . "   }\n"
460         );
461         return HTML(new RawXML("\n"), $jsf, new RawXML("\n"), $jsc);
462     }
463
464     function format($changes)
465     {
466         include_once 'lib/InlineParser.php';
467
468         $html = HTML(HTML::h2(false, $this->headline()));
469         if (($desc = $this->description()))
470             $html->pushContent($desc);
471
472         if ($this->_args['daylist']) {
473             $html->pushContent(new OptionsButtonBars($this->_args));
474         }
475
476         $last_date = '';
477         $lines = false;
478         $first = true;
479
480         while ($rev = $changes->next()) {
481             if (($date = $this->date($rev)) != $last_date) {
482                 if ($lines)
483                     $html->pushContent($lines);
484                 // for user contributions no extra date line
485                 $html->pushContent(HTML::h3($date));
486                 $lines = HTML::ul();
487                 $last_date = $date;
488
489             }
490             // enforce view permission
491             if (mayAccessPage('view', $rev->_pagename)) {
492                 $lines->pushContent($this->format_revision($rev));
493                 if ($first)
494                     $this->setValidators($rev);
495                 $first = false;
496             }
497         }
498         if ($lines)
499             $html->pushContent($lines);
500         if ($first) {
501             if ($this->_args['daylist'])
502                 $html->pushContent // force display of OptionsButtonBars
503                 (JavaScript
504                 ("document.getElementById('rc-action-body').style.display='block';"));
505             $html->pushContent(HTML::p(array('class' => 'rc-empty'),
506                 $this->empty_message()));
507         }
508
509         return $html;
510     }
511
512     function format_revision($rev)
513     {
514         global $WikiTheme;
515         $args = &$this->_args;
516
517         $class = 'rc-' . $this->importance($rev);
518
519         $time = $this->time($rev);
520         if ($rev->get('is_minor_edit')) {
521             $minor_flag = HTML(" ",
522                 HTML::span(array('class' => 'pageinfo-minoredit'),
523                     "(" . _("minor edit") . ")"));
524         } else {
525             $time = HTML::span(array('class' => 'pageinfo-majoredit'), $time);
526             $minor_flag = '';
527         }
528
529         $line = HTML::li(array('class' => $class));
530
531         if ($args['difflinks'])
532             $line->pushContent($this->diffLink($rev), ' ');
533
534         if ($args['historylinks'])
535             $line->pushContent($this->historyLink($rev), ' ');
536
537         // Do not display a link for a deleted page, just the page name
538         if ($rev->hasDefaultContents()) {
539             $linkorname = $rev->_pagename;
540         } else {
541             $linkorname = $this->pageLink($rev);
542         }
543
544         if ((isa($WikiTheme, 'WikiTheme_MonoBook')) or (isa($WikiTheme, 'WikiTheme_fusionforge'))) {
545             $line->pushContent(
546                 $args['historylinks'] ? '' : $this->historyLink($rev),
547                 ' . . ', $linkorname, '; ',
548                 $time, ' . . ',
549                 $this->authorLink($rev), ' ',
550                 $this->authorContribs($rev), ' ',
551                 $this->summaryAsHTML($rev), ' ',
552                 $minor_flag);
553         } else {
554             $line->pushContent($linkorname, ' ',
555                 $time, ' ',
556                 $this->summaryAsHTML($rev),
557                 ' ... ',
558                 $this->authorLink($rev));
559         }
560         return $line;
561     }
562
563 }
564
565 /* format=contribs: no seperation into extra dates
566  * 14:41, 3 December 2006 (hist) (diff) Talk:PhpWiki (added diff link)  (top)
567  */
568 class _RecentChanges_UserContribsFormatter
569     extends _RecentChanges_HtmlFormatter
570 {
571     function headline()
572     {
573         global $request;
574         extract($this->_args);
575         if ($author == '[]') $author = $request->_user->getID();
576         if ($owner == '[]') $owner = $request->_user->getID();
577         $author_args = $owner
578             ? array('owner' => $owner)
579             : array('author' => $author);
580         return array(_("UserContribs"), ":", $owner ? $owner : $author,
581             ' ',
582             $this->rss_icon($author_args),
583             $this->rss2_icon($author_args),
584             $this->atom_icon($author_args),
585             $this->rdf_icon($author_args),
586             $this->grazr_icon($author_args));
587     }
588
589     function format($changes)
590     {
591         include_once 'lib/InlineParser.php';
592
593         $html = HTML(HTML::h2(false, $this->headline()));
594         $lines = HTML::ol();
595         $first = true;
596         $count = 0;
597         while ($rev = $changes->next()) {
598             if (mayAccessPage('view', $rev->_pagename)) {
599                 $lines->pushContent($this->format_revision($rev));
600                 if ($first)
601                     $this->setValidators($rev);
602                 $first = false;
603             }
604             $count++;
605         }
606         $this->_args['limit'] = $count;
607         if (($desc = $this->description()))
608             $html->pushContent($desc);
609         if ($this->_args['daylist']) {
610             $html->pushContent(new OptionsButtonBars($this->_args));
611         }
612         if ($first)
613             $html->pushContent(HTML::p(array('class' => 'rc-empty'),
614                 $this->empty_message()));
615         else
616             $html->pushContent($lines);
617
618         return $html;
619     }
620
621     function format_revision($rev)
622     {
623         $class = 'rc-' . $this->importance($rev);
624         $time = $this->time($rev);
625         if (!$rev->get('is_minor_edit'))
626             $time = HTML::span(array('class' => 'pageinfo-majoredit'), $time);
627
628         $line = HTML::li(array('class' => $class));
629
630         $line->pushContent($this->time($rev), ", ");
631         $line->pushContent($this->date($rev), " ");
632         $line->pushContent($this->diffLink($rev), ' ');
633         $line->pushContent($this->historyLink($rev), ' ');
634         $line->pushContent($this->pageLink($rev), ' ',
635             $this->summaryAsHTML($rev));
636         return $line;
637     }
638 }
639
640 class _RecentChanges_SideBarFormatter
641     extends _RecentChanges_HtmlFormatter
642 {
643     function rss_icon($args = array())
644     {
645         //omit rssicon
646     }
647
648     function rss2_icon($args = array())
649     {
650     }
651
652     function headline()
653     {
654         //title click opens the normal RC or RE page in the main browser frame
655         extract($this->_args);
656         $titlelink = WikiLink($this->title());
657         $titlelink->setAttr('target', '_content');
658         return HTML($this->logo(), $titlelink);
659     }
660
661     function logo()
662     {
663         //logo click opens the HomePage in the main browser frame
664         global $WikiTheme;
665         $img = HTML::img(array('src' => $WikiTheme->getImageURL('logo'),
666             'class' => 'align-right',
667             'style' => 'height:2.5ex'
668         ));
669         $linkurl = WikiLink(HOME_PAGE, false, $img);
670         $linkurl->setAttr('target', '_content');
671         return $linkurl;
672     }
673
674     function authorLink($rev)
675     {
676         $author = $rev->get('author');
677         if ($this->authorHasPage($author)) {
678             $linkurl = WikiLink($author);
679             $linkurl->setAttr('target', '_content'); // way to do this using parent::authorLink ??
680             return $linkurl;
681         } else
682             return $author;
683     }
684
685     function diffLink($rev)
686     {
687         $linkurl = parent::diffLink($rev);
688         $linkurl->setAttr('target', '_content');
689         $linkurl->setAttr('rel', 'nofollow');
690         // FIXME: Smelly hack to get smaller diff buttons in sidebar
691         $linkurl = new RawXML(str_replace('<img ', '<img style="height:2ex" ', asXML($linkurl)));
692         return $linkurl;
693     }
694
695     function historyLink($rev)
696     {
697         $linkurl = parent::historyLink($rev);
698         $linkurl->setAttr('target', '_content');
699         // FIXME: Smelly hack to get smaller history buttons in sidebar
700         $linkurl = new RawXML(str_replace('<img ', '<img style="height:2ex" ', asXML($linkurl)));
701         return $linkurl;
702     }
703
704     function pageLink($rev, $link_text = false)
705     {
706         $linkurl = parent::pageLink($rev);
707         $linkurl->setAttr('target', '_content');
708         return $linkurl;
709     }
710
711     // Overriding summaryAsHTML, because there is no way yet to
712     // return summary as transformed text with
713     // links setAttr('target', '_content') in Mozilla sidebar.
714     // So for now don't create clickable links inside summary
715     // in the sidebar, or else they target the sidebar and not the
716     // main content window.
717     function summaryAsHTML($rev)
718     {
719         if (!($summary = $this->summary($rev)))
720             return '';
721         return HTML::span(array('class' => 'wiki-summary'),
722             "[",
723             /*TransformLinks(*/
724             $summary,
725             "]");
726     }
727
728     function format($changes)
729     {
730         $this->_args['daylist'] = false; //don't show day buttons in Mozilla sidebar
731         $html = _RecentChanges_HtmlFormatter::format($changes);
732         $html = HTML::div(array('class' => 'wikitext'), $html);
733         global $request;
734         $request->discardOutput();
735
736         print("<!DOCTYPE html>\n");
737         print("<head>\n");
738         extract($this->_args);
739         if (!empty($category))
740             $title = $category;
741         elseif (!empty($pagematch))
742             $title = $pagematch; else
743             $title = WIKI_NAME . $show_minor ? _("RecentEdits") : _("RecentChanges");
744         printf("<title>" . $title . "</title>\n");
745         global $WikiTheme;
746         $css = $WikiTheme->getCSS();
747         $css->PrintXML();
748         printf("</head>\n");
749
750         printf("<body class=\"sidebar\">\n");
751         $html->PrintXML();
752         echo '<a href="http://www.feedvalidator.org/check.cgi?url=http://phpwiki.fr/RecentChanges?format=rss"><img src="themes/default/buttons/valid-rss.png" alt="[Valid RSS]" title="Validate the RSS feed" width="44" height="15" /></a>';
753         printf("\n</body>\n");
754         printf("</html>\n");
755
756         $request->finish(); // cut rest of page processing short
757     }
758 }
759
760 class _RecentChanges_BoxFormatter
761     extends _RecentChanges_HtmlFormatter
762 {
763     function rss_icon($args = array())
764     {
765     }
766
767     function rss2_icon($args = array())
768     {
769     }
770
771     function headline()
772     {
773     }
774
775     function authorLink($rev)
776     {
777     }
778
779     function diffLink($rev)
780     {
781     }
782
783     function historyLink($rev)
784     {
785     }
786
787     function summaryAsHTML($rev)
788     {
789     }
790
791     function description()
792     {
793     }
794
795     function format($changes)
796     {
797         include_once 'lib/InlineParser.php';
798
799         $html = HTML(HTML::h2(false, $this->headline()));
800
801         $first = true;
802         while ($rev = $changes->next()) {
803             // enforce view permission
804             if (mayAccessPage('view', $rev->_pagename)) {
805                 if ($link = $this->pageLink($rev)) // some entries may be empty
806                     // (/Blog/.. interim pages)
807                     $html->pushContent(HTML::li($link));
808                 if ($first)
809                     $this->setValidators($rev);
810                 $first = false;
811             }
812         }
813         if ($first)
814             $html->pushContent(HTML::p(array('class' => 'rc-empty'),
815                 $this->empty_message()));
816         return $html;
817     }
818 }
819
820 class _RecentChanges_RssFormatter
821     extends _RecentChanges_Formatter
822 {
823     public $_absurls = true;
824
825     function time($rev)
826     {
827         return Iso8601DateTime($rev->get('mtime'));
828     }
829
830     function pageURI($rev)
831     {
832         return WikiURL($rev, array(), 'absurl');
833     }
834
835     function format($changes)
836     {
837
838         include_once 'lib/RssWriter.php';
839         $rss = new RssWriter;
840         $rss->channel($this->channel_properties());
841
842         if (($props = $this->image_properties()))
843             $rss->image($props);
844         if (($props = $this->textinput_properties()))
845             $rss->textinput($props);
846
847         $first = true;
848         while ($rev = $changes->next()) {
849             // enforce view permission
850             if (mayAccessPage('view', $rev->_pagename)) {
851                 $rss->addItem($this->item_properties($rev),
852                     $this->pageURI($rev));
853                 if ($first)
854                     $this->setValidators($rev);
855                 $first = false;
856             }
857         }
858
859         global $request;
860         $request->discardOutput();
861         $rss->finish();
862         printf("\n<!-- Generated by PhpWiki-%s -->\n", PHPWIKI_VERSION);
863
864         // Flush errors in comment, otherwise it's invalid XML.
865         global $ErrorManager;
866         if (($errors = $ErrorManager->getPostponedErrorsAsHTML()))
867             printf("\n<!-- PHP Warnings:\n%s-->\n", AsXML($errors));
868
869         $request->finish(); // NORETURN!!!!
870     }
871
872     function image_properties()
873     {
874         global $WikiTheme;
875
876         $img_url = AbsoluteURL($WikiTheme->getImageURL('logo'));
877         if (!$img_url)
878             return false;
879
880         return array('title' => WIKI_NAME,
881             'link' => WikiURL(HOME_PAGE, array(), 'absurl'),
882             'url' => $img_url);
883     }
884
885     function textinput_properties()
886     {
887         return array('title' => _("Search"),
888             'description' => _("Title Search"),
889             'name' => 's',
890             'link' => WikiURL(_("TitleSearch"), array(), 'absurl'));
891     }
892
893     function channel_properties()
894     {
895         global $request;
896
897         $rc_url = WikiURL($request->getArg('pagename'), array(), 'absurl');
898         extract($this->_args);
899         $title = WIKI_NAME;
900         $description = $this->title();
901         if ($category)
902             $title = $category;
903         elseif ($pagematch)
904             $title = $pagematch;
905         return array('title' => $title,
906             'link' => $rc_url,
907             'description' => $description,
908             'dc:date' => Iso8601DateTime(time()),
909             'dc:language' => $GLOBALS['LANG']);
910
911         /* FIXME: other things one might like in <channel>:
912          * sy:updateFrequency
913          * sy:updatePeriod
914          * sy:updateBase
915          * dc:subject
916          * dc:publisher
917          * dc:language
918          * dc:rights
919          * rss091:language
920          * rss091:managingEditor
921          * rss091:webmaster
922          * rss091:lastBuildDate
923          * rss091:copyright
924          */
925     }
926
927     function item_properties($rev)
928     {
929         $page = $rev->getPage();
930         $pagename = $page->getName();
931
932         return array('title' => SplitPagename($pagename),
933             'description' => $this->summary($rev),
934             'link' => $this->pageURL($rev),
935             'dc:date' => $this->time($rev),
936             'dc:contributor' => $rev->get('author'),
937             'wiki:version' => $rev->getVersion(),
938             'wiki:importance' => $this->importance($rev),
939             'wiki:status' => $this->status($rev),
940             'wiki:diff' => $this->diffURL($rev),
941             'wiki:history' => $this->historyURL($rev)
942         );
943     }
944 }
945
946 /** explicit application/rss+xml Content-Type,
947  * simplified xml structure (no namespace),
948  * support for xml-rpc cloud registerProcedure (not yet)
949  */
950 class _RecentChanges_Rss2Formatter
951     extends _RecentChanges_RssFormatter
952 {
953
954     function format($changes)
955     {
956         include_once 'lib/RssWriter2.php';
957         $rss = new RssWriter2;
958
959         $rss->channel($this->channel_properties());
960         if (($props = $this->cloud_properties()))
961             $rss->cloud($props);
962         if (($props = $this->image_properties()))
963             $rss->image($props);
964         if (($props = $this->textinput_properties()))
965             $rss->textinput($props);
966         $first = true;
967         while ($rev = $changes->next()) {
968             // enforce view permission
969             if (mayAccessPage('view', $rev->_pagename)) {
970                 $rss->addItem($this->item_properties($rev),
971                     $this->pageURI($rev));
972                 if ($first)
973                     $this->setValidators($rev);
974                 $first = false;
975             }
976         }
977
978         global $request;
979         $request->discardOutput();
980         $rss->finish();
981         printf("\n<!-- Generated by PhpWiki-%s -->\n", PHPWIKI_VERSION);
982         // Flush errors in comment, otherwise it's invalid XML.
983         global $ErrorManager;
984         if (($errors = $ErrorManager->getPostponedErrorsAsHTML()))
985             printf("\n<!-- PHP Warnings:\n%s-->\n", AsXML($errors));
986
987         $request->finish(); // NORETURN!!!!
988     }
989
990     function channel_properties()
991     {
992         $chann_10 = parent::channel_properties();
993         return array_merge($chann_10,
994             array('generator' => 'PhpWiki-' . PHPWIKI_VERSION,
995                 //<pubDate>Tue, 10 Jun 2003 04:00:00 GMT</pubDate>
996                 //<lastBuildDate>Tue, 10 Jun 2003 09:41:01 GMT</lastBuildDate>
997                 //<docs>http://blogs.law.harvard.edu/tech/rss</docs>
998                 'copyright' => COPYRIGHTPAGE_URL
999             ));
1000     }
1001
1002     // xml-rpc registerProcedure not yet implemented
1003     function cloud_properties()
1004     {
1005         return false;
1006     }
1007
1008     function cloud_properties_test()
1009     {
1010         return array('protocol' => 'xml-rpc', // xml-rpc or soap or http-post
1011             'registerProcedure' => 'wiki.rssPleaseNotify',
1012             'path' => DATA_PATH . '/RPC2.php',
1013             'port' => !SERVER_PORT ? '80' : (SERVER_PROTOCOL == 'https' ? '443' : '80'),
1014             'domain' => SERVER_NAME);
1015     }
1016 }
1017
1018 /** Explicit application/atom+xml Content-Type
1019  *  A weird, questionable format
1020  */
1021 class _RecentChanges_AtomFormatter
1022     extends _RecentChanges_RssFormatter
1023 {
1024
1025     function format($changes)
1026     {
1027         global $request;
1028         include_once 'lib/RssWriter.php';
1029         $rss = new AtomFeed;
1030
1031         // "channel" is called "feed" in atom
1032         $rc_url = WikiURL($request->getArg('pagename'), array(), 'absurl');
1033         extract($this->_args);
1034         $description = $this->title();
1035         $feed_props = array('title' => $description,
1036             'link' => array('rel' => "alternate",
1037                 'type' => "text/html",
1038                 'href' => $rc_url),
1039             'id' => md5($rc_url),
1040             'modified' => Iso8601DateTime(time()),
1041             'generator' => 'PhpWiki-' . PHPWIKI_VERSION,
1042             'tagline' => '');
1043         $rss->feed($feed_props);
1044         $first = true;
1045         while ($rev = $changes->next()) {
1046             // enforce view permission
1047             if (mayAccessPage('view', $rev->_pagename)) {
1048                 $props = $this->item_properties($rev);
1049                 $rss->addItem($props,
1050                     false,
1051                     $this->pageURI($rev));
1052                 if ($first)
1053                     $this->setValidators($rev);
1054                 $first = false;
1055             }
1056         }
1057
1058         $request->discardOutput();
1059         $rss->finish();
1060         printf("\n<!-- Generated by PhpWiki-%s -->\n", PHPWIKI_VERSION);
1061         // Flush errors in comment, otherwise it's invalid XML.
1062         global $ErrorManager;
1063         if (($errors = $ErrorManager->getPostponedErrorsAsHTML()))
1064             printf("\n<!-- PHP Warnings:\n%s-->\n", AsXML($errors));
1065
1066         $request->finish(); // NORETURN!!!!
1067     }
1068
1069     function item_properties($rev)
1070     {
1071         $page = $rev->getPage();
1072         $pagename = $page->getName();
1073         return array('title' => $pagename,
1074             'link' => array('rel' => 'alternate',
1075                 'type' => 'text/html',
1076                 'href' => $this->pageURL($rev)),
1077             'summary' => $this->summary($rev),
1078             'modified' => $this->time($rev) . "Z",
1079             'issued' => $this->time($rev),
1080             'created' => $this->time($rev) . "Z",
1081             'author' => new XmlElement('author', new XmlElement('name', $rev->get('author')))
1082         );
1083     }
1084 }
1085
1086 /**
1087  * Filter by non-empty
1088  */
1089 class NonDeletedRevisionIterator extends WikiDB_PageRevisionIterator
1090 {
1091     /**
1092      * @param WikiDB_PageRevisionIterator $revisions
1093      * @param bool $check_current_revision
1094      */
1095     function __construct($revisions, $check_current_revision = true)
1096     {
1097         $this->_revisions = $revisions;
1098         $this->_check_current_revision = $check_current_revision;
1099     }
1100
1101     function next()
1102     {
1103         while (($rev = $this->_revisions->next())) {
1104             if ($this->_check_current_revision) {
1105                 $page = $rev->getPage();
1106                 $check_rev = $page->getCurrentRevision();
1107             } else {
1108                 $check_rev = $rev;
1109             }
1110             if (!$check_rev->hasDefaultContents())
1111                 return $rev;
1112         }
1113         $this->free();
1114         return false;
1115     }
1116
1117 }
1118
1119 /**
1120  * Filter by only_new.
1121  * Only new created pages
1122  */
1123 class NewPageRevisionIterator extends WikiDB_PageRevisionIterator
1124 {
1125     /**
1126      * @param $revisions object a WikiDB_PageRevisionIterator.
1127      */
1128     function __construct($revisions)
1129     {
1130         $this->_revisions = $revisions;
1131     }
1132
1133     function next()
1134     {
1135         while (($rev = $this->_revisions->next())) {
1136             if ($rev->getVersion() == 1)
1137                 return $rev;
1138         }
1139         $this->free();
1140         return false;
1141     }
1142 }
1143
1144 /**
1145  * Only pages with links to a certain category
1146  */
1147 class LinkRevisionIterator extends WikiDB_PageRevisionIterator
1148 {
1149     function LinkRevisionIterator($revisions, $category)
1150     {
1151         $this->_revisions = $revisions;
1152         if (preg_match("/[\?\.\*]/", $category)) {
1153             $backlinkiter = $this->_revisions->_wikidb->linkSearch
1154             (new TextSearchQuery("*", true),
1155                 new TextSearchQuery($category, true),
1156                 "linkfrom");
1157         } else {
1158             $basepage = $GLOBALS['request']->getPage($category);
1159             $backlinkiter = $basepage->getBackLinks(true);
1160         }
1161         $this->links = array();
1162         foreach ($backlinkiter->asArray() as $p) {
1163             if (is_object($p)) $this->links[] = $p->getName();
1164             elseif (is_array($p)) $this->links[] = $p['pagename']; else $this->links[] = $p;
1165         }
1166         $backlinkiter->free();
1167         sort($this->links);
1168     }
1169
1170     function next()
1171     {
1172         while (($rev = $this->_revisions->next())) {
1173             if (binary_search($rev->getName(), $this->links) != false)
1174                 return $rev;
1175         }
1176         $this->free();
1177         return false;
1178     }
1179
1180     function free()
1181     {
1182         unset ($this->links);
1183     }
1184 }
1185
1186 class PageMatchRevisionIterator extends WikiDB_PageRevisionIterator
1187 {
1188     function PageMatchRevisionIterator($revisions, $match)
1189     {
1190         $this->_revisions = $revisions;
1191         $this->search = new TextSearchQuery($match, true);
1192     }
1193
1194     function next()
1195     {
1196         while (($rev = $this->_revisions->next())) {
1197             if ($this->search->match($rev->getName()))
1198                 return $rev;
1199         }
1200         $this->free();
1201         return false;
1202     }
1203
1204     function free()
1205     {
1206         unset ($this->search);
1207     }
1208 }
1209
1210 /**
1211  * Filter by author
1212  */
1213 class AuthorPageRevisionIterator extends WikiDB_PageRevisionIterator
1214 {
1215     function AuthorPageRevisionIterator($revisions, $author)
1216     {
1217         $this->_revisions = $revisions;
1218         $this->_author = $author;
1219     }
1220
1221     function next()
1222     {
1223         while (($rev = $this->_revisions->next())) {
1224             if ($rev->get('author_id') == $this->_author)
1225                 return $rev;
1226         }
1227         $this->free();
1228         return false;
1229     }
1230 }
1231
1232 /**
1233  * Filter by owner
1234  */
1235 class OwnerPageRevisionIterator extends WikiDB_PageRevisionIterator
1236 {
1237     function OwnerPageRevisionIterator($revisions, $owner)
1238     {
1239         $this->_revisions = $revisions;
1240         $this->_owner = $owner;
1241     }
1242
1243     function next()
1244     {
1245         while (($rev = $this->_revisions->next())) {
1246             $page = $rev->getPage();
1247             if ($page->getOwner() == $this->_owner)
1248                 return $rev;
1249         }
1250         $this->free();
1251         return false;
1252     }
1253 }
1254
1255 class WikiPlugin_RecentChanges
1256     extends WikiPlugin
1257 {
1258     function getDescription()
1259     {
1260         return _("List all recent changes in this wiki.");
1261     }
1262
1263     function managesValidators()
1264     {
1265         // Note that this is a bit of a fig.
1266         // We set validators based on the most recently changed page,
1267         // but this fails when the most-recent page is deleted.
1268         // (Consider that the Last-Modified time will decrease
1269         // when this happens.)
1270
1271         // We might be better off, leaving this as false (and junking
1272         // the validator logic above) and just falling back to the
1273         // default behavior (handled by WikiPlugin) of just using
1274         // the WikiDB global timestamp as the mtime.
1275
1276         // Nevertheless, for now, I leave this here, mostly as an
1277         // example for how to use appendValidators() and managesValidators().
1278
1279         return true;
1280     }
1281
1282     function getDefaultArguments()
1283     {
1284         return array('days' => 2,
1285             'show_minor' => false,
1286             'show_major' => true,
1287             'show_all' => false,
1288             'show_deleted' => 'sometimes',
1289             'only_new' => false,
1290             'author' => false,
1291             'owner' => false,
1292             'limit' => false,
1293             'format' => false,
1294             'daylist' => false,
1295             'difflinks' => true,
1296             'historylinks' => false,
1297             'caption' => '',
1298             'category' => '',
1299             'pagematch' => ''
1300         );
1301     }
1302
1303     /**
1304      * @param string $argstr
1305      * @param WikiRequest $request
1306      * @param array $defaults
1307      * @return array
1308      */
1309     function getArgs($argstr, $request = false, $defaults = array())
1310     {
1311         if (empty($defaults)) {
1312             $defaults = $this->getDefaultArguments();
1313         }
1314         $args = WikiPlugin::getArgs($argstr, $request, $defaults);
1315
1316         $action = $request->getArg('action');
1317         if ($action != 'browse' && !isActionPage($action))
1318             $args['format'] = false; // default -> HTML
1319
1320         if ($args['format'] == 'rss' && empty($args['limit']))
1321             $args['limit'] = 15; // Fix default value for RSS.
1322         if ($args['format'] == 'rss2' && empty($args['limit']))
1323             $args['limit'] = 15; // Fix default value for RSS2.
1324
1325         if ($args['format'] == 'sidebar' && empty($args['limit']))
1326             $args['limit'] = 10; // Fix default value for sidebar.
1327
1328         return $args;
1329     }
1330
1331     function getMostRecentParams(&$args)
1332     {
1333         $show_all = false;
1334         $show_minor = false;
1335         $show_major = false;
1336         $limit = false;
1337         extract($args);
1338
1339         $params = array('include_minor_revisions' => $show_minor,
1340             'exclude_major_revisions' => !$show_major,
1341             'include_all_revisions' => !empty($show_all));
1342         if ($limit != 0)
1343             $params['limit'] = $limit;
1344         if (!empty($args['author'])) {
1345             global $request;
1346             if ($args['author'] == '[]')
1347                 $args['author'] = $request->_user->getID();
1348             $params['author'] = $args['author'];
1349         }
1350         if (!empty($args['owner'])) {
1351             global $request;
1352             if ($args['owner'] == '[]')
1353                 $args['owner'] = $request->_user->getID();
1354             $params['owner'] = $args['owner'];
1355         }
1356         if (!empty($days)) {
1357             if ($days > 0.0)
1358                 $params['since'] = time() - 24 * 3600 * $days;
1359             elseif ($days < 0.0)
1360                 $params['since'] = 24 * 3600 * $days - time();
1361         }
1362
1363         return $params;
1364     }
1365
1366     function getChanges($dbi, $args)
1367     {
1368         $changes = $dbi->mostRecent($this->getMostRecentParams($args));
1369
1370         $show_deleted = @$args['show_deleted'];
1371         $show_all = @$args['show_all'];
1372         if ($show_deleted == 'sometimes')
1373             $show_deleted = @$args['show_minor'];
1374
1375         // only pages (e.g. PageHistory of subpages)
1376         if (!empty($args['pagematch'])) {
1377             require_once 'lib/TextSearchQuery.php';
1378             $changes = new PageMatchRevisionIterator($changes, $args['pagematch']);
1379         }
1380         if (!empty($args['category'])) {
1381             require_once 'lib/TextSearchQuery.php';
1382             $changes = new LinkRevisionIterator($changes, $args['category']);
1383         }
1384         if (!empty($args['only_new']))
1385             $changes = new NewPageRevisionIterator($changes);
1386         if (!empty($args['author']))
1387             $changes = new AuthorPageRevisionIterator($changes, $args['author']);
1388         if (!empty($args['owner']))
1389             $changes = new OwnerPageRevisionIterator($changes, $args['owner']);
1390         if (!$show_deleted)
1391             $changes = new NonDeletedRevisionIterator($changes, !$show_all);
1392
1393         return $changes;
1394     }
1395
1396     function format($changes, $args)
1397     {
1398         global $WikiTheme;
1399         $format = $args['format'];
1400
1401         $fmt_class = $WikiTheme->getFormatter('RecentChanges', $format);
1402         if (!$fmt_class) {
1403             if ($format == 'rss')
1404                 $fmt_class = '_RecentChanges_RssFormatter';
1405             elseif ($format == 'rss2')
1406                 $fmt_class = '_RecentChanges_Rss2Formatter'; elseif ($format == 'atom')
1407                 $fmt_class = '_RecentChanges_AtomFormatter'; elseif ($format == 'rss091') {
1408                 include_once 'lib/RSSWriter091.php';
1409                 $fmt_class = '_RecentChanges_RssFormatter091';
1410             } elseif ($format == 'sidebar')
1411                 $fmt_class = '_RecentChanges_SideBarFormatter'; elseif ($format == 'box')
1412                 $fmt_class = '_RecentChanges_BoxFormatter'; elseif ($format == 'contribs')
1413                 $fmt_class = '_RecentChanges_UserContribsFormatter'; else
1414                 $fmt_class = '_RecentChanges_HtmlFormatter';
1415         }
1416
1417         $fmt = new $fmt_class($args);
1418         return $fmt->format($changes);
1419     }
1420
1421     /**
1422      * @param WikiDB $dbi
1423      * @param string $argstr
1424      * @param WikiRequest $request
1425      * @param string $basepage
1426      * @return mixed
1427      */
1428     function run($dbi, $argstr, &$request, $basepage)
1429     {
1430         $args = $this->getArgs($argstr, $request);
1431
1432         // HACKish: fix for SF bug #622784  (1000 years of RecentChanges ought
1433         // to be enough for anyone.)
1434         $args['days'] = min($args['days'], 365000);
1435
1436         // Within Categories just display Category Backlinks
1437         if (empty($args['category']) and empty($args['pagematch'])
1438             and preg_match("/^Category/", $request->getArg('pagename'))
1439         ) {
1440             $args['category'] = $request->getArg('pagename');
1441         }
1442
1443         // Hack alert: format() is a NORETURN for rss formatters.
1444         return $this->format($this->getChanges($dbi, $args), $args);
1445     }
1446
1447     // box is used to display a fixed-width, narrow version with common header.
1448     // just a numbered list of limit pagenames, without date.
1449     function box($args = false, $request = false, $basepage = false)
1450     {
1451         if (!$request) $request =& $GLOBALS['request'];
1452         if (!isset($args['limit'])) $args['limit'] = 15;
1453         $args['format'] = 'box';
1454         $args['show_minor'] = false;
1455         $args['show_major'] = true;
1456         $args['show_deleted'] = 'sometimes';
1457         $args['show_all'] = false;
1458         $args['days'] = 90;
1459         return $this->makeBox(WikiLink($this->getName(), '',
1460                 SplitPagename($this->getName())),
1461             $this->format
1462             ($this->getChanges($request->_dbi, $args), $args));
1463     }
1464
1465 }
1466
1467 class OptionsButtonBars extends HtmlElement
1468 {
1469
1470     function __construct($plugin_args)
1471     {
1472         parent::__construct('fieldset', array('class' => 'wiki-rc-action'));
1473
1474         // Add ShowHideFolder button
1475         $icon = $GLOBALS['WikiTheme']->_findData('images/folderArrowOpen.png');
1476         $img = HTML::img(array('id' => 'rc-action-img',
1477             'src' => $icon,
1478             'onclick' => "showHideFolder('rc-action')",
1479             'alt' => _("Click to hide/show"),
1480             'title' => _("Click to hide/show")));
1481
1482         // Display selection buttons
1483         extract($plugin_args);
1484
1485         // Custom caption
1486         if (!$caption) {
1487             $caption = _("Show changes for:");
1488         }
1489
1490         $this->pushContent(HTML::legend($caption, ' ', $img));
1491         $table = HTML::table(array('id' => 'rc-action-body',
1492             'style' => 'display:block'));
1493
1494         $tr = HTML::tr();
1495         foreach (explode(",", $daylist) as $days_button) {
1496             $tr->pushContent($this->_makeDayButton($days_button, $days));
1497         }
1498         $table->pushContent($tr);
1499
1500         $tr = HTML::tr();
1501         $tr->pushContent($this->_makeUsersButton(0));
1502         $tr->pushContent($this->_makeUsersButton(1));
1503         $table->pushContent($tr);
1504
1505         $tr = HTML::tr();
1506         $tr->pushContent($this->_makePagesButton(0));
1507         $tr->pushContent($this->_makePagesButton(1));
1508         $table->pushContent($tr);
1509
1510         $tr = HTML::tr();
1511         $tr->pushContent($this->_makeMinorButton(1, $show_minor));
1512         $tr->pushContent($this->_makeMinorButton(0, $show_minor));
1513         $table->pushContent($tr);
1514
1515         $tr = HTML::tr();
1516         $tr->pushContent($this->_makeShowAllButton(1, $show_all));
1517         $tr->pushContent($this->_makeShowAllButton(0, $show_all));
1518         $table->pushContent($tr);
1519
1520         $tr = HTML::tr();
1521         $tr->pushContent($this->_makeNewPagesButton(0, $only_new));
1522         $tr->pushContent($this->_makeNewPagesButton(1, $only_new));
1523         $table->pushContent($tr);
1524
1525         $this->pushContent($table);
1526     }
1527
1528     private function _makeDayButton($days_button, $days)
1529     {
1530         global $request;
1531
1532         $url = $request->getURLtoSelf(array('action' => $request->getArg('action'), 'days' => $days_button));
1533         if ($days_button == 1) {
1534             $label = _("1 day");
1535         } elseif ($days_button < 1) {
1536             $label = _("All time");
1537         } else {
1538             $label = sprintf(_("%s days"), abs($days_button));
1539         }
1540         $selected = HTML::td(array('class' => 'tdselected'), $label);
1541         $unselected = HTML::td(array('class' => 'tdunselected'),
1542             HTML::a(array('href' => $url, 'class' => 'wiki-rc-action'), $label));
1543         return ($days_button == $days) ? $selected : $unselected;
1544     }
1545
1546     private function _makeUsersButton($users)
1547     {
1548         global $request;
1549
1550         if ($users == 0) {
1551             $label = _("All users");
1552             $author = "";
1553         } else {
1554             $label = _("My modifications only");
1555             $author = "[]";
1556         }
1557
1558         $selfurl = $request->getURLtoSelf(array('action' => $request->getArg('action')));
1559         $url = $request->getURLtoSelf(array('action' => $request->getArg('action'), 'author' => $author));
1560         if ($url == $selfurl) {
1561             return HTML::td(array('colspan' => 3, 'class' => 'tdselected'), $label);
1562         }
1563         return HTML::td(array('colspan' => 3, 'class' => 'tdunselected'),
1564             HTML::a(array('href' => $url, 'class' => 'wiki-rc-action'), $label));
1565     }
1566
1567     private function _makePagesButton($pages)
1568     {
1569         global $request;
1570
1571         if ($pages == 0) {
1572             $label = _("All pages");
1573             $owner = "";
1574         } else {
1575             $label = _("My pages only");
1576             $owner = "[]";
1577         }
1578
1579         $selfurl = $request->getURLtoSelf(array('action' => $request->getArg('action')));
1580         $url = $request->getURLtoSelf(array('action' => $request->getArg('action'), 'owner' => $owner));
1581         if ($url == $selfurl) {
1582             return HTML::td(array('colspan' => 3, 'class' => 'tdselected'), $label);
1583         }
1584         return HTML::td(array('colspan' => 3, 'class' => 'tdunselected'),
1585             HTML::a(array('href' => $url, 'class' => 'wiki-rc-action'), $label));
1586     }
1587
1588     private function _makeMinorButton($minor_button, $show_minor)
1589     {
1590         global $request;
1591
1592         $url = $request->getURLtoSelf(array('action' => $request->getArg('action'), 'show_minor' => $minor_button));
1593         $label = ($minor_button == 0) ? _("Major modifications only") : _("All modifications");
1594         $selected = HTML::td(array('colspan' => 3, 'class' => 'tdselected'), $label);
1595         $unselected = HTML::td(array('colspan' => 3, 'class' => 'tdunselected'),
1596             HTML::a(array('href' => $url, 'class' => 'wiki-rc-action'), $label));
1597         return ($minor_button == $show_minor) ? $selected : $unselected;
1598     }
1599
1600     private function _makeShowAllButton($showall_button, $show_all)
1601     {
1602         global $request;
1603
1604         $url = $request->getURLtoSelf(array('action' => $request->getArg('action'), 'show_all' => $showall_button));
1605         $label = ($showall_button == 0) ? _("Page once only") : _("Full changes");
1606         $selected = HTML::td(array('colspan' => 3, 'class' => 'tdselected'), $label);
1607         $unselected = HTML::td(array('colspan' => 3, 'class' => 'tdunselected'),
1608             HTML::a(array('href' => $url, 'class' => 'wiki-rc-action'), $label));
1609         return ($showall_button == $show_all) ? $selected : $unselected;
1610     }
1611
1612     private function _makeNewPagesButton($newpages_button, $only_new)
1613     {
1614         global $request;
1615
1616         $url = $request->getURLtoSelf(array('action' => $request->getArg('action'), 'only_new' => $newpages_button));
1617         $label = ($newpages_button == 0) ? _("Old and new pages") : _("New pages only");
1618         $selected = HTML::td(array('colspan' => 3, 'class' => 'tdselected'), $label);
1619         $unselected = HTML::td(array('colspan' => 3, 'class' => 'tdunselected'),
1620             HTML::a(array('href' => $url, 'class' => 'wiki-rc-action'), $label));
1621         return ($newpages_button == $only_new) ? $selected : $unselected;
1622     }
1623 }
1624
1625 // Local Variables:
1626 // mode: php
1627 // tab-width: 8
1628 // c-basic-offset: 4
1629 // c-hanging-comment-ender-p: nil
1630 // indent-tabs-mode: nil
1631 // End: