]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/RecentChanges.php
Remove unused variables
[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     var $_absurls = false;
29     var $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->get('markup'), $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 (d'une] 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         $args = &$this->_args;
624         $class = 'rc-' . $this->importance($rev);
625         $time = $this->time($rev);
626         if (!$rev->get('is_minor_edit'))
627             $time = HTML::span(array('class' => 'pageinfo-majoredit'), $time);
628
629         $line = HTML::li(array('class' => $class));
630
631         $line->pushContent($this->time($rev), ", ");
632         $line->pushContent($this->date($rev), " ");
633         $line->pushContent($this->diffLink($rev), ' ');
634         $line->pushContent($this->historyLink($rev), ' ');
635         $line->pushContent($this->pageLink($rev), ' ',
636             $this->summaryAsHTML($rev));
637         return $line;
638     }
639 }
640
641 class _RecentChanges_SideBarFormatter
642     extends _RecentChanges_HtmlFormatter
643 {
644     function rss_icon($args = array())
645     {
646         //omit rssicon
647     }
648
649     function rss2_icon($args = array())
650     {
651     }
652
653     function headline()
654     {
655         //title click opens the normal RC or RE page in the main browser frame
656         extract($this->_args);
657         $titlelink = WikiLink($this->title());
658         $titlelink->setAttr('target', '_content');
659         return HTML($this->logo(), $titlelink);
660     }
661
662     function logo()
663     {
664         //logo click opens the HomePage in the main browser frame
665         global $WikiTheme;
666         $img = HTML::img(array('src' => $WikiTheme->getImageURL('logo'),
667             'align' => 'right',
668             'style' => 'height:2.5ex'
669         ));
670         $linkurl = WikiLink(HOME_PAGE, false, $img);
671         $linkurl->setAttr('target', '_content');
672         return $linkurl;
673     }
674
675     function authorLink($rev)
676     {
677         $author = $rev->get('author');
678         if ($this->authorHasPage($author)) {
679             $linkurl = WikiLink($author);
680             $linkurl->setAttr('target', '_content'); // way to do this using parent::authorLink ??
681             return $linkurl;
682         } else
683             return $author;
684     }
685
686     function diffLink($rev)
687     {
688         $linkurl = parent::diffLink($rev);
689         $linkurl->setAttr('target', '_content');
690         $linkurl->setAttr('rel', 'nofollow');
691         // FIXME: Smelly hack to get smaller diff buttons in sidebar
692         $linkurl = new RawXML(str_replace('<img ', '<img style="height:2ex" ', asXML($linkurl)));
693         return $linkurl;
694     }
695
696     function historyLink($rev)
697     {
698         $linkurl = parent::historyLink($rev);
699         $linkurl->setAttr('target', '_content');
700         // FIXME: Smelly hack to get smaller history buttons in sidebar
701         $linkurl = new RawXML(str_replace('<img ', '<img style="height:2ex" ', asXML($linkurl)));
702         return $linkurl;
703     }
704
705     function pageLink($rev, $link_text = false)
706     {
707         $linkurl = parent::pageLink($rev);
708         $linkurl->setAttr('target', '_content');
709         return $linkurl;
710     }
711
712     // Overriding summaryAsHTML, because there is no way yet to
713     // return summary as transformed text with
714     // links setAttr('target', '_content') in Mozilla sidebar.
715     // So for now don't create clickable links inside summary
716     // in the sidebar, or else they target the sidebar and not the
717     // main content window.
718     function summaryAsHTML($rev)
719     {
720         if (!($summary = $this->summary($rev)))
721             return '';
722         return HTML::span(array('class' => 'wiki-summary'),
723             "[",
724             /*TransformLinks(*/
725             $summary, /* $rev->get('markup')),*/
726             "]");
727     }
728
729     function format($changes)
730     {
731         $this->_args['daylist'] = false; //don't show day buttons in Mozilla sidebar
732         $html = _RecentChanges_HtmlFormatter::format($changes);
733         $html = HTML::div(array('class' => 'wikitext'), $html);
734         global $request;
735         $request->discardOutput();
736
737         printf("<?xml version=\"1.0\" encoding=\"%s\"?>\n", $GLOBALS['charset']);
738         printf('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"');
739         printf('  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
740         printf('<html xmlns="http://www.w3.org/1999/xhtml">');
741
742         printf("<head>\n");
743         extract($this->_args);
744         if (!empty($category))
745             $title = $category;
746         elseif (!empty($pagematch))
747             $title = $pagematch; else
748             $title = WIKI_NAME . $show_minor ? _("RecentEdits") : _("RecentChanges");
749         printf("<title>" . $title . "</title>\n");
750         global $WikiTheme;
751         $css = $WikiTheme->getCSS();
752         $css->PrintXML();
753         printf("</head>\n");
754
755         printf("<body class=\"sidebar\">\n");
756         $html->PrintXML();
757         echo '<a href="http://www.feedvalidator.org/check.cgi?url=http://phpwiki.org/RecentChanges?format=rss"><img src="themes/default/buttons/valid-rss.png" alt="[Valid RSS]" title="Validate the RSS feed" width="44" height="15" /></a>';
758         printf("\n</body>\n");
759         printf("</html>\n");
760
761         $request->finish(); // cut rest of page processing short
762     }
763 }
764
765 class _RecentChanges_BoxFormatter
766     extends _RecentChanges_HtmlFormatter
767 {
768     function rss_icon($args = array())
769     {
770     }
771
772     function rss2_icon($args = array())
773     {
774     }
775
776     function headline()
777     {
778     }
779
780     function authorLink($rev)
781     {
782     }
783
784     function diffLink($rev)
785     {
786     }
787
788     function historyLink($rev)
789     {
790     }
791
792     function summaryAsHTML($rev)
793     {
794     }
795
796     function description()
797     {
798     }
799
800     function format($changes)
801     {
802         include_once 'lib/InlineParser.php';
803         $first = true;
804         while ($rev = $changes->next()) {
805             // enforce view permission
806             if (mayAccessPage('view', $rev->_pagename)) {
807                 if ($link = $this->pageLink($rev)) // some entries may be empty
808                     // (/Blog/.. interim pages)
809                     $html->pushContent(HTML::li($link));
810                 if ($first)
811                     $this->setValidators($rev);
812                 $first = false;
813             }
814         }
815         if ($first)
816             $html->pushContent(HTML::p(array('class' => 'rc-empty'),
817                 $this->empty_message()));
818         return $html;
819     }
820 }
821
822 class _RecentChanges_RssFormatter
823     extends _RecentChanges_Formatter
824 {
825     var $_absurls = true;
826
827     function time($rev)
828     {
829         return Iso8601DateTime($rev->get('mtime'));
830     }
831
832     function pageURI($rev)
833     {
834         return WikiURL($rev, '', 'absurl');
835     }
836
837     function format($changes)
838     {
839
840         include_once 'lib/RssWriter.php';
841         $rss = new RssWriter;
842         $rss->channel($this->channel_properties());
843
844         if (($props = $this->image_properties()))
845             $rss->image($props);
846         if (($props = $this->textinput_properties()))
847             $rss->textinput($props);
848
849         $first = true;
850         while ($rev = $changes->next()) {
851             // enforce view permission
852             if (mayAccessPage('view', $rev->_pagename)) {
853                 $rss->addItem($this->item_properties($rev),
854                     $this->pageURI($rev));
855                 if ($first)
856                     $this->setValidators($rev);
857                 $first = false;
858             }
859         }
860
861         global $request;
862         $request->discardOutput();
863         $rss->finish();
864         //header("Content-Type: application/rss+xml; charset=" . $GLOBALS['charset']);
865         printf("\n<!-- Generated by PhpWiki-%s -->\n", PHPWIKI_VERSION);
866
867         // Flush errors in comment, otherwise it's invalid XML.
868         global $ErrorManager;
869         if (($errors = $ErrorManager->getPostponedErrorsAsHTML()))
870             printf("\n<!-- PHP Warnings:\n%s-->\n", AsXML($errors));
871
872         $request->finish(); // NORETURN!!!!
873     }
874
875     function image_properties()
876     {
877         global $WikiTheme;
878
879         $img_url = AbsoluteURL($WikiTheme->getImageURL('logo'));
880         if (!$img_url)
881             return false;
882
883         return array('title' => WIKI_NAME,
884             'link' => WikiURL(HOME_PAGE, false, 'absurl'),
885             'url' => $img_url);
886     }
887
888     function textinput_properties()
889     {
890         return array('title' => _("Search"),
891             'description' => _("Title Search"),
892             'name' => 's',
893             'link' => WikiURL(_("TitleSearch"), false, 'absurl'));
894     }
895
896     function channel_properties()
897     {
898         global $request;
899
900         $rc_url = WikiURL($request->getArg('pagename'), false, 'absurl');
901         extract($this->_args);
902         $title = WIKI_NAME;
903         $description = $this->title();
904         if ($category)
905             $title = $category;
906         elseif ($pagematch)
907             $title = $pagematch;
908         return array('title' => $title,
909             'link' => $rc_url,
910             'description' => $description,
911             'dc:date' => Iso8601DateTime(time()),
912             'dc:language' => $GLOBALS['LANG']);
913
914         /* FIXME: other things one might like in <channel>:
915          * sy:updateFrequency
916          * sy:updatePeriod
917          * sy:updateBase
918          * dc:subject
919          * dc:publisher
920          * dc:language
921          * dc:rights
922          * rss091:language
923          * rss091:managingEditor
924          * rss091:webmaster
925          * rss091:lastBuildDate
926          * rss091:copyright
927          */
928     }
929
930     function item_properties($rev)
931     {
932         $page = $rev->getPage();
933         $pagename = $page->getName();
934
935         return array('title' => SplitPagename($pagename),
936             'description' => $this->summary($rev),
937             'link' => $this->pageURL($rev),
938             'dc:date' => $this->time($rev),
939             'dc:contributor' => $rev->get('author'),
940             'wiki:version' => $rev->getVersion(),
941             'wiki:importance' => $this->importance($rev),
942             'wiki:status' => $this->status($rev),
943             'wiki:diff' => $this->diffURL($rev),
944             'wiki:history' => $this->historyURL($rev)
945         );
946     }
947 }
948
949 /** explicit application/rss+xml Content-Type,
950  * simplified xml structure (no namespace),
951  * support for xml-rpc cloud registerProcedure (not yet)
952  */
953 class _RecentChanges_Rss2Formatter
954     extends _RecentChanges_RssFormatter
955 {
956
957     function format($changes)
958     {
959         include_once 'lib/RssWriter2.php';
960         $rss = new RssWriter2;
961
962         $rss->channel($this->channel_properties());
963         if (($props = $this->cloud_properties()))
964             $rss->cloud($props);
965         if (($props = $this->image_properties()))
966             $rss->image($props);
967         if (($props = $this->textinput_properties()))
968             $rss->textinput($props);
969         $first = true;
970         while ($rev = $changes->next()) {
971             // enforce view permission
972             if (mayAccessPage('view', $rev->_pagename)) {
973                 $rss->addItem($this->item_properties($rev),
974                     $this->pageURI($rev));
975                 if ($first)
976                     $this->setValidators($rev);
977                 $first = false;
978             }
979         }
980
981         global $request;
982         $request->discardOutput();
983         $rss->finish();
984         //header("Content-Type: application/rss+xml; charset=" . $GLOBALS['charset']);
985         printf("\n<!-- Generated by PhpWiki-%s -->\n", PHPWIKI_VERSION);
986         // Flush errors in comment, otherwise it's invalid XML.
987         global $ErrorManager;
988         if (($errors = $ErrorManager->getPostponedErrorsAsHTML()))
989             printf("\n<!-- PHP Warnings:\n%s-->\n", AsXML($errors));
990
991         $request->finish(); // NORETURN!!!!
992     }
993
994     function channel_properties()
995     {
996         $chann_10 = parent::channel_properties();
997         return array_merge($chann_10,
998             array('generator' => 'PhpWiki-' . PHPWIKI_VERSION,
999                 //<pubDate>Tue, 10 Jun 2003 04:00:00 GMT</pubDate>
1000                 //<lastBuildDate>Tue, 10 Jun 2003 09:41:01 GMT</lastBuildDate>
1001                 //<docs>http://blogs.law.harvard.edu/tech/rss</docs>
1002                 'copyright' => COPYRIGHTPAGE_URL
1003             ));
1004     }
1005
1006     // xml-rpc registerProcedure not yet implemented
1007     function cloud_properties()
1008     {
1009         return false;
1010     }
1011
1012     function cloud_properties_test()
1013     {
1014         return array('protocol' => 'xml-rpc', // xml-rpc or soap or http-post
1015             'registerProcedure' => 'wiki.rssPleaseNotify',
1016             'path' => DATA_PATH . '/RPC2.php',
1017             'port' => !SERVER_PORT ? '80' : (SERVER_PROTOCOL == 'https' ? '443' : '80'),
1018             'domain' => SERVER_NAME);
1019     }
1020 }
1021
1022 /** Explicit application/atom+xml Content-Type
1023  *  A weird, questionable format
1024  */
1025 class _RecentChanges_AtomFormatter
1026     extends _RecentChanges_RssFormatter
1027 {
1028
1029     function format($changes)
1030     {
1031         global $request;
1032         include_once 'lib/RssWriter.php';
1033         $rss = new AtomFeed;
1034
1035         // "channel" is called "feed" in atom
1036         $rc_url = WikiURL($request->getArg('pagename'), false, 'absurl');
1037         extract($this->_args);
1038         $description = $this->title();
1039         $feed_props = array('title' => $description,
1040             'link' => array('rel' => "alternate",
1041                 'type' => "text/html",
1042                 'href' => $rc_url),
1043             'id' => md5($rc_url),
1044             'modified' => Iso8601DateTime(time()),
1045             'generator' => 'PhpWiki-' . PHPWIKI_VERSION,
1046             'tagline' => '');
1047         $rss->feed($feed_props);
1048         $first = true;
1049         while ($rev = $changes->next()) {
1050             // enforce view permission
1051             if (mayAccessPage('view', $rev->_pagename)) {
1052                 $props = $this->item_properties($rev);
1053                 $rss->addItem($props,
1054                     false,
1055                     $this->pageURI($rev));
1056                 if ($first)
1057                     $this->setValidators($rev);
1058                 $first = false;
1059             }
1060         }
1061
1062         $request->discardOutput();
1063         $rss->finish();
1064         //header("Content-Type: application/atom; charset=" . $GLOBALS['charset']);
1065         printf("\n<!-- Generated by PhpWiki-%s -->\n", PHPWIKI_VERSION);
1066         // Flush errors in comment, otherwise it's invalid XML.
1067         global $ErrorManager;
1068         if (($errors = $ErrorManager->getPostponedErrorsAsHTML()))
1069             printf("\n<!-- PHP Warnings:\n%s-->\n", AsXML($errors));
1070
1071         $request->finish(); // NORETURN!!!!
1072     }
1073
1074     function item_properties($rev)
1075     {
1076         $page = $rev->getPage();
1077         $pagename = $page->getName();
1078         return array('title' => $pagename,
1079             'link' => array('rel' => 'alternate',
1080                 'type' => 'text/html',
1081                 'href' => $this->pageURL($rev)),
1082             'summary' => $this->summary($rev),
1083             'modified' => $this->time($rev) . "Z",
1084             'issued' => $this->time($rev),
1085             'created' => $this->time($rev) . "Z",
1086             'author' => new XmlElement('author', new XmlElement('name', $rev->get('author')))
1087         );
1088     }
1089 }
1090
1091 /**
1092  * Filter by non-empty
1093  */
1094 class NonDeletedRevisionIterator extends WikiDB_PageRevisionIterator
1095 {
1096     /** Constructor
1097      *
1098      * @param $revisions object a WikiDB_PageRevisionIterator.
1099      * @param bool $check_current_revision
1100      * @return void
1101      */
1102     function NonDeletedRevisionIterator($revisions, $check_current_revision = true)
1103     {
1104         $this->_revisions = $revisions;
1105         $this->_check_current_revision = $check_current_revision;
1106     }
1107
1108     function next()
1109     {
1110         while (($rev = $this->_revisions->next())) {
1111             if ($this->_check_current_revision) {
1112                 $page = $rev->getPage();
1113                 $check_rev = $page->getCurrentRevision();
1114             } else {
1115                 $check_rev = $rev;
1116             }
1117             if (!$check_rev->hasDefaultContents())
1118                 return $rev;
1119         }
1120         $this->free();
1121         return false;
1122     }
1123
1124 }
1125
1126 /**
1127  * Filter by only_new.
1128  * Only new created pages
1129  */
1130 class NewPageRevisionIterator extends WikiDB_PageRevisionIterator
1131 {
1132     /** Constructor
1133      *
1134      * @param $revisions object a WikiDB_PageRevisionIterator.
1135      */
1136     function NewPageRevisionIterator($revisions)
1137     {
1138         $this->_revisions = $revisions;
1139     }
1140
1141     function next()
1142     {
1143         while (($rev = $this->_revisions->next())) {
1144             if ($rev->getVersion() == 1)
1145                 return $rev;
1146         }
1147         $this->free();
1148         return false;
1149     }
1150 }
1151
1152 /**
1153  * Only pages with links to a certain category
1154  */
1155 class LinkRevisionIterator extends WikiDB_PageRevisionIterator
1156 {
1157     function LinkRevisionIterator($revisions, $category)
1158     {
1159         $this->_revisions = $revisions;
1160         if (preg_match("/[\?\.\*]/", $category)) {
1161             $backlinkiter = $this->_revisions->_wikidb->linkSearch
1162             (new TextSearchQuery("*", true),
1163                 new TextSearchQuery($category, true),
1164                 "linkfrom");
1165         } else {
1166             $basepage = $GLOBALS['request']->getPage($category);
1167             $backlinkiter = $basepage->getBackLinks(true);
1168         }
1169         $this->links = array();
1170         foreach ($backlinkiter->asArray() as $p) {
1171             if (is_object($p)) $this->links[] = $p->getName();
1172             elseif (is_array($p)) $this->links[] = $p['pagename']; else $this->links[] = $p;
1173         }
1174         $backlinkiter->free();
1175         sort($this->links);
1176     }
1177
1178     function next()
1179     {
1180         while (($rev = $this->_revisions->next())) {
1181             if (binary_search($rev->getName(), $this->links) != false)
1182                 return $rev;
1183         }
1184         $this->free();
1185         return false;
1186     }
1187
1188     function free()
1189     {
1190         unset ($this->links);
1191     }
1192 }
1193
1194 class PageMatchRevisionIterator extends WikiDB_PageRevisionIterator
1195 {
1196     function PageMatchRevisionIterator($revisions, $match)
1197     {
1198         $this->_revisions = $revisions;
1199         $this->search = new TextSearchQuery($match, true);
1200     }
1201
1202     function next()
1203     {
1204         while (($rev = $this->_revisions->next())) {
1205             if ($this->search->match($rev->getName()))
1206                 return $rev;
1207         }
1208         $this->free();
1209         return false;
1210     }
1211
1212     function free()
1213     {
1214         unset ($this->search);
1215     }
1216 }
1217
1218 /**
1219  * Filter by author
1220  */
1221 class AuthorPageRevisionIterator extends WikiDB_PageRevisionIterator
1222 {
1223     function AuthorPageRevisionIterator($revisions, $author)
1224     {
1225         $this->_revisions = $revisions;
1226         $this->_author = $author;
1227     }
1228
1229     function next()
1230     {
1231         while (($rev = $this->_revisions->next())) {
1232             if ($rev->get('author_id') == $this->_author)
1233                 return $rev;
1234         }
1235         $this->free();
1236         return false;
1237     }
1238 }
1239
1240 /**
1241  * Filter by owner
1242  */
1243 class OwnerPageRevisionIterator extends WikiDB_PageRevisionIterator
1244 {
1245     function OwnerPageRevisionIterator($revisions, $owner)
1246     {
1247         $this->_revisions = $revisions;
1248         $this->_owner = $owner;
1249     }
1250
1251     function next()
1252     {
1253         while (($rev = $this->_revisions->next())) {
1254             $page = $rev->getPage();
1255             if ($page->getOwner() == $this->_owner)
1256                 return $rev;
1257         }
1258         $this->free();
1259         return false;
1260     }
1261 }
1262
1263 class WikiPlugin_RecentChanges
1264     extends WikiPlugin
1265 {
1266     function getName()
1267     {
1268         return _("RecentChanges");
1269     }
1270
1271     function getDescription()
1272     {
1273         return _("List all recent changes in this wiki.");
1274     }
1275
1276     function managesValidators()
1277     {
1278         // Note that this is a bit of a fig.
1279         // We set validators based on the most recently changed page,
1280         // but this fails when the most-recent page is deleted.
1281         // (Consider that the Last-Modified time will decrease
1282         // when this happens.)
1283
1284         // We might be better off, leaving this as false (and junking
1285         // the validator logic above) and just falling back to the
1286         // default behavior (handled by WikiPlugin) of just using
1287         // the WikiDB global timestamp as the mtime.
1288
1289         // Nevertheless, for now, I leave this here, mostly as an
1290         // example for how to use appendValidators() and managesValidators().
1291
1292         return true;
1293     }
1294
1295     function getDefaultArguments()
1296     {
1297         return array('days' => 2,
1298             'show_minor' => false,
1299             'show_major' => true,
1300             'show_all' => false,
1301             'show_deleted' => 'sometimes',
1302             'only_new' => false,
1303             'author' => false,
1304             'owner' => false,
1305             'limit' => false,
1306             'format' => false,
1307             'daylist' => false,
1308             'difflinks' => true,
1309             'historylinks' => false,
1310             'caption' => '',
1311             'category' => '',
1312             'pagematch' => ''
1313         );
1314     }
1315
1316     function getArgs($argstr, $request, $defaults = false)
1317     {
1318         if (!$defaults) $defaults = $this->getDefaultArguments();
1319         $args = WikiPlugin::getArgs($argstr, $request, $defaults);
1320
1321         $action = $request->getArg('action');
1322         if ($action != 'browse' && !isActionPage($action))
1323             $args['format'] = false; // default -> HTML
1324
1325         if ($args['format'] == 'rss' && empty($args['limit']))
1326             $args['limit'] = 15; // Fix default value for RSS.
1327         if ($args['format'] == 'rss2' && empty($args['limit']))
1328             $args['limit'] = 15; // Fix default value for RSS2.
1329
1330         if ($args['format'] == 'sidebar' && empty($args['limit']))
1331             $args['limit'] = 10; // Fix default value for sidebar.
1332
1333         return $args;
1334     }
1335
1336     function getMostRecentParams(&$args)
1337     {
1338         $show_all = false;
1339         $show_minor = false;
1340         $show_major = false;
1341         $limit = false;
1342         extract($args);
1343
1344         $params = array('include_minor_revisions' => $show_minor,
1345             'exclude_major_revisions' => !$show_major,
1346             'include_all_revisions' => !empty($show_all));
1347         if ($limit != 0)
1348             $params['limit'] = $limit;
1349         if (!empty($args['author'])) {
1350             global $request;
1351             if ($args['author'] == '[]')
1352                 $args['author'] = $request->_user->getID();
1353             $params['author'] = $args['author'];
1354         }
1355         if (!empty($args['owner'])) {
1356             global $request;
1357             if ($args['owner'] == '[]')
1358                 $args['owner'] = $request->_user->getID();
1359             $params['owner'] = $args['owner'];
1360         }
1361         if (!empty($days)) {
1362             if ($days > 0.0)
1363                 $params['since'] = time() - 24 * 3600 * $days;
1364             elseif ($days < 0.0)
1365                 $params['since'] = 24 * 3600 * $days - time();
1366         }
1367
1368         return $params;
1369     }
1370
1371     function getChanges($dbi, $args)
1372     {
1373         $changes = $dbi->mostRecent($this->getMostRecentParams($args));
1374
1375         $show_deleted = @$args['show_deleted'];
1376         $show_all = @$args['show_all'];
1377         if ($show_deleted == 'sometimes')
1378             $show_deleted = @$args['show_minor'];
1379
1380         // only pages (e.g. PageHistory of subpages)
1381         if (!empty($args['pagematch'])) {
1382             require_once 'lib/TextSearchQuery.php';
1383             $changes = new PageMatchRevisionIterator($changes, $args['pagematch']);
1384         }
1385         if (!empty($args['category'])) {
1386             require_once 'lib/TextSearchQuery.php';
1387             $changes = new LinkRevisionIterator($changes, $args['category']);
1388         }
1389         if (!empty($args['only_new']))
1390             $changes = new NewPageRevisionIterator($changes);
1391         if (!empty($args['author']))
1392             $changes = new AuthorPageRevisionIterator($changes, $args['author']);
1393         if (!empty($args['owner']))
1394             $changes = new OwnerPageRevisionIterator($changes, $args['owner']);
1395         if (!$show_deleted)
1396             $changes = new NonDeletedRevisionIterator($changes, !$show_all);
1397
1398         return $changes;
1399     }
1400
1401     function format($changes, $args)
1402     {
1403         global $WikiTheme;
1404         $format = $args['format'];
1405
1406         $fmt_class = $WikiTheme->getFormatter('RecentChanges', $format);
1407         if (!$fmt_class) {
1408             if ($format == 'rss')
1409                 $fmt_class = '_RecentChanges_RssFormatter';
1410             elseif ($format == 'rss2')
1411                 $fmt_class = '_RecentChanges_Rss2Formatter'; elseif ($format == 'atom')
1412                 $fmt_class = '_RecentChanges_AtomFormatter'; elseif ($format == 'rss091') {
1413                 include_once 'lib/RSSWriter091.php';
1414                 $fmt_class = '_RecentChanges_RssFormatter091';
1415             } elseif ($format == 'sidebar')
1416                 $fmt_class = '_RecentChanges_SideBarFormatter'; elseif ($format == 'box')
1417                 $fmt_class = '_RecentChanges_BoxFormatter'; elseif ($format == 'contribs')
1418                 $fmt_class = '_RecentChanges_UserContribsFormatter'; else
1419                 $fmt_class = '_RecentChanges_HtmlFormatter';
1420         }
1421
1422         $fmt = new $fmt_class($args);
1423         return $fmt->format($changes);
1424     }
1425
1426     function run($dbi, $argstr, &$request, $basepage)
1427     {
1428         $args = $this->getArgs($argstr, $request);
1429
1430         // HACKish: fix for SF bug #622784  (1000 years of RecentChanges ought
1431         // to be enough for anyone.)
1432         $args['days'] = min($args['days'], 365000);
1433
1434         // Within Categories just display Category Backlinks
1435         if (empty($args['category']) and empty($args['pagematch'])
1436             and preg_match("/^Category/", $request->getArg('pagename'))
1437         ) {
1438             $args['category'] = $request->getArg('pagename');
1439         }
1440
1441         // Hack alert: format() is a NORETURN for rss formatters.
1442         return $this->format($this->getChanges($dbi, $args), $args);
1443     }
1444
1445     // box is used to display a fixed-width, narrow version with common header.
1446     // just a numbered list of limit pagenames, without date.
1447     function box($args = false, $request = false, $basepage = false)
1448     {
1449         if (!$request) $request =& $GLOBALS['request'];
1450         if (!isset($args['limit'])) $args['limit'] = 15;
1451         $args['format'] = 'box';
1452         $args['show_minor'] = false;
1453         $args['show_major'] = true;
1454         $args['show_deleted'] = 'sometimes';
1455         $args['show_all'] = false;
1456         $args['days'] = 90;
1457         return $this->makeBox(WikiLink($this->getName(), '',
1458                 SplitPagename($this->getName())),
1459             $this->format
1460             ($this->getChanges($request->_dbi, $args), $args));
1461     }
1462
1463 }
1464
1465 class OptionsButtonBars extends HtmlElement
1466 {
1467
1468     function OptionsButtonBars($plugin_args)
1469     {
1470         $this->__construct('fieldset', array('class' => 'wiki-rc-action'));
1471
1472         // Add ShowHideFolder button
1473         $icon = $GLOBALS['WikiTheme']->_findData('images/folderArrowOpen.png');
1474         $img = HTML::img(array('id' => 'rc-action-img',
1475             'src' => $icon,
1476             'onclick' => "showHideFolder('rc-action')",
1477             'alt' => _("Click to hide/show"),
1478             'title' => _("Click to hide/show")));
1479
1480         // Display selection buttons
1481         extract($plugin_args);
1482
1483         // Custom caption
1484         if (!$caption) {
1485             $caption = _("Show changes for:");
1486         }
1487
1488         $this->pushContent(HTML::legend($caption, ' ', $img));
1489         $table = HTML::table(array('id' => 'rc-action-body',
1490             'style' => 'display:block'));
1491
1492         $tr = HTML::tr();
1493         foreach (explode(",", $daylist) as $days_button) {
1494             $tr->pushContent($this->_makeDayButton($days_button, $days));
1495         }
1496         $table->pushContent($tr);
1497
1498         $tr = HTML::tr();
1499         $tr->pushContent($this->_makeUsersButton(0));
1500         $tr->pushContent($this->_makeUsersButton(1));
1501         $table->pushContent($tr);
1502
1503         $tr = HTML::tr();
1504         $tr->pushContent($this->_makePagesButton(0));
1505         $tr->pushContent($this->_makePagesButton(1));
1506         $table->pushContent($tr);
1507
1508         $tr = HTML::tr();
1509         $tr->pushContent($this->_makeMinorButton(1, $show_minor));
1510         $tr->pushContent($this->_makeMinorButton(0, $show_minor));
1511         $table->pushContent($tr);
1512
1513         $tr = HTML::tr();
1514         $tr->pushContent($this->_makeShowAllButton(1, $show_all));
1515         $tr->pushContent($this->_makeShowAllButton(0, $show_all));
1516         $table->pushContent($tr);
1517
1518         $tr = HTML::tr();
1519         $tr->pushContent($this->_makeNewPagesButton(0, $only_new));
1520         $tr->pushContent($this->_makeNewPagesButton(1, $only_new));
1521         $table->pushContent($tr);
1522
1523         $this->pushContent($table);
1524     }
1525
1526     function _makeDayButton($days_button, $days)
1527     {
1528         global $request;
1529
1530         $url = $request->getURLtoSelf(array('action' => $request->getArg('action'), 'days' => $days_button));
1531         if ($days_button == 1) {
1532             $label = _("1 day");
1533         } elseif ($days_button < 1) {
1534             $label = _("All time");
1535         } else {
1536             $label = sprintf(_("%s days"), abs($days_button));
1537         }
1538         $selected = HTML::td(array('class' => 'tdselected'), $label);
1539         $unselected = HTML::td(array('class' => 'tdunselected'),
1540             HTML::a(array('href' => $url, 'class' => 'wiki-rc-action'), $label));
1541         return ($days_button == $days) ? $selected : $unselected;
1542     }
1543
1544     function _makeUsersButton($users)
1545     {
1546         global $request;
1547
1548         if ($users == 0) {
1549             $label = _("All users");
1550             $author = "";
1551         } else {
1552             $label = _("My modifications only");
1553             $author = "[]";
1554         }
1555
1556         $selfurl = $request->getURLtoSelf(array('action' => $request->getArg('action')));
1557         $url = $request->getURLtoSelf(array('action' => $request->getArg('action'), 'author' => $author));
1558         if ($url == $selfurl) {
1559             return HTML::td(array('colspan' => 3, 'class' => 'tdselected'), $label);
1560         }
1561         return HTML::td(array('colspan' => 3, 'class' => 'tdunselected'),
1562             HTML::a(array('href' => $url, 'class' => 'wiki-rc-action'), $label));
1563     }
1564
1565     function _makePagesButton($pages)
1566     {
1567         global $request;
1568
1569         if ($pages == 0) {
1570             $label = _("All pages");
1571             $owner = "";
1572         } else {
1573             $label = _("My pages only");
1574             $owner = "[]";
1575         }
1576
1577         $selfurl = $request->getURLtoSelf(array('action' => $request->getArg('action')));
1578         $url = $request->getURLtoSelf(array('action' => $request->getArg('action'), 'owner' => $owner));
1579         if ($url == $selfurl) {
1580             return HTML::td(array('colspan' => 3, 'class' => 'tdselected'), $label);
1581         }
1582         return HTML::td(array('colspan' => 3, 'class' => 'tdunselected'),
1583             HTML::a(array('href' => $url, 'class' => 'wiki-rc-action'), $label));
1584     }
1585
1586     function _makeMinorButton($minor_button, $show_minor)
1587     {
1588         global $request;
1589
1590         $url = $request->getURLtoSelf(array('action' => $request->getArg('action'), 'show_minor' => $minor_button));
1591         $label = ($minor_button == 0) ? _("Major modifications only") : _("All modifications");
1592         $selected = HTML::td(array('colspan' => 3, 'class' => 'tdselected'), $label);
1593         $unselected = HTML::td(array('colspan' => 3, 'class' => 'tdunselected'),
1594             HTML::a(array('href' => $url, 'class' => 'wiki-rc-action'), $label));
1595         return ($minor_button == $show_minor) ? $selected : $unselected;
1596     }
1597
1598     function _makeShowAllButton($showall_button, $show_all)
1599     {
1600         global $request;
1601
1602         $url = $request->getURLtoSelf(array('action' => $request->getArg('action'), 'show_all' => $showall_button));
1603         $label = ($showall_button == 0) ? _("Page once only") : _("Full changes");
1604         $selected = HTML::td(array('colspan' => 3, 'class' => 'tdselected'), $label);
1605         $unselected = HTML::td(array('colspan' => 3, 'class' => 'tdunselected'),
1606             HTML::a(array('href' => $url, 'class' => 'wiki-rc-action'), $label));
1607         return ($showall_button == $show_all) ? $selected : $unselected;
1608     }
1609
1610     function _makeNewPagesButton($newpages_button, $only_new)
1611     {
1612         global $request;
1613
1614         $url = $request->getURLtoSelf(array('action' => $request->getArg('action'), 'only_new' => $newpages_button));
1615         $label = ($newpages_button == 0) ? _("Old and new pages") : _("New pages only");
1616         $selected = HTML::td(array('colspan' => 3, 'class' => 'tdselected'), $label);
1617         $unselected = HTML::td(array('colspan' => 3, 'class' => 'tdunselected'),
1618             HTML::a(array('href' => $url, 'class' => 'wiki-rc-action'), $label));
1619         return ($newpages_button == $only_new) ? $selected : $unselected;
1620     }
1621 }
1622
1623 // Local Variables:
1624 // mode: php
1625 // tab-width: 8
1626 // c-basic-offset: 4
1627 // c-hanging-comment-ender-p: nil
1628 // indent-tabs-mode: nil
1629 // End: