]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/PageList.php
Take out if that prevents column sorting
[SourceForge/phpwiki.git] / lib / PageList.php
1 <?php rcs_id('$Id: PageList.php,v 1.100 2004-07-07 15:02:26 dfrankow Exp $');
2
3 /**
4  * List a number of pagenames, optionally as table with various columns.
5  * This library relieves some work for these plugins:
6  *
7  * AllPages, BackLinks, LikePages, MostPopular, TitleSearch, WikiAdmin* and more
8  *
9  * It also allows dynamic expansion of those plugins to include more
10  * columns in their output.
11  *
12  * Column 'info=' arguments:
13  *
14  * 'pagename' _("Page Name")
15  * 'mtime'    _("Last Modified")
16  * 'hits'     _("Hits")
17  * 'summary'  _("Last Summary")
18  * 'version'  _("Version")),
19  * 'author'   _("Last Author")),
20  * 'locked'   _("Locked"), _("locked")
21  * 'minor'    _("Minor Edit"), _("minor")
22  * 'markup'   _("Markup")
23  * 'size'     _("Size")
24  * 'creator'  _("Creator")
25  * 'owner'    _("Owner")
26  * 'checkbox'  selectable checkbox at the left.
27  * 'content'  
28  *
29  * Special, custom columns: Either theme or plugin (WikiAdmin*) specific.
30  * 'remove'   _("Remove")     
31  * 'perm'     _("Permission Mask")
32  * 'acl'      _("ACL")
33  * 'renamed_pagename'   _("Rename to")
34  * 'ratingwidget', ... wikilens theme specific.
35  * 'custom'   See plugin/WikiTranslation
36  *
37  * Symbolic 'info=' arguments:
38  * 'all'       All columns except the special columns
39  * 'most'      pagename, mtime, author, size, hits, ...
40  * 'some'      pagename, mtime, author
41  *
42  * FIXME: In this refactoring I (Jeff) have un-implemented _ctime, _cauthor, and
43  * number-of-revision.  Note the _ctime and _cauthor as they were implemented
44  * were somewhat flawed: revision 1 of a page doesn't have to exist in the
45  * database.  If lots of revisions have been made to a page, it's more than likely
46  * that some older revisions (include revision 1) have been cleaned (deleted).
47  *
48  * DONE: 
49  *   paging support: limit, offset args
50  *   check PagePerm "list" access-type,
51  *   all columns are sortable (Thanks to the wikilens team).
52  *
53  * TODO: 
54  *   rows arguments for multiple pages/multiple rows.
55  *
56  *   ->supportedArgs() which arguments are supported, so that the plugin 
57  *                     doesn't explictly need to declare it 
58  *   Status: already merged in some plugins calls
59  *
60  *   new method:
61  *     list not as <ul> or table, but as simple comma-seperated list
62  *
63  *   fix memory exhaustion on large pagelists. 
64  *   Status: fixed 2004-06-25 16:19:36 rurban but needs further testing.
65  */
66 class _PageList_Column_base {
67     var $_tdattr = array();
68
69     function _PageList_Column_base ($default_heading, $align = false) {
70         $this->_heading = $default_heading;
71
72         if ($align) {
73             // align="char" isn't supported by any browsers yet :(
74             //if (is_array($align))
75             //    $this->_tdattr = $align;
76             //else
77             $this->_tdattr['align'] = $align;
78         }
79     }
80
81     function format ($pagelist, $page_handle, &$revision_handle) {
82         return HTML::td($this->_tdattr,
83                         HTML::raw('&nbsp;'),
84                         $this->_getValue($page_handle, $revision_handle),
85                         HTML::raw('&nbsp;'));
86     }
87
88     function getHeading () {
89         return $this->_heading;
90     }
91
92     function setHeading ($heading) {
93         $this->_heading = $heading;
94     }
95
96     // old-style heading
97     function heading () {
98         // allow sorting?
99         if (1 or in_array($this->_field, PageList::sortable_columns())) {
100             // multiple comma-delimited sortby args: "+hits,+pagename"
101             // asc or desc: +pagename, -pagename
102             $sortby = PageList::sortby($this->_field, 'flip_order');
103             //Fixme: pass all also other GET args along. (limit, p[])
104             //TODO: support GET and POST
105             $s = HTML::a(array('href' => 
106                                $GLOBALS['request']->GetURLtoSelf(array('sortby' => $sortby,
107                                                                        'nocache' => '1')),
108                                'class' => 'pagetitle',
109                                'title' => sprintf(_("Sort by %s"), $this->_field)), 
110                          HTML::raw('&nbsp;'), HTML::u($this->_heading), HTML::raw('&nbsp;'));
111         } else {
112             $s = HTML(HTML::raw('&nbsp;'), HTML::u($this->_heading), HTML::raw('&nbsp;'));
113         }
114         return HTML::th(array('align' => 'center'),$s);
115     }
116
117     // new grid-style
118     // see activeui.js 
119     function button_heading ($pagelist, $colNum) {
120         global $WikiTheme, $request;
121         // allow sorting?
122         if (1 or in_array($this->_field, PageList::sortable_columns())) {
123             // multiple comma-delimited sortby args: "+hits,+pagename"
124             $src = false; 
125             $noimg_src = $WikiTheme->getButtonURL('no_order');
126             if ($noimg_src)
127                 $noimg = HTML::img(array('src' => $noimg_src,
128                                          'width' => '7', 
129                                          'height' => '7',
130                                          'border' => 0,
131                                          'alt'    => '.'));
132             else 
133                 $noimg = HTML::raw('&nbsp;');
134             if ($request->getArg('sortby')) {
135                 if ($pagelist->sortby($colNum, 'check')) { // show icon?
136                     $sortby = $pagelist->sortby($request->getArg('sortby'), 'flip_order');
137                     $request->setArg('sortby', $sortby);
138                     $desc = (substr($sortby,0,1) == '-'); // asc or desc? (+pagename, -pagename)
139                     $src = $WikiTheme->getButtonURL($desc ? 'asc_order' : 'desc_order');
140                 } else {
141                     $sortby = $pagelist->sortby($colNum, 'init');
142                 }
143             } else {
144                 $sortby = $pagelist->sortby($colNum, 'init');
145             }
146             if (!$src) {
147                 $img = $noimg;
148                 //$img->setAttr('alt', _("Click to sort"));
149             } else {
150                 $img = HTML::img(array('src' => $src, 
151                                        'width' => '7', 
152                                        'height' => '7', 
153                                        'border' => 0,
154                                        'alt' => _("Click to reverse sort order")));
155             }
156             $s = HTML::a(array('href' => 
157                                //Fixme: pass all also other GET args along. (limit, p[])
158                                //Fixme: convert to POST submit[sortby]
159                                $request->GetURLtoSelf(array('sortby' => $sortby,
160                                                             'nocache' => '1')),
161                                'class' => 'gridbutton', 
162                                'title' => sprintf(_("Click to sort by %s"), $this->_field)),
163                          HTML::raw('&nbsp;'),
164                          $noimg,
165                          HTML::raw('&nbsp;'),
166                          $this->_heading,
167                          HTML::raw('&nbsp;'),
168                          $img,
169                          HTML::raw('&nbsp;'));
170         } else {
171             $s = HTML(HTML::raw('&nbsp;'), $this->_heading, HTML::raw('&nbsp;'));
172         }
173         return HTML::th(array('align' => 'center', 'valign' => 'middle', 
174                               'class' => 'gridbutton'), $s);
175     }
176
177     /**
178      * Take two columns of this type and compare them.
179      * An undefined value is defined to be < than the smallest defined value.
180      * This base class _compare only works if the value is simple (e.g., a number).
181      *
182      * @param  $colvala  $this->_getValue() of column a
183      * @param  $colvalb  $this->_getValue() of column b
184      *
185      * @return -1 if $a < $b, 1 if $a > $b, 0 otherwise.
186      */
187     function _compare($colvala, $colvalb) {
188         if (is_string($colvala))
189             return strcmp($colvala,$colvalb);
190         $ret = 0;
191         if (($colvala === $colvalb) || (!isset($colvala) && !isset($colvalb))) {
192             ;
193         } else {
194             $ret = (!isset($colvala) || ($colvala < $colvalb)) ? -1 : 1;
195         }
196         return $ret; 
197     }
198 };
199
200 class _PageList_Column extends _PageList_Column_base {
201     function _PageList_Column ($field, $default_heading, $align = false) {
202         $this->_PageList_Column_base($default_heading, $align);
203
204         $this->_need_rev = substr($field, 0, 4) == 'rev:';
205         $this->_iscustom = substr($field, 0, 7) == 'custom:';
206         if ($this->_iscustom) {
207             $this->_field = substr($field, 7);
208         }
209         elseif ($this->_need_rev)
210             $this->_field = substr($field, 4);
211         else
212             $this->_field = $field;
213     }
214
215     function _getValue ($page_handle, &$revision_handle) {
216         if ($this->_need_rev) {
217             if (!$revision_handle)
218                 // columns which need the %content should override this. (size, hi_content)
219                 $revision_handle = $page_handle->getCurrentRevision(false);
220             return $revision_handle->get($this->_field);
221         }
222         else {
223             return $page_handle->get($this->_field);
224         }
225     }
226     
227     function _getSortableValue ($page_handle, &$revision_handle) {
228         return _PageList_Column::_getValue($page_handle, $revision_handle);
229     }
230 };
231
232 /* overcome a call_user_func limitation by not being able to do:
233  * call_user_func_array(array(&$class, $class_name), $params);
234  * So we need $class = new $classname($params);
235  * And we add a 4th param for the parent $pagelist object
236  */
237 class _PageList_Column_custom extends _PageList_Column {
238     function _PageList_Column_custom($params) {
239         $this->_pagelist =& $params[3];
240         $this->_PageList_Column($params[0], $params[1], $params[2]);
241     }
242 }
243
244 class _PageList_Column_size extends _PageList_Column {
245     function format (&$pagelist, $page_handle, &$revision_handle) {
246         return HTML::td($this->_tdattr,
247                         HTML::raw('&nbsp;'),
248                         $this->_getValue($pagelist, $page_handle, $revision_handle),
249                         HTML::raw('&nbsp;'));
250     }
251     
252     function _getValue (&$pagelist, $page_handle, &$revision_handle) {
253         if (!$revision_handle or (!$revision_handle->_data['%content'] 
254                                   or $revision_handle->_data['%content'] === true)) {
255             $revision_handle = $page_handle->getCurrentRevision(true);
256             unset($revision_handle->_data['%pagedata']['_cached_html']);
257         }
258         $size = $this->_getSize($revision_handle);
259         // we can safely purge the content when it is not sortable
260         if (empty($pagelist->_sortby[$this->_field]))
261             unset($revision_handle->_data['%content']);
262         return $size;
263     }
264     
265     function _getSortableValue ($page_handle, &$revision_handle) {
266         if (!$revision_handle)
267             $revision_handle = $page_handle->getCurrentRevision(true);
268         return (empty($revision_handle->_data['%content'])) 
269                ? 0 : strlen($revision_handle->_data['%content']);
270     }
271
272     function _getSize($revision_handle) {
273         $bytes = @strlen($revision_handle->_data['%content']);
274         return ByteFormatter($bytes);
275     }
276 }
277
278
279 class _PageList_Column_bool extends _PageList_Column {
280     function _PageList_Column_bool ($field, $default_heading, $text = 'yes') {
281         $this->_PageList_Column($field, $default_heading, 'center');
282         $this->_textIfTrue = $text;
283         $this->_textIfFalse = new RawXml('&#8212;'); //mdash
284     }
285
286     function _getValue ($page_handle, &$revision_handle) {
287         //FIXME: check if $this is available in the parent (->need_rev)
288         $val = _PageList_Column::_getValue($page_handle, $revision_handle);
289         return $val ? $this->_textIfTrue : $this->_textIfFalse;
290     }
291 };
292
293 class _PageList_Column_checkbox extends _PageList_Column {
294     function _PageList_Column_checkbox ($field, $default_heading, $name='p') {
295         $this->_name = $name;
296         $heading = HTML::input(array('type'  => 'button',
297                                      'title' => _("Click to de-/select all pages"),
298                                      //'width' => '100%',
299                                      'name'  => $default_heading,
300                                      'value' => $default_heading,
301                                      'onclick' => "flipAll(this.form)"
302                                      ));
303         $this->_PageList_Column($field, $heading, 'center');
304     }
305     function _getValue ($pagelist, $page_handle, &$revision_handle) {
306         $pagename = $page_handle->getName();
307         $selected = !empty($pagelist->_selected[$pagename]);
308         if (strstr($pagename,'[') or strstr($pagename,']')) {
309             $pagename = str_replace(array('[',']'),array('%5B','%5D'),$pagename);
310         }
311         if ($selected) {
312             return HTML::input(array('type' => 'checkbox',
313                                      'name' => $this->_name . "[$pagename]",
314                                      'value' => 1,
315                                      'checked' => 'CHECKED'));
316         } else {
317             return HTML::input(array('type' => 'checkbox',
318                                      'name' => $this->_name . "[$pagename]",
319                                      'value' => 1));
320         }
321     }
322     function format ($pagelist, $page_handle, &$revision_handle) {
323         return HTML::td($this->_tdattr,
324                         HTML::raw('&nbsp;'),
325                         $this->_getValue($pagelist, $page_handle, $revision_handle),
326                         HTML::raw('&nbsp;'));
327     }
328 };
329
330 class _PageList_Column_time extends _PageList_Column {
331     function _PageList_Column_time ($field, $default_heading) {
332         $this->_PageList_Column($field, $default_heading, 'right');
333         global $WikiTheme;
334         $this->Theme = &$WikiTheme;
335     }
336
337     function _getValue ($page_handle, &$revision_handle) {
338         $time = _PageList_Column::_getValue($page_handle, $revision_handle);
339         return $this->Theme->formatDateTime($time);
340     }
341 };
342
343 class _PageList_Column_version extends _PageList_Column {
344     function _getValue ($page_handle, &$revision_handle) {
345         if (!$revision_handle)
346             $revision_handle = $page_handle->getCurrentRevision();
347         return $revision_handle->getVersion();
348     }
349 };
350
351 // Output is hardcoded to limit of first 50 bytes. Otherwise
352 // on very large Wikis this will fail if used with AllPages
353 // (PHP memory limit exceeded)
354 // FIXME: old PHP without superglobals
355 class _PageList_Column_content extends _PageList_Column {
356     function _PageList_Column_content ($field, $default_heading, $align = false) {
357         $this->_PageList_Column($field, $default_heading, $align);
358         $this->bytes = 50;
359         if ($field == 'content') {
360             $this->_heading .= sprintf(_(" ... first %d bytes"),
361                                        $this->bytes);
362         } elseif ($field == 'hi_content') {
363             if (!empty($_POST['admin_replace'])) {
364                 $search = $_POST['admin_replace']['from'];
365                 $this->_heading .= sprintf(_(" ... around %s"),
366                                            '»'.$search.'«');
367             }
368         }
369     }
370     
371     function _getValue ($page_handle, &$revision_handle) {
372         if (!$revision_handle or (!$revision_handle->_data['%content'] 
373                                   or $revision_handle->_data['%content'] === true)) {
374             $revision_handle = $page_handle->getCurrentRevision(true);
375         }
376         // Not sure why implode is needed here, I thought
377         // getContent() already did this, but it seems necessary.
378         $c = implode("\n", $revision_handle->getContent());
379         if (empty($pagelist->_sortby[$this->_field]))
380             unset($revision_handle->_data['%content']);
381         if ($this->_field == 'hi_content') {
382             unset($revision_handle->_data['%pagedata']['_cached_html']);
383             $search = $_POST['admin_replace']['from'];
384             if ($search and ($i = strpos($c,$search))) {
385                 $l = strlen($search);
386                 $j = max(0,$i - ($this->bytes / 2));
387                 return HTML::div(array('style' => 'font-size:x-small'),
388                                  HTML::div(array('class' => 'transclusion'),
389                                            HTML::span(substr($c, $j, ($this->bytes / 2))),
390                                            HTML::span(array("style"=>"background:yellow"),$search),
391                                            HTML::span(substr($c, $i+$l, ($this->bytes / 2))))
392                                  );
393             } else {
394                 $c = sprintf(_("%s not found"),
395                              '»'.$search.'«');
396                 return HTML::div(array('style' => 'font-size:x-small','align'=>'center'),
397                                  $c);
398             }
399         } elseif (($len = strlen($c)) > $this->bytes) {
400             $c = substr($c, 0, $this->bytes);
401         }
402         include_once('lib/BlockParser.php');
403         // false --> don't bother processing hrefs for embedded WikiLinks
404         $ct = TransformText($c, $revision_handle->get('markup'), false);
405         if (empty($pagelist->_sortby[$this->_field]))
406             unset($revision_handle->_data['%pagedata']['_cached_html']);
407         return HTML::div(array('style' => 'font-size:x-small'),
408                          HTML::div(array('class' => 'transclusion'), $ct),
409                          // Don't show bytes here if size column present too
410                          ($this->parent->_columns_seen['size'] or !$len) ? "" :
411                            ByteFormatter($len, /*$longformat = */true));
412     }
413     
414     function _getSortableValue ($page_handle, &$revision_handle) {
415         return substr(_PageList_Column::_getValue($page_handle, $revision_handle),0,50);
416     }
417 };
418
419 class _PageList_Column_author extends _PageList_Column {
420     function _PageList_Column_author ($field, $default_heading, $align = false) {
421         _PageList_Column::_PageList_Column($field, $default_heading, $align);
422         $this->dbi =& $GLOBALS['request']->getDbh();
423     }
424
425     function _getValue ($page_handle, &$revision_handle) {
426         $author = _PageList_Column::_getValue($page_handle, $revision_handle);
427         if (isWikiWord($author) && $this->dbi->isWikiPage($author))
428             return WikiLink($author);
429         else
430             return $author;
431     }
432 };
433
434 class _PageList_Column_owner extends _PageList_Column_author {
435     function _getValue ($page_handle, &$revision_handle) {
436         $author = $page_handle->getOwner();
437         if (isWikiWord($author) && $this->dbi->isWikiPage($author))
438             return WikiLink($author);
439         else
440             return $author;
441     }
442 };
443
444 class _PageList_Column_creator extends _PageList_Column_author {
445     function _getValue ($page_handle, &$revision_handle) {
446         $author = $page_handle->getCreator();
447         if (isWikiWord($author) && $this->dbi->isWikiPage($author))
448             return WikiLink($author);
449         else
450             return $author;
451     }
452 };
453
454 class _PageList_Column_pagename extends _PageList_Column_base {
455     var $_field = 'pagename';
456
457     function _PageList_Column_pagename () {
458         $this->_PageList_Column_base(_("Page Name"));
459         global $request;
460         $this->dbi = &$request->getDbh();
461     }
462
463     function _getValue ($page_handle, &$revision_handle) {
464         if ($this->dbi->isWikiPage($page_handle->getName()))
465             return WikiLink($page_handle);
466         else
467             return WikiLink($page_handle, 'unknown');
468     }
469     
470     function _getSortableValue ($page_handle, &$revision_handle) {
471         return $page_handle->getName();
472     }
473
474     /**
475      * Compare two pagenames for sorting.  See _PageList_Column::_compare.
476      **/
477     function _compare($colvala, $colvalb) {
478         return strcmp($colvala, $colvalb);
479     }
480 };
481
482 /**
483  * A class to bundle up a page with a reference to PageList, so that
484  * the compare function for usort() has access to it all.
485  * This is a hack necessitated by the interface to usort()-- comparators
486  * can't get information upon construction; you get a comparator by class
487  * name, not by instance.
488  * @author: Dan Frankowski
489  */
490 class _PageList_Page {
491     var $_pagelist;
492     var $_page;
493
494     function _PageList_Page(&$pagelist, &$page_handle) {
495         $this->_pagelist = $pagelist;
496         $this->_page = $page_handle;
497     }
498
499     function & getPageList() {
500         return $this->_pagelist;
501     }
502
503     function & getPage() {
504         return $this->_page;
505     }
506 }
507
508 class PageList {
509     var $_group_rows = 3;
510     var $_columns = array();
511     var $_columnsMap = array();      // Maps column name to column number.
512     var $_excluded_pages = array();
513     var $_pages = array();
514     var $_caption = "";
515     var $_pagename_seen = false;
516     var $_types = array();
517     var $_options = array();
518     var $_selected = array();
519     var $_sortby = array();
520     var $_maxlen = 0;
521
522     function PageList ($columns = false, $exclude = false, $options = false) {
523         if ($options)
524             $this->_options = $options;
525
526         // let plugins predefine only certain objects, such its own custom pagelist columns
527         if (!empty($this->_options['types'])) {
528             $this->_types = $this->_options['types'];
529             unset($this->_options['types']);
530         }
531         $this->_initAvailableColumns();
532         $symbolic_columns = 
533             array(
534                   'all' =>  array_diff(array_keys($this->_types), // all but...
535                                        array('checkbox','remove','renamed_pagename',
536                                              'content','hi_content','perm','acl')),
537                   'most' => array('pagename','mtime','author','hits'),
538                   'some' => array('pagename','mtime','author')
539                   );
540         if ($columns) {
541             if (!is_array($columns))
542                 $columns = explode(',', $columns);
543             // expand symbolic columns:
544             foreach ($symbolic_columns as $symbol => $cols) {
545                 if (in_array($symbol,$columns)) { // e.g. 'checkbox,all'
546                     $columns = array_diff(array_merge($columns,$cols),array($symbol));
547                 }
548             }
549             if (!in_array('pagename',$columns))
550                 $this->_addColumn('pagename');
551             foreach ($columns as $col) {
552                 $this->_addColumn($col);
553             }
554         }
555         // If 'pagename' is already present, _addColumn() will not add it again
556         $this->_addColumn('pagename');
557
558         foreach (array('sortby','limit','paging','count') as $key) {
559           if (!empty($options) and !empty($options[$key])) {
560             $this->_options[$key] = $options[$key];
561           } else {
562             $this->_options[$key] = $GLOBALS['request']->getArg($key);
563           }
564         }
565         $this->_options['sortby'] = $this->sortby($this->_options['sortby'], 'init');
566         if ($exclude) {
567             if (!is_array($exclude))
568                 $exclude = $this->explodePageList($exclude, false,
569                                                   $this->_options['sortby'],
570                                                   $this->_options['limit']);
571             $this->_excluded_pages = $exclude;
572         }
573         $this->_messageIfEmpty = _("<no matches>");
574     }
575
576     // Currently PageList takes these arguments:
577     // 1: info, 2: exclude, 3: hash of options
578     // Here we declare which options are supported, so that 
579     // the calling plugin may simply merge this with its own default arguments 
580     function supportedArgs () {
581         return array(//Currently supported options:
582                      'info'     => 'pagename',
583                      'exclude'  => '',          // also wildcards and comma-seperated lists
584
585                      /* select pages by meta-data: */
586                      'author'   => false, // current user by []
587                      'owner'    => false, // current user by []
588                      'creator'  => false, // current user by []
589
590                      // for the sort buttons in <th>
591                      'sortby'   => '', // same as for WikiDB::getAllPages (unsorted is faster)
592
593                      //PageList pager options:
594                      // These options may also be given to _generate(List|Table) later
595                      // But limit and offset might help the query WikiDB::getAllPages()
596                      'cols'     => 1,       // side-by-side display of list (1-3)
597                      'limit'    => 0,       // number of rows (pagesize)
598                      'paging'   => 'auto',  // 'auto'  normal paging mode
599                      //                     // 'smart' drop 'info' columns and enhance rows 
600                      //                     //         when the list becomes large
601                      //                     // 'none'  don't page at all
602                      //'azhead' => 0        // provide shortcut links to pages starting with different letters
603                      );
604     }
605
606     function setCaption ($caption_string) {
607         $this->_caption = $caption_string;
608     }
609
610     function getCaption () {
611         // put the total into the caption if needed
612         if (is_string($this->_caption) && strstr($this->_caption, '%d'))
613             return sprintf($this->_caption, $this->getTotal());
614         return $this->_caption;
615     }
616
617     function setMessageIfEmpty ($msg) {
618         $this->_messageIfEmpty = $msg;
619     }
620
621
622     function getTotal () {
623         return !empty($this->_options['count'])
624                ? (integer) $this->_options['count'] : count($this->_pages);
625     }
626
627     function isEmpty () {
628         return empty($this->_pages);
629     }
630
631     function addPage($page_handle) {
632         $this->_pages[] = new _PageList_Page($this, $page_handle);
633     }
634
635     function _getPageFromHandle($ph) {
636         $page_handle = $ph;
637         if (is_string($page_handle)) {
638             if (empty($page_handle)) return $page_handle;
639             $dbi = $GLOBALS['request']->getDbh();
640             $page_handle = $dbi->getPage($page_handle);
641         }
642         return $page_handle;
643     }
644
645     /**
646      * Take a PageList_Page object, and return an HTML object to display
647      * it in a table or list row.
648      */
649     function _renderPageRow ($pagelist_page, $i = 0) {
650         $page_handle = $pagelist_page->getPage();
651
652         $page_handle = $this->_getPageFromHandle($page_handle);
653         if (!isset($page_handle) || empty($page_handle)
654             || in_array($page_handle->getName(), $this->_excluded_pages))
655             return; // exclude page.
656             
657         //FIXME. only on sf.net
658         if (!is_object($page_handle)) {
659             trigger_error("PageList: Invalid page_handle $page_handle", E_USER_WARNING);
660             return;
661         }
662         // enforce view permission
663         if (!mayAccessPage('view',$page_handle->getName()))
664             return;
665
666         $group = (int)($i / $this->_group_rows);
667         $class = ($group % 2) ? 'oddrow' : 'evenrow';
668         $revision_handle = false;
669         $this->_maxlen = max($this->_maxlen, strlen($page_handle->getName()));
670
671         if (count($this->_columns) > 1) {
672             $row = HTML::tr(array('class' => $class));
673             foreach ($this->_columns as $col)
674                 $row->pushContent($col->format($this, $page_handle, $revision_handle));
675         }
676         else {
677             $col = $this->_columns[0];
678             $row = $col->_getValue($page_handle, $revision_handle);
679         }
680
681         return $row;
682     }
683
684     function addPages ($page_iter) {
685         //Todo: if limit check max(strlen(pagename))
686         while ($page = $page_iter->next())
687             $this->addPage($page);
688     }
689
690     function addPageList (&$list) {
691         if (!isset($list)) return;  // Protect reset from a null arg
692         reset ($list);
693         while ($page = next($list))
694             $this->addPage((string)$page);
695     }
696
697     function maxLen() {
698         global $DBParams, $request;
699         if ($DBParams['dbtype'] == 'SQL' or $DBParams['dbtype'] == 'ADODB') {
700             $dbi =& $request->getDbh();
701             extract($dbi->_backend->_table_names);
702             if ($DBParams['dbtype'] == 'SQL') {
703                 //FIXME: LIMIT not portable
704                 $res = $dbi->_backend->_dbh->getOne("SELECT max(length(pagename)) FROM $page_tbl");
705                 if (DB::isError($res) || empty($res)) return false;
706                 else return $res;
707             } elseif ($DBParams['dbtype'] == 'ADODB') {
708                 //FIXME: LIMIT not portable
709                 $row = $dbi->_backend->_dbh->getRow("SELECT max(length(pagename)) FROM $page_tbl");
710                 return $row ? $row[0] : false;
711             }
712         } else 
713             return false;
714     }
715
716     function getContent() {
717         // Note that the <caption> element wants inline content.
718         $caption = $this->getCaption();
719
720         if ($this->isEmpty())
721             return $this->_emptyList($caption);
722         elseif (count($this->_columns) == 1)
723             return $this->_generateList($caption);
724         else
725             return $this->_generateTable($caption);
726     }
727
728     function printXML() {
729         PrintXML($this->getContent());
730     }
731
732     function asXML() {
733         return AsXML($this->getContent());
734     }
735     
736     /** Now all columns are sortable. 
737      *  These are the colums which have native WikiDB backend methods. 
738      */
739     function sortable_columns() {
740         return array('pagename','mtime','hits');
741     }
742
743     /** 
744      * Handle sortby requests for the DB iterator and table header links.
745      * Prefix the column with + or - like "+pagename","-mtime", ...
746      * supported actions: 'flip_order' "mtime" => "+mtime" => "-mtime" ...
747      *                    'db'         "-pagename" => "pagename DESC"
748      * Now all columns are sortable. (patch by DanFr)
749      */
750     function sortby ($column, $action) {
751         if (empty($column)) return;
752         //support multiple comma-delimited sortby args: "+hits,+pagename"
753         if (strstr($column,',')) {
754             $result = array();
755             foreach (explode(',',$column) as $col) {
756                 $result[] = $this->sortby($col,$action);
757             }
758             return join(",",$result);
759         }
760         if (substr($column,0,1) == '+') {
761             $order = '+'; $column = substr($column,1);
762         } elseif (substr($column,0,1) == '-') {
763             $order = '-'; $column = substr($column,1);
764         }
765         // default order: +pagename, -mtime, -hits
766         if (empty($order))
767             if (in_array($column,array('mtime','hits')))
768                 $order = '-';
769             else
770                 $order = '+';
771         if ($action == 'flip_order') {
772             return ($order == '+' ? '-' : '+') . $column;
773         } elseif ($action == 'init') {
774             $this->_sortby[$column] = $order;
775             return $order . $column;
776         } elseif ($action == 'check') {
777             return (!empty($this->_sortby[$column]) or 
778                     ($GLOBALS['request']->getArg('sortby') and 
779                      strstr($GLOBALS['request']->getArg('sortby'),$column)));
780         } elseif ($action == 'db') {
781             // asc or desc: +pagename, -pagename
782             return $column . ($order == '+' ? ' ASC' : ' DESC');
783         }
784         return '';
785     }
786
787     // echo implode(":",explodeList("Test*",array("xx","Test1","Test2")));
788     function explodePageList($input, $perm = false, $sortby=false, $limit=false) {
789         // expand wildcards from list of all pages
790         if (preg_match('/[\?\*]/',$input)) {
791             $dbi = $GLOBALS['request']->getDbh();
792             $allPagehandles = $dbi->getAllPages($perm,$sortby,$limit);
793             while ($pagehandle = $allPagehandles->next()) {
794                 $allPages[] = $pagehandle->getName();
795             }
796             return explodeList($input, $allPages);
797         } else {
798             //TODO: do the sorting, normally not needed if used for exclude only
799             return explode(',',$input);
800         }
801     }
802
803     function allPagesByAuthor($wildcard, $perm=false, $sortby=false, $limit=false) {
804         $dbi = $GLOBALS['request']->getDbh();
805         $allPagehandles = $dbi->getAllPages($perm, $sortby, $limit);
806         $allPages = array();
807         if ($wildcard === '[]') {
808             $wildcard = $GLOBALS['request']->_user->getAuthenticatedId();
809             if (!$wildcard) return $allPages;
810         }
811         while ($pagehandle = $allPagehandles->next()) {
812             $name = $pagehandle->getName();
813             $author = $pagehandle->getAuthor();
814             if ($author) {
815                 if (preg_match('/[\?\*]/', $wildcard)) {
816                     if (glob_match($wildcard, $author))
817                         $allPages[] = $name;
818                 } elseif ($wildcard == $author) {
819                       $allPages[] = $name;
820                 }
821             }
822         }
823         return $allPages;
824     }
825
826     function allPagesByOwner($wildcard, $perm=false, $sortby=false, $limit=false) {
827         $dbi = $GLOBALS['request']->getDbh();
828         $allPagehandles = $dbi->getAllPages($perm, $sortby, $limit);
829         $allPages = array();
830         if ($wildcard === '[]') {
831             $wildcard = $GLOBALS['request']->_user->getAuthenticatedId();
832             if (!$wildcard) return $allPages;
833         }
834         while ($pagehandle = $allPagehandles->next()) {
835             $name = $pagehandle->getName();
836             $owner = $pagehandle->getOwner();
837             if ($owner) {
838                 if (preg_match('/[\?\*]/', $wildcard)) {
839                     if (glob_match($wildcard, $owner))
840                         $allPages[] = $name;
841                 } elseif ($wildcard == $owner) {
842                       $allPages[] = $name;
843                 }
844             }
845         }
846         return $allPages;
847     }
848
849     function allPagesByCreator($wildcard, $perm=false, $sortby=false, $limit=false) {
850         $dbi = $GLOBALS['request']->getDbh();
851         $allPagehandles = $dbi->getAllPages($perm, $sortby, $limit);
852         $allPages = array();
853         if ($wildcard === '[]') {
854             $wildcard = $GLOBALS['request']->_user->getAuthenticatedId();
855             if (!$wildcard) return $allPages;
856         }
857         while ($pagehandle = $allPagehandles->next()) {
858             $name = $pagehandle->getName();
859             $creator = $pagehandle->getCreator();
860             if ($creator) {
861                 if (preg_match('/[\?\*]/', $wildcard)) {
862                     if (glob_match($wildcard, $creator))
863                         $allPages[] = $name;
864                 } elseif ($wildcard == $creator) {
865                       $allPages[] = $name;
866                 }
867             }
868         }
869         return $allPages;
870     }
871
872     ////////////////////
873     // private
874     ////////////////////
875     /** Plugin and theme hooks: 
876      *  If the pageList is initialized with $options['types'] these types are also initialized, 
877      *  overriding the standard types.
878      */
879     function _initAvailableColumns() {
880         global $customPageListColumns;
881         $standard_types =
882             array(
883                   'content'
884                   => new _PageList_Column_content('rev:content', _("Content")),
885                   // new: plugin specific column types initialised by the relevant plugins
886                   /*
887                   'hi_content' // with highlighted search for SearchReplace
888                   => new _PageList_Column_content('rev:hi_content', _("Content")),
889                   'remove'
890                   => new _PageList_Column_remove('remove', _("Remove")),
891                   // initialised by the plugin
892                   'renamed_pagename'
893                   => new _PageList_Column_renamed_pagename('rename', _("Rename to")),
894                   'perm'
895                   => new _PageList_Column_perm('perm', _("Permission")),
896                   'acl'
897                   => new _PageList_Column_acl('acl', _("ACL")),
898                   */
899                   'checkbox'
900                   => new _PageList_Column_checkbox('p', _("Select")),
901                   'pagename'
902                   => new _PageList_Column_pagename,
903                   'mtime'
904                   => new _PageList_Column_time('rev:mtime', _("Last Modified")),
905                   'hits'
906                   => new _PageList_Column('hits', _("Hits"), 'right'),
907                   'size'
908                   => new _PageList_Column_size('rev:size', _("Size"), 'right'),
909                                               /*array('align' => 'char', 'char' => ' ')*/
910                   'summary'
911                   => new _PageList_Column('rev:summary', _("Last Summary")),
912                   'version'
913                   => new _PageList_Column_version('rev:version', _("Version"),
914                                                  'right'),
915                   'author'
916                   => new _PageList_Column_author('rev:author', _("Last Author")),
917                   'owner'
918                   => new _PageList_Column_owner('author_id', _("Owner")),
919                   'creator'
920                   => new _PageList_Column_creator('author_id', _("Creator")),
921                   /*
922                   'group'
923                   => new _PageList_Column_author('group', _("Group")),
924                   */
925                   'locked'
926                   => new _PageList_Column_bool('locked', _("Locked"),
927                                                _("locked")),
928                   'minor'
929                   => new _PageList_Column_bool('rev:is_minor_edit',
930                                                _("Minor Edit"), _("minor")),
931                   'markup'
932                   => new _PageList_Column('rev:markup', _("Markup")),
933                   // 'rating' initialised by the wikilens theme hook: addPageListColumn
934                   /*
935                   'rating'
936                   => new _PageList_Column_rating('rating', _("Rate")),
937                   */
938                   );
939         if (empty($this->_types))
940             $this->_types = array();
941         // add plugin specific pageList columns, initialized by $options['types']
942         $this->_types = array_merge($standard_types, $this->_types);
943         // add theme custom specific pageList columns: 
944         //   set the 4th param as the current pagelist object.
945         if (!empty($customPageListColumns)) {
946             foreach ($customPageListColumns as $column => $params) {
947                 $class_name = array_shift($params);
948                 $params[3] =& $this;
949                 $class = new $class_name($params);
950             }
951             $this->_types = array_merge($this->_types, $customPageListColumns);
952         }
953     }
954
955     function getOption($option) {
956         if (array_key_exists($option, $this->_options)) {
957             return $this->_options[$option];
958         }
959         else {
960             return null;
961         }
962     }
963
964     /**
965      * Add a column to this PageList, given a column name.
966      * The name is a type, and optionally has a : and a label. Examples:
967      *
968      *   pagename
969      *   pagename:This page
970      *   mtime
971      *   mtime:Last modified
972      *
973      * If this function is called multiple times for the same type, the
974      * column will only be added the first time, and ignored the succeeding times.
975      * If you wish to add multiple columns of the same type, use addColumnObject().
976      *
977      * @param column name
978      * @return  true if column is added, false otherwise
979      */
980     function _addColumn ($column) {
981         
982         if (isset($this->_columns_seen[$column]))
983             return false;       // Already have this one.
984         if (!isset($this->_types[$column]))
985             $this->_initAvailableColumns();
986         $this->_columns_seen[$column] = true;
987
988         if (strstr($column, ':'))
989             list ($column, $heading) = explode(':', $column, 2);
990
991         if (!isset($this->_types[$column])) {
992             $silently_ignore = array('numbacklinks','rating','coagreement','minmisery',
993                                      'averagerating','top3recs');
994             if (!in_array($column,$silently_ignore))
995                 trigger_error(sprintf("%s: Bad column", $column), E_USER_NOTICE);
996             return false;
997         }
998         if ($column == 'ratingwidget' and !$GLOBALS['request']->_user->isSignedIn())
999             return false;
1000
1001         $this->addColumnObject($this->_types[$column]);
1002
1003         return true;
1004     }
1005
1006     /**
1007      * Add a column to this PageList, given a column object.
1008      *
1009      * @param $col object   An object derived from _PageList_Column.
1010      **/
1011     function addColumnObject($col) {
1012         if (is_array($col)) {// custom column object
1013             $params =& $col;
1014             $class_name = array_shift($params);
1015             $params[3] =& $this;
1016             $col = new $class_name($params);
1017         }
1018         $heading = $col->getHeading();
1019         if (!empty($heading))
1020             $col->setHeading($heading);
1021
1022         $this->_columns[] = $col;
1023         $this->_columnsMap[$col->_field] = count($this->_columns)-1;
1024     }
1025
1026     /**
1027      * Compare _PageList_Page objects.
1028      **/
1029     function _pageCompare($a, $b) {
1030         $pagelist =& $a->_pagelist;
1031         $pagea = $a->getPage();
1032         $pageb = $b->getPage();
1033         if (count($pagelist->_sortby) == 0) {
1034             // No columns to sort by
1035             return 0;
1036         }
1037         else {
1038             foreach ($pagelist->_sortby as $colNum => $direction) {
1039                 $colkey = $colNum;
1040                 if (!is_int($colkey)) { // or column fieldname
1041                     $colkey = $pagelist->_columnsMap[$colNum];
1042                 }
1043                 $col = $pagelist->_columns[$colkey];
1044
1045                 $revision_handle = false;
1046                 $pagea = PageList::_getPageFromHandle($pagea);  // If a string, convert to page
1047                 assert(isa($pagea, 'WikiDB_Page'));
1048                 assert(isset($col));
1049                 $aval = $col->_getSortableValue($pagea, $revision_handle);
1050                 $pageb = PageList::_getPageFromHandle($pageb);  // If a string, convert to page
1051                 
1052                 $revision_handle = false;
1053                 assert(isa($pageb, 'WikiDB_Page'));
1054                 $bval = $col->_getSortableValue($pageb, $revision_handle);
1055
1056                 $cmp = $col->_compare($aval, $bval);
1057                 if ($direction === "-") {
1058                     // Reverse the sense of the comparison
1059                     $cmp *= -1;
1060                 }
1061
1062                 if ($cmp !== 0) {
1063                     // This is the first comparison that is not equal-- go with it
1064                     return $cmp;
1065                 }
1066             }
1067             return 0;
1068         }
1069     }
1070
1071     /**
1072      * Put pages in order according to the sortby arg, if given
1073      */
1074     function _sortPages() {
1075         if (count($this->_sortby) > 0) {
1076             // There are columns to sort by
1077             usort($this->_pages, array('PageList', '_pageCompare'));
1078         }        
1079     }
1080
1081     function limit($limit) {
1082         if (strstr($limit,','))
1083             return split(',',$limit);
1084         else
1085             return array(0,$limit);
1086     }
1087     
1088     // make a table given the caption
1089     function _generateTable($caption) {
1090         if (count($this->_sortby) > 0) $this->_sortPages();
1091
1092         $rows = array(); $i = 0;
1093         foreach ($this->_pages as $pagenum => $page) {
1094             $rows[] = $this->_renderPageRow($page, $i++);
1095         }
1096
1097         $table = HTML::table(array('cellpadding' => 0,
1098                                    'cellspacing' => 1,
1099                                    'border'      => 0,
1100                                    'class'       => 'pagelist'));
1101         if ($caption)
1102             $table->pushContent(HTML::caption(array('align'=>'top'), $caption));
1103
1104         //Warning: This is quite fragile. It depends solely on a private variable
1105         //         in ->_addColumn()
1106         if (!empty($this->_columns_seen['checkbox'])) {
1107             $table->pushContent($this->_jsFlipAll());
1108         }
1109         $do_paging = ( isset($this->_options['paging']) and 
1110                        !empty($this->_options['limit']) and $this->getTotal() and
1111                        $this->_options['paging'] != 'none' );
1112         $row = HTML::tr();
1113         $table_summary = array();
1114         $i = 0;
1115         foreach ($this->_columns as $col) {
1116             $heading = $col->button_heading($this, $i);
1117             if ($do_paging and 
1118                 isset($col->_field) and $col->_field == 'pagename' and 
1119                 ($maxlen = $this->maxLen()))
1120                 $heading->setAttr('width',$maxlen * 7);
1121             $row->pushContent($heading);
1122             if (is_string($col->getHeading()))
1123                 $table_summary[] = $col->getHeading();
1124             $i++;
1125         }
1126         // Table summary for non-visual browsers.
1127         $table->setAttr('summary', sprintf(_("Columns: %s."), 
1128                                            implode(", ", $table_summary)));
1129
1130         if ( $do_paging ) {
1131             // if there are more pages than the limit, show a table-header, -footer
1132             list($offset,$pagesize) = $this->limit($this->_options['limit']);
1133             $numrows = $this->getTotal();
1134             if (!$pagesize or
1135                 (!$offset and $numrows <= $pagesize) or
1136                 ($offset + $pagesize < 0)) 
1137             {
1138                 $table->pushContent(HTML::thead($row),
1139                                     HTML::tbody(false, $rows));
1140                 return $table;
1141             }
1142             global $request;
1143             include_once('lib/Template.php');
1144
1145             $tokens = array();
1146             $pagename = $request->getArg('pagename');
1147             $defargs = $request->args;
1148             unset($defargs['pagename']); unset($defargs['action']);
1149             //$defargs['nocache'] = 1;
1150             $prev = $defargs;
1151             $tokens['PREV'] = false; $tokens['PREV_LINK'] = "";
1152             $tokens['COLS'] = count($this->_columns);
1153             $tokens['COUNT'] = $numrows; 
1154             $tokens['OFFSET'] = $offset; 
1155             $tokens['SIZE'] = $pagesize;
1156             $tokens['NUMPAGES'] = (int)($numrows / $pagesize)+1;
1157             $tokens['ACTPAGE'] = (int) (($offset+1) / $pagesize)+1;
1158             if ($offset > 0) {
1159                 $prev['limit'] = min(0,$offset - $pagesize) . ",$pagesize";
1160                 $prev['count'] = $numrows;
1161                 $tokens['LIMIT'] = $prev['limit'];
1162                 $tokens['PREV'] = true;
1163                 $tokens['PREV_LINK'] = WikiURL($pagename,$prev);
1164                 $prev['limit'] = "0,$pagesize";
1165                 $tokens['FIRST_LINK'] = WikiURL($pagename,$prev);
1166             }
1167             $next = $defargs;
1168             $tokens['NEXT'] = false; $tokens['NEXT_LINK'] = "";
1169             if ($offset + $pagesize < $numrows) {
1170                 $next['limit'] = min($offset + $pagesize,$numrows - $pagesize) . ",$pagesize";
1171                 $next['count'] = $numrows;
1172                 $tokens['LIMIT'] = $next['limit'];
1173                 $tokens['NEXT'] = true;
1174                 $tokens['NEXT_LINK'] = WikiURL($pagename,$next);
1175                 $next['limit'] = $numrows - $pagesize . ",$pagesize";
1176                 $tokens['LAST_LINK'] = WikiURL($pagename,$next);
1177             }
1178             $paging = new Template("pagelink", $request, $tokens);
1179             $table->pushContent(HTML::thead($paging),
1180                                 HTML::tbody(false, HTML($row, $rows)),
1181                                 HTML::tfoot($paging));
1182             return $table;
1183         }
1184         $table->pushContent(HTML::thead($row),
1185                             HTML::tbody(false, $rows));
1186         return $table;
1187     }
1188
1189     function _jsFlipAll() {
1190       return JavaScript("
1191 function flipAll(formObj) {
1192   var isFirstSet = -1;
1193   for (var i=0;i < formObj.length;i++) {
1194       fldObj = formObj.elements[i];
1195       if (fldObj.type == 'checkbox') { 
1196          if (isFirstSet == -1)
1197            isFirstSet = (fldObj.checked) ? true : false;
1198          fldObj.checked = (isFirstSet) ? false : true;
1199        }
1200    }
1201 }");
1202     }
1203
1204     function _generateList($caption) {
1205         $list = HTML::ul(array('class' => 'pagelist'));
1206         $i = 0;
1207         foreach ($this->_pages as $pagenum => $page) {
1208             $pagehtml = $this->_renderPageRow($page);
1209             $group = ($i++ / $this->_group_rows);
1210             $class = ($group % 2) ? 'oddrow' : 'evenrow';
1211             $list->pushContent(HTML::li(array('class' => $class),$pagehtml));
1212         }
1213         $out = HTML();
1214         //Warning: This is quite fragile. It depends solely on a private variable
1215         //         in ->_addColumn()
1216         // Questionable if its of use here anyway. This is a one-col pagename list only.
1217         //if (!empty($this->_columns_seen['checkbox'])) $out->pushContent($this->_jsFlipAll());
1218         if ($caption)
1219             $out->pushContent(HTML::p($caption));
1220         $out->pushContent($list);
1221         return $out;
1222     }
1223
1224     function _emptyList($caption) {
1225         $html = HTML();
1226         if ($caption)
1227             $html->pushContent(HTML::p($caption));
1228         if ($this->_messageIfEmpty)
1229             $html->pushContent(HTML::blockquote(HTML::p($this->_messageIfEmpty)));
1230         return $html;
1231     }
1232
1233     // Condense list: "Page1, Page2, ..." 
1234     // Alternative $seperator = HTML::Raw(' &middot; ')
1235     function _generateCommaList($seperator = ', ') {
1236         return HTML(join($seperator, $list));
1237     }
1238
1239 };
1240
1241 /* List pages with checkboxes to select from.
1242  * The [Select] button toggles via _jsFlipAll
1243  */
1244
1245 class PageList_Selectable
1246 extends PageList {
1247
1248     function PageList_Selectable ($columns=false, $exclude=false, $options = false) {
1249         if ($columns) {
1250             if (!is_array($columns))
1251                 $columns = explode(',', $columns);
1252             if (!in_array('checkbox',$columns))
1253                 array_unshift($columns,'checkbox');
1254         } else {
1255             $columns = array('checkbox','pagename');
1256         }
1257         $this->PageList($columns, $exclude, $options);
1258     }
1259
1260     function addPageList ($array) {
1261         while (list($pagename,$selected) = each($array)) {
1262             if ($selected) $this->addPageSelected((string)$pagename);
1263             $this->addPage((string)$pagename);
1264         }
1265     }
1266
1267     function addPageSelected ($pagename) {
1268         $this->_selected[$pagename] = 1;
1269     }
1270 }
1271
1272 // $Log: not supported by cvs2svn $
1273 // Revision 1.99  2004/07/02 18:49:02  dfrankow
1274 // Change one line so that if addPageList() is passed null, it is still
1275 // okay.  The unit tests do this (ask to list AllUsers where there are no
1276 // users, or something like that).
1277 //
1278 // Revision 1.98  2004/07/01 08:51:22  rurban
1279 // dumphtml: added exclude, print pagename before processing
1280 //
1281 // Revision 1.97  2004/06/29 09:11:10  rurban
1282 // More memory optimization:
1283 //   don't cache unneeded _cached_html and %content for content and size columns
1284 //   (only if sortable, which will fail for too many pages)
1285 //
1286 // Revision 1.96  2004/06/29 08:47:42  rurban
1287 // Memory optimization (reference to parent, smart bool %content)
1288 // Fixed class grouping in table
1289 //
1290 // Revision 1.95  2004/06/28 19:00:01  rurban
1291 // removed non-portable LIMIT 1 (it's getOne anyway)
1292 // removed size from info=most: needs to much memory
1293 //
1294 // Revision 1.94  2004/06/27 10:26:02  rurban
1295 // oci8 patch by Philippe Vanhaesendonck + some ADODB notes+fixes
1296 //
1297 // Revision 1.93  2004/06/25 14:29:17  rurban
1298 // WikiGroup refactoring:
1299 //   global group attached to user, code for not_current user.
1300 //   improved helpers for special groups (avoid double invocations)
1301 // new experimental config option ENABLE_XHTML_XML (fails with IE, and document.write())
1302 // fixed a XHTML validation error on userprefs.tmpl
1303 //
1304 // Revision 1.92  2004/06/21 17:01:39  rurban
1305 // fix typo and rating method call
1306 //
1307 // Revision 1.91  2004/06/21 16:22:29  rurban
1308 // add DEFAULT_DUMP_DIR and HTML_DUMP_DIR constants, for easier cmdline dumps,
1309 // fixed dumping buttons locally (images/buttons/),
1310 // support pages arg for dumphtml,
1311 // optional directory arg for dumpserial + dumphtml,
1312 // fix a AllPages warning,
1313 // show dump warnings/errors on DEBUG,
1314 // don't warn just ignore on wikilens pagelist columns, if not loaded.
1315 // RateIt pagelist column is called "rating", not "ratingwidget" (Dan?)
1316 //
1317 // Revision 1.90  2004/06/18 14:38:21  rurban
1318 // adopt new PageList style
1319 //
1320 // Revision 1.89  2004/06/17 13:16:08  rurban
1321 // apply wikilens work to PageList: all columns are sortable (slightly fixed)
1322 //
1323 // Revision 1.88  2004/06/14 11:31:35  rurban
1324 // renamed global $Theme to $WikiTheme (gforge nameclash)
1325 // inherit PageList default options from PageList
1326 //   default sortby=pagename
1327 // use options in PageList_Selectable (limit, sortby, ...)
1328 // added action revert, with button at action=diff
1329 // added option regex to WikiAdminSearchReplace
1330 //
1331 // Revision 1.87  2004/06/13 16:02:12  rurban
1332 // empty list of pages if user=[] and not authenticated.
1333 //
1334 // Revision 1.86  2004/06/13 15:51:37  rurban
1335 // Support pagelist filter for current author,owner,creator by []
1336 //
1337 // Revision 1.85  2004/06/13 15:33:19  rurban
1338 // new support for arguments owner, author, creator in most relevant
1339 // PageList plugins. in WikiAdmin* via preSelectS()
1340 //
1341 // Revision 1.84  2004/06/08 13:51:56  rurban
1342 // some comments only
1343 //
1344 // Revision 1.83  2004/05/18 13:35:39  rurban
1345 //  improve Pagelist layout by equal pagename width for limited lists
1346 //
1347 // Revision 1.82  2004/05/16 22:07:35  rurban
1348 // check more config-default and predefined constants
1349 // various PagePerm fixes:
1350 //   fix default PagePerms, esp. edit and view for Bogo and Password users
1351 //   implemented Creator and Owner
1352 //   BOGOUSERS renamed to BOGOUSER
1353 // fixed syntax errors in signin.tmpl
1354 //
1355 // Revision 1.81  2004/05/13 12:30:35  rurban
1356 // fix for MacOSX border CSS attr, and if sort buttons are not found
1357 //
1358 // Revision 1.80  2004/04/20 00:56:00  rurban
1359 // more paging support and paging fix for shorter lists
1360 //
1361 // Revision 1.79  2004/04/20 00:34:16  rurban
1362 // more paging support
1363 //
1364 // Revision 1.78  2004/04/20 00:06:03  rurban
1365 // themable paging support
1366 //
1367 // Revision 1.77  2004/04/18 01:11:51  rurban
1368 // more numeric pagename fixes.
1369 // fixed action=upload with merge conflict warnings.
1370 // charset changed from constant to global (dynamic utf-8 switching)
1371 //
1372
1373 // (c-file-style: "gnu")
1374 // Local Variables:
1375 // mode: php
1376 // tab-width: 8
1377 // c-basic-offset: 4
1378 // c-hanging-comment-ender-p: nil
1379 // indent-tabs-mode: nil
1380 // End:
1381 ?>