]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/PageList.php
Prevent from more warnings, minor db and sort optimizations
[SourceForge/phpwiki.git] / lib / PageList.php
1 <?php rcs_id('$Id: PageList.php,v 1.102 2004-07-08 21:32:35 rurban 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 $request;
699         $dbi =& $request->getDbh();
700         if (isa($dbi,'WikiDB_SQL')) {
701             extract($dbi->_backend->_table_names);
702             $res = $dbi->_backend->_dbh->getOne("SELECT max(length(pagename)) FROM $page_tbl");
703             if (DB::isError($res) || empty($res)) return false;
704             else return $res;
705         } elseif (isa($dbi,'WikiDB_ADODB')) {
706             extract($dbi->_backend->_table_names);
707             $row = $dbi->_backend->_dbh->getRow("SELECT max(length(pagename)) FROM $page_tbl");
708             return $row ? $row[0] : false;
709         } else 
710             return false;
711     }
712
713     function getContent() {
714         // Note that the <caption> element wants inline content.
715         $caption = $this->getCaption();
716
717         if ($this->isEmpty())
718             return $this->_emptyList($caption);
719         elseif (count($this->_columns) == 1)
720             return $this->_generateList($caption);
721         else
722             return $this->_generateTable($caption);
723     }
724
725     function printXML() {
726         PrintXML($this->getContent());
727     }
728
729     function asXML() {
730         return AsXML($this->getContent());
731     }
732     
733     /** Now all columns are sortable. 
734      *  These are the colums which have native WikiDB backend methods. 
735      */
736     function sortable_columns() {
737         return array('pagename','mtime','hits');
738     }
739
740     /** 
741      * Handle sortby requests for the DB iterator and table header links.
742      * Prefix the column with + or - like "+pagename","-mtime", ...
743      * supported actions: 'flip_order' "mtime" => "+mtime" => "-mtime" ...
744      *                    'db'         "-pagename" => "pagename DESC"
745      * Now all columns are sortable. (patch by DanFr)
746      */
747     function sortby ($column, $action) {
748         if (empty($column)) return '';
749         //support multiple comma-delimited sortby args: "+hits,+pagename"
750         if (strstr($column,',')) {
751             $result = array();
752             foreach (explode(',',$column) as $col) {
753                 $result[] = $this->sortby($col,$action);
754             }
755             return join(",",$result);
756         }
757         if (substr($column,0,1) == '+') {
758             $order = '+'; $column = substr($column,1);
759         } elseif (substr($column,0,1) == '-') {
760             $order = '-'; $column = substr($column,1);
761         }
762         // default order: +pagename, -mtime, -hits
763         if (empty($order))
764             if (in_array($column,array('mtime','hits')))
765                 $order = '-';
766             else
767                 $order = '+';
768         if ($action == 'flip_order') {
769             return ($order == '+' ? '-' : '+') . $column;
770         } elseif ($action == 'init') {
771             $this->_sortby[$column] = $order;
772             return $order . $column;
773         } elseif ($action == 'check') {
774             return (!empty($this->_sortby[$column]) or 
775                     ($GLOBALS['request']->getArg('sortby') and 
776                      strstr($GLOBALS['request']->getArg('sortby'),$column)));
777         } elseif ($action == 'db') {
778                 // native sort possible?
779             if (in_array($column, PageList::sortable_columns()))
780                 // asc or desc: +pagename, -pagename
781                 return $column . ($order == '+' ? ' ASC' : ' DESC');
782             else 
783                 return '';
784         }
785         return '';
786     }
787
788     // echo implode(":",explodeList("Test*",array("xx","Test1","Test2")));
789     function explodePageList($input, $perm = false, $sortby=false, $limit=false) {
790         // expand wildcards from list of all pages
791         if (preg_match('/[\?\*]/',$input)) {
792             $dbi = $GLOBALS['request']->getDbh();
793             $allPagehandles = $dbi->getAllPages($perm,$sortby,$limit);
794             while ($pagehandle = $allPagehandles->next()) {
795                 $allPages[] = $pagehandle->getName();
796             }
797             return explodeList($input, $allPages);
798         } else {
799             //TODO: do the sorting, normally not needed if used for exclude only
800             return explode(',',$input);
801         }
802     }
803
804     function allPagesByAuthor($wildcard, $perm=false, $sortby=false, $limit=false) {
805         $dbi = $GLOBALS['request']->getDbh();
806         $allPagehandles = $dbi->getAllPages($perm, $sortby, $limit);
807         $allPages = array();
808         if ($wildcard === '[]') {
809             $wildcard = $GLOBALS['request']->_user->getAuthenticatedId();
810             if (!$wildcard) return $allPages;
811         }
812         $do_glob = preg_match('/[\?\*]/', $wildcard);
813         while ($pagehandle = $allPagehandles->next()) {
814             $name = $pagehandle->getName();
815             $author = $pagehandle->getAuthor();
816             if ($author) {
817                 if ($do_glob) {
818                     if (glob_match($wildcard, $author))
819                         $allPages[] = $name;
820                 } elseif ($wildcard == $author) {
821                       $allPages[] = $name;
822                 }
823             }
824         }
825         return $allPages;
826     }
827
828     function allPagesByOwner($wildcard, $perm=false, $sortby=false, $limit=false) {
829         $dbi = $GLOBALS['request']->getDbh();
830         $allPagehandles = $dbi->getAllPages($perm, $sortby, $limit);
831         $allPages = array();
832         if ($wildcard === '[]') {
833             $wildcard = $GLOBALS['request']->_user->getAuthenticatedId();
834             if (!$wildcard) return $allPages;
835         }
836         $do_glob = preg_match('/[\?\*]/', $wildcard);
837         while ($pagehandle = $allPagehandles->next()) {
838             $name = $pagehandle->getName();
839             $owner = $pagehandle->getOwner();
840             if ($owner) {
841                 if ($do_glob) {
842                     if (glob_match($wildcard, $owner))
843                         $allPages[] = $name;
844                 } elseif ($wildcard == $owner) {
845                       $allPages[] = $name;
846                 }
847             }
848         }
849         return $allPages;
850     }
851
852     function allPagesByCreator($wildcard, $perm=false, $sortby=false, $limit=false) {
853         $dbi = $GLOBALS['request']->getDbh();
854         $allPagehandles = $dbi->getAllPages($perm, $sortby, $limit);
855         $allPages = array();
856         if ($wildcard === '[]') {
857             $wildcard = $GLOBALS['request']->_user->getAuthenticatedId();
858             if (!$wildcard) return $allPages;
859         }
860         $do_glob = preg_match('/[\?\*]/', $wildcard);
861         while ($pagehandle = $allPagehandles->next()) {
862             $name = $pagehandle->getName();
863             $creator = $pagehandle->getCreator();
864             if ($creator) {
865                 if ($do_glob) {
866                     if (glob_match($wildcard, $creator))
867                         $allPages[] = $name;
868                 } elseif ($wildcard == $creator) {
869                       $allPages[] = $name;
870                 }
871             }
872         }
873         return $allPages;
874     }
875
876     ////////////////////
877     // private
878     ////////////////////
879     /** Plugin and theme hooks: 
880      *  If the pageList is initialized with $options['types'] these types are also initialized, 
881      *  overriding the standard types.
882      */
883     function _initAvailableColumns() {
884         global $customPageListColumns;
885         $standard_types =
886             array(
887                   'content'
888                   => new _PageList_Column_content('rev:content', _("Content")),
889                   // new: plugin specific column types initialised by the relevant plugins
890                   /*
891                   'hi_content' // with highlighted search for SearchReplace
892                   => new _PageList_Column_content('rev:hi_content', _("Content")),
893                   'remove'
894                   => new _PageList_Column_remove('remove', _("Remove")),
895                   // initialised by the plugin
896                   'renamed_pagename'
897                   => new _PageList_Column_renamed_pagename('rename', _("Rename to")),
898                   'perm'
899                   => new _PageList_Column_perm('perm', _("Permission")),
900                   'acl'
901                   => new _PageList_Column_acl('acl', _("ACL")),
902                   */
903                   'checkbox'
904                   => new _PageList_Column_checkbox('p', _("Select")),
905                   'pagename'
906                   => new _PageList_Column_pagename,
907                   'mtime'
908                   => new _PageList_Column_time('rev:mtime', _("Last Modified")),
909                   'hits'
910                   => new _PageList_Column('hits', _("Hits"), 'right'),
911                   'size'
912                   => new _PageList_Column_size('rev:size', _("Size"), 'right'),
913                                               /*array('align' => 'char', 'char' => ' ')*/
914                   'summary'
915                   => new _PageList_Column('rev:summary', _("Last Summary")),
916                   'version'
917                   => new _PageList_Column_version('rev:version', _("Version"),
918                                                  'right'),
919                   'author'
920                   => new _PageList_Column_author('rev:author', _("Last Author")),
921                   'owner'
922                   => new _PageList_Column_owner('author_id', _("Owner")),
923                   'creator'
924                   => new _PageList_Column_creator('author_id', _("Creator")),
925                   /*
926                   'group'
927                   => new _PageList_Column_author('group', _("Group")),
928                   */
929                   'locked'
930                   => new _PageList_Column_bool('locked', _("Locked"),
931                                                _("locked")),
932                   'minor'
933                   => new _PageList_Column_bool('rev:is_minor_edit',
934                                                _("Minor Edit"), _("minor")),
935                   'markup'
936                   => new _PageList_Column('rev:markup', _("Markup")),
937                   // 'rating' initialised by the wikilens theme hook: addPageListColumn
938                   /*
939                   'rating'
940                   => new _PageList_Column_rating('rating', _("Rate")),
941                   */
942                   );
943         if (empty($this->_types))
944             $this->_types = array();
945         // add plugin specific pageList columns, initialized by $options['types']
946         $this->_types = array_merge($standard_types, $this->_types);
947         // add theme custom specific pageList columns: 
948         //   set the 4th param as the current pagelist object.
949         if (!empty($customPageListColumns)) {
950             foreach ($customPageListColumns as $column => $params) {
951                 $class_name = array_shift($params);
952                 $params[3] =& $this;
953                 $class = new $class_name($params);
954             }
955             $this->_types = array_merge($this->_types, $customPageListColumns);
956         }
957     }
958
959     function getOption($option) {
960         if (array_key_exists($option, $this->_options)) {
961             return $this->_options[$option];
962         }
963         else {
964             return null;
965         }
966     }
967
968     /**
969      * Add a column to this PageList, given a column name.
970      * The name is a type, and optionally has a : and a label. Examples:
971      *
972      *   pagename
973      *   pagename:This page
974      *   mtime
975      *   mtime:Last modified
976      *
977      * If this function is called multiple times for the same type, the
978      * column will only be added the first time, and ignored the succeeding times.
979      * If you wish to add multiple columns of the same type, use addColumnObject().
980      *
981      * @param column name
982      * @return  true if column is added, false otherwise
983      */
984     function _addColumn ($column) {
985         
986         if (isset($this->_columns_seen[$column]))
987             return false;       // Already have this one.
988         if (!isset($this->_types[$column]))
989             $this->_initAvailableColumns();
990         $this->_columns_seen[$column] = true;
991
992         if (strstr($column, ':'))
993             list ($column, $heading) = explode(':', $column, 2);
994
995         if (!isset($this->_types[$column])) {
996             $silently_ignore = array('numbacklinks','rating','coagreement','minmisery',
997                                      'averagerating','top3recs');
998             if (!in_array($column,$silently_ignore))
999                 trigger_error(sprintf("%s: Bad column", $column), E_USER_NOTICE);
1000             return false;
1001         }
1002         if ($column == 'ratingwidget' and !$GLOBALS['request']->_user->isSignedIn())
1003             return false;
1004
1005         $this->addColumnObject($this->_types[$column]);
1006
1007         return true;
1008     }
1009
1010     /**
1011      * Add a column to this PageList, given a column object.
1012      *
1013      * @param $col object   An object derived from _PageList_Column.
1014      **/
1015     function addColumnObject($col) {
1016         if (is_array($col)) {// custom column object
1017             $params =& $col;
1018             $class_name = array_shift($params);
1019             $params[3] =& $this;
1020             $col = new $class_name($params);
1021         }
1022         $heading = $col->getHeading();
1023         if (!empty($heading))
1024             $col->setHeading($heading);
1025
1026         $this->_columns[] = $col;
1027         $this->_columnsMap[$col->_field] = count($this->_columns)-1;
1028     }
1029
1030     /**
1031      * Compare _PageList_Page objects.
1032      **/
1033     function _pageCompare($a, $b) {
1034         $pagelist =& $a->_pagelist;
1035         $pagea = $a->getPage();
1036         $pageb = $b->getPage();
1037         if (count($pagelist->_sortby) == 0) {
1038             // No columns to sort by
1039             return 0;
1040         }
1041         else {
1042             foreach ($pagelist->_sortby as $colNum => $direction) {
1043                 $colkey = $colNum;
1044                 if (!is_int($colkey)) { // or column fieldname
1045                     $colkey = $pagelist->_columnsMap[$colNum];
1046                 }
1047                 $col = $pagelist->_columns[$colkey];
1048
1049                 $revision_handle = false;
1050                 $pagea = PageList::_getPageFromHandle($pagea);  // If a string, convert to page
1051                 assert(isa($pagea, 'WikiDB_Page'));
1052                 assert(isset($col));
1053                 $aval = $col->_getSortableValue($pagea, $revision_handle);
1054                 $pageb = PageList::_getPageFromHandle($pageb);  // If a string, convert to page
1055                 
1056                 $revision_handle = false;
1057                 assert(isa($pageb, 'WikiDB_Page'));
1058                 $bval = $col->_getSortableValue($pageb, $revision_handle);
1059
1060                 $cmp = $col->_compare($aval, $bval);
1061                 if ($direction === "-") {
1062                     // Reverse the sense of the comparison
1063                     $cmp *= -1;
1064                 }
1065
1066                 if ($cmp !== 0) {
1067                     // This is the first comparison that is not equal-- go with it
1068                     return $cmp;
1069                 }
1070             }
1071             return 0;
1072         }
1073     }
1074
1075     /**
1076      * Put pages in order according to the sortby arg, if given
1077      */
1078     function _sortPages() {
1079         //TODO: if the sortby cols are already sorted by the DB call don't do usort.
1080         if (count($this->_sortby) > 0) {
1081             $need_sort = 0;
1082             foreach ($this->_sortby as $col) {
1083                 if (!$this->sortby($col,'db'))
1084                     $need_sort = 1;
1085             }
1086             if ($need_sort) {
1087                 // There are columns to sort by
1088                 usort($this->_pages, array('PageList', '_pageCompare'));
1089             }
1090         }        
1091     }
1092
1093     function limit($limit) {
1094         if (strstr($limit,','))
1095             return split(',',$limit);
1096         else
1097             return array(0,$limit);
1098     }
1099     
1100     // make a table given the caption
1101     function _generateTable($caption) {
1102         if (count($this->_sortby) > 0) $this->_sortPages();
1103
1104         $rows = array(); $i = 0;
1105         foreach ($this->_pages as $pagenum => $page) {
1106             $rows[] = $this->_renderPageRow($page, $i++);
1107         }
1108
1109         $table = HTML::table(array('cellpadding' => 0,
1110                                    'cellspacing' => 1,
1111                                    'border'      => 0,
1112                                    'class'       => 'pagelist'));
1113         if ($caption)
1114             $table->pushContent(HTML::caption(array('align'=>'top'), $caption));
1115
1116         //Warning: This is quite fragile. It depends solely on a private variable
1117         //         in ->_addColumn()
1118         if (!empty($this->_columns_seen['checkbox'])) {
1119             $table->pushContent($this->_jsFlipAll());
1120         }
1121         $do_paging = ( isset($this->_options['paging']) and 
1122                        !empty($this->_options['limit']) and $this->getTotal() and
1123                        $this->_options['paging'] != 'none' );
1124         $row = HTML::tr();
1125         $table_summary = array();
1126         $i = 0;
1127         foreach ($this->_columns as $col) {
1128             $heading = $col->button_heading($this, $i);
1129             if ($do_paging and 
1130                 isset($col->_field) and $col->_field == 'pagename' and 
1131                 ($maxlen = $this->maxLen()))
1132                 $heading->setAttr('width',$maxlen * 7);
1133             $row->pushContent($heading);
1134             if (is_string($col->getHeading()))
1135                 $table_summary[] = $col->getHeading();
1136             $i++;
1137         }
1138         // Table summary for non-visual browsers.
1139         $table->setAttr('summary', sprintf(_("Columns: %s."), 
1140                                            implode(", ", $table_summary)));
1141
1142         if ( $do_paging ) {
1143             // if there are more pages than the limit, show a table-header, -footer
1144             list($offset,$pagesize) = $this->limit($this->_options['limit']);
1145             $numrows = $this->getTotal();
1146             if (!$pagesize or
1147                 (!$offset and $numrows <= $pagesize) or
1148                 ($offset + $pagesize < 0)) 
1149             {
1150                 $table->pushContent(HTML::thead($row),
1151                                     HTML::tbody(false, $rows));
1152                 return $table;
1153             }
1154             global $request;
1155             include_once('lib/Template.php');
1156
1157             $tokens = array();
1158             $pagename = $request->getArg('pagename');
1159             $defargs = $request->args;
1160             unset($defargs['pagename']); unset($defargs['action']);
1161             //$defargs['nocache'] = 1;
1162             $prev = $defargs;
1163             $tokens['PREV'] = false; $tokens['PREV_LINK'] = "";
1164             $tokens['COLS'] = count($this->_columns);
1165             $tokens['COUNT'] = $numrows; 
1166             $tokens['OFFSET'] = $offset; 
1167             $tokens['SIZE'] = $pagesize;
1168             $tokens['NUMPAGES'] = (int)($numrows / $pagesize)+1;
1169             $tokens['ACTPAGE'] = (int) (($offset+1) / $pagesize)+1;
1170             if ($offset > 0) {
1171                 $prev['limit'] = min(0,$offset - $pagesize) . ",$pagesize";
1172                 $prev['count'] = $numrows;
1173                 $tokens['LIMIT'] = $prev['limit'];
1174                 $tokens['PREV'] = true;
1175                 $tokens['PREV_LINK'] = WikiURL($pagename,$prev);
1176                 $prev['limit'] = "0,$pagesize";
1177                 $tokens['FIRST_LINK'] = WikiURL($pagename,$prev);
1178             }
1179             $next = $defargs;
1180             $tokens['NEXT'] = false; $tokens['NEXT_LINK'] = "";
1181             if ($offset + $pagesize < $numrows) {
1182                 $next['limit'] = min($offset + $pagesize,$numrows - $pagesize) . ",$pagesize";
1183                 $next['count'] = $numrows;
1184                 $tokens['LIMIT'] = $next['limit'];
1185                 $tokens['NEXT'] = true;
1186                 $tokens['NEXT_LINK'] = WikiURL($pagename,$next);
1187                 $next['limit'] = $numrows - $pagesize . ",$pagesize";
1188                 $tokens['LAST_LINK'] = WikiURL($pagename,$next);
1189             }
1190             $paging = new Template("pagelink", $request, $tokens);
1191             $table->pushContent(HTML::thead($paging),
1192                                 HTML::tbody(false, HTML($row, $rows)),
1193                                 HTML::tfoot($paging));
1194             return $table;
1195         }
1196         $table->pushContent(HTML::thead($row),
1197                             HTML::tbody(false, $rows));
1198         return $table;
1199     }
1200
1201     function _jsFlipAll() {
1202       return JavaScript("
1203 function flipAll(formObj) {
1204   var isFirstSet = -1;
1205   for (var i=0;i < formObj.length;i++) {
1206       fldObj = formObj.elements[i];
1207       if (fldObj.type == 'checkbox') { 
1208          if (isFirstSet == -1)
1209            isFirstSet = (fldObj.checked) ? true : false;
1210          fldObj.checked = (isFirstSet) ? false : true;
1211        }
1212    }
1213 }");
1214     }
1215
1216     function _generateList($caption) {
1217         $list = HTML::ul(array('class' => 'pagelist'));
1218         $i = 0;
1219         foreach ($this->_pages as $pagenum => $page) {
1220             $pagehtml = $this->_renderPageRow($page);
1221             $group = ($i++ / $this->_group_rows);
1222             $class = ($group % 2) ? 'oddrow' : 'evenrow';
1223             $list->pushContent(HTML::li(array('class' => $class),$pagehtml));
1224         }
1225         $out = HTML();
1226         //Warning: This is quite fragile. It depends solely on a private variable
1227         //         in ->_addColumn()
1228         // Questionable if its of use here anyway. This is a one-col pagename list only.
1229         //if (!empty($this->_columns_seen['checkbox'])) $out->pushContent($this->_jsFlipAll());
1230         if ($caption)
1231             $out->pushContent(HTML::p($caption));
1232         $out->pushContent($list);
1233         return $out;
1234     }
1235
1236     function _emptyList($caption) {
1237         $html = HTML();
1238         if ($caption)
1239             $html->pushContent(HTML::p($caption));
1240         if ($this->_messageIfEmpty)
1241             $html->pushContent(HTML::blockquote(HTML::p($this->_messageIfEmpty)));
1242         return $html;
1243     }
1244
1245     // Condense list: "Page1, Page2, ..." 
1246     // Alternative $seperator = HTML::Raw(' &middot; ')
1247     function _generateCommaList($seperator = ', ') {
1248         return HTML(join($seperator, $list));
1249     }
1250
1251 };
1252
1253 /* List pages with checkboxes to select from.
1254  * The [Select] button toggles via _jsFlipAll
1255  */
1256
1257 class PageList_Selectable
1258 extends PageList {
1259
1260     function PageList_Selectable ($columns=false, $exclude=false, $options = false) {
1261         if ($columns) {
1262             if (!is_array($columns))
1263                 $columns = explode(',', $columns);
1264             if (!in_array('checkbox',$columns))
1265                 array_unshift($columns,'checkbox');
1266         } else {
1267             $columns = array('checkbox','pagename');
1268         }
1269         $this->PageList($columns, $exclude, $options);
1270     }
1271
1272     function addPageList ($array) {
1273         while (list($pagename,$selected) = each($array)) {
1274             if ($selected) $this->addPageSelected((string)$pagename);
1275             $this->addPage((string)$pagename);
1276         }
1277     }
1278
1279     function addPageSelected ($pagename) {
1280         $this->_selected[$pagename] = 1;
1281     }
1282 }
1283
1284 // $Log: not supported by cvs2svn $
1285 // Revision 1.101  2004/07/08 19:04:41  rurban
1286 // more unittest fixes (file backend, metadata RatingsDb)
1287 //
1288 // Revision 1.100  2004/07/07 15:02:26  dfrankow
1289 // Take out if that prevents column sorting
1290 //
1291 // Revision 1.99  2004/07/02 18:49:02  dfrankow
1292 // Change one line so that if addPageList() is passed null, it is still
1293 // okay.  The unit tests do this (ask to list AllUsers where there are no
1294 // users, or something like that).
1295 //
1296 // Revision 1.98  2004/07/01 08:51:22  rurban
1297 // dumphtml: added exclude, print pagename before processing
1298 //
1299 // Revision 1.97  2004/06/29 09:11:10  rurban
1300 // More memory optimization:
1301 //   don't cache unneeded _cached_html and %content for content and size columns
1302 //   (only if sortable, which will fail for too many pages)
1303 //
1304 // Revision 1.96  2004/06/29 08:47:42  rurban
1305 // Memory optimization (reference to parent, smart bool %content)
1306 // Fixed class grouping in table
1307 //
1308 // Revision 1.95  2004/06/28 19:00:01  rurban
1309 // removed non-portable LIMIT 1 (it's getOne anyway)
1310 // removed size from info=most: needs to much memory
1311 //
1312 // Revision 1.94  2004/06/27 10:26:02  rurban
1313 // oci8 patch by Philippe Vanhaesendonck + some ADODB notes+fixes
1314 //
1315 // Revision 1.93  2004/06/25 14:29:17  rurban
1316 // WikiGroup refactoring:
1317 //   global group attached to user, code for not_current user.
1318 //   improved helpers for special groups (avoid double invocations)
1319 // new experimental config option ENABLE_XHTML_XML (fails with IE, and document.write())
1320 // fixed a XHTML validation error on userprefs.tmpl
1321 //
1322 // Revision 1.92  2004/06/21 17:01:39  rurban
1323 // fix typo and rating method call
1324 //
1325 // Revision 1.91  2004/06/21 16:22:29  rurban
1326 // add DEFAULT_DUMP_DIR and HTML_DUMP_DIR constants, for easier cmdline dumps,
1327 // fixed dumping buttons locally (images/buttons/),
1328 // support pages arg for dumphtml,
1329 // optional directory arg for dumpserial + dumphtml,
1330 // fix a AllPages warning,
1331 // show dump warnings/errors on DEBUG,
1332 // don't warn just ignore on wikilens pagelist columns, if not loaded.
1333 // RateIt pagelist column is called "rating", not "ratingwidget" (Dan?)
1334 //
1335 // Revision 1.90  2004/06/18 14:38:21  rurban
1336 // adopt new PageList style
1337 //
1338 // Revision 1.89  2004/06/17 13:16:08  rurban
1339 // apply wikilens work to PageList: all columns are sortable (slightly fixed)
1340 //
1341 // Revision 1.88  2004/06/14 11:31:35  rurban
1342 // renamed global $Theme to $WikiTheme (gforge nameclash)
1343 // inherit PageList default options from PageList
1344 //   default sortby=pagename
1345 // use options in PageList_Selectable (limit, sortby, ...)
1346 // added action revert, with button at action=diff
1347 // added option regex to WikiAdminSearchReplace
1348 //
1349 // Revision 1.87  2004/06/13 16:02:12  rurban
1350 // empty list of pages if user=[] and not authenticated.
1351 //
1352 // Revision 1.86  2004/06/13 15:51:37  rurban
1353 // Support pagelist filter for current author,owner,creator by []
1354 //
1355 // Revision 1.85  2004/06/13 15:33:19  rurban
1356 // new support for arguments owner, author, creator in most relevant
1357 // PageList plugins. in WikiAdmin* via preSelectS()
1358 //
1359 // Revision 1.84  2004/06/08 13:51:56  rurban
1360 // some comments only
1361 //
1362 // Revision 1.83  2004/05/18 13:35:39  rurban
1363 //  improve Pagelist layout by equal pagename width for limited lists
1364 //
1365 // Revision 1.82  2004/05/16 22:07:35  rurban
1366 // check more config-default and predefined constants
1367 // various PagePerm fixes:
1368 //   fix default PagePerms, esp. edit and view for Bogo and Password users
1369 //   implemented Creator and Owner
1370 //   BOGOUSERS renamed to BOGOUSER
1371 // fixed syntax errors in signin.tmpl
1372 //
1373 // Revision 1.81  2004/05/13 12:30:35  rurban
1374 // fix for MacOSX border CSS attr, and if sort buttons are not found
1375 //
1376 // Revision 1.80  2004/04/20 00:56:00  rurban
1377 // more paging support and paging fix for shorter lists
1378 //
1379 // Revision 1.79  2004/04/20 00:34:16  rurban
1380 // more paging support
1381 //
1382 // Revision 1.78  2004/04/20 00:06:03  rurban
1383 // themable paging support
1384 //
1385 // Revision 1.77  2004/04/18 01:11:51  rurban
1386 // more numeric pagename fixes.
1387 // fixed action=upload with merge conflict warnings.
1388 // charset changed from constant to global (dynamic utf-8 switching)
1389 //
1390
1391 // (c-file-style: "gnu")
1392 // Local Variables:
1393 // mode: php
1394 // tab-width: 8
1395 // c-basic-offset: 4
1396 // c-hanging-comment-ender-p: nil
1397 // indent-tabs-mode: nil
1398 // End:
1399 ?>