]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/WikiDB.php
stabilize rename updateWikiLinks to check only words
[SourceForge/phpwiki.git] / lib / WikiDB.php
1 <?php //-*-php-*-
2 rcs_id('$Id: WikiDB.php,v 1.155 2007-07-15 17:39:33 rurban Exp $');
3
4 require_once('lib/PageType.php');
5
6 /**
7  * The classes in the file define the interface to the
8  * page database.
9  *
10  * @package WikiDB
11  * @author Geoffrey T. Dairiki <dairiki@dairiki.org>
12  * Minor enhancements by Reini Urban
13  */
14
15 /**
16  * Force the creation of a new revision.
17  * @see WikiDB_Page::createRevision()
18  */
19 if (!defined('WIKIDB_FORCE_CREATE'))
20     define('WIKIDB_FORCE_CREATE', -1);
21
22 /** 
23  * Abstract base class for the database used by PhpWiki.
24  *
25  * A <tt>WikiDB</tt> is a container for <tt>WikiDB_Page</tt>s which in
26  * turn contain <tt>WikiDB_PageRevision</tt>s.
27  *
28  * Conceptually a <tt>WikiDB</tt> contains all possible
29  * <tt>WikiDB_Page</tt>s, whether they have been initialized or not.
30  * Since all possible pages are already contained in a WikiDB, a call
31  * to WikiDB::getPage() will never fail (barring bugs and
32  * e.g. filesystem or SQL database problems.)
33  *
34  * Also each <tt>WikiDB_Page</tt> always contains at least one
35  * <tt>WikiDB_PageRevision</tt>: the default content (e.g. "Describe
36  * [PageName] here.").  This default content has a version number of
37  * zero.
38  *
39  * <tt>WikiDB_PageRevision</tt>s have read-only semantics. One can
40  * only create new revisions or delete old ones --- one can not modify
41  * an existing revision.
42  */
43 class WikiDB {
44     /**
45      * Open a WikiDB database.
46      *
47      * This is a static member function. This function inspects its
48      * arguments to determine the proper subclass of WikiDB to
49      * instantiate, and then it instantiates it.
50      *
51      * @access public
52      *
53      * @param hash $dbparams Database configuration parameters.
54      * Some pertinent paramters are:
55      * <dl>
56      * <dt> dbtype
57      * <dd> The back-end type.  Current supported types are:
58      *   <dl>
59      *   <dt> SQL
60      *     <dd> Generic SQL backend based on the PEAR/DB database abstraction
61      *       library. (More stable and conservative)
62      *   <dt> ADODB
63      *     <dd> Another generic SQL backend. (More current features are tested here. Much faster)
64      *   <dt> dba
65      *     <dd> Dba based backend. The default and by far the fastest.
66      *   <dt> cvs
67      *     <dd> 
68      *   <dt> file
69      *     <dd> flat files
70      *   </dl>
71      *
72      * <dt> dsn
73      * <dd> (Used by the SQL and ADODB backends.)
74      *      The DSN specifying which database to connect to.
75      *
76      * <dt> prefix
77      * <dd> Prefix to be prepended to database tables (and file names).
78      *
79      * <dt> directory
80      * <dd> (Used by the dba backend.)
81      *      Which directory db files reside in.
82      *
83      * <dt> timeout
84      * <dd> Used only by the dba backend so far. 
85      *      And: When optimizing mysql it closes timed out mysql processes.
86      *      otherwise only used for dba: Timeout in seconds for opening (and 
87      *      obtaining lock) on the dbm file.
88      *
89      * <dt> dba_handler
90      * <dd> (Used by the dba backend.)
91      *
92      *      Which dba handler to use. Good choices are probably either
93      *      'gdbm' or 'db2'.
94      * </dl>
95      *
96      * @return WikiDB A WikiDB object.
97      **/
98     function open ($dbparams) {
99         $dbtype = $dbparams{'dbtype'};
100         include_once("lib/WikiDB/$dbtype.php");
101                                 
102         $class = 'WikiDB_' . $dbtype;
103         return new $class ($dbparams);
104     }
105
106
107     /**
108      * Constructor.
109      *
110      * @access private
111      * @see open()
112      */
113     function WikiDB (&$backend, $dbparams) {
114         $this->_backend = &$backend;
115         // don't do the following with the auth_dsn!
116         if (isset($dbparams['auth_dsn'])) return;
117         
118         $this->_cache = new WikiDB_cache($backend);
119         if (!empty($GLOBALS['request'])) $GLOBALS['request']->_dbi = $this;
120
121         // If the database doesn't yet have a timestamp, initialize it now.
122         if ($this->get('_timestamp') === false)
123             $this->touch();
124         
125         // devel checking.
126         if ((int)DEBUG & _DEBUG_SQL) {
127             $this->_backend->check();
128         }
129     }
130     
131     /**
132      * Close database connection.
133      *
134      * The database may no longer be used after it is closed.
135      *
136      * Closing a WikiDB invalidates all <tt>WikiDB_Page</tt>s,
137      * <tt>WikiDB_PageRevision</tt>s and <tt>WikiDB_PageIterator</tt>s
138      * which have been obtained from it.
139      *
140      * @access public
141      */
142     function close () {
143         $this->_backend->close();
144         $this->_cache->close();
145     }
146     
147     /**
148      * Get a WikiDB_Page from a WikiDB.
149      *
150      * A {@link WikiDB} consists of the (infinite) set of all possible pages,
151      * therefore this method never fails.
152      *
153      * @access public
154      * @param string $pagename Which page to get.
155      * @return WikiDB_Page The requested WikiDB_Page.
156      */
157     function getPage($pagename) {
158         static $error_displayed = false;
159         $pagename = (string) $pagename;
160         if ((int)DEBUG) {
161             if ($pagename === '') {
162                 if ($error_displayed) return false;
163                 $error_displayed = true;
164                 if (function_exists("xdebug_get_function_stack"))
165                     var_dump(xdebug_get_function_stack());
166                 trigger_error("empty pagename", E_USER_WARNING);
167                 return false;
168             }
169         } else {
170             assert($pagename != '');
171         }
172         return new WikiDB_Page($this, $pagename);
173     }
174
175     /**
176      * Determine whether page exists (in non-default form).
177      *
178      * <pre>
179      *   $is_page = $dbi->isWikiPage($pagename);
180      * </pre>
181      * is equivalent to
182      * <pre>
183      *   $page = $dbi->getPage($pagename);
184      *   $current = $page->getCurrentRevision();
185      *   $is_page = ! $current->hasDefaultContents();
186      * </pre>
187      * however isWikiPage may be implemented in a more efficient
188      * manner in certain back-ends.
189      *
190      * @access public
191      * @param string $pagename string Which page to check.
192      * @return boolean True if the page actually exists with
193      * non-default contents in the WikiDataBase.
194      */
195     function isWikiPage ($pagename) {
196         $page = $this->getPage($pagename);
197         return ($page and $page->exists());
198     }
199
200     /**
201      * Delete page from the WikiDB. 
202      *
203      * Deletes the page from the WikiDB with the possibility to revert and diff.
204      * //Also resets all page meta-data to the default values.
205      *
206      * Note: purgePage() effectively destroys all revisions of the page from the WikiDB. 
207      *
208      * @access public
209      * @param string $pagename Name of page to delete.
210      * @see purgePage
211      */
212     function deletePage($pagename) {
213         // don't create empty revisions of already purged pages.
214         if ($this->_backend->get_latest_version($pagename))
215             $result = $this->_cache->delete_page($pagename);
216         else 
217             $result = -1;
218
219         /* Generate notification emails */
220         include_once("lib/MailNotify.php");
221         $MailNotify = new MailNotify($pagename);
222         $MailNotify->onDeletePage ($this, $pagename);
223
224         //How to create a RecentChanges entry with explaining summary? Dynamically
225         /*
226         $page = $this->getPage($pagename);
227         $current = $page->getCurrentRevision();
228         $meta = $current->_data;
229         $version = $current->getVersion();
230         $meta['summary'] = _("removed");
231         $page->save($current->getPackedContent(), $version + 1, $meta);
232         */
233         return $result;
234     }
235
236     /**
237      * Completely remove the page from the WikiDB, without undo possibility.
238      * @access public
239      * @param string $pagename Name of page to delete.
240      * @see deletePage
241      */
242     function purgePage($pagename) {
243         $result = $this->_cache->purge_page($pagename);
244         $this->deletePage($pagename); // just for the notification
245         return $result;
246     }
247     
248     /**
249      * Retrieve all pages.
250      *
251      * Gets the set of all pages with non-default contents.
252      *
253      * @access public
254      *
255      * @param boolean $include_empty Optional. Normally pages whose most
256      * recent revision has empty content are considered to be
257      * non-existant. Unless $include_defaulted is set to true, those
258      * pages will not be returned.
259      * @param string or false $sortby Optional. "+-column,+-column2". 
260      *          If false the result is faster in natural order.
261      * @param string or false $limit Optional. Encoded as "$offset,$count".
262      *          $offset defaults to 0.
263      * @param string $exclude: Optional comma-seperated list of pagenames. 
264      *
265      * @return WikiDB_PageIterator A WikiDB_PageIterator which contains all pages
266      *     in the WikiDB which have non-default contents.
267      */
268     function getAllPages($include_empty=false, $sortby='', $limit='', $exclude='') 
269     {
270         // HACK: memory_limit=8M will fail on too large pagesets. old php on unix only!
271         if (USECACHE) {
272             $mem = ini_get("memory_limit");
273             if ($mem and !$limit and !isWindows() and !check_php_version(4,3)) {
274                 $limit = 450;
275                 $GLOBALS['request']->setArg('limit', $limit);
276                 $GLOBALS['request']->setArg('paging', 'auto');
277             }
278         }
279         $result = $this->_backend->get_all_pages($include_empty, $sortby, $limit, 
280                                                  $exclude);
281         return new WikiDB_PageIterator($this, $result, 
282                                        array('include_empty' => $include_empty, 
283                                              'exclude' => $exclude,
284                                              'limit' => $limit));
285     }
286
287     /**
288      * @access public
289      *
290      * @param boolean $include_empty If true include also empty pages
291      * @param string $exclude: comma-seperated list of pagenames. 
292      *                  TBD: array of pagenames
293      * @return integer
294      * 
295      */
296     function numPages($include_empty=false, $exclude='') {
297         if (method_exists($this->_backend, 'numPages'))
298             // FIXME: currently are all args ignored.
299             $count = $this->_backend->numPages($include_empty, $exclude);
300         else {
301             // FIXME: exclude ignored.
302             $iter = $this->getAllPages($include_empty, false, false, $exclude);
303             $count = $iter->count();
304             $iter->free();
305         }
306         return (int)$count;
307     }
308     
309     /**
310      * Title search.
311      *
312      * Search for pages containing (or not containing) certain words
313      * in their names.
314      *
315      * Pages are returned in alphabetical order whenever it is
316      * practical to do so.
317      * TODO: Sort by ranking. Only postgresql with tsearch2 can do ranking so far.
318      *
319      * @access public
320      * @param TextSearchQuery $search A TextSearchQuery object
321      * @param string or false $sortby Optional. "+-column,+-column2". 
322      *          If false the result is faster in natural order.
323      * @param string or false $limit Optional. Encoded as "$offset,$count".
324      *          $offset defaults to 0.
325      * @param string $exclude: Optional comma-seperated list of pagenames. 
326      * @return WikiDB_PageIterator A WikiDB_PageIterator containing the matching pages.
327      * @see TextSearchQuery
328      */
329     function titleSearch($search, $sortby='pagename', $limit='', $exclude='') {
330         $result = $this->_backend->text_search($search, false, $sortby, $limit, $exclude);
331         return new WikiDB_PageIterator($this, $result,
332                                        array('exclude' => $exclude,
333                                              'limit' => $limit));
334     }
335
336     /**
337      * Full text search.
338      *
339      * Search for pages containing (or not containing) certain words
340      * in their entire text (this includes the page content and the
341      * page name).
342      *
343      * Pages are returned in alphabetical order whenever it is
344      * practical to do so.
345      * TODO: Sort by ranking. Only postgresql with tsearch2 can do ranking so far.
346      *
347      * @access public
348      *
349      * @param TextSearchQuery $search A TextSearchQuery object.
350      * @param string or false $sortby Optional. "+-column,+-column2". 
351      *          If false the result is faster in natural order.
352      * @param string or false $limit Optional. Encoded as "$offset,$count".
353      *          $offset defaults to 0.
354      * @param string $exclude: Optional comma-seperated list of pagenames. 
355      * @return WikiDB_PageIterator A WikiDB_PageIterator containing the matching pages.
356      * @see TextSearchQuery
357      */
358     function fullSearch($search, $sortby='pagename', $limit='', $exclude='') {
359         $result = $this->_backend->text_search($search, true, $sortby, $limit, $exclude);
360         return new WikiDB_PageIterator($this, $result,
361                                        array('exclude' => $exclude,
362                                              'limit'   => $limit,
363                                              'stoplisted' => $result->stoplisted
364                                              ));
365     }
366
367     /**
368      * Find the pages with the greatest hit counts.
369      *
370      * Pages are returned in reverse order by hit count.
371      *
372      * @access public
373      *
374      * @param integer $limit The maximum number of pages to return.
375      * Set $limit to zero to return all pages.  If $limit < 0, pages will
376      * be sorted in decreasing order of popularity.
377      * @param string or false $sortby Optional. "+-column,+-column2". 
378      *          If false the result is faster in natural order.
379      *
380      * @return WikiDB_PageIterator A WikiDB_PageIterator containing the matching
381      * pages.
382      */
383     function mostPopular($limit = 20, $sortby = '-hits') {
384         $result = $this->_backend->most_popular($limit, $sortby);
385         return new WikiDB_PageIterator($this, $result);
386     }
387
388     /**
389      * Find recent page revisions.
390      *
391      * Revisions are returned in reverse order by creation time.
392      *
393      * @access public
394      *
395      * @param hash $params This hash is used to specify various optional
396      *   parameters:
397      * <dl>
398      * <dt> limit 
399      *    <dd> (integer) At most this many revisions will be returned.
400      * <dt> since
401      *    <dd> (integer) Only revisions since this time (unix-timestamp) 
402      *          will be returned. 
403      * <dt> include_minor_revisions
404      *    <dd> (boolean) Also include minor revisions.  (Default is not to.)
405      * <dt> exclude_major_revisions
406      *    <dd> (boolean) Don't include non-minor revisions.
407      *         (Exclude_major_revisions implies include_minor_revisions.)
408      * <dt> include_all_revisions
409      *    <dd> (boolean) Return all matching revisions for each page.
410      *         Normally only the most recent matching revision is returned
411      *         for each page.
412      * </dl>
413      *
414      * @return WikiDB_PageRevisionIterator A WikiDB_PageRevisionIterator 
415      * containing the matching revisions.
416      */
417     function mostRecent($params = false) {
418         $result = $this->_backend->most_recent($params);
419         return new WikiDB_PageRevisionIterator($this, $result);
420     }
421
422     /**
423      * @access public
424      *
425      * @param string or false $sortby Optional. "+-column,+-column2". 
426      *          If false the result is faster in natural order.
427      * @param string or false $limit Optional. Encoded as "$offset,$count".
428      *          $offset defaults to 0.
429      * @return Iterator A generic iterator containing rows of 
430      *          (duplicate) pagename, wantedfrom.
431      */
432     function wantedPages($exclude_from='', $exclude='', $sortby='', $limit='') {
433         return $this->_backend->wanted_pages($exclude_from, $exclude, $sortby, $limit);
434         //return new WikiDB_PageIterator($this, $result);
435     }
436
437     /**
438      * Generic interface to the link table. Esp. useful to search for rdf triples as in 
439      * SemanticSearch and ListRelations.
440      *
441      * @access public
442      *
443      * @param $pages  object A TextSearchQuery object.
444      * @param $search object A TextSearchQuery object.
445      * @param string $linktype One of "linkto", "linkfrom", "relation", "attribute".
446      *   linktype parameter:
447      * <dl>
448      * <dt> "linkto"
449      *    <dd> search for simple out-links
450      * <dt> "linkfrom"
451      *    <dd> in-links, i.e BackLinks
452      * <dt> "relation"
453      *    <dd> the first part in a <>::<> link 
454      * <dt> "attribute"
455      *    <dd> the first part in a <>:=<> link 
456      * </dl>
457      * @param $relation object An optional TextSearchQuery to match the 
458      * relation name. Ignored on simple in-out links.
459      *
460      * @return Iterator A generic iterator containing links to pages or values.
461      *                  hash of "pagename", "linkname", "linkvalue. 
462      */
463     function linkSearch($pages, $search, $linktype, $relation=false) {
464         return $this->_backend->link_search($pages, $search, $linktype, $relation);
465     }
466
467     /**
468      * Return a simple list of all defined relations (and attributes), mainly 
469      * for the SemanticSearch autocompletion.
470      *
471      * @access public
472      *
473      * @return array of strings
474      */
475     function listRelations($also_attributes=false, $only_attributes=false, $sorted=true) {
476         if (method_exists($this->_backend, "list_relations"))
477             return $this->_backend->list_relations($also_attributes, $only_attributes, $sorted);
478         // dumb, slow fallback. no iter, so simply define it here.
479         $relations = array();
480         $iter = $this->getAllPages();
481         while ($page = $iter->next()) {
482             $reliter = $page->getRelations();
483             $names = array();
484             while ($rel = $reliter->next()) {
485                 // if there's no pagename it's an attribute
486                 $names[] = $rel->getName();
487             }
488             $relations = array_merge($relations, $names);
489             $reliter->free();
490         }
491         $iter->free();
492         if ($sorted) {
493             sort($relations);
494             reset($relations);
495         }
496         return $relations;
497     }
498
499     /**
500      * Call the appropriate backend method.
501      *
502      * @access public
503      * @param string $from Page to rename
504      * @param string $to   New name
505      * @param boolean $updateWikiLinks If the text in all pages should be replaced.
506      * @return boolean     true or false
507      */
508     function renamePage($from, $to, $updateWikiLinks = false) {
509         assert(is_string($from) && $from != '');
510         assert(is_string($to) && $to != '');
511         $result = false;
512         if (method_exists($this->_backend, 'rename_page')) {
513             $oldpage = $this->getPage($from);
514             $newpage = $this->getPage($to);
515             //update all WikiLinks in existing pages
516             //non-atomic! i.e. if rename fails the links are not undone
517             if ($updateWikiLinks) {
518                 $lookbehind = "/(?<=[\W:])\Q";
519                 $lookahead = "\E(?=[\W:])/";
520                 if (!check_php_version(4,3,3)) {
521                     $lookbehind = "/(?<=[\W:])";
522                     $lookahead  = "(?=[\W:])/";
523                     $from = preg_quote($from, "/");
524                     $to   = preg_quote($to, "/");
525                 }
526                 require_once('lib/plugin/WikiAdminSearchReplace.php');
527                 $links = $oldpage->getBackLinks();
528                 while ($linked_page = $links->next()) {
529                     WikiPlugin_WikiAdminSearchReplace::replaceHelper
530                         ($this,
531                          $linked_page->getName(),
532                          $lookbehind.$from.$lookahead, $to, 
533                          true, true);
534                 }
535                 $links = $newpage->getBackLinks();
536                 while ($linked_page = $links->next()) {
537                     WikiPlugin_WikiAdminSearchReplace::replaceHelper
538                         ($this,
539                          $linked_page->getName(),
540                          $lookbehind.$from.$lookahead, $to, 
541                          true, true);
542                 }
543             }
544             if ($oldpage->exists() and ! $newpage->exists()) {
545                 if ($result = $this->_backend->rename_page($from, $to)) {
546                     // create a RecentChanges entry with explaining summary
547                     $page = $this->getPage($to);
548                     $current = $page->getCurrentRevision();
549                     $meta = $current->_data;
550                     $version = $current->getVersion();
551                     $meta['summary'] = sprintf(_("renamed from %s"), $from);
552                     unset($meta['mtime']); // force new date
553                     $page->save($current->getPackedContent(), $version + 1, $meta);
554                 }
555             } elseif (!$oldpage->getCurrentRevision(false) and !$newpage->exists()) {
556                 // if a version 0 exists try it also.
557                 $result = $this->_backend->rename_page($from, $to);
558             }
559         } else {
560             trigger_error(_("WikiDB::renamePage() not yet implemented for this backend"),
561                           E_USER_WARNING);
562         }
563         /* Generate notification emails? */
564         if ($result and !isa($GLOBALS['request'], 'MockRequest')) {
565             $notify = $this->get('notify');
566             if (!empty($notify) and is_array($notify)) {
567                 include_once("lib/MailNotify.php");
568                 $MailNotify = new MailNotify($from);
569                 $MailNotify->onRenamePage ($this, $from, $to);
570             }
571         }
572         return $result;
573     }
574
575     /** Get timestamp when database was last modified.
576      *
577      * @return string A string consisting of two integers,
578      * separated by a space.  The first is the time in
579      * unix timestamp format, the second is a modification
580      * count for the database.
581      *
582      * The idea is that you can cast the return value to an
583      * int to get a timestamp, or you can use the string value
584      * as a good hash for the entire database.
585      */
586     function getTimestamp() {
587         $ts = $this->get('_timestamp');
588         return sprintf("%d %d", $ts[0], $ts[1]);
589     }
590     
591     /**
592      * Update the database timestamp.
593      *
594      */
595     function touch() {
596         $ts = $this->get('_timestamp');
597         $this->set('_timestamp', array(time(), $ts[1] + 1));
598     }
599
600     /**
601      * Roughly similar to the float in phpwiki_version(). Set by action=upgrade.
602      */
603     function get_db_version() {
604         return (float) $this->get('_db_version');
605     }
606     function set_db_version($ver) {
607         return $this->set('_db_version', (float)$ver);
608     }
609         
610     /**
611      * Access WikiDB global meta-data.
612      *
613      * NOTE: this is currently implemented in a hackish and
614      * not very efficient manner.
615      *
616      * @access public
617      *
618      * @param string $key Which meta data to get.
619      * Some reserved meta-data keys are:
620      * <dl>
621      * <dt>'_timestamp' <dd> Data used by getTimestamp().
622      * </dl>
623      *
624      * @return scalar The requested value, or false if the requested data
625      * is not set.
626      */
627     function get($key) {
628         if (!$key || $key[0] == '%')
629             return false;
630         /*
631          * Hack Alert: We can use any page (existing or not) to store
632          * this data (as long as we always use the same one.)
633          */
634         $gd = $this->getPage('global_data');
635         $data = $gd->get('__global');
636
637         if ($data && isset($data[$key]))
638             return $data[$key];
639         else
640             return false;
641     }
642
643     /**
644      * Set global meta-data.
645      *
646      * NOTE: this is currently implemented in a hackish and
647      * not very efficient manner.
648      *
649      * @see get
650      * @access public
651      *
652      * @param string $key  Meta-data key to set.
653      * @param string $newval  New value.
654      */
655     function set($key, $newval) {
656         if (!$key || $key[0] == '%')
657             return;
658         
659         $gd = $this->getPage('global_data');
660         $data = $gd->get('__global');
661         if ($data === false)
662             $data = array();
663
664         if (empty($newval))
665             unset($data[$key]);
666         else
667             $data[$key] = $newval;
668
669         $gd->set('__global', $data);
670     }
671
672     /* TODO: these are really backend methods */
673
674     // SQL result: for simple select or create/update queries
675     // returns the database specific resource type
676     function genericSqlQuery($sql, $args=false) {
677         if (function_exists('debug_backtrace')) { // >= 4.3.0
678             echo "<pre>", printSimpleTrace(debug_backtrace()), "</pre>\n";
679         }
680         trigger_error("no SQL database", E_USER_ERROR);
681         return false;
682     }
683
684     // SQL iter: for simple select or create/update queries
685     // returns the generic iterator object (count,next)
686     function genericSqlIter($sql, $field_list = NULL) {
687         if (function_exists('debug_backtrace')) { // >= 4.3.0
688             echo "<pre>", printSimpleTrace(debug_backtrace()), "</pre>\n";
689         }
690         trigger_error("no SQL database", E_USER_ERROR);
691         return false;
692     }
693     
694     // see backend upstream methods
695     // ADODB adds surrounding quotes, SQL not yet!
696     function quote ($s) {
697         return $s;
698     }
699
700     function isOpen () {
701         global $request;
702         if (!$request->_dbi) return false;
703         else return false; /* so far only needed for sql so false it. 
704                             later we have to check dba also */
705     }
706
707     function getParam($param) {
708         global $DBParams;
709         if (isset($DBParams[$param])) return $DBParams[$param];
710         elseif ($param == 'prefix') return '';
711         else return false;
712     }
713
714     function getAuthParam($param) {
715         global $DBAuthParams;
716         if (isset($DBAuthParams[$param])) return $DBAuthParams[$param];
717         elseif ($param == 'USER_AUTH_ORDER') return $GLOBALS['USER_AUTH_ORDER'];
718         elseif ($param == 'USER_AUTH_POLICY') return $GLOBALS['USER_AUTH_POLICY'];
719         else return false;
720     }
721 };
722
723
724 /**
725  * An abstract base class which representing a wiki-page within a
726  * WikiDB.
727  *
728  * A WikiDB_Page contains a number (at least one) of
729  * WikiDB_PageRevisions.
730  */
731 class WikiDB_Page 
732 {
733     function WikiDB_Page(&$wikidb, $pagename) {
734         $this->_wikidb = &$wikidb;
735         $this->_pagename = $pagename;
736         if ((int)DEBUG) {
737             if (!(is_string($pagename) and $pagename != '')) {
738                 if (function_exists("xdebug_get_function_stack")) {
739                     echo "xdebug_get_function_stack(): "; var_dump(xdebug_get_function_stack());
740                 } elseif (function_exists("debug_backtrace")) { // >= 4.3.0
741                     printSimpleTrace(debug_backtrace());
742                 }
743                 trigger_error("empty pagename", E_USER_WARNING);
744                 return false;
745             }
746         } else {
747             assert(is_string($pagename) and $pagename != '');
748         }
749     }
750
751     /**
752      * Get the name of the wiki page.
753      *
754      * @access public
755      *
756      * @return string The page name.
757      */
758     function getName() {
759         return $this->_pagename;
760     }
761     
762     // To reduce the memory footprint for larger sets of pagelists,
763     // we don't cache the content (only true or false) and 
764     // we purge the pagedata (_cached_html) also
765     function exists() {
766         if (isset($this->_wikidb->_cache->_id_cache[$this->_pagename])) return true;
767         $current = $this->getCurrentRevision(false);
768         if (!$current) return false;
769         return ! $current->hasDefaultContents();
770     }
771
772     /**
773      * Delete an old revision of a WikiDB_Page.
774      *
775      * Deletes the specified revision of the page.
776      * It is a fatal error to attempt to delete the current revision.
777      *
778      * @access public
779      *
780      * @param integer $version Which revision to delete.  (You can also
781      *  use a WikiDB_PageRevision object here.)
782      */
783     function deleteRevision($version) {
784         $backend = &$this->_wikidb->_backend;
785         $cache = &$this->_wikidb->_cache;
786         $pagename = &$this->_pagename;
787
788         $version = $this->_coerce_to_version($version);
789         if ($version == 0)
790             return;
791
792         $backend->lock(array('page','version'));
793         $latestversion = $cache->get_latest_version($pagename);
794         if ($latestversion && ($version == $latestversion)) {
795             $backend->unlock(array('page','version'));
796             trigger_error(sprintf("Attempt to delete most recent revision of '%s'",
797                                   $pagename), E_USER_ERROR);
798             return;
799         }
800
801         $cache->delete_versiondata($pagename, $version);
802         $backend->unlock(array('page','version'));
803     }
804
805     /*
806      * Delete a revision, or possibly merge it with a previous
807      * revision.
808      *
809      * The idea is this:
810      * Suppose an author make a (major) edit to a page.  Shortly
811      * after that the same author makes a minor edit (e.g. to fix
812      * spelling mistakes he just made.)
813      *
814      * Now some time later, where cleaning out old saved revisions,
815      * and would like to delete his minor revision (since there's
816      * really no point in keeping minor revisions around for a long
817      * time.)
818      *
819      * Note that the text after the minor revision probably represents
820      * what the author intended to write better than the text after
821      * the preceding major edit.
822      *
823      * So what we really want to do is merge the minor edit with the
824      * preceding edit.
825      *
826      * We will only do this when:
827      * <ul>
828      * <li>The revision being deleted is a minor one, and
829      * <li>It has the same author as the immediately preceding revision.
830      * </ul>
831      */
832     function mergeRevision($version) {
833         $backend = &$this->_wikidb->_backend;
834         $cache = &$this->_wikidb->_cache;
835         $pagename = &$this->_pagename;
836
837         $version = $this->_coerce_to_version($version);
838         if ($version == 0)
839             return;
840
841         $backend->lock(array('version'));
842         $latestversion = $cache->get_latest_version($pagename);
843         if ($latestversion && $version == $latestversion) {
844             $backend->unlock(array('version'));
845             trigger_error(sprintf("Attempt to merge most recent revision of '%s'",
846                                   $pagename), E_USER_ERROR);
847             return;
848         }
849
850         $versiondata = $cache->get_versiondata($pagename, $version, true);
851         if (!$versiondata) {
852             // Not there? ... we're done!
853             $backend->unlock(array('version'));
854             return;
855         }
856
857         if ($versiondata['is_minor_edit']) {
858             $previous = $backend->get_previous_version($pagename, $version);
859             if ($previous) {
860                 $prevdata = $cache->get_versiondata($pagename, $previous);
861                 if ($prevdata['author_id'] == $versiondata['author_id']) {
862                     // This is a minor revision, previous version is
863                     // by the same author. We will merge the
864                     // revisions.
865                     $cache->update_versiondata($pagename, $previous,
866                                                array('%content' => $versiondata['%content'],
867                                                      '_supplanted' => $versiondata['_supplanted']));
868                 }
869             }
870         }
871
872         $cache->delete_versiondata($pagename, $version);
873         $backend->unlock(array('version'));
874     }
875
876     
877     /**
878      * Create a new revision of a {@link WikiDB_Page}.
879      *
880      * @access public
881      *
882      * @param int $version Version number for new revision.  
883      * To ensure proper serialization of edits, $version must be
884      * exactly one higher than the current latest version.
885      * (You can defeat this check by setting $version to
886      * {@link WIKIDB_FORCE_CREATE} --- not usually recommended.)
887      *
888      * @param string $content Contents of new revision.
889      *
890      * @param hash $metadata Metadata for new revision.
891      * All values in the hash should be scalars (strings or integers).
892      *
893      * @param hash $links List of linkto=>pagename, relation=>pagename which this page links to.
894      *
895      * @return WikiDB_PageRevision  Returns the new WikiDB_PageRevision object. If
896      * $version was incorrect, returns false
897      */
898     function createRevision($version, &$content, $metadata, $links) {
899         $backend = &$this->_wikidb->_backend;
900         $cache = &$this->_wikidb->_cache;
901         $pagename = &$this->_pagename;
902         $cache->invalidate_cache($pagename);
903         
904         $backend->lock(array('version','page','recent','link','nonempty'));
905
906         $latestversion = $backend->get_latest_version($pagename);
907         $newversion = ($latestversion ? $latestversion : 0) + 1;
908         assert($newversion >= 1);
909
910         if ($version != WIKIDB_FORCE_CREATE and $version != $newversion) {
911             $backend->unlock(array('version','page','recent','link','nonempty'));
912             return false;
913         }
914
915         $data = $metadata;
916         
917         foreach ($data as $key => $val) {
918             if (empty($val) || $key[0] == '_' || $key[0] == '%')
919                 unset($data[$key]);
920         }
921                         
922         assert(!empty($data['author']));
923         if (empty($data['author_id']))
924             @$data['author_id'] = $data['author'];
925                 
926         if (empty($data['mtime']))
927             $data['mtime'] = time();
928
929         if ($latestversion and $version != WIKIDB_FORCE_CREATE) {
930             // Ensure mtimes are monotonic.
931             $pdata = $cache->get_versiondata($pagename, $latestversion);
932             if ($data['mtime'] < $pdata['mtime']) {
933                 trigger_error(sprintf(_("%s: Date of new revision is %s"),
934                                       $pagename,"'non-monotonic'"),
935                               E_USER_NOTICE);
936                 $data['orig_mtime'] = $data['mtime'];
937                 $data['mtime'] = $pdata['mtime'];
938             }
939             
940             // FIXME: use (possibly user specified) 'mtime' time or
941             // time()?
942             $cache->update_versiondata($pagename, $latestversion,
943                                        array('_supplanted' => $data['mtime']));
944         }
945
946         $data['%content'] = &$content;
947
948         $cache->set_versiondata($pagename, $newversion, $data);
949
950         //$cache->update_pagedata($pagename, array(':latestversion' => $newversion,
951         //':deleted' => empty($content)));
952         
953         $backend->set_links($pagename, $links);
954
955         $backend->unlock(array('version','page','recent','link','nonempty'));
956
957         return new WikiDB_PageRevision($this->_wikidb, $pagename, $newversion,
958                                        $data);
959     }
960
961     /** A higher-level interface to createRevision.
962      *
963      * This takes care of computing the links, and storing
964      * a cached version of the transformed wiki-text.
965      *
966      * @param string $wikitext  The page content.
967      *
968      * @param int $version Version number for new revision.  
969      * To ensure proper serialization of edits, $version must be
970      * exactly one higher than the current latest version.
971      * (You can defeat this check by setting $version to
972      * {@link WIKIDB_FORCE_CREATE} --- not usually recommended.)
973      *
974      * @param hash $meta  Meta-data for new revision.
975      */
976     function save($wikitext, $version, $meta, $formatted = null) {
977         if (is_null($formatted))
978             $formatted = new TransformedText($this, $wikitext, $meta);
979         $type = $formatted->getType();
980         $meta['pagetype'] = $type->getName();
981         $links = $formatted->getWikiPageLinks(); // linkto => relation
982         $attributes = array();
983         foreach ($links as $link) {
984             if ($link['linkto'] === "" and $link['relation']) {
985                 $attributes[$link['relation']] = $this->getAttribute($link['relation']);
986             }
987         }
988         $meta['attribute'] = $attributes;
989
990         $backend = &$this->_wikidb->_backend;
991         $newrevision = $this->createRevision($version, $wikitext, $meta, $links);
992         if ($newrevision and !WIKIDB_NOCACHE_MARKUP)
993             $this->set('_cached_html', $formatted->pack());
994
995         // FIXME: probably should have some global state information
996         // in the backend to control when to optimize.
997         //
998         // We're doing this here rather than in createRevision because
999         // postgresql can't optimize while locked.
1000         if (((int)DEBUG & _DEBUG_SQL)
1001             or (DATABASE_OPTIMISE_FREQUENCY > 0 and 
1002                 (time() % DATABASE_OPTIMISE_FREQUENCY == 0))) {
1003             if ($backend->optimize()) {
1004                 if ((int)DEBUG)
1005                     trigger_error(_("Optimizing database"), E_USER_NOTICE);
1006             }
1007         }
1008
1009         /* Generate notification emails? */
1010         if (isa($newrevision, 'WikiDB_PageRevision')) {
1011             // Save didn't fail because of concurrent updates.
1012             $notify = $this->_wikidb->get('notify');
1013             if (!empty($notify) 
1014                 and is_array($notify) 
1015                 and !isa($GLOBALS['request'],'MockRequest')) 
1016             {
1017                 include_once("lib/MailNotify.php");
1018                 $MailNotify = new MailNotify($newrevision->getName());
1019                 $MailNotify->onChangePage ($this->_wikidb, $wikitext, $version, $meta);
1020             }
1021             $newrevision->_transformedContent = $formatted;
1022         }
1023
1024         return $newrevision;
1025     }
1026
1027     /**
1028      * Get the most recent revision of a page.
1029      *
1030      * @access public
1031      *
1032      * @return WikiDB_PageRevision The current WikiDB_PageRevision object. 
1033      */
1034     function getCurrentRevision ($need_content=true) {
1035         $backend = &$this->_wikidb->_backend;
1036         $cache = &$this->_wikidb->_cache;
1037         $pagename = &$this->_pagename;
1038         
1039         // Prevent deadlock in case of memory exhausted errors
1040         // Pure selection doesn't really need locking here.
1041         //   sf.net bug#927395
1042         // I know it would be better to lock, but with lots of pages this deadlock is more 
1043         // severe than occasionally get not the latest revision.
1044         // In spirit to wikiwiki: read fast, edit slower.
1045         //$backend->lock();
1046         $version = $cache->get_latest_version($pagename);
1047         // getRevision gets the content also!
1048         $revision = $this->getRevision($version, $need_content);
1049         //$backend->unlock();
1050         assert($revision);
1051         return $revision;
1052     }
1053
1054     /**
1055      * Get a specific revision of a WikiDB_Page.
1056      *
1057      * @access public
1058      *
1059      * @param integer $version  Which revision to get.
1060      *
1061      * @return WikiDB_PageRevision The requested WikiDB_PageRevision object, or
1062      * false if the requested revision does not exist in the {@link WikiDB}.
1063      * Note that version zero of any page always exists.
1064      */
1065     function getRevision ($version, $need_content=true) {
1066         $cache = &$this->_wikidb->_cache;
1067         $pagename = &$this->_pagename;
1068         
1069         if (! $version or $version == -1) // 0 or false
1070             return new WikiDB_PageRevision($this->_wikidb, $pagename, 0);
1071
1072         assert($version > 0);
1073         $vdata = $cache->get_versiondata($pagename, $version, $need_content);
1074         if (!$vdata) {
1075             return new WikiDB_PageRevision($this->_wikidb, $pagename, 0);
1076         }
1077         return new WikiDB_PageRevision($this->_wikidb, $pagename, $version,
1078                                        $vdata);
1079     }
1080
1081     /**
1082      * Get previous page revision.
1083      *
1084      * This method find the most recent revision before a specified
1085      * version.
1086      *
1087      * @access public
1088      *
1089      * @param integer $version  Find most recent revision before this version.
1090      *  You can also use a WikiDB_PageRevision object to specify the $version.
1091      *
1092      * @return WikiDB_PageRevision The requested WikiDB_PageRevision object, or false if the
1093      * requested revision does not exist in the {@link WikiDB}.  Note that
1094      * unless $version is greater than zero, a revision (perhaps version zero,
1095      * the default revision) will always be found.
1096      */
1097     function getRevisionBefore ($version=false, $need_content=true) {
1098         $backend = &$this->_wikidb->_backend;
1099         $pagename = &$this->_pagename;
1100         if ($version === false)
1101             $version = $this->_wikidb->_cache->get_latest_version($pagename);
1102         else
1103             $version = $this->_coerce_to_version($version);
1104
1105         if ($version == 0)
1106             return false;
1107         //$backend->lock();
1108         $previous = $backend->get_previous_version($pagename, $version);
1109         $revision = $this->getRevision($previous, $need_content);
1110         //$backend->unlock();
1111         assert($revision);
1112         return $revision;
1113     }
1114
1115     /**
1116      * Get all revisions of the WikiDB_Page.
1117      *
1118      * This does not include the version zero (default) revision in the
1119      * returned revision set.
1120      *
1121      * @return WikiDB_PageRevisionIterator A
1122      *   WikiDB_PageRevisionIterator containing all revisions of this
1123      *   WikiDB_Page in reverse order by version number.
1124      */
1125     function getAllRevisions() {
1126         $backend = &$this->_wikidb->_backend;
1127         $revs = $backend->get_all_revisions($this->_pagename);
1128         return new WikiDB_PageRevisionIterator($this->_wikidb, $revs);
1129     }
1130     
1131     /**
1132      * Find pages which link to or are linked from a page.
1133      * relations: $backend->get_links is responsible to add the relation to the pagehash 
1134      * as 'linkrelation' key as pagename. See WikiDB_PageIterator::next 
1135      *   if (isset($next['linkrelation']))
1136      *
1137      * @access public
1138      *
1139      * @param boolean $reversed Which links to find: true for backlinks (default).
1140      *
1141      * @return WikiDB_PageIterator A WikiDB_PageIterator containing
1142      * all matching pages.
1143      */
1144     function getLinks ($reversed=true, $include_empty=false, $sortby='', 
1145                        $limit='', $exclude='', $want_relations=false) 
1146     {
1147         $backend = &$this->_wikidb->_backend;
1148         $result =  $backend->get_links($this->_pagename, $reversed, 
1149                                        $include_empty, $sortby, $limit, $exclude,
1150                                        $want_relations);
1151         return new WikiDB_PageIterator($this->_wikidb, $result, 
1152                                        array('include_empty' => $include_empty,
1153                                              'sortby'        => $sortby, 
1154                                              'limit'         => $limit, 
1155                                              'exclude'       => $exclude,
1156                                              'want_relations'=> $want_relations));
1157     }
1158
1159     /**
1160      * All Links from other pages to this page.
1161      */
1162     function getBackLinks($include_empty=false, $sortby='', $limit='', $exclude='', 
1163                           $want_relations=false) 
1164     {
1165         return $this->getLinks(true, $include_empty, $sortby, $limit, $exclude);
1166     }
1167     /**
1168      * Forward Links: All Links from this page to other pages.
1169      */
1170     function getPageLinks($include_empty=false, $sortby='', $limit='', $exclude='', 
1171                           $want_relations=false) 
1172     {
1173         return $this->getLinks(false, $include_empty, $sortby, $limit, $exclude);
1174     }
1175     /**
1176      * Relations: All links from this page to other pages with relation <> 0. 
1177      * is_a:=page or population:=number
1178      */
1179     function getRelations($sortby='', $limit='', $exclude='') {
1180         $backend = &$this->_wikidb->_backend;
1181         $result =  $backend->get_links($this->_pagename, false, true,
1182                                        $sortby, $limit, $exclude, 
1183                                        true);
1184         // we do not care for the linked page versiondata, just the pagename and linkrelation
1185         return new WikiDB_PageIterator($this->_wikidb, $result, 
1186                                        array('include_empty' => true,
1187                                              'sortby'        => $sortby, 
1188                                              'limit'         => $limit, 
1189                                              'exclude'       => $exclude,
1190                                              'want_relations'=> true));
1191     }
1192     
1193     /**
1194      * possibly faster link existance check. not yet accelerated.
1195      */
1196     function existLink($link, $reversed=false) {
1197         $backend = &$this->_wikidb->_backend;
1198         if (method_exists($backend,'exists_link'))
1199             return $backend->exists_link($this->_pagename, $link, $reversed);
1200         //$cache = &$this->_wikidb->_cache;
1201         // TODO: check cache if it is possible
1202         $iter = $this->getLinks($reversed, false);
1203         while ($page = $iter->next()) {
1204             if ($page->getName() == $link)
1205                 return $page;
1206         }
1207         $iter->free();
1208         return false;
1209     }
1210
1211     /* Semantic relations are links with the relation pointing to another page,
1212        the so-called "RDF Triple".
1213        [San Diego] is%20a::city
1214        => "At the page San Diego there is a relation link of 'is a' to the page 'city'."
1215      */
1216
1217     /* Semantic attributes for a page. 
1218        [San Diego] population:=1,305,736
1219        Attributes are links with the relation pointing to another page.
1220     */
1221             
1222     /**
1223      * Access WikiDB_Page non version-specific meta-data.
1224      *
1225      * @access public
1226      *
1227      * @param string $key Which meta data to get.
1228      * Some reserved meta-data keys are:
1229      * <dl>
1230      * <dt>'date'  <dd> Created as unixtime
1231      * <dt>'locked'<dd> Is page locked? 'yes' or 'no'
1232      * <dt>'hits'  <dd> Page hit counter.
1233      * <dt>'_cached_html' <dd> Transformed CachedMarkup object, serialized + optionally gzipped.
1234      *                         In SQL stored now in an extra column.
1235      * Optional data:
1236      * <dt>'pref'  <dd> Users preferences, stored only in homepages.
1237      * <dt>'owner' <dd> Default: first author_id. We might add a group with a dot here:
1238      *                  E.g. "owner.users"
1239      * <dt>'perm'  <dd> Permission flag to authorize read/write/execution of 
1240      *                  page-headers and content.
1241      + <dt>'moderation'<dd> ModeratedPage data
1242      * <dt>'score' <dd> Page score (not yet implement, do we need?)
1243      * </dl>
1244      *
1245      * @return scalar The requested value, or false if the requested data
1246      * is not set.
1247      */
1248     function get($key) {
1249         $cache = &$this->_wikidb->_cache;
1250         $backend = &$this->_wikidb->_backend;
1251         if (!$key || $key[0] == '%')
1252             return false;
1253         // several new SQL backends optimize this.
1254         if (!WIKIDB_NOCACHE_MARKUP
1255             and $key == '_cached_html' 
1256             and method_exists($backend, 'get_cached_html')) 
1257         {
1258             return $backend->get_cached_html($this->_pagename);
1259         }
1260         $data = $cache->get_pagedata($this->_pagename);
1261         return isset($data[$key]) ? $data[$key] : false;
1262     }
1263
1264     /**
1265      * Get all the page meta-data as a hash.
1266      *
1267      * @return hash The page meta-data.
1268      */
1269     function getMetaData() {
1270         $cache = &$this->_wikidb->_cache;
1271         $data = $cache->get_pagedata($this->_pagename);
1272         $meta = array();
1273         foreach ($data as $key => $val) {
1274             if (/*!empty($val) &&*/ $key[0] != '%')
1275                 $meta[$key] = $val;
1276         }
1277         return $meta;
1278     }
1279
1280     /**
1281      * Set page meta-data.
1282      *
1283      * @see get
1284      * @access public
1285      *
1286      * @param string $key  Meta-data key to set.
1287      * @param string $newval  New value.
1288      */
1289     function set($key, $newval) {
1290         $cache = &$this->_wikidb->_cache;
1291         $backend = &$this->_wikidb->_backend;
1292         $pagename = &$this->_pagename;
1293         
1294         assert($key && $key[0] != '%');
1295
1296         // several new SQL backends optimize this.
1297         if (!WIKIDB_NOCACHE_MARKUP 
1298             and $key == '_cached_html' 
1299             and method_exists($backend, 'set_cached_html'))
1300         {
1301             return $backend->set_cached_html($pagename, $newval);
1302         }
1303
1304         $data = $cache->get_pagedata($pagename);
1305
1306         if (!empty($newval)) {
1307             if (!empty($data[$key]) && $data[$key] == $newval)
1308                 return;         // values identical, skip update.
1309         }
1310         else {
1311             if (empty($data[$key]))
1312                 return;         // values identical, skip update.
1313         }
1314
1315         $cache->update_pagedata($pagename, array($key => $newval));
1316     }
1317
1318     /**
1319      * Increase page hit count.
1320      *
1321      * FIXME: IS this needed?  Probably not.
1322      *
1323      * This is a convenience function.
1324      * <pre> $page->increaseHitCount(); </pre>
1325      * is functionally identical to
1326      * <pre> $page->set('hits',$page->get('hits')+1); </pre>
1327      * but less expensive (ignores the pagadata string)
1328      *
1329      * Note that this method may be implemented in more efficient ways
1330      * in certain backends.
1331      *
1332      * @access public
1333      */
1334     function increaseHitCount() {
1335         if (method_exists($this->_wikidb->_backend, 'increaseHitCount'))
1336             $this->_wikidb->_backend->increaseHitCount($this->_pagename);
1337         else {
1338             @$newhits = $this->get('hits') + 1;
1339             $this->set('hits', $newhits);
1340         }
1341     }
1342
1343     /**
1344      * Return a string representation of the WikiDB_Page
1345      *
1346      * This is really only for debugging.
1347      *
1348      * @access public
1349      *
1350      * @return string Printable representation of the WikiDB_Page.
1351      */
1352     function asString () {
1353         ob_start();
1354         printf("[%s:%s\n", get_class($this), $this->getName());
1355         print_r($this->getMetaData());
1356         echo "]\n";
1357         $strval = ob_get_contents();
1358         ob_end_clean();
1359         return $strval;
1360     }
1361
1362
1363     /**
1364      * @access private
1365      * @param integer_or_object $version_or_pagerevision
1366      * Takes either the version number (and int) or a WikiDB_PageRevision
1367      * object.
1368      * @return integer The version number.
1369      */
1370     function _coerce_to_version($version_or_pagerevision) {
1371         if (method_exists($version_or_pagerevision, "getContent"))
1372             $version = $version_or_pagerevision->getVersion();
1373         else
1374             $version = (int) $version_or_pagerevision;
1375
1376         assert($version >= 0);
1377         return $version;
1378     }
1379
1380     function isUserPage ($include_empty = true) {
1381         if (!$include_empty and !$this->exists()) return false;
1382         return $this->get('pref') ? true : false;
1383     }
1384
1385     // May be empty. Either the stored owner (/Chown), or the first authorized author
1386     function getOwner() {
1387         if ($owner = $this->get('owner'))
1388             return ($owner == _("The PhpWiki programming team")) ? ADMIN_USER : $owner;
1389         // check all revisions forwards for the first author_id
1390         $backend = &$this->_wikidb->_backend;
1391         $pagename = &$this->_pagename;
1392         $latestversion = $backend->get_latest_version($pagename);
1393         for ($v=1; $v <= $latestversion; $v++) {
1394             $rev = $this->getRevision($v,false);
1395             if ($rev and $owner = $rev->get('author_id')) {
1396                 return ($owner == _("The PhpWiki programming team")) ? ADMIN_USER : $owner;
1397             }
1398         }
1399         return '';
1400     }
1401
1402     // The authenticated author of the first revision or empty if not authenticated then.
1403     function getCreator() {
1404         if ($current = $this->getRevision(1,false)) return $current->get('author_id');
1405         else return '';
1406     }
1407
1408     // The authenticated author of the current revision.
1409     function getAuthor() {
1410         if ($current = $this->getCurrentRevision(false)) return $current->get('author_id');
1411         else return '';
1412     }
1413
1414     /* Semantic Web value, not stored in the links.
1415      * todo: unify with some unit knowledge
1416      */
1417     function setAttribute($relation, $value) {
1418         $attr = $this->get('attributes');
1419         if (empty($attr))
1420             $attr = array($relation => $value);
1421         else
1422             $attr[$relation] = $value;
1423         $this->set('attributes', $attr);
1424     }
1425
1426     function getAttribute($relation) {
1427         $meta = $this->get('attributes');
1428         if (empty($meta))
1429             return '';
1430         else
1431             return $meta[$relation];
1432     }
1433
1434 };
1435
1436 /**
1437  * This class represents a specific revision of a WikiDB_Page within
1438  * a WikiDB.
1439  *
1440  * A WikiDB_PageRevision has read-only semantics. You may only create
1441  * new revisions (and delete old ones) --- you cannot modify existing
1442  * revisions.
1443  */
1444 class WikiDB_PageRevision
1445 {
1446     //var $_transformedContent = false; // set by WikiDB_Page::save()
1447     
1448     function WikiDB_PageRevision(&$wikidb, $pagename, $version, $versiondata = false) {
1449         $this->_wikidb = &$wikidb;
1450         $this->_pagename = $pagename;
1451         $this->_version = $version;
1452         $this->_data = $versiondata ? $versiondata : array();
1453         $this->_transformedContent = false; // set by WikiDB_Page::save()
1454     }
1455     
1456     /**
1457      * Get the WikiDB_Page which this revision belongs to.
1458      *
1459      * @access public
1460      *
1461      * @return WikiDB_Page The WikiDB_Page which this revision belongs to.
1462      */
1463     function getPage() {
1464         return new WikiDB_Page($this->_wikidb, $this->_pagename);
1465     }
1466
1467     /**
1468      * Get the version number of this revision.
1469      *
1470      * @access public
1471      *
1472      * @return integer The version number of this revision.
1473      */
1474     function getVersion() {
1475         return $this->_version;
1476     }
1477     
1478     /**
1479      * Determine whether this revision has defaulted content.
1480      *
1481      * The default revision (version 0) of each page, as well as any
1482      * pages which are created with empty content have their content
1483      * defaulted to something like:
1484      * <pre>
1485      *   Describe [ThisPage] here.
1486      * </pre>
1487      *
1488      * @access public
1489      *
1490      * @return boolean Returns true if the page has default content.
1491      */
1492     function hasDefaultContents() {
1493         $data = &$this->_data;
1494         return empty($data['%content']); // FIXME: what if it's the number 0? <>'' or === false
1495     }
1496
1497     /**
1498      * Get the content as an array of lines.
1499      *
1500      * @access public
1501      *
1502      * @return array An array of lines.
1503      * The lines should contain no trailing white space.
1504      */
1505     function getContent() {
1506         return explode("\n", $this->getPackedContent());
1507     }
1508         
1509    /**
1510      * Get the pagename of the revision.
1511      *
1512      * @access public
1513      *
1514      * @return string pagename.
1515      */
1516     function getPageName() {
1517         return $this->_pagename;
1518     }
1519     function getName() {
1520         return $this->_pagename;
1521     }
1522
1523     /**
1524      * Determine whether revision is the latest.
1525      *
1526      * @access public
1527      *
1528      * @return boolean True iff the revision is the latest (most recent) one.
1529      */
1530     function isCurrent() {
1531         if (!isset($this->_iscurrent)) {
1532             $page = $this->getPage();
1533             $current = $page->getCurrentRevision(false);
1534             $this->_iscurrent = $this->getVersion() == $current->getVersion();
1535         }
1536         return $this->_iscurrent;
1537     }
1538
1539     /**
1540      * Get the transformed content of a page.
1541      *
1542      * @param string $pagetype  Override the page-type of the revision.
1543      *
1544      * @return object An XmlContent-like object containing the page transformed
1545      * contents.
1546      */
1547     function getTransformedContent($pagetype_override=false) {
1548         $backend = &$this->_wikidb->_backend;
1549         
1550         if ($pagetype_override) {
1551             // Figure out the normal page-type for this page.
1552             $type = PageType::GetPageType($this->get('pagetype'));
1553             if ($type->getName() == $pagetype_override)
1554                 $pagetype_override = false; // Not really an override...
1555         }
1556
1557         if ($pagetype_override) {
1558             // Overriden page type, don't cache (or check cache).
1559             return new TransformedText($this->getPage(),
1560                                        $this->getPackedContent(),
1561                                        $this->getMetaData(),
1562                                        $pagetype_override);
1563         }
1564
1565         $possibly_cache_results = true;
1566
1567         if (!USECACHE or WIKIDB_NOCACHE_MARKUP) {
1568             if (WIKIDB_NOCACHE_MARKUP == 'purge') {
1569                 // flush cache for this page.
1570                 $page = $this->getPage();
1571                 $page->set('_cached_html', ''); // ignored with !USECACHE 
1572             }
1573             $possibly_cache_results = false;
1574         }
1575         elseif (USECACHE and !$this->_transformedContent) {
1576             //$backend->lock();
1577             if ($this->isCurrent()) {
1578                 $page = $this->getPage();
1579                 $this->_transformedContent = TransformedText::unpack($page->get('_cached_html'));
1580             }
1581             else {
1582                 $possibly_cache_results = false;
1583             }
1584             //$backend->unlock();
1585         }
1586         
1587         if (!$this->_transformedContent) {
1588             $this->_transformedContent
1589                 = new TransformedText($this->getPage(),
1590                                       $this->getPackedContent(),
1591                                       $this->getMetaData());
1592             
1593             if ($possibly_cache_results and !WIKIDB_NOCACHE_MARKUP) {
1594                 // If we're still the current version, cache the transfomed page.
1595                 //$backend->lock();
1596                 if ($this->isCurrent()) {
1597                     $page->set('_cached_html', $this->_transformedContent->pack());
1598                 }
1599                 //$backend->unlock();
1600             }
1601         }
1602
1603         return $this->_transformedContent;
1604     }
1605
1606     /**
1607      * Get the content as a string.
1608      *
1609      * @access public
1610      *
1611      * @return string The page content.
1612      * Lines are separated by new-lines.
1613      */
1614     function getPackedContent() {
1615         $data = &$this->_data;
1616         
1617         if (empty($data['%content'])
1618             || (!$this->_wikidb->isWikiPage($this->_pagename)
1619                 && $this->isCurrent())) {
1620             include_once('lib/InlineParser.php');
1621
1622             // A feature similar to taglines at http://www.wlug.org.nz/
1623             // Lib from http://www.aasted.org/quote/
1624             if (defined('FORTUNE_DIR') 
1625                 and is_dir(FORTUNE_DIR) 
1626                 and in_array($GLOBALS['request']->getArg('action'), 
1627                              array('create','edit')))
1628             {
1629                 include_once("lib/fortune.php");
1630                 $fortune = new Fortune();
1631                 $quote = $fortune->quoteFromDir(FORTUNE_DIR);
1632                 if ($quote != -1)
1633                     $quote = "<verbatim>\n"
1634                         . str_replace("\n<br>","\n", $quote)
1635                         . "</verbatim>\n\n";
1636                 else 
1637                     $quote = "";
1638                 return $quote
1639                     . sprintf(_("Describe %s here."), 
1640                               "[" . WikiEscape($this->_pagename) . "]");
1641             }
1642             // Replace empty content with default value.
1643             return sprintf(_("Describe %s here."), 
1644                            "[" . WikiEscape($this->_pagename) . "]");
1645         }
1646
1647         // There is (non-default) content.
1648         assert($this->_version > 0);
1649         
1650         if (!is_string($data['%content'])) {
1651             // Content was not provided to us at init time.
1652             // (This is allowed because for some backends, fetching
1653             // the content may be expensive, and often is not wanted
1654             // by the user.)
1655             //
1656             // In any case, now we need to get it.
1657             $data['%content'] = $this->_get_content();
1658             assert(is_string($data['%content']));
1659         }
1660         
1661         return $data['%content'];
1662     }
1663
1664     function _get_content() {
1665         $cache = &$this->_wikidb->_cache;
1666         $pagename = $this->_pagename;
1667         $version = $this->_version;
1668
1669         assert($version > 0);
1670         
1671         $newdata = $cache->get_versiondata($pagename, $version, true);
1672         if ($newdata) {
1673             assert(is_string($newdata['%content']));
1674             return $newdata['%content'];
1675         }
1676         else {
1677             // else revision has been deleted... What to do?
1678             return __sprintf("Oops! Revision %s of %s seems to have been deleted!",
1679                              $version, $pagename);
1680         }
1681     }
1682
1683     /**
1684      * Get meta-data for this revision.
1685      *
1686      *
1687      * @access public
1688      *
1689      * @param string $key Which meta-data to access.
1690      *
1691      * Some reserved revision meta-data keys are:
1692      * <dl>
1693      * <dt> 'mtime' <dd> Time this revision was created (seconds since midnight Jan 1, 1970.)
1694      *        The 'mtime' meta-value is normally set automatically by the database
1695      *        backend, but it may be specified explicitly when creating a new revision.
1696      * <dt> orig_mtime
1697      *  <dd> To ensure consistency of RecentChanges, the mtimes of the versions
1698      *       of a page must be monotonically increasing.  If an attempt is
1699      *       made to create a new revision with an mtime less than that of
1700      *       the preceeding revision, the new revisions timestamp is force
1701      *       to be equal to that of the preceeding revision.  In that case,
1702      *       the originally requested mtime is preserved in 'orig_mtime'.
1703      * <dt> '_supplanted' <dd> Time this revision ceased to be the most recent.
1704      *        This meta-value is <em>always</em> automatically maintained by the database
1705      *        backend.  (It is set from the 'mtime' meta-value of the superceding
1706      *        revision.)  '_supplanted' has a value of 'false' for the current revision.
1707      *
1708      * FIXME: this could be refactored:
1709      * <dt> author
1710      *  <dd> Author of the page (as he should be reported in, e.g. RecentChanges.)
1711      * <dt> author_id
1712      *  <dd> Authenticated author of a page.  This is used to identify
1713      *       the distinctness of authors when cleaning old revisions from
1714      *       the database.
1715      * <dt> 'is_minor_edit' <dd> Set if change was marked as a minor revision by the author.
1716      * <dt> 'summary' <dd> Short change summary entered by page author.
1717      * </dl>
1718      *
1719      * Meta-data keys must be valid C identifers (they have to start with a letter
1720      * or underscore, and can contain only alphanumerics and underscores.)
1721      *
1722      * @return string The requested value, or false if the requested value
1723      * is not defined.
1724      */
1725     function get($key) {
1726         if (!$key || $key[0] == '%')
1727             return false;
1728         $data = &$this->_data;
1729         return isset($data[$key]) ? $data[$key] : false;
1730     }
1731
1732     /**
1733      * Get all the revision page meta-data as a hash.
1734      *
1735      * @return hash The revision meta-data.
1736      */
1737     function getMetaData() {
1738         $meta = array();
1739         foreach ($this->_data as $key => $val) {
1740             if (!empty($val) && $key[0] != '%')
1741                 $meta[$key] = $val;
1742         }
1743         return $meta;
1744     }
1745     
1746             
1747     /**
1748      * Return a string representation of the revision.
1749      *
1750      * This is really only for debugging.
1751      *
1752      * @access public
1753      *
1754      * @return string Printable representation of the WikiDB_Page.
1755      */
1756     function asString () {
1757         ob_start();
1758         printf("[%s:%d\n", get_class($this), $this->get('version'));
1759         print_r($this->_data);
1760         echo $this->getPackedContent() . "\n]\n";
1761         $strval = ob_get_contents();
1762         ob_end_clean();
1763         return $strval;
1764     }
1765 };
1766
1767
1768 /**
1769  * Class representing a sequence of WikiDB_Pages.
1770  * TODO: Enhance to php5 iterators
1771  * TODO: 
1772  *   apply filters for options like 'sortby', 'limit', 'exclude'
1773  *   for simple queries like titleSearch, where the backend is not ready yet.
1774  */
1775 class WikiDB_PageIterator
1776 {
1777     function WikiDB_PageIterator(&$wikidb, &$iter, $options=false) {
1778         $this->_iter = $iter; // a WikiDB_backend_iterator
1779         $this->_wikidb = &$wikidb;
1780         $this->_options = $options;
1781     }
1782     
1783     function count () {
1784         return $this->_iter->count();
1785     }
1786
1787     /**
1788      * Get next WikiDB_Page in sequence.
1789      *
1790      * @access public
1791      *
1792      * @return WikiDB_Page The next WikiDB_Page in the sequence.
1793      */
1794     function next () {
1795         if ( ! ($next = $this->_iter->next()) )
1796             return false;
1797
1798         $pagename = &$next['pagename'];
1799         if (!is_string($pagename)) { // Bug #1327912 fixed by Joachim Lous
1800             /*if (is_array($pagename) && isset($pagename['linkto'])) {
1801                 $pagename = $pagename['linkto'];
1802             }
1803             $pagename = strval($pagename);*/
1804             trigger_error("WikiDB_PageIterator->next pagename", E_USER_WARNING);
1805         }
1806         if (!$pagename) {
1807             if (isset($next['linkrelation']) 
1808                 or isset($next['pagedata']['linkrelation'])) return false;      
1809             trigger_error('empty pagename in WikiDB_PageIterator::next()', E_USER_WARNING);
1810             var_dump($next);
1811             return false;
1812         }
1813         // There's always hits, but we cache only if more 
1814         // (well not with file, cvs and dba)
1815         if (isset($next['pagedata']) and count($next['pagedata']) > 1) {
1816             $this->_wikidb->_cache->cache_data($next);
1817         // cache existing page id's since we iterate over all links in GleanDescription 
1818         // and need them later for LinkExistingWord
1819         } elseif ($this->_options and array_key_exists('include_empty', $this->_options)
1820                   and !$this->_options['include_empty'] and isset($next['id'])) {
1821             $this->_wikidb->_cache->_id_cache[$next['pagename']] = $next['id'];
1822         }
1823         $page = new WikiDB_Page($this->_wikidb, $pagename);
1824         if (isset($next['linkrelation']))
1825             $page->set('linkrelation', $next['linkrelation']);
1826         if (isset($next['score']))
1827             $page->score = $next['score'];
1828         return $page;
1829     }
1830
1831     /**
1832      * Release resources held by this iterator.
1833      *
1834      * The iterator may not be used after free() is called.
1835      *
1836      * There is no need to call free(), if next() has returned false.
1837      * (I.e. if you iterate through all the pages in the sequence,
1838      * you do not need to call free() --- you only need to call it
1839      * if you stop before the end of the iterator is reached.)
1840      *
1841      * @access public
1842      */
1843     function free() {
1844         $this->_iter->free();
1845     }
1846     
1847     function asArray() {
1848         $result = array();
1849         while ($page = $this->next())
1850             $result[] = $page;
1851         //$this->reset();
1852         return $result;
1853     }
1854     
1855     /**
1856      * Apply filters for options like 'sortby', 'limit', 'exclude'
1857      * for simple queries like titleSearch, where the backend is not ready yet.
1858      * Since iteration is usually destructive for SQL results,
1859      * we have to generate a copy.
1860      */
1861     function applyFilters($options = false) {
1862         if (!$options) $options = $this->_options;
1863         if (isset($options['sortby'])) {
1864             $array = array();
1865             /* this is destructive */
1866             while ($page = $this->next())
1867                 $result[] = $page->getName();
1868             $this->_doSort($array, $options['sortby']);
1869         }
1870         /* the rest is not destructive.
1871          * reconstruct a new iterator 
1872          */
1873         $pagenames = array(); $i = 0;
1874         if (isset($options['limit']))
1875             $limit = $options['limit'];
1876         else 
1877             $limit = 0;
1878         if (isset($options['exclude']))
1879             $exclude = $options['exclude'];
1880         if (is_string($exclude) and !is_array($exclude))
1881             $exclude = PageList::explodePageList($exclude, false, false, $limit);
1882         foreach($array as $pagename) {
1883             if ($limit and $i++ > $limit)
1884                 return new WikiDB_Array_PageIterator($pagenames);
1885             if (!empty($exclude) and !in_array($pagename, $exclude))
1886                 $pagenames[] = $pagename;
1887             elseif (empty($exclude))
1888                 $pagenames[] = $pagename;
1889         }
1890         return new WikiDB_Array_PageIterator($pagenames);
1891     }
1892
1893     /* pagename only */
1894     function _doSort(&$array, $sortby) {
1895         $sortby = PageList::sortby($sortby, 'init');
1896         if ($sortby == '+pagename')
1897             sort($array, SORT_STRING);
1898         elseif ($sortby == '-pagename')
1899             rsort($array, SORT_STRING);
1900         reset($array);
1901     }
1902
1903 };
1904
1905 /**
1906  * A class which represents a sequence of WikiDB_PageRevisions.
1907  * TODO: Enhance to php5 iterators
1908  */
1909 class WikiDB_PageRevisionIterator
1910 {
1911     function WikiDB_PageRevisionIterator(&$wikidb, &$revisions, $options=false) {
1912         $this->_revisions = $revisions;
1913         $this->_wikidb = &$wikidb;
1914         $this->_options = $options;
1915     }
1916     
1917     function count () {
1918         return $this->_revisions->count();
1919     }
1920
1921     /**
1922      * Get next WikiDB_PageRevision in sequence.
1923      *
1924      * @access public
1925      *
1926      * @return WikiDB_PageRevision
1927      * The next WikiDB_PageRevision in the sequence.
1928      */
1929     function next () {
1930         if ( ! ($next = $this->_revisions->next()) )
1931             return false;
1932
1933         //$this->_wikidb->_cache->cache_data($next);
1934
1935         $pagename = $next['pagename'];
1936         $version = $next['version'];
1937         $versiondata = $next['versiondata'];
1938         if ((int)DEBUG) {
1939             if (!(is_string($pagename) and $pagename != '')) {
1940                 trigger_error("empty pagename",E_USER_WARNING);
1941                 return false;
1942             }
1943         } else assert(is_string($pagename) and $pagename != '');
1944         if ((int)DEBUG) {
1945             if (!is_array($versiondata)) {
1946                 trigger_error("empty versiondata",E_USER_WARNING);
1947                 return false;
1948             }
1949         } else assert(is_array($versiondata));
1950         if ((int)DEBUG) {
1951             if (!($version > 0)) {
1952                 trigger_error("invalid version",E_USER_WARNING);
1953                 return false;
1954             }
1955         } else assert($version > 0);
1956
1957         return new WikiDB_PageRevision($this->_wikidb, $pagename, $version,
1958                                        $versiondata);
1959     }
1960
1961     /**
1962      * Release resources held by this iterator.
1963      *
1964      * The iterator may not be used after free() is called.
1965      *
1966      * There is no need to call free(), if next() has returned false.
1967      * (I.e. if you iterate through all the revisions in the sequence,
1968      * you do not need to call free() --- you only need to call it
1969      * if you stop before the end of the iterator is reached.)
1970      *
1971      * @access public
1972      */
1973     function free() { 
1974         $this->_revisions->free();
1975     }
1976
1977     function asArray() {
1978         $result = array();
1979         while ($rev = $this->next())
1980             $result[] = $rev;
1981         $this->free();
1982         return $result;
1983     }
1984 };
1985
1986 /** pseudo iterator
1987  */
1988 class WikiDB_Array_PageIterator
1989 {
1990     function WikiDB_Array_PageIterator($pagenames) {
1991         global $request;
1992         $this->_dbi = $request->getDbh();
1993         $this->_pages = $pagenames;
1994         reset($this->_pages);
1995     }
1996     function next() {
1997         $c =& current($this->_pages);
1998         next($this->_pages);
1999         return $c !== false ? $this->_dbi->getPage($c) : false;
2000     }
2001     function count() {
2002         return count($this->_pages);
2003     }
2004     function free() {}
2005     function asArray() {
2006         reset($this->_pages);
2007         return $this->_pages;
2008     }
2009 }
2010
2011 class WikiDB_Array_generic_iter
2012 {
2013     function WikiDB_Array_generic_iter($result) {
2014         // $result may be either an array or a query result
2015         if (is_array($result)) {
2016             $this->_array = $result;
2017         } elseif (is_object($result)) {
2018             $this->_array = $result->asArray();
2019         } else {
2020             $this->_array = array();
2021         }
2022         if (!empty($this->_array))
2023             reset($this->_array);
2024     }
2025     function next() {
2026         $c =& current($this->_array);
2027         next($this->_array);
2028         return $c !== false ? $c : false;
2029     }
2030     function count() {
2031         return count($this->_array);
2032     }
2033     function free() {}
2034     function asArray() {
2035         if (!empty($this->_array))
2036             reset($this->_array);
2037         return $this->_array;
2038     }
2039 }
2040
2041 /**
2042  * Data cache used by WikiDB.
2043  *
2044  * FIXME: Maybe rename this to caching_backend (or some such).
2045  *
2046  * @access private
2047  */
2048 class WikiDB_cache 
2049 {
2050     // FIXME: beautify versiondata cache.  Cache only limited data?
2051
2052     function WikiDB_cache (&$backend) {
2053         $this->_backend = &$backend;
2054
2055         $this->_pagedata_cache = array();
2056         $this->_versiondata_cache = array();
2057         array_push ($this->_versiondata_cache, array());
2058         $this->_glv_cache = array();
2059         $this->_id_cache = array(); // formerly ->_dbi->_iwpcache (nonempty pages => id)
2060     }
2061     
2062     function close() {
2063         $this->_pagedata_cache = array();
2064         $this->_versiondata_cache = array();
2065         $this->_glv_cache = array();
2066         $this->_id_cache = array();
2067     }
2068
2069     function get_pagedata($pagename) {
2070         assert(is_string($pagename) && $pagename != '');
2071         if (USECACHE) {
2072             $cache = &$this->_pagedata_cache;
2073             if (!isset($cache[$pagename]) || !is_array($cache[$pagename])) {
2074                 $cache[$pagename] = $this->_backend->get_pagedata($pagename);
2075                 if (empty($cache[$pagename]))
2076                     $cache[$pagename] = array();
2077             }
2078             return $cache[$pagename];
2079         } else {
2080             return $this->_backend->get_pagedata($pagename);
2081         }
2082     }
2083     
2084     function update_pagedata($pagename, $newdata) {
2085         assert(is_string($pagename) && $pagename != '');
2086        
2087         $this->_backend->update_pagedata($pagename, $newdata);
2088
2089         if (USECACHE) {
2090             if (!empty($this->_pagedata_cache[$pagename]) 
2091                 and is_array($this->_pagedata_cache[$pagename])) 
2092             {
2093                 $cachedata = &$this->_pagedata_cache[$pagename];
2094                 foreach($newdata as $key => $val)
2095                     $cachedata[$key] = $val;
2096             } else 
2097                 $this->_pagedata_cache[$pagename] = $newdata;
2098         }
2099     }
2100
2101     function invalidate_cache($pagename) {
2102         unset ($this->_pagedata_cache[$pagename]);
2103         unset ($this->_versiondata_cache[$pagename]);
2104         unset ($this->_glv_cache[$pagename]);
2105         unset ($this->_id_cache[$pagename]);
2106         //unset ($this->_backend->_page_data);
2107     }
2108     
2109     function delete_page($pagename) {
2110         $result = $this->_backend->delete_page($pagename);
2111         $this->invalidate_cache($pagename);
2112         return $result;
2113     }
2114
2115     function purge_page($pagename) {
2116         $result = $this->_backend->purge_page($pagename);
2117         $this->invalidate_cache($pagename);
2118         return $result;
2119     }
2120
2121     // FIXME: ugly and wrong. may overwrite full cache with partial cache
2122     function cache_data($data) {
2123         ;
2124         //if (isset($data['pagedata']))
2125         //    $this->_pagedata_cache[$data['pagename']] = $data['pagedata'];
2126     }
2127     
2128     function get_versiondata($pagename, $version, $need_content = false) {
2129         //  FIXME: Seriously ugly hackage
2130         $readdata = false;
2131         if (USECACHE) {   //temporary - for debugging
2132             assert(is_string($pagename) && $pagename != '');
2133             // There is a bug here somewhere which results in an assertion failure at line 105
2134             // of ArchiveCleaner.php  It goes away if we use the next line.
2135             //$need_content = true;
2136             $nc = $need_content ? '1':'0';
2137             $cache = &$this->_versiondata_cache;
2138             if (!isset($cache[$pagename][$version][$nc]) 
2139                 || !(is_array ($cache[$pagename])) 
2140                 || !(is_array ($cache[$pagename][$version]))) 
2141             {
2142                 $cache[$pagename][$version][$nc] = 
2143                     $this->_backend->get_versiondata($pagename, $version, $need_content);
2144                 $readdata = true;
2145                 // If we have retrieved all data, we may as well set the cache for 
2146                 // $need_content = false
2147                 if ($need_content){
2148                     $cache[$pagename][$version]['0'] =& $cache[$pagename][$version]['1'];
2149                 }
2150             }
2151             $vdata = $cache[$pagename][$version][$nc];
2152         } else {
2153             $vdata = $this->_backend->get_versiondata($pagename, $version, $need_content);
2154             $readdata = true;
2155         }
2156         if ($readdata && $vdata && !empty($vdata['%pagedata'])) {
2157             $this->_pagedata_cache[$pagename] =& $vdata['%pagedata'];
2158         }
2159         return $vdata;
2160     }
2161
2162     function set_versiondata($pagename, $version, $data) {
2163         //unset($this->_versiondata_cache[$pagename][$version]);
2164         
2165         $new = $this->_backend->set_versiondata($pagename, $version, $data);
2166         // Update the cache
2167         $this->_versiondata_cache[$pagename][$version]['1'] = $data;
2168         $this->_versiondata_cache[$pagename][$version]['0'] = $data;
2169         // Is this necessary?
2170         unset($this->_glv_cache[$pagename]);
2171     }
2172
2173     function update_versiondata($pagename, $version, $data) {
2174         $new = $this->_backend->update_versiondata($pagename, $version, $data);
2175         // Update the cache
2176         $this->_versiondata_cache[$pagename][$version]['1'] = $data;
2177         // FIXME: hack
2178         $this->_versiondata_cache[$pagename][$version]['0'] = $data;
2179         // Is this necessary?
2180         unset($this->_glv_cache[$pagename]);
2181     }
2182
2183     function delete_versiondata($pagename, $version) {
2184         $new = $this->_backend->delete_versiondata($pagename, $version);
2185         if (isset($this->_versiondata_cache[$pagename][$version]))
2186             unset ($this->_versiondata_cache[$pagename][$version]);
2187         // dirty latest version cache only if latest version gets deleted
2188         if (isset($this->_glv_cache[$pagename]) and $this->_glv_cache[$pagename] == $version)
2189             unset ($this->_glv_cache[$pagename]);
2190     }
2191         
2192     function get_latest_version($pagename)  {
2193         if (USECACHE) {
2194             assert (is_string($pagename) && $pagename != '');
2195             $cache = &$this->_glv_cache;
2196             if (!isset($cache[$pagename])) {
2197                 $cache[$pagename] = $this->_backend->get_latest_version($pagename);
2198                 if (empty($cache[$pagename]))
2199                     $cache[$pagename] = 0;
2200             }
2201             return $cache[$pagename];
2202         } else {
2203             return $this->_backend->get_latest_version($pagename); 
2204         }
2205     }
2206 };
2207
2208 function _sql_debuglog($msg, $newline=true, $shutdown=false) {
2209     static $fp = false;
2210     static $i = 0;
2211     if (!$fp) {
2212         $stamp = strftime("%y%m%d-%H%M%S");
2213         $fp = fopen(TEMP_DIR."/sql-$stamp.log", "a");
2214         register_shutdown_function("_sql_debuglog_shutdown_function");
2215     } elseif ($shutdown) {
2216         fclose($fp);
2217         return;
2218     }
2219     if ($newline) fputs($fp, "[$i++] $msg");
2220     else fwrite($fp, $msg);
2221 }
2222
2223 function _sql_debuglog_shutdown_function() {
2224     _sql_debuglog('',false,true);
2225 }
2226
2227 // $Log: not supported by cvs2svn $
2228 // Revision 1.154  2007/07/14 12:03:58  rurban
2229 // support score
2230 //
2231 // Revision 1.153  2007/06/07 16:54:29  rurban
2232 // enable $MailNotify->onChangePage. support other formatters (MediaWiki, Creole, ...)
2233 //
2234 // Revision 1.152  2007/05/28 20:13:46  rurban
2235 // Overwrite all attributes at once at page->save to delete dangling meta
2236 //
2237 // Revision 1.151  2007/05/01 16:20:12  rurban
2238 // MailNotify->onChangePage only on DEBUG (still broken)
2239 //
2240 // Revision 1.150  2007/03/18 17:35:27  rurban
2241 // Improve comments
2242 //
2243 // Revision 1.149  2007/02/17 14:16:37  rurban
2244 // isWikiPage no error on empty pagenames. MailNotify->onChangePage fix by ??
2245 //
2246 // Revision 1.148  2007/01/27 21:53:03  rurban
2247 // Use TEMP_DIR for debug sql.log
2248 //
2249 // Revision 1.147  2007/01/04 16:41:41  rurban
2250 // Some pageiterators also set ['pagedata']['linkrelation'], hmm
2251 //
2252 // Revision 1.146  2007/01/02 13:20:00  rurban
2253 // rewrote listRelations. added linkSearch. force new date in renamePage. fix fortune error handling. added page->setAttributes. use translated initial owner. Clarify API: sortby,limit and exclude are strings. Enhance documentation.
2254 //
2255 // Revision 1.145  2006/12/22 17:59:55  rurban
2256 // Move mailer functions into seperate MailNotify.php
2257 //
2258 // Revision 1.144  2006/10/12 06:36:09  rurban
2259 // Guard against unwanted DEBUG="DEBUG" logic. In detail (WikiDB),
2260 // and generally by forcing all int constants to be defined as int.
2261 //
2262 // Revision 1.143  2006/09/06 05:46:40  rurban
2263 // do db backend check on _DEBUG_SQL
2264 //
2265 // Revision 1.142  2006/06/10 11:55:58  rurban
2266 // print optimize only when DEBUG
2267 //
2268 // Revision 1.141  2006/04/17 17:28:21  rurban
2269 // honor getWikiPageLinks change linkto=>relation
2270 //
2271 // Revision 1.140  2006/03/19 14:23:51  rurban
2272 // sf.net patch #1377011 by Matt Brown: add DATABASE_OPTIMISE_FREQUENCY
2273 //
2274 // Revision 1.139  2006/01/12 16:38:07  rurban
2275 // add page method listRelations()
2276 // fix bug #1327912 numeric pagenames can break plugins (Joachim Lous)
2277 //
2278 // Revision 1.138  2005/11/14 22:27:07  rurban
2279 // add linkrelation support
2280 //   getPageLinks returns now an array of hashes
2281 // pass stoplist through iterator
2282 //
2283 // Revision 1.137  2005/10/12 06:16:18  rurban
2284 // better From header
2285 //
2286 // Revision 1.136  2005/10/03 16:14:57  rurban
2287 // improve description
2288 //
2289 // Revision 1.135  2005/09/11 14:19:44  rurban
2290 // enable LIMIT support for fulltext search
2291 //
2292 // Revision 1.134  2005/09/10 21:28:10  rurban
2293 // applyFilters hack to use filters after methods, which do not support them (titleSearch)
2294 //
2295 // Revision 1.133  2005/08/27 09:39:10  rurban
2296 // dumphtml when not at admin page: dump the current or given page
2297 //
2298 // Revision 1.132  2005/08/07 10:10:07  rurban
2299 // clean whole version cache
2300 //
2301 // Revision 1.131  2005/04/23 11:30:12  rurban
2302 // allow emtpy WikiDB::getRevisionBefore(), for simplier templates (revert)
2303 //
2304 // Revision 1.130  2005/04/06 06:19:30  rurban
2305 // Revert the previous wrong bugfix #1175761: USECACHE was mixed with WIKIDB_NOCACHE_MARKUP.
2306 // Fix WIKIDB_NOCACHE_MARKUP in main (always set it) and clarify it in WikiDB
2307 //
2308 // Revision 1.129  2005/04/06 05:50:29  rurban
2309 // honor !USECACHE for _cached_html, fixes #1175761
2310 //
2311 // Revision 1.128  2005/04/01 16:11:42  rurban
2312 // just whitespace
2313 //
2314 // Revision 1.127  2005/02/18 20:43:40  uckelman
2315 // WikiDB::genericWarnings() is no longer used.
2316 //
2317 // Revision 1.126  2005/02/04 17:58:06  rurban
2318 // minor versioncache improvement. part 2/3 of Charles Corrigan cache patch. not sure about the 0/1 issue
2319 //
2320 // Revision 1.125  2005/02/03 05:08:39  rurban
2321 // ref fix by Charles Corrigan
2322 //
2323 // Revision 1.124  2005/01/29 20:43:32  rurban
2324 // protect against empty request: on some occasion this happens
2325 //
2326 // Revision 1.123  2005/01/25 06:58:21  rurban
2327 // reformatting
2328 //
2329 // Revision 1.122  2005/01/20 10:18:17  rurban
2330 // reformatting
2331 //
2332 // Revision 1.121  2005/01/04 20:25:01  rurban
2333 // remove old [%pagedata][_cached_html] code
2334 //
2335 // Revision 1.120  2004/12/23 14:12:31  rurban
2336 // dont email on unittest
2337 //
2338 // Revision 1.119  2004/12/20 16:05:00  rurban
2339 // gettext msg unification
2340 //
2341 // Revision 1.118  2004/12/13 13:22:57  rurban
2342 // new BlogArchives plugin for the new blog theme. enable default box method
2343 // for all plugins. Minor search improvement.
2344 //
2345 // Revision 1.117  2004/12/13 08:15:09  rurban
2346 // false is wrong. null might be better but lets play safe.
2347 //
2348 // Revision 1.116  2004/12/10 22:15:00  rurban
2349 // fix $page->get('_cached_html)
2350 // refactor upgrade db helper _convert_cached_html() to be able to call them from WikiAdminUtils also.
2351 // support 2nd genericSqlQuery param (bind huge arg)
2352 //
2353 // Revision 1.115  2004/12/10 02:45:27  rurban
2354 // SQL optimization:
2355 //   put _cached_html from pagedata into a new seperate blob, not huge serialized string.
2356 //   it is only rarelely needed: for current page only, if-not-modified
2357 //   but was extracted for every simple page iteration.
2358 //
2359 // Revision 1.114  2004/12/09 22:24:44  rurban
2360 // optimize on _DEBUG_SQL only. but now again on every 50th request, not just save.
2361 //
2362 // Revision 1.113  2004/12/06 19:49:55  rurban
2363 // enable action=remove which is undoable and seeable in RecentChanges: ADODB ony for now.
2364 // renamed delete_page to purge_page.
2365 // enable action=edit&version=-1 to force creation of a new version.
2366 // added BABYCART_PATH config
2367 // fixed magiqc in adodb.inc.php
2368 // and some more docs
2369 //
2370 // Revision 1.112  2004/11/30 17:45:53  rurban
2371 // exists_links backend implementation
2372 //
2373 // Revision 1.111  2004/11/28 20:39:43  rurban
2374 // deactivate pagecache overwrite: it is wrong
2375 //
2376 // Revision 1.110  2004/11/26 18:39:01  rurban
2377 // new regex search parser and SQL backends (90% complete, glob and pcre backends missing)
2378 //
2379 // Revision 1.109  2004/11/25 17:20:50  rurban
2380 // and again a couple of more native db args: backlinks
2381 //
2382 // Revision 1.108  2004/11/23 13:35:31  rurban
2383 // add case_exact search
2384 //
2385 // Revision 1.107  2004/11/21 11:59:16  rurban
2386 // remove final \n to be ob_cache independent
2387 //
2388 // Revision 1.106  2004/11/20 17:35:56  rurban
2389 // improved WantedPages SQL backends
2390 // PageList::sortby new 3rd arg valid_fields (override db fields)
2391 // WantedPages sql pager inexact for performance reasons:
2392 //   assume 3 wantedfrom per page, to be correct, no getTotal()
2393 // support exclude argument for get_all_pages, new _sql_set()
2394 //
2395 // Revision 1.105  2004/11/20 09:16:27  rurban
2396 // Fix bad-style Cut&Paste programming errors, detected by Charles Corrigan.
2397 //
2398 // Revision 1.104  2004/11/19 19:22:03  rurban
2399 // ModeratePage part1: change status
2400 //
2401 // Revision 1.103  2004/11/16 17:29:04  rurban
2402 // fix remove notification error
2403 // fix creation + update id_cache update
2404 //
2405 // Revision 1.102  2004/11/11 18:31:26  rurban
2406 // add simple backtrace on such general failures to get at least an idea where
2407 //
2408 // Revision 1.101  2004/11/10 19:32:22  rurban
2409 // * optimize increaseHitCount, esp. for mysql.
2410 // * prepend dirs to the include_path (phpwiki_dir for faster searches)
2411 // * Pear_DB version logic (awful but needed)
2412 // * fix broken ADODB quote
2413 // * _extract_page_data simplification
2414 //
2415 // Revision 1.100  2004/11/10 15:29:20  rurban
2416 // * requires newer Pear_DB (as the internal one): quote() uses now escapeSimple for strings
2417 // * ACCESS_LOG_SQL: fix cause request not yet initialized
2418 // * WikiDB: moved SQL specific methods upwards
2419 // * new Pear_DB quoting: same as ADODB and as newer Pear_DB.
2420 //   fixes all around: WikiGroup, WikiUserNew SQL methods, SQL logging
2421 //
2422 // Revision 1.99  2004/11/09 17:11:05  rurban
2423 // * revert to the wikidb ref passing. there's no memory abuse there.
2424 // * use new wikidb->_cache->_id_cache[] instead of wikidb->_iwpcache, to effectively
2425 //   store page ids with getPageLinks (GleanDescription) of all existing pages, which
2426 //   are also needed at the rendering for linkExistingWikiWord().
2427 //   pass options to pageiterator.
2428 //   use this cache also for _get_pageid()
2429 //   This saves about 8 SELECT count per page (num all pagelinks).
2430 // * fix passing of all page fields to the pageiterator.
2431 // * fix overlarge session data which got broken with the latest ACCESS_LOG_SQL changes
2432 //
2433 // Revision 1.98  2004/11/07 18:34:29  rurban
2434 // more logging fixes
2435 //
2436 // Revision 1.97  2004/11/07 16:02:51  rurban
2437 // new sql access log (for spam prevention), and restructured access log class
2438 // dbh->quote (generic)
2439 // pear_db: mysql specific parts seperated (using replace)
2440 //
2441 // Revision 1.96  2004/11/05 22:32:15  rurban
2442 // encode the subject to be 7-bit safe
2443 //
2444 // Revision 1.95  2004/11/05 20:53:35  rurban
2445 // login cleanup: better debug msg on failing login,
2446 // checked password less immediate login (bogo or anon),
2447 // checked olduser pref session error,
2448 // better PersonalPage without password warning on minimal password length=0
2449 //   (which is default now)
2450 //
2451 // Revision 1.94  2004/11/01 10:43:56  rurban
2452 // seperate PassUser methods into seperate dir (memory usage)
2453 // fix WikiUser (old) overlarge data session
2454 // remove wikidb arg from various page class methods, use global ->_dbi instead
2455 // ...
2456 //
2457 // Revision 1.93  2004/10/14 17:17:57  rurban
2458 // remove dbi WikiDB_Page param: use global request object instead. (memory)
2459 // allow most_popular sortby arguments
2460 //
2461 // Revision 1.92  2004/10/05 17:00:04  rurban
2462 // support paging for simple lists
2463 // fix RatingDb sql backend.
2464 // remove pages from AllPages (this is ListPages then)
2465 //
2466 // Revision 1.91  2004/10/04 23:41:19  rurban
2467 // delete notify: fix, @unset syntax error
2468 //
2469 // Revision 1.90  2004/09/28 12:50:22  rurban
2470 // https://sourceforge.net/forum/forum.php?thread_id=1150924&forum_id=18929
2471 //
2472 // Revision 1.89  2004/09/26 10:54:42  rurban
2473 // silence deferred check
2474 //
2475 // Revision 1.88  2004/09/25 18:16:40  rurban
2476 // unset more unneeded _cached_html. (Guess this should fix sf.net now)
2477 //
2478 // Revision 1.87  2004/09/25 16:25:40  rurban
2479 // notify on rename and remove (to be improved)
2480 //
2481 // Revision 1.86  2004/09/23 18:52:06  rurban
2482 // only fortune at create
2483 //
2484 // Revision 1.85  2004/09/16 08:00:51  rurban
2485 // just some comments
2486 //
2487 // Revision 1.84  2004/09/14 10:34:30  rurban
2488 // fix TransformedText call to use refs
2489 //
2490 // Revision 1.83  2004/09/08 13:38:00  rurban
2491 // improve loadfile stability by using markup=2 as default for undefined markup-style.
2492 // use more refs for huge objects.
2493 // fix debug=static issue in WikiPluginCached
2494 //
2495 // Revision 1.82  2004/09/06 12:08:49  rurban
2496 // memory_limit on unix workaround
2497 // VisualWiki: default autosize image
2498 //
2499 // Revision 1.81  2004/09/06 08:28:00  rurban
2500 // rename genericQuery to genericSqlQuery
2501 //
2502 // Revision 1.80  2004/07/09 13:05:34  rurban
2503 // just aesthetics
2504 //
2505 // Revision 1.79  2004/07/09 10:06:49  rurban
2506 // Use backend specific sortby and sortable_columns method, to be able to
2507 // select between native (Db backend) and custom (PageList) sorting.
2508 // Fixed PageList::AddPageList (missed the first)
2509 // Added the author/creator.. name to AllPagesBy...
2510 //   display no pages if none matched.
2511 // Improved dba and file sortby().
2512 // Use &$request reference
2513 //
2514 // Revision 1.78  2004/07/08 21:32:35  rurban
2515 // Prevent from more warnings, minor db and sort optimizations
2516 //
2517 // Revision 1.77  2004/07/08 19:04:42  rurban
2518 // more unittest fixes (file backend, metadata RatingsDb)
2519 //
2520 // Revision 1.76  2004/07/08 17:31:43  rurban
2521 // improve numPages for file (fixing AllPagesTest)
2522 //
2523 // Revision 1.75  2004/07/05 13:56:22  rurban
2524 // sqlite autoincrement fix
2525 //
2526 // Revision 1.74  2004/07/03 16:51:05  rurban
2527 // optional DBADMIN_USER:DBADMIN_PASSWD for action=upgrade (if no ALTER permission)
2528 // added atomic mysql REPLACE for PearDB as in ADODB
2529 // fixed _lock_tables typo links => link
2530 // fixes unserialize ADODB bug in line 180
2531 //
2532 // Revision 1.73  2004/06/29 08:52:22  rurban
2533 // Use ...version() $need_content argument in WikiDB also:
2534 // To reduce the memory footprint for larger sets of pagelists,
2535 // we don't cache the content (only true or false) and
2536 // we purge the pagedata (_cached_html) also.
2537 // _cached_html is only cached for the current pagename.
2538 // => Vastly improved page existance check, ACL check, ...
2539 //
2540 // Now only PagedList info=content or size needs the whole content, esp. if sortable.
2541 //
2542 // Revision 1.72  2004/06/25 14:15:08  rurban
2543 // reduce memory footprint by caching only requested pagedate content (improving most page iterators)
2544 //
2545 // Revision 1.71  2004/06/21 16:22:30  rurban
2546 // add DEFAULT_DUMP_DIR and HTML_DUMP_DIR constants, for easier cmdline dumps,
2547 // fixed dumping buttons locally (images/buttons/),
2548 // support pages arg for dumphtml,
2549 // optional directory arg for dumpserial + dumphtml,
2550 // fix a AllPages warning,
2551 // show dump warnings/errors on DEBUG,
2552 // don't warn just ignore on wikilens pagelist columns, if not loaded.
2553 // RateIt pagelist column is called "rating", not "ratingwidget" (Dan?)
2554 //
2555 // Revision 1.70  2004/06/18 14:39:31  rurban
2556 // actually check USECACHE
2557 //
2558 // Revision 1.69  2004/06/13 15:33:20  rurban
2559 // new support for arguments owner, author, creator in most relevant
2560 // PageList plugins. in WikiAdmin* via preSelectS()
2561 //
2562 // Revision 1.68  2004/06/08 21:03:20  rurban
2563 // updated RssParser for XmlParser quirks (store parser object params in globals)
2564 //
2565 // Revision 1.67  2004/06/07 19:12:49  rurban
2566 // fixed rename version=0, bug #966284
2567 //
2568 // Revision 1.66  2004/06/07 18:57:27  rurban
2569 // fix rename: Change pagename in all linked pages
2570 //
2571 // Revision 1.65  2004/06/04 20:32:53  rurban
2572 // Several locale related improvements suggested by Pierrick Meignen
2573 // LDAP fix by John Cole
2574 // reanable admin check without ENABLE_PAGEPERM in the admin plugins
2575 //
2576 // Revision 1.64  2004/06/04 16:50:00  rurban
2577 // add random quotes to empty pages
2578 //
2579 // Revision 1.63  2004/06/04 11:58:38  rurban
2580 // added USE_TAGLINES
2581 //
2582 // Revision 1.62  2004/06/03 22:24:41  rurban
2583 // reenable admin check on !ENABLE_PAGEPERM, honor s=Wildcard arg, fix warning after Remove
2584 //
2585 // Revision 1.61  2004/06/02 17:13:48  rurban
2586 // fix getRevisionBefore assertion
2587 //
2588 // Revision 1.60  2004/05/28 10:09:58  rurban
2589 // fix bug #962117, incorrect init of auth_dsn
2590 //
2591 // Revision 1.59  2004/05/27 17:49:05  rurban
2592 // renamed DB_Session to DbSession (in CVS also)
2593 // added WikiDB->getParam and WikiDB->getAuthParam method to get rid of globals
2594 // remove leading slash in error message
2595 // added force_unlock parameter to File_Passwd (no return on stale locks)
2596 // fixed adodb session AffectedRows
2597 // added FileFinder helpers to unify local filenames and DATA_PATH names
2598 // editpage.php: new edit toolbar javascript on ENABLE_EDIT_TOOLBAR
2599 //
2600 // Revision 1.58  2004/05/18 13:59:14  rurban
2601 // rename simpleQuery to genericQuery
2602 //
2603 // Revision 1.57  2004/05/16 22:07:35  rurban
2604 // check more config-default and predefined constants
2605 // various PagePerm fixes:
2606 //   fix default PagePerms, esp. edit and view for Bogo and Password users
2607 //   implemented Creator and Owner
2608 //   BOGOUSERS renamed to BOGOUSER
2609 // fixed syntax errors in signin.tmpl
2610 //
2611 // Revision 1.56  2004/05/15 22:54:49  rurban
2612 // fixed important WikiDB bug with DEBUG > 0: wrong assertion
2613 // improved SetAcl (works) and PagePerms, some WikiGroup helpers.
2614 //
2615 // Revision 1.55  2004/05/12 19:27:47  rurban
2616 // revert wrong inline optimization.
2617 //
2618 // Revision 1.54  2004/05/12 10:49:55  rurban
2619 // require_once fix for those libs which are loaded before FileFinder and
2620 //   its automatic include_path fix, and where require_once doesn't grok
2621 //   dirname(__FILE__) != './lib'
2622 // upgrade fix with PearDB
2623 // navbar.tmpl: remove spaces for IE &nbsp; button alignment
2624 //
2625 // Revision 1.53  2004/05/08 14:06:12  rurban
2626 // new support for inlined image attributes: [image.jpg size=50x30 align=right]
2627 // minor stability and portability fixes
2628 //
2629 // Revision 1.52  2004/05/06 19:26:16  rurban
2630 // improve stability, trying to find the InlineParser endless loop on sf.net
2631 //
2632 // remove end-of-zip comments to fix sf.net bug #777278 and probably #859628
2633 //
2634 // Revision 1.51  2004/05/06 17:30:37  rurban
2635 // CategoryGroup: oops, dos2unix eol
2636 // improved phpwiki_version:
2637 //   pre -= .0001 (1.3.10pre: 1030.099)
2638 //   -p1 += .001 (1.3.9-p1: 1030.091)
2639 // improved InstallTable for mysql and generic SQL versions and all newer tables so far.
2640 // abstracted more ADODB/PearDB methods for action=upgrade stuff:
2641 //   backend->backendType(), backend->database(),
2642 //   backend->listOfFields(),
2643 //   backend->listOfTables(),
2644 //
2645 // Revision 1.50  2004/05/04 22:34:25  rurban
2646 // more pdf support
2647 //
2648 // Revision 1.49  2004/05/03 11:16:40  rurban
2649 // fixed sendPageChangeNotification
2650 // subject rewording
2651 //
2652 // Revision 1.48  2004/04/29 23:03:54  rurban
2653 // fixed sf.net bug #940996
2654 //
2655 // Revision 1.47  2004/04/29 19:39:44  rurban
2656 // special support for formatted plugins (one-liners)
2657 //   like <small><plugin BlaBla ></small>
2658 // iter->asArray() helper for PopularNearby
2659 // db_session for older php's (no &func() allowed)
2660 //
2661 // Revision 1.46  2004/04/26 20:44:34  rurban
2662 // locking table specific for better databases
2663 //
2664 // Revision 1.45  2004/04/20 00:06:03  rurban
2665 // themable paging support
2666 //
2667 // Revision 1.44  2004/04/19 18:27:45  rurban
2668 // Prevent from some PHP5 warnings (ref args, no :: object init)
2669 //   php5 runs now through, just one wrong XmlElement object init missing
2670 // Removed unneccesary UpgradeUser lines
2671 // Changed WikiLink to omit version if current (RecentChanges)
2672 //
2673 // Revision 1.43  2004/04/18 01:34:20  rurban
2674 // protect most_popular from sortby=mtime
2675 //
2676 // Revision 1.42  2004/04/18 01:11:51  rurban
2677 // more numeric pagename fixes.
2678 // fixed action=upload with merge conflict warnings.
2679 // charset changed from constant to global (dynamic utf-8 switching)
2680 //
2681
2682 // Local Variables:
2683 // mode: php
2684 // tab-width: 8
2685 // c-basic-offset: 4
2686 // c-hanging-comment-ender-p: nil
2687 // indent-tabs-mode: nil
2688 // End:   
2689 ?>