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