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