]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/loadsave.php
loadsave: check if the dumped file will be accessible from outside.
[SourceForge/phpwiki.git] / lib / loadsave.php
1 <?php //-*-php-*-
2 rcs_id('$Id: loadsave.php,v 1.125 2004-10-14 19:19:33 rurban Exp $');
3
4 /*
5  Copyright 1999, 2000, 2001, 2002 $ThePhpWikiProgrammingTeam
6
7  This file is part of PhpWiki.
8
9  PhpWiki is free software; you can redistribute it and/or modify
10  it under the terms of the GNU General Public License as published by
11  the Free Software Foundation; either version 2 of the License, or
12  (at your option) any later version.
13
14  PhpWiki is distributed in the hope that it will be useful,
15  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  GNU General Public License for more details.
18
19  You should have received a copy of the GNU General Public License
20  along with PhpWiki; if not, write to the Free Software
21  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  */
23
24
25 require_once("lib/ziplib.php");
26 require_once("lib/Template.php");
27
28 /**
29  * ignore fatal errors during dump
30  */
31 function _dump_error_handler(&$error) {
32     if ($error->isFatal()) {
33         $error->errno = E_USER_WARNING;
34         return true;
35     }
36     return true;         // Ignore error
37     /*
38     if (preg_match('/Plugin/', $error->errstr))
39         return true;
40     */
41     // let the message come through: call the remaining handlers:
42     // return false; 
43 }
44
45 function StartLoadDump(&$request, $title, $html = '')
46 {
47     // MockRequest is from the unit testsuite, a faked request. (may be cmd-line)
48     // We are silent on unittests.
49     if (isa($request,'MockRequest'))
50         return;
51     // FIXME: This is a hack. This really is the worst overall hack in phpwiki.
52     if ($html)
53         $html->pushContent('%BODY%');
54     $tmpl = Template('html', array('TITLE' => $title,
55                                    'HEADER' => $title,
56                                    'CONTENT' => $html ? $html : '%BODY%'));
57     echo ereg_replace('%BODY%.*', '', $tmpl->getExpansion($html));
58     // set marker for sendPageChangeNotification()
59     $GLOBALS['deferredPageChangeNotification'] = array();
60
61     /* Ignore fatals or warnings in any pagedumps (failing plugins). 
62      * WikiFunctionCb() fails with 4.0.6, works ok with 4.1.1 
63      */
64     if (!check_php_version(4,1) or (DEBUG & _DEBUG_VERBOSE)) return;
65     global $ErrorManager;
66     $ErrorManager->pushErrorHandler(new WikiFunctionCb('_dump_error_handler'));
67 }
68
69 function EndLoadDump(&$request)
70 {
71     if (isa($request,'MockRequest'))
72         return;
73     if (check_php_version(4,1)) {
74         global $ErrorManager;
75         $ErrorManager->popErrorHandler();
76     }
77     $action = $request->getArg('action');
78     $label = '';
79     switch ($action) {
80     case 'zip':        $label = _("ZIP files of database"); break;
81     case 'dumpserial': $label = _("Dump to directory"); break;
82     case 'upload':     $label = _("Upload File"); break;
83     case 'loadfile':   $label = _("Load File"); break;
84     case 'upgrade':    $label = _("Upgrade"); break;
85     case 'dumphtml': 
86     case 'ziphtml':    $label = _("Dump pages as XHTML"); break;
87     }
88     if ($label) $label = str_replace(" ","_",$label);
89     if ($action == 'browse') // loading virgin 
90         $pagelink = WikiLink(HOME_PAGE);
91     else
92         $pagelink = WikiLink(new WikiPageName(_("PhpWikiAdministration"),false,$label));
93     // do deferred sendPageChangeNotification()
94     if (!empty($GLOBALS['deferredPageChangeNotification'])) {
95         $pages = $all_emails = $all_users = array();
96         foreach ($GLOBALS['deferredPageChangeNotification'] as $p) {
97             list($pagename, $emails, $userids) = $p;
98             $pages[] = $pagename;
99             $all_emails = array_unique(array_merge($all_emails, $emails));
100             $all_users = array_unique(array_merge($all_users, $userids));
101         }
102         $editedby = sprintf(_("Edited by: %s"), $request->_userid);
103         $content = "Loaded the following pages:\n" . join("\n", $pages);
104         if (mail(join(',',$all_emails),"[".WIKI_NAME."] "._("LoadDump"), 
105                  _("LoadDump")."\n".
106                  $editedby."\n\n".
107                  $content))
108             trigger_error(sprintf(_("PageChange Notification sent to %s"),
109                                   join(',',$all_users)), E_USER_NOTICE);
110         else
111             trigger_error(sprintf(_("PageChange Notification Error: Couldn't send to %s"),
112                                   join(',',$all_users)), E_USER_WARNING);
113         unset($pages);
114         unset($all_emails);
115         unset($all_users);
116     }
117     unset($GLOBALS['deferredPageChangeNotification']);
118
119     PrintXML(HTML::p(HTML::strong(_("Complete."))),
120              HTML::p(fmt("Return to %s", $pagelink)));
121     echo "</body></html>\n";
122 }
123
124
125 ////////////////////////////////////////////////////////////////
126 //
127 //  Functions for dumping.
128 //
129 ////////////////////////////////////////////////////////////////
130
131 /**
132  * For reference see:
133  * http://www.nacs.uci.edu/indiv/ehood/MIME/2045/rfc2045.html
134  * http://www.faqs.org/rfcs/rfc2045.html
135  * (RFC 1521 has been superceeded by RFC 2045 & others).
136  *
137  * Also see http://www.faqs.org/rfcs/rfc2822.html
138  */
139 function MailifyPage ($page, $nversions = 1)
140 {
141     $current = $page->getCurrentRevision();
142     $head = '';
143
144     if (STRICT_MAILABLE_PAGEDUMPS) {
145         $from = defined('SERVER_ADMIN') ? SERVER_ADMIN : 'foo@bar';
146         //This is for unix mailbox format: (not RFC (2)822)
147         // $head .= "From $from  " . CTime(time()) . "\r\n";
148         $head .= "Subject: " . rawurlencode($page->getName()) . "\r\n";
149         $head .= "From: $from (PhpWiki)\r\n";
150         // RFC 2822 requires only a Date: and originator (From:)
151         // field, however the obsolete standard RFC 822 also
152         // requires a destination field.
153         $head .= "To: $from (PhpWiki)\r\n";
154     }
155     $head .= "Date: " . Rfc2822DateTime($current->get('mtime')) . "\r\n";
156     $head .= sprintf("Mime-Version: 1.0 (Produced by PhpWiki %s)\r\n",
157                      PHPWIKI_VERSION);
158
159     // This should just be entered by hand (or by script?)
160     // in the actual pgsrc files, since only they should have
161     // RCS ids.
162     //$head .= "X-Rcs-Id: \$Id\$\r\n";
163
164     $iter = $page->getAllRevisions();
165     $parts = array();
166     while ($revision = $iter->next()) {
167         $parts[] = MimeifyPageRevision($revision);
168         if ($nversions > 0 && count($parts) >= $nversions)
169             break;
170     }
171     if (count($parts) > 1)
172         return $head . MimeMultipart($parts);
173     assert($parts);
174     return $head . $parts[0];
175 }
176
177 /***
178  * Compute filename to used for storing contents of a wiki page.
179  *
180  * Basically we do a rawurlencode() which encodes everything except
181  * ASCII alphanumerics and '.', '-', and '_'.
182  *
183  * But we also want to encode leading dots to avoid filenames like
184  * '.', and '..'. (Also, there's no point in generating "hidden" file
185  * names, like '.foo'.)
186  *
187  * @param $pagename string Pagename.
188  * @return string Filename for page.
189  */
190 function FilenameForPage ($pagename)
191 {
192     $enc = rawurlencode($pagename);
193     return preg_replace('/^\./', '%2e', $enc);
194 }
195
196 /**
197  * The main() function which generates a zip archive of a PhpWiki.
198  *
199  * If $include_archive is false, only the current version of each page
200  * is included in the zip file; otherwise all archived versions are
201  * included as well.
202  */
203 function MakeWikiZip (&$request)
204 {
205     if ($request->getArg('include') == 'all') {
206         $zipname         = WIKI_NAME . _("FullDump") . date('Ymd-Hi') . '.zip';
207         $include_archive = true;
208     }
209     else {
210         $zipname         = WIKI_NAME . _("LatestSnapshot") . date('Ymd-Hi') . '.zip';
211         $include_archive = false;
212     }
213
214
215     $zip = new ZipWriter("Created by PhpWiki " . PHPWIKI_VERSION, $zipname);
216
217     /* ignore fatals in plugins */
218     if (check_php_version(4,1)) {
219         global $ErrorManager;
220         $ErrorManager->pushErrorHandler(new WikiFunctionCb('_dump_error_handler'));
221     }
222
223     $dbi = $request->getDbh();
224     $thispage = $request->getArg('pagename'); // for "Return to ..."
225     if ($exclude = $request->getArg('exclude')) {   // exclude which pagenames
226         $excludeList = explodePageList($exclude); 
227     } else {
228         $excludeList = array();
229     }
230     if ($whichpages = $request->getArg('pages')) {  // which pagenames
231         if ($whichpages == '[]') // current page
232             $whichpages = $thispage;
233         $pages = new WikiDB_Array_PageIterator(explodePageList($whichpages));
234     } else {
235         $pages = $dbi->getAllPages();
236     }
237     $request_args = $request->args;
238     
239     while ($page = $pages->next()) {
240         $request->args = $request_args; // some plugins might change them (esp. on POST)
241         if (! $request->getArg('start_debug'))
242             @set_time_limit(30); // Reset watchdog
243         else    
244             @set_time_limit(240);
245
246         $current = $page->getCurrentRevision();
247         if ($current->getVersion() == 0)
248             continue;
249
250         $pagename = $page->getName();
251         $wpn = new WikiPageName($pagename);
252         if (!$wpn->isValid())
253             continue;
254         if (in_array($page->getName(), $excludeList)) {
255             continue;
256         }
257
258         $attrib = array('mtime'    => $current->get('mtime'),
259                         'is_ascii' => 1);
260         if ($page->get('locked'))
261             $attrib['write_protected'] = 1;
262
263         if ($include_archive)
264             $content = MailifyPage($page, 0);
265         else
266             $content = MailifyPage($page);
267
268         $zip->addRegularFile( FilenameForPage($pagename),
269                               $content, $attrib);
270     }
271     $zip->finish();
272     if (check_php_version(4,1)) {
273         $ErrorManager->popErrorHandler();
274     }
275 }
276
277 function DumpToDir (&$request)
278 {
279     $directory = $request->getArg('directory');
280     if (empty($directory))
281         $directory = DEFAULT_DUMP_DIR; // See lib/plugin/WikiForm.php:87
282     if (empty($directory))
283         $request->finish(_("You must specify a directory to dump to"));
284
285     // see if we can access the directory the user wants us to use
286     if (! file_exists($directory)) {
287         if (! mkdir($directory, 0755))
288             $request->finish(fmt("Cannot create directory '%s'", $directory));
289         else
290             $html = HTML::p(fmt("Created directory '%s' for the page dump...",
291                                 $directory));
292     } else {
293         $html = HTML::p(fmt("Using directory '%s'", $directory));
294     }
295
296     StartLoadDump($request, _("Dumping Pages"), $html);
297
298     $dbi = $request->getDbh();
299     $thispage = $request->getArg('pagename'); // for "Return to ..."
300     if ($exclude = $request->getArg('exclude')) {   // exclude which pagenames
301         $excludeList = explodePageList($exclude); 
302     } else {
303         $excludeList = array();
304     }
305     if ($whichpages = $request->getArg('pages')) {  // which pagenames
306         if ($whichpages == '[]') // current page
307             $whichpages = $thispage;
308         $pages = new WikiDB_Array_PageIterator(explodePageList($whichpages));
309     } else {
310         $pages = $dbi->getAllPages();
311     }
312
313     $request_args = $request->args;
314     
315     while ($page = $pages->next()) {
316         $request->args = $request_args; // some plugins might change them (esp. on POST)
317         if (! $request->getArg('start_debug'))
318             @set_time_limit(30); // Reset watchdog.
319         else    
320             @set_time_limit(240);
321
322         $pagename = $page->getName();
323         if (!isa($request,'MockRequest')) {
324             PrintXML(HTML::br(), $pagename, ' ... ');
325             flush();
326         }
327
328         if (in_array($pagename, $excludeList)) {
329             if (!isa($request,'MockRequest')) {
330                 PrintXML(_("Skipped."));
331                 flush();
332             }
333             continue;
334         }
335         $filename = FilenameForPage($pagename);
336         $msg = HTML();
337         if($page->getName() != $filename) {
338             $msg->pushContent(HTML::small(fmt("saved as %s", $filename)),
339                               " ... ");
340         }
341
342         if ($request->getArg('include') == 'all')
343             $data = MailifyPage($page, 0);
344         else
345             $data = MailifyPage($page);
346
347         if ( !($fd = fopen("$directory/$filename", "wb")) ) {
348             $msg->pushContent(HTML::strong(fmt("couldn't open file '%s' for writing",
349                                                "$directory/$filename")));
350             $request->finish($msg);
351         }
352
353         $num = fwrite($fd, $data, strlen($data));
354         $msg->pushContent(HTML::small(fmt("%s bytes written", $num)));
355         if (!isa($request,'MockRequest')) {
356             PrintXML($msg);
357             flush();
358         }
359         assert($num == strlen($data));
360         fclose($fd);
361     }
362
363     EndLoadDump($request);
364 }
365
366 /**
367  * Dump all pages as XHTML to a directory, as pagename.html.
368  * Copies all used css files to the directory, all used images to a 
369  * "images" subdirectory, and all used buttons to a "images/buttons" subdirectory.
370  * The webserver must have write permissions to these directories. 
371  *   chown httpd HTML_DUMP_DIR; chmod u+rwx HTML_DUMP_DIR 
372  * should be enough.
373  *
374  * @param string directory (optional) path to dump to. Default: HTML_DUMP_DIR
375  * @param string pages     (optional) Comma-seperated of glob-style pagenames to dump
376  * @param string exclude   (optional) Comma-seperated of glob-style pagenames to exclude
377  */
378 function DumpHtmlToDir (&$request)
379 {
380     $directory = $request->getArg('directory');
381     if (empty($directory))
382         $directory = HTML_DUMP_DIR; // See lib/plugin/WikiForm.php:87
383     if (empty($directory))
384         $request->finish(_("You must specify a directory to dump to"));
385
386     // see if we can access the directory the user wants us to use
387     if (! file_exists($directory)) {
388         if (! mkdir($directory, 0755))
389             $request->finish(fmt("Cannot create directory '%s'", $directory));
390         else
391             $html = HTML::p(fmt("Created directory '%s' for the page dump...",
392                                 $directory));
393     } else {
394         $html = HTML::p(fmt("Using directory '%s'", $directory));
395     }
396
397     StartLoadDump($request, _("Dumping Pages"), $html);
398     $thispage = $request->getArg('pagename'); // for "Return to ..."
399
400     $dbi = $request->getDbh();
401     if ($exclude = $request->getArg('exclude')) {   // exclude which pagenames
402         $excludeList = explodePageList($exclude); 
403     } else {
404         $excludeList = array();
405     }
406     if ($whichpages = $request->getArg('pages')) {  // which pagenames
407         if ($whichpages == '[]') // current page
408             $whichpages = $thispage;
409         $pages = new WikiDB_Array_PageIterator(explodePageList($whichpages));
410     } else {
411         $pages = $dbi->getAllPages();
412     }
413
414     global $WikiTheme;
415     if (defined('HTML_DUMP_SUFFIX'))
416         $WikiTheme->HTML_DUMP_SUFFIX = HTML_DUMP_SUFFIX;
417     $WikiTheme->DUMP_MODE = 'HTML';
418     $request_args = $request->args;
419
420     // check if the dumped file will be accessible from outside
421     $doc_root = $request->get("DOCUMENT_ROOT");
422     $ldir = NormalizeLocalFileName($directory);
423     $wikiroot = NormalizeLocalFileName('');
424     if (string_starts_with($ldir, $doc_root)) {
425         $link_prefix = substr($directory, strlen($doc_root))."/";
426     } elseif (string_starts_with($ldir, $wikiroot)) {
427         $link_prefix = NormalizeWebFileName(substr($directory, strlen($wikiroot)))."/";
428     } else {
429         $prefix = '';
430         if (isWindows()) {
431             $prefix = '/' . substr($doc_root,0,2); // add drive where apache is installed
432         }
433         $link_prefix = "file://".$prefix.$directory."/";
434     }
435     
436     while ($page = $pages->next()) {
437         $request->args = $request_args; // some plugins might change them (esp. on POST)
438         if (! $request->getArg('start_debug'))
439             @set_time_limit(30); // Reset watchdog.
440         else    
441             @set_time_limit(240);
442           
443         $pagename = $page->getName();
444         if (!isa($request,'MockRequest')) {
445             PrintXML(HTML::br(), $pagename, ' ... ');
446             flush();
447         }
448         if (in_array($pagename, $excludeList)) {
449             if (!isa($request,'MockRequest')) {
450                 PrintXML(_("Skipped."));
451                 flush();
452             }
453             continue;
454         }
455
456         $request->setArg('pagename', $pagename); // Template::_basepage fix
457         $filename = FilenameForPage($pagename) . $WikiTheme->HTML_DUMP_SUFFIX;
458         $msg = HTML();
459
460         $revision = $page->getCurrentRevision();
461         $transformedContent = $revision->getTransformedContent();
462         $template = new Template('browse', $request,
463                                  array('revision' => $revision,
464                                        'CONTENT' => $transformedContent));
465
466         $data = GeneratePageasXML($template, $pagename);
467
468         if ( !($fd = fopen("$directory/$filename", "wb")) ) {
469             $msg->pushContent(HTML::strong(fmt("couldn't open file '%s' for writing",
470                                                "$directory/$filename")));
471             $request->finish($msg);
472         }
473         $num = fwrite($fd, $data, strlen($data));
474         if ($page->getName() != $filename) {
475             $link = LinkURL($link_prefix.$filename, $filename);
476             $msg->pushContent(HTML::small(_("saved as "), $link, " ... "));
477         }
478         $msg->pushContent(HTML::small(fmt("%s bytes written", $num), "\n"));
479         if (!isa($request,'MockRequest')) {
480             PrintXML($msg);
481             flush();
482         }
483
484         assert($num == strlen($data));
485         fclose($fd);
486     }
487
488     if (!empty($WikiTheme->dumped_images) and is_array($WikiTheme->dumped_images)) {
489         @mkdir("$directory/images");
490         foreach ($WikiTheme->dumped_images as $img_file) {
491             if (($from = $WikiTheme->_findFile($img_file)) and basename($from)) {
492                 $target = "$directory/images/".basename($img_file);
493                 if (copy($WikiTheme->_path . $from, $target)) {
494                     $msg = HTML(HTML::br(), HTML($from), HTML::small(fmt("... copied to %s", $target)));
495                     if (!isa($request,'MockRequest'))
496                         PrintXML($msg);
497                 }
498             } else {
499                 $msg = HTML(HTML::br(), HTML($from), HTML::small(fmt("... not found", $target)));
500                 if (!isa($request,'MockRequest'))
501                     PrintXML($msg);
502             }
503         }
504     }
505     if (!empty($WikiTheme->dumped_buttons) and is_array($WikiTheme->dumped_buttons)) {
506         // Buttons also
507         @mkdir("$directory/images/buttons");
508         foreach ($WikiTheme->dumped_buttons as $text => $img_file) {
509             if (($from = $WikiTheme->_findFile($img_file)) and basename($from)) {
510                 $target = "$directory/images/buttons/".basename($img_file);
511                 if (copy($WikiTheme->_path . $from, $target)) {
512                     $msg = HTML(HTML::br(), HTML($from), HTML::small(fmt("... copied to %s", $target)));
513                     if (!isa($request,'MockRequest'))
514                         PrintXML($msg);
515                 }
516             } else {
517                 $msg = HTML(HTML::br(), HTML($from), HTML::small(fmt("... not found", $target)));
518                 if (!isa($request,'MockRequest'))
519                     PrintXML($msg);
520             }
521         }
522     }
523     if (!empty($WikiTheme->dumped_css) and is_array($WikiTheme->dumped_css)) {
524       foreach ($WikiTheme->dumped_css as $css_file) {
525           if (($from = $WikiTheme->_findFile(basename($css_file))) and basename($from)) {
526               $target = "$directory/" . basename($css_file);
527               if (copy($WikiTheme->_path . $from, $target)) {
528                   $msg = HTML(HTML::br(), HTML($from), HTML::small(fmt("... copied to %s", $target)));
529                   if (!isa($request,'MockRequest'))
530                       PrintXML($msg);
531               }
532           } else {
533               $msg = HTML(HTML::br(), HTML($from), HTML::small(fmt("... not found", $target)));
534               if (!isa($request,'MockRequest'))
535                   PrintXML($msg);
536           }
537       }
538     }
539     $WikiTheme->HTML_DUMP_SUFFIX = '';
540     $WikiTheme->DUMP_MODE = false;
541
542     $request->setArg('pagename',$thispage); // Template::_basepage fix
543     EndLoadDump($request);
544 }
545
546 /* Known problem: any plugins or other code which echo()s text will
547  * lead to a corrupted html zip file which may produce the following
548  * errors upon unzipping:
549  *
550  * warning [wikihtml.zip]:  2401 extra bytes at beginning or within zipfile
551  * file #58:  bad zipfile offset (local header sig):  177561
552  *  (attempting to re-compensate)
553  *
554  * However, the actual wiki page data should be unaffected.
555  */
556 function MakeWikiZipHtml (&$request)
557 {
558     $zipname = "wikihtml.zip";
559     $zip = new ZipWriter("Created by PhpWiki " . PHPWIKI_VERSION, $zipname);
560     $dbi = $request->getDbh();
561     $thispage = $request->getArg('pagename'); // for "Return to ..."
562     if ($exclude = $request->getArg('exclude')) {   // exclude which pagenames
563         $excludeList = explodePageList($exclude); 
564     } else {
565         $excludeList = array();
566     }
567     if ($whichpages = $request->getArg('pages')) {  // which pagenames
568         if ($whichpages == '[]') // current page
569             $whichpages = $thispage;
570         $pages = new WikiDB_Array_PageIterator(explodePageList($whichpages));
571     } else {
572         $pages = $dbi->getAllPages();
573     }
574
575     global $WikiTheme;
576     if (defined('HTML_DUMP_SUFFIX'))
577         $WikiTheme->HTML_DUMP_SUFFIX = HTML_DUMP_SUFFIX;
578
579     /* ignore fatals in plugins */
580     if (check_php_version(4,1)) {
581         global $ErrorManager;
582         $ErrorManager->pushErrorHandler(new WikiFunctionCb('_dump_error_handler'));
583     }
584
585     $request_args = $request->args;
586     
587     while ($page = $pages->next()) {
588         $request->args = $request_args; // some plugins might change them (esp. on POST)
589         if (! $request->getArg('start_debug'))
590             @set_time_limit(30); // Reset watchdog.
591         else    
592             @set_time_limit(240);
593
594         $current = $page->getCurrentRevision();
595         if ($current->getVersion() == 0)
596             continue;
597         $pagename = $page->getName();
598         if (in_array($pagename, $excludeList)) {
599             continue;
600         }
601
602         $attrib = array('mtime'    => $current->get('mtime'),
603                         'is_ascii' => 1);
604         if ($page->get('locked'))
605             $attrib['write_protected'] = 1;
606
607         $request->setArg('pagename',$pagename); // Template::_basepage fix
608         $filename = FilenameForPage($pagename) . $WikiTheme->HTML_DUMP_SUFFIX;
609         $revision = $page->getCurrentRevision();
610
611         $transformedContent = $revision->getTransformedContent();
612
613         $template = new Template('browse', $request,
614                                  array('revision' => $revision,
615                                        'CONTENT' => $transformedContent));
616
617         $data = GeneratePageasXML($template, $pagename);
618
619         $zip->addRegularFile( $filename, $data, $attrib);
620     }
621     // FIXME: Deal with images here.
622     $zip->finish();
623     if (check_php_version(4,1)) {
624         $ErrorManager->popErrorHandler();
625     }
626     $WikiTheme->$HTML_DUMP_SUFFIX = '';
627 }
628
629
630 ////////////////////////////////////////////////////////////////
631 //
632 //  Functions for restoring.
633 //
634 ////////////////////////////////////////////////////////////////
635
636 function SavePage (&$request, &$pageinfo, $source, $filename)
637 {
638     $pagedata    = $pageinfo['pagedata'];    // Page level meta-data.
639     $versiondata = $pageinfo['versiondata']; // Revision level meta-data.
640
641     if (empty($pageinfo['pagename'])) {
642         PrintXML(HTML::dt(HTML::strong(_("Empty pagename!"))));
643         return;
644     }
645
646     if (empty($versiondata['author_id']))
647         $versiondata['author_id'] = $versiondata['author'];
648
649     $pagename = $pageinfo['pagename'];
650     $content  = $pageinfo['content'];
651
652     if ($pagename ==_("InterWikiMap"))
653         $content = _tryinsertInterWikiMap($content);
654
655     $dbi = $request->getDbh();
656     $page = $dbi->getPage($pagename);
657
658     // Try to merge if updated pgsrc contents are different. This
659     // whole thing is hackish
660     //
661     // TODO: try merge unless:
662     // if (current contents = default contents && pgsrc_version >=
663     // pgsrc_version) then just upgrade this pgsrc
664     $needs_merge = false;
665     $merging = false;
666     $overwrite = false;
667
668     if ($request->getArg('merge')) {
669         $merging = true;
670     }
671     else if ($request->getArg('overwrite')) {
672         $overwrite = true;
673     }
674
675     $current = $page->getCurrentRevision();
676     if ( $current and (! $current->hasDefaultContents())
677          && ($current->getPackedContent() != $content)
678          && ($merging == true) ) {
679         include_once('lib/editpage.php');
680         $request->setArg('pagename', $pagename);
681         $r = $current->getVersion();
682         $request->setArg('revision', $current->getVersion());
683         $p = new LoadFileConflictPageEditor($request);
684         $p->_content = $content;
685         $p->_currentVersion = $r - 1;
686         $p->editPage($saveFailed = true);
687         return; //early return
688     }
689
690     foreach ($pagedata as $key => $value) {
691         if (!empty($value))
692             $page->set($key, $value);
693     }
694
695     $mesg = HTML::dd();
696     $skip = false;
697     if ($source)
698         $mesg->pushContent(' ', fmt("from %s", $source));
699
700
701     if (!$current) {
702         //FIXME: This should not happen! (empty vdata, corrupt cache or db)
703         $current = $page->getCurrentRevision();
704     }
705     if ($current->getVersion() == 0) {
706         $mesg->pushContent(' - ', _("new page"));
707         $isnew = true;
708     }
709     else {
710         if ( (! $current->hasDefaultContents())
711              && ($current->getPackedContent() != $content) ) {
712             if ($overwrite) {
713                 $mesg->pushContent(' ',
714                                    fmt("has edit conflicts - overwriting anyway"));
715                 $skip = false;
716                 if (substr_count($source, 'pgsrc')) {
717                     $versiondata['author'] = _("The PhpWiki programming team");
718                     // but leave authorid as userid who loaded the file
719                 }
720             }
721             else {
722                 $mesg->pushContent(' ', fmt("has edit conflicts - skipped"));
723                 $needs_merge = true; // hackish
724                 $skip = true;
725             }
726         }
727         else if ($current->getPackedContent() == $content
728                  && $current->get('author') == $versiondata['author']) {
729             // The page metadata is already changed, we don't need a new revision.
730             // This was called previously "is identical to current version %d - skipped"
731             // which is wrong, since the pagedata was stored, not skipped.
732             $mesg->pushContent(' ',
733                                fmt("content is identical to current version %d - no new revision created",
734                                    $current->getVersion()));
735             $skip = true;
736         }
737         $isnew = false;
738     }
739
740     if (! $skip ) {
741         // in case of failures print the culprit:
742         if (!isa($request,'MockRequest')) {
743             PrintXML(HTML::dt(WikiLink($pagename))); flush();
744         }
745         $new = $page->save($content, WIKIDB_FORCE_CREATE, $versiondata);
746         $dbi->touch();
747         $mesg->pushContent(' ', fmt("- saved to database as version %d",
748                                     $new->getVersion()));
749     }
750     if ($needs_merge) {
751         $f = $source;
752         // hackish, $source contains needed path+filename
753         $f = str_replace(sprintf(_("MIME file %s"), ''), '', $f);
754         $f = str_replace(sprintf(_("Serialized file %s"), ''), '', $f);
755         $f = str_replace(sprintf(_("plain file %s"), ''), '', $f);
756         //check if uploaded file? they pass just the content, but the file is gone
757         if (@stat($f)) {
758             global $WikiTheme;
759             $meb = Button(array('action' => 'loadfile',
760                                 'merge'=> true,
761                                 'source'=> $f),
762                           _("Merge Edit"),
763                           _("PhpWikiAdministration"),
764                           'wikiadmin');
765             $owb = Button(array('action' => 'loadfile',
766                                 'overwrite'=> true,
767                                 'source'=> $f),
768                           _("Restore Anyway"),
769                           _("PhpWikiAdministration"),
770                           'wikiunsafe');
771             $mesg->pushContent(' ', $meb, " ", $owb);
772         } else {
773             $mesg->pushContent(HTML::em(_(" Sorry, cannot merge.")));
774         }
775     }
776
777     if (!isa($request,'MockRequest')) {
778       if ($skip)
779         PrintXML(HTML::dt(HTML::em(WikiLink($pagename))), $mesg);
780       else
781         PrintXML($mesg);
782       flush();
783     }
784 }
785
786 // action=revert (by diff)
787 function RevertPage (&$request)
788 {
789     $mesg = HTML::dd();
790     $pagename = $request->getArg('pagename');
791     $version = $request->getArg('version');
792     if (!$version) {
793         PrintXML(HTML::dt(fmt("Revert")," ",WikiLink($pagename)),
794                  HTML::dd(_("missing required version argument")));
795         return;
796     }
797     $dbi = $request->getDbh();
798     $page = $dbi->getPage($pagename);
799     $current = $page->getCurrentRevision();
800     if ($current->getVersion() == 0) {
801         $mesg->pushContent(' ', _("no page content"));
802         PrintXML(HTML::dt(fmt("Revert")," ",WikiLink($pagename)),
803                  $mesg);
804         return;
805     }
806     if ($current->getVersion() == $version) {
807         $mesg->pushContent(' ', _("same version page"));
808         return;
809     }
810     $rev = $page->getRevision($version);
811     $content = $rev->getPackedContent();
812     $versiondata = $rev->_data;
813     $versiondata['summary'] = sprintf(_("revert to version %d"), $version);
814     $new = $page->save($content, $current->getVersion() + 1, $versiondata);
815     $dbi->touch();
816     $mesg->pushContent(' ', fmt("- version %d saved to database as version %d",
817                                 $version, $new->getVersion()));
818     PrintXML(HTML::dt(fmt("Revert")," ",WikiLink($pagename)),
819              $mesg);
820     flush();
821 }
822
823 function _tryinsertInterWikiMap($content) {
824     $goback = false;
825     if (strpos($content, "<verbatim>")) {
826         //$error_html = " The newly loaded pgsrc already contains a verbatim block.";
827         $goback = true;
828     }
829     if (!$goback && !defined('INTERWIKI_MAP_FILE')) {
830         $error_html = sprintf(" "._("%s: not defined"), "INTERWIKI_MAP_FILE");
831         $goback = true;
832     }
833     $mapfile = FindFile(INTERWIKI_MAP_FILE,1);
834     if (!$goback && !file_exists($mapfile)) {
835         $error_html = sprintf(" "._("%s: file not found"), INTERWIKI_MAP_FILE);
836         $goback = true;
837     }
838
839     if (!empty($error_html))
840         trigger_error(_("Default InterWiki map file not loaded.")
841                       . $error_html, E_USER_NOTICE);
842     if ($goback)
843         return $content;
844
845     // if loading from virgin setup do echo, otherwise trigger_error E_USER_NOTICE
846     if (!isa($GLOBALS['request'],'MockRequest'))
847         echo sprintf(_("Loading InterWikiMap from external file %s."), $mapfile),"<br />";
848
849     $fd = fopen ($mapfile, "rb");
850     $data = fread ($fd, filesize($mapfile));
851     fclose ($fd);
852     $content = $content . "\n<verbatim>\n$data</verbatim>\n";
853     return $content;
854 }
855
856 function ParseSerializedPage($text, $default_pagename, $user)
857 {
858     if (!preg_match('/^a:\d+:{[si]:\d+/', $text))
859         return false;
860
861     $pagehash = unserialize($text);
862
863     // Split up pagehash into four parts:
864     //   pagename
865     //   content
866     //   page-level meta-data
867     //   revision-level meta-data
868
869     if (!defined('FLAG_PAGE_LOCKED'))
870         define('FLAG_PAGE_LOCKED', 1);
871     $pageinfo = array('pagedata'    => array(),
872                       'versiondata' => array());
873
874     $pagedata = &$pageinfo['pagedata'];
875     $versiondata = &$pageinfo['versiondata'];
876
877     // Fill in defaults.
878     if (empty($pagehash['pagename']))
879         $pagehash['pagename'] = $default_pagename;
880     if (empty($pagehash['author'])) {
881         $pagehash['author'] = $user->getId();
882     }
883
884     foreach ($pagehash as $key => $value) {
885         switch($key) {
886             case 'pagename':
887             case 'version':
888             case 'hits':
889                 $pageinfo[$key] = $value;
890                 break;
891             case 'content':
892                 $pageinfo[$key] = join("\n", $value);
893                 break;
894             case 'flags':
895                 if (($value & FLAG_PAGE_LOCKED) != 0)
896                     $pagedata['locked'] = 'yes';
897                 break;
898             case 'owner':
899             case 'created':
900                 $pagedata[$key] = $value;
901                 break;
902             case 'acl':
903             case 'perm':
904                 $pagedata['perm'] = ParseMimeifiedPerm($value);
905                 break;
906             case 'lastmodified':
907                 $versiondata['mtime'] = $value;
908                 break;
909             case 'author':
910             case 'author_id':
911             case 'summary':
912                 $versiondata[$key] = $value;
913                 break;
914         }
915     }
916     return $pageinfo;
917 }
918
919 function SortByPageVersion ($a, $b) {
920     return $a['version'] - $b['version'];
921 }
922
923 function LoadFile (&$request, $filename, $text = false, $mtime = false)
924 {
925     if (!is_string($text)) {
926         // Read the file.
927         $stat  = stat($filename);
928         $mtime = $stat[9];
929         $text  = implode("", file($filename));
930     }
931
932         if (! $request->getArg('start_debug'))
933         @set_time_limit(30); // Reset watchdog.
934     else    
935         @set_time_limit(240);
936
937     // FIXME: basename("filewithnoslashes") seems to return garbage sometimes.
938     $basename = basename("/dummy/" . $filename);
939
940     if (!$mtime)
941         $mtime = time();    // Last resort.
942
943     $default_pagename = rawurldecode($basename);
944
945     if ( ($parts = ParseMimeifiedPages($text)) ) {
946         usort($parts, 'SortByPageVersion');
947         foreach ($parts as $pageinfo)
948             SavePage($request, $pageinfo, sprintf(_("MIME file %s"),
949                                                   $filename), $basename);
950     }
951     else if ( ($pageinfo = ParseSerializedPage($text, $default_pagename,
952                                                $request->getUser())) ) {
953         SavePage($request, $pageinfo, sprintf(_("Serialized file %s"),
954                                               $filename), $basename);
955     }
956     else {
957         $user = $request->getUser();
958
959         // Assume plain text file.
960         $pageinfo = array('pagename' => $default_pagename,
961                           'pagedata' => array(),
962                           'versiondata'
963                           => array('author' => $user->getId()),
964                           'content'  => preg_replace('/[ \t\r]*\n/', "\n",
965                                                      chop($text))
966                           );
967         SavePage($request, $pageinfo, sprintf(_("plain file %s"), $filename),
968                  $basename);
969     }
970 }
971
972 function LoadZip (&$request, $zipfile, $files = false, $exclude = false) {
973     $zip = new ZipReader($zipfile);
974     while (list ($fn, $data, $attrib) = $zip->readFile()) {
975         // FIXME: basename("filewithnoslashes") seems to return
976         // garbage sometimes.
977         $fn = basename("/dummy/" . $fn);
978         if ( ($files && !in_array($fn, $files))
979              || ($exclude && in_array($fn, $exclude)) ) {
980             PrintXML(HTML::dt(WikiLink($fn)),
981                      HTML::dd(_("Skipping")));
982             flush();
983             continue;
984         }
985
986         LoadFile($request, $fn, $data, $attrib['mtime']);
987     }
988 }
989
990 function LoadDir (&$request, $dirname, $files = false, $exclude = false) {
991     $fileset = new LimitedFileSet($dirname, $files, $exclude);
992
993     if (!$files and ($skiplist = $fileset->getSkippedFiles())) {
994         PrintXML(HTML::dt(HTML::strong(_("Skipping"))));
995         $list = HTML::ul();
996         foreach ($skiplist as $file)
997             $list->pushContent(HTML::li(WikiLink($file)));
998         PrintXML(HTML::dd($list));
999     }
1000
1001     // Defer HomePage loading until the end. If anything goes wrong
1002     // the pages can still be loaded again.
1003     $files = $fileset->getFiles();
1004     if (in_array(HOME_PAGE, $files)) {
1005         $files = array_diff($files, array(HOME_PAGE));
1006         $files[] = HOME_PAGE;
1007     }
1008     foreach ($files as $file) {
1009         if (substr($file,-1,1) != '~') // refuse to load backup files
1010             LoadFile($request, "$dirname/$file");
1011     }
1012 }
1013
1014 class LimitedFileSet extends FileSet {
1015     function LimitedFileSet($dirname, $_include, $exclude) {
1016         $this->_includefiles = $_include;
1017         $this->_exclude = $exclude;
1018         $this->_skiplist = array();
1019         parent::FileSet($dirname);
1020     }
1021
1022     function _filenameSelector($fn) {
1023         $incl = &$this->_includefiles;
1024         $excl = &$this->_exclude;
1025
1026         if ( ($incl && !in_array($fn, $incl))
1027              || ($excl && in_array($fn, $excl)) ) {
1028             $this->_skiplist[] = $fn;
1029             return false;
1030         } else {
1031             return true;
1032         }
1033     }
1034
1035     function getSkippedFiles () {
1036         return $this->_skiplist;
1037     }
1038 }
1039
1040
1041 function IsZipFile ($filename_or_fd)
1042 {
1043     // See if it looks like zip file
1044     if (is_string($filename_or_fd))
1045     {
1046         $fd    = fopen($filename_or_fd, "rb");
1047         $magic = fread($fd, 4);
1048         fclose($fd);
1049     }
1050     else
1051     {
1052         $fpos  = ftell($filename_or_fd);
1053         $magic = fread($filename_or_fd, 4);
1054         fseek($filename_or_fd, $fpos);
1055     }
1056
1057     return $magic == ZIP_LOCHEAD_MAGIC || $magic == ZIP_CENTHEAD_MAGIC;
1058 }
1059
1060
1061 function LoadAny (&$request, $file_or_dir, $files = false, $exclude = false)
1062 {
1063     // Try urlencoded filename for accented characters.
1064     if (!file_exists($file_or_dir)) {
1065         // Make sure there are slashes first to avoid confusing phps
1066         // with broken dirname or basename functions.
1067         // FIXME: windows uses \ and :
1068         if (is_integer(strpos($file_or_dir, "/"))) {
1069             $file_or_dir = FindFile($file_or_dir);
1070             // Panic
1071             if (!file_exists($file_or_dir))
1072                 $file_or_dir = dirname($file_or_dir) . "/"
1073                     . urlencode(basename($file_or_dir));
1074         } else {
1075             // This is probably just a file.
1076             $file_or_dir = urlencode($file_or_dir);
1077         }
1078     }
1079
1080     $type = filetype($file_or_dir);
1081     if ($type == 'link') {
1082         // For symbolic links, use stat() to determine
1083         // the type of the underlying file.
1084         list(,,$mode) = stat($file_or_dir);
1085         $type = ($mode >> 12) & 017;
1086         if ($type == 010)
1087             $type = 'file';
1088         elseif ($type == 004)
1089             $type = 'dir';
1090     }
1091
1092     if (! $type) {
1093         $request->finish(fmt("Unable to load: %s", $file_or_dir));
1094     }
1095     else if ($type == 'dir') {
1096         LoadDir($request, $file_or_dir, $files, $exclude);
1097     }
1098     else if ($type != 'file' && !preg_match('/^(http|ftp):/', $file_or_dir))
1099     {
1100         $request->finish(fmt("Bad file type: %s", $type));
1101     }
1102     else if (IsZipFile($file_or_dir)) {
1103         LoadZip($request, $file_or_dir, $files, $exclude);
1104     }
1105     else /* if (!$files || in_array(basename($file_or_dir), $files)) */
1106     {
1107         LoadFile($request, $file_or_dir);
1108     }
1109 }
1110
1111 function LoadFileOrDir (&$request)
1112 {
1113     $source = $request->getArg('source');
1114     $finder = new FileFinder;
1115     $source = $finder->slashifyPath($source);
1116     $page = rawurldecode(basename($source));
1117     StartLoadDump($request, fmt("Loading '%s'", 
1118         HTML(dirname($source),
1119              dirname($source) ? "/" : "",
1120              WikiLink($page,'auto'))));
1121     echo "<dl>\n";
1122     LoadAny($request, $source);
1123     echo "</dl>\n";
1124     EndLoadDump($request);
1125 }
1126
1127 function SetupWiki (&$request)
1128 {
1129     global $GenericPages, $LANG;
1130
1131
1132     //FIXME: This is a hack (err, "interim solution")
1133     // This is a bogo-bogo-login:  Login without
1134     // saving login information in session state.
1135     // This avoids logging in the unsuspecting
1136     // visitor as "The PhpWiki programming team".
1137     //
1138     // This really needs to be cleaned up...
1139     // (I'm working on it.)
1140     $real_user = $request->_user;
1141     if (ENABLE_USER_NEW)
1142         $request->_user = new _BogoUser(_("The PhpWiki programming team"));
1143
1144     else
1145         $request->_user = new WikiUser($request, _("The PhpWiki programming team"),
1146                                        WIKIAUTH_BOGO);
1147
1148     StartLoadDump($request, _("Loading up virgin wiki"));
1149     echo "<dl>\n";
1150
1151     $pgsrc = FindLocalizedFile(WIKI_PGSRC);
1152     $default_pgsrc = FindFile(DEFAULT_WIKI_PGSRC);
1153
1154     $request->setArg('overwrite',true);
1155     if ($default_pgsrc != $pgsrc) {
1156         LoadAny($request, $default_pgsrc, $GenericPages);
1157     }
1158     $request->setArg('overwrite',false);
1159     LoadAny($request, $pgsrc);
1160
1161     // Ensure that all mandatory pages are loaded
1162     $finder = new FileFinder;
1163     foreach (array_merge(explode(':','OldTextFormattingRules:TextFormattingRules:PhpWikiAdministration'),
1164                          $GLOBALS['AllActionPages'],
1165                          array(constant('HOME_PAGE'))) as $f) {
1166         $page = gettext($f);
1167         if (isSubPage($page))
1168             $page = urlencode($page);
1169         if (! $request->_dbi->isWikiPage(urldecode($page)) ) {
1170             // translated version provided?
1171             if ($lf = FindLocalizedFile($pgsrc . $finder->_pathsep . $page, 1))
1172                 LoadAny($request, $lf);
1173             else { // load english version of required action page
1174                 LoadAny($request, FindFile(DEFAULT_WIKI_PGSRC . $finder->_pathsep . urlencode($f)));
1175                 $page = $f;
1176             }
1177         }
1178         if (!$request->_dbi->isWikiPage(urldecode($page))) {
1179             trigger_error(sprintf("Mandatory file %s couldn't be loaded!", $page),
1180                           E_USER_WARNING);
1181         }
1182     }
1183
1184     echo "</dl>\n";
1185     EndLoadDump($request);
1186 }
1187
1188 function LoadPostFile (&$request)
1189 {
1190     $upload = $request->getUploadedFile('file');
1191
1192     if (!$upload)
1193         $request->finish(_("No uploaded file to upload?")); // FIXME: more concise message
1194
1195
1196     // Dump http headers.
1197     StartLoadDump($request, sprintf(_("Uploading %s"), $upload->getName()));
1198     echo "<dl>\n";
1199
1200     $fd = $upload->open();
1201     if (IsZipFile($fd))
1202         LoadZip($request, $fd, false, array(_("RecentChanges")));
1203     else
1204         LoadFile($request, $upload->getName(), $upload->getContents());
1205
1206     echo "</dl>\n";
1207     EndLoadDump($request);
1208 }
1209
1210 /**
1211  $Log: not supported by cvs2svn $
1212  Revision 1.124  2004/10/04 23:44:28  rurban
1213  for older or CGI phps
1214
1215  Revision 1.123  2004/09/25 16:26:54  rurban
1216  deferr notifies (to be improved)
1217
1218  Revision 1.122  2004/09/17 14:25:45  rurban
1219  update comments
1220
1221  Revision 1.121  2004/09/08 13:38:00  rurban
1222  improve loadfile stability by using markup=2 as default for undefined markup-style.
1223  use more refs for huge objects.
1224  fix debug=static issue in WikiPluginCached
1225
1226  Revision 1.120  2004/07/08 19:04:42  rurban
1227  more unittest fixes (file backend, metadata RatingsDb)
1228
1229  Revision 1.119  2004/07/08 15:23:59  rurban
1230  less verbose for tests
1231
1232  Revision 1.118  2004/07/08 13:50:32  rurban
1233  various unit test fixes: print error backtrace on _DEBUG_TRACE; allusers fix; new PHPWIKI_NOMAIN constant for omitting the mainloop
1234
1235  Revision 1.117  2004/07/02 09:55:58  rurban
1236  more stability fixes: new DISABLE_GETIMAGESIZE if your php crashes when loading LinkIcons: failing getimagesize in old phps; blockparser stabilized
1237
1238  Revision 1.116  2004/07/01 09:05:41  rurban
1239  support pages and exclude arguments for all 4 dump methods
1240
1241  Revision 1.115  2004/07/01 08:51:22  rurban
1242  dumphtml: added exclude, print pagename before processing
1243
1244  Revision 1.114  2004/06/28 12:51:41  rurban
1245  improved dumphtml and virgin setup
1246
1247  Revision 1.113  2004/06/27 10:26:02  rurban
1248  oci8 patch by Philippe Vanhaesendonck + some ADODB notes+fixes
1249
1250  Revision 1.112  2004/06/25 14:29:20  rurban
1251  WikiGroup refactoring:
1252    global group attached to user, code for not_current user.
1253    improved helpers for special groups (avoid double invocations)
1254  new experimental config option ENABLE_XHTML_XML (fails with IE, and document.write())
1255  fixed a XHTML validation error on userprefs.tmpl
1256
1257  Revision 1.111  2004/06/21 16:38:55  rurban
1258  fixed the StartLoadDump html argument hack.
1259
1260  Revision 1.110  2004/06/21 16:22:30  rurban
1261  add DEFAULT_DUMP_DIR and HTML_DUMP_DIR constants, for easier cmdline dumps,
1262  fixed dumping buttons locally (images/buttons/),
1263  support pages arg for dumphtml,
1264  optional directory arg for dumpserial + dumphtml,
1265  fix a AllPages warning,
1266  show dump warnings/errors on DEBUG,
1267  don't warn just ignore on wikilens pagelist columns, if not loaded.
1268  RateIt pagelist column is called "rating", not "ratingwidget" (Dan?)
1269
1270  Revision 1.109  2004/06/17 11:31:05  rurban
1271  jump back to label after dump/upgrade
1272
1273  Revision 1.108  2004/06/16 12:43:01  rurban
1274  4.0.6 cannot use this errorhandler (not found)
1275
1276  Revision 1.107  2004/06/14 11:31:37  rurban
1277  renamed global $Theme to $WikiTheme (gforge nameclash)
1278  inherit PageList default options from PageList
1279    default sortby=pagename
1280  use options in PageList_Selectable (limit, sortby, ...)
1281  added action revert, with button at action=diff
1282  added option regex to WikiAdminSearchReplace
1283
1284  Revision 1.106  2004/06/13 13:54:25  rurban
1285  Catch fatals on the four dump calls (as file and zip, as html and mimified)
1286  FoafViewer: Check against external requirements, instead of fatal.
1287  Change output for xhtmldumps: using file:// urls to the local fs.
1288  Catch SOAP fatal by checking for GOOGLE_LICENSE_KEY
1289  Import GOOGLE_LICENSE_KEY and FORTUNE_DIR from config.ini.
1290
1291  Revision 1.105  2004/06/08 19:48:16  rurban
1292  fixed foreign setup: no ugly skipped msg for the GenericPages, load english actionpages if translated not found
1293
1294  Revision 1.104  2004/06/08 13:51:57  rurban
1295  some comments only
1296
1297  Revision 1.103  2004/06/08 10:54:46  rurban
1298  better acl dump representation, read back acl and owner
1299
1300  Revision 1.102  2004/06/06 16:58:51  rurban
1301  added more required ActionPages for foreign languages
1302  install now english ActionPages if no localized are found. (again)
1303  fixed default anon user level to be 0, instead of -1
1304    (wrong "required administrator to view this page"...)
1305
1306  Revision 1.101  2004/06/04 20:32:53  rurban
1307  Several locale related improvements suggested by Pierrick Meignen
1308  LDAP fix by John Cole
1309  reanable admin check without ENABLE_PAGEPERM in the admin plugins
1310
1311  Revision 1.100  2004/05/02 21:26:38  rurban
1312  limit user session data (HomePageHandle and auth_dbi have to invalidated anyway)
1313    because they will not survive db sessions, if too large.
1314  extended action=upgrade
1315  some WikiTranslation button work
1316  revert WIKIAUTH_UNOBTAINABLE (need it for main.php)
1317  some temp. session debug statements
1318
1319  Revision 1.99  2004/05/02 15:10:07  rurban
1320  new finally reliable way to detect if /index.php is called directly
1321    and if to include lib/main.php
1322  new global AllActionPages
1323  SetupWiki now loads all mandatory pages: HOME_PAGE, action pages, and warns if not.
1324  WikiTranslation what=buttons for Carsten to create the missing MacOSX buttons
1325  PageGroupTestOne => subpages
1326  renamed PhpWikiRss to PhpWikiRecentChanges
1327  more docs, default configs, ...
1328
1329  Revision 1.98  2004/04/29 23:25:12  rurban
1330  re-ordered locale init (as in 1.3.9)
1331  fixed loadfile with subpages, and merge/restore anyway
1332    (sf.net bug #844188)
1333
1334  Revision 1.96  2004/04/19 23:13:03  zorloc
1335  Connect the rest of PhpWiki to the IniConfig system.  Also the keyword regular expression is not a config setting
1336
1337  Revision 1.95  2004/04/18 01:11:52  rurban
1338  more numeric pagename fixes.
1339  fixed action=upload with merge conflict warnings.
1340  charset changed from constant to global (dynamic utf-8 switching)
1341
1342  Revision 1.94  2004/03/14 16:36:37  rurban
1343  dont load backup files
1344
1345  Revision 1.93  2004/02/26 03:22:05  rurban
1346  also copy css and images with XHTML Dump
1347
1348  Revision 1.92  2004/02/26 02:25:54  rurban
1349  fix empty and #-anchored links in XHTML Dumps
1350
1351  Revision 1.91  2004/02/24 17:19:37  rurban
1352  debugging helpers only
1353
1354  Revision 1.90  2004/02/24 17:09:24  rurban
1355  fixed \r\r\n with dumping on windows
1356
1357  Revision 1.88  2004/02/22 23:20:31  rurban
1358  fixed DumpHtmlToDir,
1359  enhanced sortby handling in PageList
1360    new button_heading th style (enabled),
1361  added sortby and limit support to the db backends and plugins
1362    for paging support (<<prev, next>> links on long lists)
1363
1364  Revision 1.87  2004/01/26 09:17:49  rurban
1365  * changed stored pref representation as before.
1366    the array of objects is 1) bigger and 2)
1367    less portable. If we would import packed pref
1368    objects and the object definition was changed, PHP would fail.
1369    This doesn't happen with an simple array of non-default values.
1370  * use $prefs->retrieve and $prefs->store methods, where retrieve
1371    understands the interim format of array of objects also.
1372  * simplified $prefs->get() and fixed $prefs->set()
1373  * added $user->_userid and class '_WikiUser' portability functions
1374  * fixed $user object ->_level upgrading, mostly using sessions.
1375    this fixes yesterdays problems with loosing authorization level.
1376  * fixed WikiUserNew::checkPass to return the _level
1377  * fixed WikiUserNew::isSignedIn
1378  * added explodePageList to class PageList, support sortby arg
1379  * fixed UserPreferences for WikiUserNew
1380  * fixed WikiPlugin for empty defaults array
1381  * UnfoldSubpages: added pagename arg, renamed pages arg,
1382    removed sort arg, support sortby arg
1383
1384  Revision 1.86  2003/12/02 16:18:26  carstenklapp
1385  Minor enhancement: Provide more meaningful filenames for WikiDB zip
1386  dumps & snapshots.
1387
1388  Revision 1.85  2003/11/30 18:18:13  carstenklapp
1389  Minor code optimization: use include_once instead of require_once
1390  inside functions that might not always called.
1391
1392  Revision 1.84  2003/11/26 20:47:47  carstenklapp
1393  Redo bugfix: My last refactoring broke merge-edit & overwrite
1394  functionality again, should be fixed now. Sorry.
1395
1396  Revision 1.83  2003/11/20 22:18:54  carstenklapp
1397  New feature: h1 during merge-edit displays WikiLink to original page.
1398  Internal changes: Replaced some hackish url-generation code in
1399  function SavePage (for pgsrc merge-edit) with appropriate Button()
1400  calls.
1401
1402  Revision 1.82  2003/11/18 19:48:01  carstenklapp
1403  Fixed missing gettext _() for button name.
1404
1405  Revision 1.81  2003/11/18 18:28:35  carstenklapp
1406  Bugfix: In the Load File function of PhpWikiAdministration: When doing
1407  a "Merge Edit" or "Restore Anyway", page names containing accented
1408  letters (such as locale/de/pgsrc/G%E4steBuch) would produce a file not
1409  found error (Use FilenameForPage funtion to urlencode page names).
1410
1411  Revision 1.80  2003/03/07 02:46:57  dairiki
1412  Omit checks for safe_mode before set_time_limit().  Just prefix the
1413  set_time_limit() calls with @ so that they fail silently if not
1414  supported.
1415
1416  Revision 1.79  2003/02/26 01:56:05  dairiki
1417  Only zip pages with legal pagenames.
1418
1419  Revision 1.78  2003/02/24 02:05:43  dairiki
1420  Fix "n bytes written" message when dumping HTML.
1421
1422  Revision 1.77  2003/02/21 04:12:05  dairiki
1423  Minor fixes for new cached markup.
1424
1425  Revision 1.76  2003/02/16 19:47:17  dairiki
1426  Update WikiDB timestamp when editing or deleting pages.
1427
1428  Revision 1.75  2003/02/15 03:04:30  dairiki
1429  Fix for WikiUser constructor API change.
1430
1431  Revision 1.74  2003/02/15 02:18:04  dairiki
1432  When default language was English (at least), pgsrc was being
1433  loaded twice.
1434
1435  LimitedFileSet: Fix typo/bug. ($include was being ignored.)
1436
1437  SetupWiki(): Fix bugs in loading of $GenericPages.
1438
1439  Revision 1.73  2003/01/28 21:09:17  zorloc
1440  The get_cfg_var() function should only be used when one is
1441  interested in the value from php.ini or similar. Use ini_get()
1442  instead to get the effective value of a configuration variable.
1443  -- Martin Geisler
1444
1445  Revision 1.72  2003/01/03 22:25:53  carstenklapp
1446  Cosmetic fix to "Merge Edit" & "Overwrite" buttons. Added "The PhpWiki
1447  programming team" as author when loading from pgsrc. Source
1448  reformatting.
1449
1450  Revision 1.71  2003/01/03 02:48:05  carstenklapp
1451  function SavePage: Added loadfile options for overwriting or merge &
1452  compare a loaded pgsrc file with an existing page.
1453
1454  function LoadAny: Added a general error message when unable to load a
1455  file instead of defaulting to "Bad file type".
1456
1457  */
1458
1459 // For emacs users
1460 // Local Variables:
1461 // mode: php
1462 // tab-width: 8
1463 // c-basic-offset: 4
1464 // c-hanging-comment-ender-p: nil
1465 // indent-tabs-mode: nil
1466 // End:
1467 ?>