]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/main.php
added wysiwyg_editor-1.3a feature by Jean-Nicolas GEREONE <jean-nicolas.gereone@st...
[SourceForge/phpwiki.git] / lib / main.php
1 <?php //-*-php-*-
2 rcs_id('$Id: main.php,v 1.224 2006-05-13 19:59:55 rurban Exp $');
3 /*
4  Copyright 1999,2000,2001,2002,2004,2005 $ThePhpWikiProgrammingTeam
5
6  This file is part of PhpWiki.
7
8  PhpWiki is free software; you can redistribute it and/or modify
9  it under the terms of the GNU General Public License as published by
10  the Free Software Foundation; either version 2 of the License, or
11  (at your option) any later version.
12
13  PhpWiki is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  GNU General Public License for more details.
17
18  You should have received a copy of the GNU General Public License
19  along with PhpWiki; if not, write to the Free Software
20  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 define ('USE_PREFS_IN_PAGE', true);
24
25 //include "lib/config.php";
26 require_once(dirname(__FILE__)."/stdlib.php");
27 require_once('lib/Request.php');
28 require_once('lib/WikiDB.php');
29 if (ENABLE_USER_NEW)
30     require_once("lib/WikiUserNew.php");
31 else
32     require_once("lib/WikiUser.php");
33 require_once("lib/WikiGroup.php");
34 if (ENABLE_PAGEPERM)
35     require_once("lib/PagePerm.php");
36
37 /**
38  * Check permission per page.
39  * Returns true or false.
40  */
41 function mayAccessPage ($access, $pagename) {
42     if (ENABLE_PAGEPERM)
43         return _requiredAuthorityForPagename($access, $pagename); // typically [10-20ms per page]
44     else
45         return true;
46 }
47
48 class WikiRequest extends Request {
49     // var $_dbi;
50
51     function WikiRequest () {
52         $this->_dbi = WikiDB::open($GLOBALS['DBParams']);
53          // first mysql request costs [958ms]! [670ms] is mysql_connect()
54         
55         if (in_array('File', $this->_dbi->getAuthParam('USER_AUTH_ORDER'))) {
56             // force our local copy, until the pear version is fixed.
57             include_once(dirname(__FILE__)."/pear/File_Passwd.php");
58         }
59         if (ENABLE_USER_NEW) {
60             // Preload all necessary userclasses. Otherwise session => __PHP_Incomplete_Class_Name
61             // There's no way to demand-load it later. This way it's much slower, but needs slightly
62             // less memory than loading all.
63             if (ALLOW_BOGO_LOGIN)
64                 include_once("lib/WikiUser/BogoLogin.php");
65             // UserPreferences POST Update doesn't reach this.
66             foreach ($GLOBALS['USER_AUTH_ORDER'] as $method) {
67                 include_once("lib/WikiUser/$method.php");
68                 if ($method == 'Db')
69                     switch( DATABASE_TYPE ) {
70                         case 'SQL'  : include_once("lib/WikiUser/PearDb.php"); break;
71                         case 'ADODB': include_once("lib/WikiUser/AdoDb.php"); break;
72                         case 'PDO'  : include_once("lib/WikiUser/PdoDb.php"); break;
73                     }
74             }
75             unset($method);
76         }
77         if (USE_DB_SESSION) {
78             include_once('lib/DbSession.php');
79             $dbi =& $this->_dbi;
80             $this->_dbsession = new DbSession($dbi, $dbi->getParam('prefix') 
81                                               . $dbi->getParam('db_session_table'));
82         }
83
84 // Fixme: Does pear reset the error mask to 1? We have to find the culprit
85 //$x = error_reporting();
86
87         $this->version = phpwiki_version();
88         $this->Request(); // [90ms]
89
90         // Normalize args...
91         $this->setArg('pagename', $this->_deducePagename());
92         $this->setArg('action', $this->_deduceAction());
93
94         if ((DEBUG & _DEBUG_SQL)
95             or (DATABASE_OPTIMISE_FREQUENCY > 0 and 
96                 (time() % DATABASE_OPTIMISE_FREQUENCY == 0))) {
97             if ($this->_dbi->_backend->optimize())
98                 trigger_error(_("Optimizing database"), E_USER_NOTICE);
99         }
100
101         // Restore auth state. This doesn't check for proper authorization!
102         $userid = $this->_deduceUsername();     
103         if (ENABLE_USER_NEW) {
104             if (isset($this->_user) and 
105                 !empty($this->_user->_authhow) and 
106                 $this->_user->_authhow == 'session')
107             {
108                 // users might switch in a session between the two objects.
109                 // restore old auth level here or in updateAuthAndPrefs?
110                 //$user = $this->getSessionVar('wiki_user');
111                 // revive db handle, because these don't survive sessions
112                 if (isset($this->_user) and 
113                      ( ! isa($this->_user, WikiUserClassname())
114                        or (strtolower(get_class($this->_user)) == '_passuser')))
115                 {
116                     $this->_user = WikiUser($userid, $this->_user->_prefs);
117                 }
118                 // revive other db handle
119                 if (isset($this->_user->_prefs->_method)
120                     and ($this->_user->_prefs->_method == 'SQL' 
121                          or $this->_user->_prefs->_method == 'ADODB' 
122                          or $this->_user->_prefs->_method == 'PDO' 
123                          or $this->_user->_prefs->_method == 'HomePage')) {
124                     $this->_user->_HomePagehandle = $this->getPage($userid);
125                 }
126                 // need to update the lockfile filehandle
127                 if ( isa($this->_user, '_FilePassUser') 
128                      and $this->_user->_file->lockfile 
129                      and !$this->_user->_file->fplock )
130                 {
131                     //$level = $this->_user->_level;
132                     $this->_user = UpgradeUser($this->_user, 
133                                                new _FilePassUser($userid, 
134                                                                  $this->_user->_prefs, 
135                                                                  $this->_user->_file->filename));
136                     //$this->_user->_level = $level;
137                 }
138                 $this->_prefs = & $this->_user->_prefs;
139             } else {
140                 $user = WikiUser($userid);
141                 $this->_user = & $user;
142                 $this->_prefs = & $this->_user->_prefs;
143             }
144         } else {
145             $this->_user = new WikiUser($this, $userid);
146             $this->_prefs = $this->_user->getPreferences();
147         }
148     }
149
150     function initializeLang () {
151         // check non-default pref lang
152         $_lang = @$this->_prefs->_prefs['lang'];
153         if (isset($_lang->lang) and $_lang->lang != $GLOBALS['LANG']) {
154             $user_lang = $_lang->lang;
155             //check changed LANG and THEME inside a session. 
156             // (e.g. by using another baseurl)
157             if (isset($this->_user->_authhow) and $this->_user->_authhow == 'session')
158                 $user_lang = $GLOBALS['LANG'];
159             update_locale($user_lang);
160             FindLocalizedButtonFile(".",'missing_ok','reinit');
161         }
162     }
163
164     function initializeTheme () {
165         global $WikiTheme;
166
167         // Load non-default theme
168         $_theme = @$this->_prefs->_prefs['theme'];
169         if ($_theme and isset($_theme->theme))
170             $user_theme = $_theme->theme;
171         else 
172             $user_theme = $this->getPref('theme');
173         //check changed LANG and THEME inside a session. 
174         // (e.g. by using another baseurl)
175         if (isset($this->_user->_authhow) 
176             and $this->_user->_authhow == 'session' 
177             and !isset($_theme->theme) 
178             and defined('THEME') 
179             and $user_theme != THEME)
180         {
181             include_once("themes/" . THEME . "/themeinfo.php");
182         }
183         if (empty($WikiTheme) and isset($user_theme)) {
184             if (strcspn($user_theme,"./\x00]") != strlen($user_theme)) {
185                 trigger_error(sprintf("invalid theme '%s': Invalid characters detected", $user_theme),
186                               E_USER_WARNING);
187                 $user_theme = "default";
188             }
189             include_once("themes/$user_theme/themeinfo.php");
190         }
191         if (empty($WikiTheme) and defined('THEME'))
192             include_once("themes/" . THEME . "/themeinfo.php");
193         if (empty($WikiTheme))
194             include_once("themes/default/themeinfo.php");
195         assert(!empty($WikiTheme));
196     }
197
198     // This really maybe should be part of the constructor, but since it
199     // may involve HTML/template output, the global $request really needs
200     // to be initialized before we do this stuff.
201     // [50ms]: 36ms if wikidb_page::exists
202     function updateAuthAndPrefs () {
203
204         if (isset($this->_user) and (!isa($this->_user, WikiUserClassname()))) {
205             $this->_user = false;       
206         }
207         // Handle authentication request, if any.
208         if ($auth_args = $this->getArg('auth')) {
209             $this->setArg('auth', false);
210             $this->_handleAuthRequest($auth_args); // possible NORETURN
211         }
212         elseif ( ! $this->_user 
213                  or (isa($this->_user, WikiUserClassname()) 
214                      and ! $this->_user->isSignedIn())) {
215             // If not auth request, try to sign in as saved user.
216             if (($saved_user = $this->getPref('userid')) != false) {
217                 $this->_signIn($saved_user);
218             }
219         }
220         
221         $action = $this->getArg('action');
222
223         // Save preferences in session and cookie
224         if ((defined('WIKI_XMLRPC') and !WIKI_XMLRPC) or $action != 'xmlrpc') {
225             if (isset($this->_user)) {
226                 if (!isset($this->_user->_authhow) or $this->_user->_authhow != 'session') {
227                     $this->_user->setPreferences($this->_prefs, true);
228                 }
229             }
230             $this->setSessionVar('wiki_user', $this->_user);
231         }
232
233         // Ensure user has permissions for action
234         // HACK ALERT: We may not set the request arg to create, 
235         // since the pageeditor has an ugly logic for action == create.
236         if ($action == 'edit' or $action == 'create') {
237             $page = $this->getPage();
238             if (! $page->exists() )
239                 $action = 'create';
240             else
241                 $action = 'edit';
242         }
243         if (! ENABLE_PAGEPERM) { // Bug #1438392 by Matt Brown
244             $require_level = $this->requiredAuthority($action);
245             if (! $this->_user->hasAuthority($require_level))
246                 $this->_notAuthorized($require_level); // NORETURN
247         } else {
248             // novatrope patch to let only _AUTHENTICATED view pages.
249             // If there's not enough authority or forbidden, ask for a password, 
250             // unless it's explicitly unobtainable. Some bad magic though.
251             if ($this->requiredAuthorityForAction($action) == WIKIAUTH_UNOBTAINABLE) {
252                 $require_level = $this->requiredAuthority($action);
253                 $this->_notAuthorized($require_level); // NORETURN
254             }
255         }
256     }
257
258     function & getUser () {
259         if (isset($this->_user))
260             return $this->_user;
261         else
262             return $GLOBALS['ForbiddenUser'];
263     }
264     
265     function & getGroup () {
266         if (isset($this->_user) and isset($this->_user->_group))
267             return $this->_user->_group;
268         else {
269             // Debug Strict: Only variable references should be returned by reference
270             $this->_user->_group = WikiGroup::getGroup();
271             return $this->_user->_group;
272         }
273     }
274
275     function & getPrefs () {
276         return $this->_prefs;
277     }
278
279     // Convenience function:
280     function getPref ($key) {
281         if (isset($this->_prefs)) {
282             return $this->_prefs->get($key);
283         }
284     }
285     function & getDbh () {
286         return $this->_dbi;
287     }
288
289     /**
290      * Get requested page from the page database.
291      * By default it will grab the page requested via the URL
292      *
293      * This is a convenience function.
294      * @param string $pagename Name of page to get.
295      * @return WikiDB_Page Object with methods to pull data from
296      * database for the page requested.
297      */
298     function getPage ($pagename = false) {
299         //if (!isset($this->_dbi)) $this->getDbh();
300         if (!$pagename) 
301             $pagename = $this->getArg('pagename');
302         return $this->_dbi->getPage($pagename);
303     }
304
305     /** Get URL for POST actions.
306      *
307      * Officially, we should just use SCRIPT_NAME (or some such),
308      * but that causes problems when we try to issue a redirect, e.g.
309      * after saving a page.
310      *
311      * Some browsers (at least NS4 and Mozilla 0.97 won't accept
312      * a redirect from a page to itself.)
313      *
314      * So, as a HACK, we include pagename and action as query args in
315      * the URL.  (These should be ignored when we receive the POST
316      * request.)
317      */
318     function getPostURL ($pagename=false) {
319         global $HTTP_GET_VARS;
320
321         if ($pagename === false)
322             $pagename = $this->getArg('pagename');
323         $action = $this->getArg('action');
324         if (!empty($HTTP_GET_VARS['start_debug'])) // zend ide support
325             return WikiURL($pagename, array('action' => $action, 'start_debug' => 1));
326         else
327             return WikiURL($pagename, array('action' => $action));
328     }
329     
330     function _handleAuthRequest ($auth_args) {
331         if (!is_array($auth_args))
332             return;
333
334         // Ignore password unless POST'ed.
335         if (!$this->isPost())
336             unset($auth_args['passwd']);
337
338         $olduser = $this->_user;
339         $user = $this->_user->AuthCheck($auth_args);
340         if (isa($user, WikiUserClassname())) {
341             // Successful login (or logout.)
342             $this->_setUser($user);
343         }
344         elseif (is_string($user)) {
345             // Login attempt failed.
346             $fail_message = $user;
347             $auth_args['pass_required'] = true;
348             // if clicked just on to the "sign in as:" button dont print invalid username.
349             if (!empty($auth_args['login']) and empty($auth_args['userid']))
350                 $fail_message = '';
351             // If no password was submitted, it's not really
352             // a failure --- just need to prompt for password...
353             if (!ALLOW_USER_PASSWORDS 
354                 and ALLOW_BOGO_LOGIN 
355                 and !isset($auth_args['passwd'])) 
356             {
357                 $fail_message = false;
358             }
359             $olduser->PrintLoginForm($this, $auth_args, $fail_message, 'newpage');
360             $this->finish();    //NORETURN
361         }
362         else {
363             // Login request cancelled.
364         }
365     }
366
367     /**
368      * Attempt to sign in (bogo-login).
369      *
370      * Fails silently.
371      *
372      * @param $userid string Userid to attempt to sign in as.
373      * @access private
374      */
375     function _signIn ($userid) {
376         if (ENABLE_USER_NEW) {
377             if (! $this->_user )
378                 $this->_user = new _BogoUser($userid);
379             // FIXME: is this always false? shouldn't we try passuser first?
380             if (! $this->_user ) 
381                 $this->_user = new _PassUser($userid);
382         }
383         $user = $this->_user->AuthCheck(array('userid' => $userid));
384         if (isa($user, WikiUserClassname())) {
385             $this->_setUser($user); // success!
386         }
387     }
388
389     // login or logout or restore state
390     function _setUser (&$user) {
391         $this->_user =& $user;
392         if (defined('MAIN_setUser')) return; // don't set cookies twice
393         $this->setCookieVar(getCookieName(), $user->getAuthenticatedId(),
394                             COOKIE_EXPIRATION_DAYS, COOKIE_DOMAIN);
395         if ($user->isSignedIn())
396             $user->_authhow = 'signin';
397
398         // Save userid to prefs..
399         if ( empty($this->_user->_prefs)) {
400             $this->_user->_prefs = $this->_user->getPreferences();
401             $this->_prefs =& $this->_user->_prefs;
402         }
403         $this->_user->_group = $this->getGroup();
404         $this->setSessionVar('wiki_user', $user);
405         $this->_prefs->set('userid',
406                            $user->isSignedIn() ? $user->getId() : '');
407         $this->initializeTheme();
408         define('MAIN_setUser', true);
409     }
410
411     /* Permission system */
412     function getLevelDescription($level) {
413         static $levels = false;
414         if (!$levels) // This looks like a Visual Basic hack. For the very same reason. "0"
415             $levels = array('x-1' => _("FORBIDDEN"),
416                             'x0'  => _("ANON"),
417                             'x1'  => _("BOGO"),
418                             'x2'  => _("USER"),
419                             'x10' => _("ADMIN"),
420                             'x100'=> _("UNOBTAINABLE"));
421         if (!empty($level))
422             $level = '0';
423         if (!empty($levels["x".$level]))
424             return $levels["x".$level];
425         else
426             return _("ANON");
427     }
428     
429     function _notAuthorized ($require_level) {
430         // Display the authority message in the Wiki's default
431         // language, in case it is not english.
432         //
433         // Note that normally a user will not see such an error once
434         // logged in, unless the admin has altered the default
435         // disallowed wikiactions. In that case we should probably
436         // check the user's language prefs too at this point; this
437         // would be a situation which is not really handled with the
438         // current code.
439         if (empty($GLOBALS['LANG']))
440             update_locale(DEFAULT_LANGUAGE);
441
442         // User does not have required authority.  Prompt for login.
443         $what = $this->getActionDescription($this->getArg('action'));
444         $pass_required = ($require_level >= WIKIAUTH_USER);
445         if ($require_level == WIKIAUTH_UNOBTAINABLE) {
446             global $DisabledActions;
447             if ($DisabledActions and in_array($action, $DisabledActions)) {
448                 $msg = fmt("%s is disallowed on this wiki.",
449                            $this->getDisallowedActionDescription($this->getArg('action')));
450                 $this->finish();
451                 return;
452             }
453             // Is the reason a missing ACL or just wrong user or password?
454             if (class_exists('PagePermission')) {
455                 $user =& $this->_user;
456                 $status = $user->isAuthenticated() ? _("authenticated") : _("not authenticated");
457                 $msg = fmt("%s %s %s is disallowed on this wiki for %s user '%s' (level: %s).",
458                            _("Missing PagePermission:"),
459                            action2access($this->getArg('action')),
460                            $this->getArg('pagename'),
461                            $status, $user->getId(), $this->getLevelDescription($user->_level));
462                 // TODO: add link to action=setacl
463                 $user->PrintLoginForm($this, compact('pass_required'), $msg);
464                 $this->finish();
465                 return;
466             } else {
467                 $msg = fmt("%s is disallowed on this wiki.",
468                            $this->getDisallowedActionDescription($this->getArg('action')));
469                 $this->_user->PrintLoginForm($this, compact('require_level','pass_required'), $msg);
470                 $this->finish();
471                 return;
472             }
473         }
474         elseif ($require_level == WIKIAUTH_BOGO)
475             $msg = fmt("You must sign in to %s.", $what);
476         elseif ($require_level == WIKIAUTH_USER)
477             $msg = fmt("You must log in to %s.", $what);
478         elseif ($require_level == WIKIAUTH_ANON)
479             $msg = fmt("Access for you is forbidden to %s.", $what);
480         else
481             $msg = fmt("You must be an administrator to %s.", $what);
482
483         $this->_user->PrintLoginForm($this, compact('require_level','pass_required'), $msg);
484         $this->finish();    // NORETURN
485     }
486
487     // Fixme: for PagePermissions we'll need other strings, 
488     // relevant to the requested page, not just for the action on the whole wiki.
489     function getActionDescription($action) {
490         static $actionDescriptions;
491         if (! $actionDescriptions) {
492             $actionDescriptions
493             = array('browse'     => _("view this page"),
494                     'diff'       => _("diff this page"),
495                     'dumphtml'   => _("dump html pages"),
496                     'dumpserial' => _("dump serial pages"),
497                     'edit'       => _("edit this page"),
498                     'revert'     => _("revert to a previous version of this page"),
499                     'create'     => _("create this page"),
500                     'loadfile'   => _("load files into this wiki"),
501                     'lock'       => _("lock this page"),
502                     'remove'     => _("remove this page"),
503                     'unlock'     => _("unlock this page"),
504                     'upload'     => _("upload a zip dump"),
505                     'verify'     => _("verify the current action"),
506                     'viewsource' => _("view the source of this page"),
507                     'xmlrpc'     => _("access this wiki via XML-RPC"),
508                     'soap'       => _("access this wiki via SOAP"),
509                     'zip'        => _("download a zip dump from this wiki"),
510                     'ziphtml'    => _("download a html zip dump from this wiki")
511                     );
512         }
513         if (in_array($action, array_keys($actionDescriptions)))
514             return $actionDescriptions[$action];
515         else
516             return $action;
517     }
518     
519     /**
520      TODO: check against these cases:
521         if ($DisabledActions and in_array($action, $DisabledActions))
522             return WIKIAUTH_UNOBTAINABLE;
523
524         if (ENABLE_PAGEPERM and class_exists("PagePermission")) {
525            return requiredAuthorityForPage($action);
526            
527 => Browsing pages is disallowed on this wiki for authenticated user 'rurban' (level: BOGO).
528     */
529     function getDisallowedActionDescription($action) {
530         static $disallowedActionDescriptions;
531         
532         if (! $disallowedActionDescriptions) {
533             $disallowedActionDescriptions
534             = array('browse'     => _("Browsing pages"),
535                     'diff'       => _("Diffing pages"),
536                     'dumphtml'   => _("Dumping html pages"),
537                     'dumpserial' => _("Dumping serial pages"),
538                     'edit'       => _("Editing pages"),
539                     'revert'     => _("Reverting to a previous version of pages"),
540                     'create'     => _("Creating pages"),
541                     'loadfile'   => _("Loading files"),
542                     'lock'       => _("Locking pages"),
543                     'remove'     => _("Removing pages"),
544                     'unlock'     => _("Unlocking pages"),
545                     'upload'     => _("Uploading zip dumps"),
546                     'verify'     => _("Verify the current action"),
547                     'viewsource' => _("Viewing the source of pages"),
548                     'xmlrpc'     => _("XML-RPC access"),
549                     'soap'       => _("SOAP access"),
550                     'zip'        => _("Downloading zip dumps"),
551                     'ziphtml'    => _("Downloading html zip dumps")
552                     );
553         }
554         if (in_array($action, array_keys($disallowedActionDescriptions)))
555             return $disallowedActionDescriptions[$action];
556         else
557             return $action;
558     }
559
560     function requiredAuthority ($action) {
561         $auth = $this->requiredAuthorityForAction($action);
562         if (!ALLOW_ANON_USER) return WIKIAUTH_USER;
563         
564         /*
565          * This is a hook for plugins to require authority
566          * for posting to them.
567          *
568          * IMPORTANT: This is not a secure check, so the plugin
569          * may not assume that any POSTs to it are authorized.
570          * All this does is cause PhpWiki to prompt for login
571          * if the user doesn't have the required authority.
572          */
573         if ($this->isPost()) {
574             $post_auth = $this->getArg('require_authority_for_post');
575             if ($post_auth !== false)
576                 $auth = max($auth, $post_auth);
577         }
578         return $auth;
579     }
580         
581     function requiredAuthorityForAction ($action) {
582         global $DisabledActions;
583         
584         if ($DisabledActions and in_array($action, $DisabledActions))
585             return WIKIAUTH_UNOBTAINABLE;
586             
587         if (ENABLE_PAGEPERM and class_exists("PagePermission")) {
588            return requiredAuthorityForPage($action);
589         } else {
590           // FIXME: clean up. 
591           switch ($action) {
592             case 'browse':
593             case 'viewsource':
594             case 'diff':
595             case 'select':
596             case 'xmlrpc':
597             case 'search':
598             case 'pdf':
599             case 'captcha':
600                 return WIKIAUTH_ANON;
601
602             case 'zip':
603             case 'ziphtml':
604                 if (defined('ZIPDUMP_AUTH') && ZIPDUMP_AUTH)
605                     return WIKIAUTH_ADMIN;
606                 return WIKIAUTH_ANON;
607
608             case 'edit':
609             case 'revert':
610             case 'soap':
611                 if (defined('REQUIRE_SIGNIN_BEFORE_EDIT') && REQUIRE_SIGNIN_BEFORE_EDIT)
612                     return WIKIAUTH_BOGO;
613                 return WIKIAUTH_ANON;
614                 // return WIKIAUTH_BOGO;
615
616             case 'create':
617                 $page = $this->getPage();
618                 $current = $page->getCurrentRevision();
619                 if ($current->hasDefaultContents())
620                     return $this->requiredAuthorityForAction('edit');
621                 return $this->requiredAuthorityForAction('browse');
622
623             case 'upload':
624             case 'dumpserial':
625             case 'dumphtml':
626             case 'loadfile':
627             case 'remove':
628             case 'lock':
629             case 'unlock':
630             case 'upgrade':
631             case 'chown':
632             case 'setacl':
633             case 'rename':
634                 return WIKIAUTH_ADMIN;
635
636             /* authcheck occurs only in the plugin.
637                required actionpage RateIt */
638             /*
639             case 'rate':
640             case 'delete_rating':
641                 // Perhaps this should be WIKIAUTH_USER
642                 return WIKIAUTH_BOGO;
643             */
644
645             default:
646                 global $WikiNameRegexp;
647                 if (preg_match("/$WikiNameRegexp\Z/A", $action))
648                     return WIKIAUTH_ANON; // ActionPage.
649                 else
650                     return WIKIAUTH_ADMIN;
651           }
652         }
653     }
654     /* End of Permission system */
655
656     function possiblyDeflowerVirginWiki () {
657         if ($this->getArg('action') != 'browse')
658             return;
659         if ($this->getArg('pagename') != HOME_PAGE)
660             return;
661
662         $page = $this->getPage();
663         $current = $page->getCurrentRevision();
664         if ($current->getVersion() > 0)
665             return;             // Homepage exists.
666
667         include_once('lib/loadsave.php');
668         SetupWiki($this);
669         $this->finish();        // NORETURN
670     }
671     
672     // [574ms] mainly template:printexpansion: 393ms and template::expandsubtemplate [100+70+60ms]
673     function handleAction () {
674         $action = $this->getArg('action');
675         if ($this->isPost() and 
676             !$this->_user->isAdmin()
677             and $action != 'browse' 
678             and $action !='wikitohtml' 
679             )
680         {
681             $page = $this->getPage();
682             if ( $page->get('moderation') ) {
683                 require_once("lib/WikiPlugin.php");
684                 $loader = new WikiPluginLoader();
685                 $plugin = $loader->getPlugin("ModeratedPage");
686                 if ($plugin->handler($this, $page)) {
687                     $CONTENT = HTML::div
688                         (
689                          array('class' => 'wiki-edithelp'),
690                          fmt("%s: action forwarded to a moderator.", 
691                              $action), 
692                          HTML::br(),
693                          _("This action requires moderator approval. Please be patient."));
694                     if (!empty($plugin->_tokens['CONTENT']))
695                         $plugin->_tokens['CONTENT']->pushContent
696                             (
697                              HTML::br(),
698                              _("You must wait for moderator approval."));
699                     else
700                         $plugin->_tokens['CONTENT'] = $CONTENT;
701                     require_once("lib/Template.php");
702                     $title = WikiLink($page->getName());
703                     $title->pushContent(' : ', WikiLink(_("ModeratedPage")));
704                     GeneratePage(Template('browse', $plugin->_tokens), 
705                                  $title,
706                                  $page->getCurrentRevision());
707                     $this->finish();
708                 }
709             }
710         }
711         $method = "action_$action";
712         if (method_exists($this, $method)) {
713             $this->{$method}();
714         }
715         elseif ($page = $this->findActionPage($action)) {
716             $this->actionpage($page);
717         }
718         else {
719             $this->finish(fmt("%s: Bad action", $action));
720         }
721     }
722     
723     function finish ($errormsg = false) {
724         static $in_exit = 0;
725
726         if ($in_exit)
727             exit();        // just in case CloseDataBase calls us
728         $in_exit = true;
729
730         global $ErrorManager;
731         $ErrorManager->flushPostponedErrors();
732
733         if (!empty($errormsg)) {
734             PrintXML(HTML::br(),
735                      HTML::hr(),
736                      HTML::h2(_("Fatal PhpWiki Error")),
737                      $errormsg);
738             // HACK:
739             echo "\n</body></html>";
740         }
741         if (is_object($this->_user)) {
742             $this->_user->page   = $this->getArg('pagename');
743             $this->_user->action = $this->getArg('action');
744             unset($this->_user->_HomePagehandle);
745             unset($this->_user->_auth_dbi);
746         }
747         Request::finish();
748         exit;
749     }
750
751     /**
752      * Generally pagename is rawurlencoded for older browsers or mozilla.
753      * Typing a pagename into the IE bar will utf-8 encode it, so we have to 
754      * fix that with fixTitleEncoding().
755      * If USE_PATH_INFO = true, the pagename is stripped from the "/DATA_PATH/PageName&arg=value" line.
756      * If false, we support either "/index.php?pagename=PageName&arg=value",
757      * or the first arg (1.2.x style): "/index.php?PageName&arg=value"
758      */
759     function _deducePagename () {
760         if (trim(rawurldecode($this->getArg('pagename'))))
761             return fixTitleEncoding(rawurldecode($this->getArg('pagename')));
762
763         if (USE_PATH_INFO) {
764             $pathinfo = $this->get('PATH_INFO');
765             if (empty($pathinfo)) { // fix for CGI
766                 $path = $this->get('REQUEST_URI');
767                 $script = $this->get('SCRIPT_NAME');
768                 $pathinfo = substr($path,strlen($script));
769                 $pathinfo = preg_replace('/\?.+$/','',$pathinfo);
770             }
771             $tail = substr($pathinfo, strlen(PATH_INFO_PREFIX));
772
773             if (trim($tail) != '' and $pathinfo == PATH_INFO_PREFIX . $tail) {
774                 return fixTitleEncoding($tail);
775             }
776         }
777         elseif ($this->isPost()) {
778             /*
779              * In general, for security reasons, HTTP_GET_VARS should be ignored
780              * on POST requests, but we make an exception here (only for pagename).
781              *
782              * The justification for this hack is the following
783              * asymmetry: When POSTing with USE_PATH_INFO set, the
784              * pagename can (and should) be communicated through the
785              * request URL via PATH_INFO.  When POSTing with
786              * USE_PATH_INFO off, this cannot be done --- the only way
787              * to communicate the pagename through the URL is via
788              * QUERY_ARGS (HTTP_GET_VARS).
789              */
790             global $HTTP_GET_VARS;
791             if (isset($HTTP_GET_VARS['pagename']) and trim($HTTP_GET_VARS['pagename'])) { 
792                 return fixTitleEncoding(rawurldecode($HTTP_GET_VARS['pagename']));
793             }
794         }
795
796         /*
797          * Support for PhpWiki 1.2 style requests.
798          * Strip off "&" args (?PageName&action=...&start_debug,...)
799          */
800         $query_string = $this->get('QUERY_STRING');
801         if (trim(rawurldecode($query_string)) and preg_match('/^([^&=]+)(&.+)?$/', $query_string, $m)) {
802             return fixTitleEncoding(rawurldecode($m[1]));
803         }
804
805         return fixTitleEncoding(HOME_PAGE);
806     }
807
808     function _deduceAction () {
809         if (!($action = $this->getArg('action'))) {
810             // TODO: improve this SOAP.php hack by letting SOAP use index.php 
811             // or any other virtual url as with xmlrpc
812             if (defined('WIKI_SOAP')   and WIKI_SOAP)
813                 return 'soap';
814             // Detect XML-RPC requests.
815             if ($this->isPost()
816                 && $this->get('CONTENT_TYPE') == 'text/xml'
817                 && strstr($GLOBALS['HTTP_RAW_POST_DATA'], '<methodCall>')
818                )
819             {
820                 return 'xmlrpc';
821             }
822             return 'browse';    // Default if no action specified.
823         }
824
825         if (method_exists($this, "action_$action"))
826             return $action;
827
828         // Allow for, e.g. action=LikePages
829         if ($this->isActionPage($action))
830             return $action;
831
832         // Handle untranslated actionpages in non-english
833         // (people playing with switching languages)
834         if (0 and $GLOBALS['LANG'] != 'en') {
835             require_once("lib/plugin/_WikiTranslation.php");
836             $trans = new WikiPlugin__WikiTranslation();
837             $en_action = $trans->translate($action,'en',$GLOBALS['LANG']);
838             if ($this->isActionPage($en_action))
839                 return $en_action;
840         }
841
842         trigger_error("$action: Unknown action", E_USER_NOTICE);
843         return 'browse';
844     }
845
846     function _deduceUsername() {
847         global $HTTP_SERVER_VARS, $HTTP_ENV_VARS;
848
849         if (!empty($this->args['auth']) and !empty($this->args['auth']['userid']))
850             return $this->args['auth']['userid'];
851
852         if ($user = $this->getSessionVar('wiki_user')) {
853             // switched auth between sessions. 
854             // Note: There's no way to demandload a missing class-definition 
855             // afterwards! (Stupid php)
856             if (isa($user, WikiUserClassname())) {
857                 $this->_user = $user;
858                 $this->_user->_authhow = 'session';
859                 return ENABLE_USER_NEW ? $user->UserName() : $this->_user;
860             }
861         }
862
863         // Sessions override http auth
864         if (!empty($HTTP_SERVER_VARS['PHP_AUTH_USER']))
865             return $HTTP_SERVER_VARS['PHP_AUTH_USER'];
866         // pubcookie et al
867         if (!empty($HTTP_SERVER_VARS['REMOTE_USER']))
868             return $HTTP_SERVER_VARS['REMOTE_USER'];
869         if (!empty($HTTP_ENV_VARS['REMOTE_USER']))
870             return $HTTP_ENV_VARS['REMOTE_USER'];
871
872         if ($userid = $this->getCookieVar(getCookieName())) {
873             if (!empty($userid) and substr($userid,0,2) != 's:') {
874                 $this->_user->authhow = 'cookie';
875                 return $userid;
876             }
877         }
878
879         if ($this->getArg('action') == 'xmlrpc') { // how about SOAP?
880             // wiki.putPage has special otional userid/passwd arguments. check that later.
881             $userid = '';
882             if (isset($HTTP_SERVER_VARS['REMOTE_USER']))
883                 $userid = $HTTP_SERVER_VARS['REMOTE_USER'];
884             elseif (isset($HTTP_SERVER_VARS['REMOTE_ADDR']))
885                 $userid = $HTTP_SERVER_VARS['REMOTE_ADDR'];
886             elseif (isset($HTTP_ENV_VARS['REMOTE_ADDR']))
887                 $userid = $HTTP_ENV_VARS['REMOTE_ADDR'];
888             elseif (isset($GLOBALS['REMOTE_ADDR']))
889                 $userid = $GLOBALS['REMOTE_ADDR'];
890             return $userid;
891         }
892
893         return false;
894     }
895     
896     function _isActionPage ($pagename) {
897         $dbi = $this->getDbh();
898         $page = $dbi->getPage($pagename);
899         if (!$page) return false;
900         $rev = $page->getCurrentRevision();
901         // FIXME: more restrictive check for sane plugin?
902         if (strstr($rev->getPackedContent(), '<?plugin'))
903             return true;
904         if (!$rev->hasDefaultContents())
905             trigger_error("$pagename: Does not appear to be an 'action page'", E_USER_NOTICE);
906         return false;
907     }
908
909     function findActionPage ($action) {
910         static $cache;
911
912         // check for translated version, as per users preferred language
913         // (or system default in case it is not en)
914         $translation = gettext($action);
915
916         if (isset($cache) and isset($cache[$translation]))
917             return $cache[$translation];
918
919         // check for cached translated version
920         if ($this->_isActionPage($translation))
921             return $cache[$action] = $translation;
922
923         // Allow for, e.g. action=LikePages
924         if (!isWikiWord($action))
925             return $cache[$action] = false;
926
927         // check for translated version (default language)
928         global $LANG;
929         if ($LANG != "en") {
930             require_once("lib/WikiPlugin.php");
931             require_once("lib/plugin/_WikiTranslation.php");
932             $trans = new WikiPlugin__WikiTranslation();
933             $trans->lang = $LANG;
934             $default = $trans->translate_to_en($action, $LANG);
935             if ($this->_isActionPage($default))
936                 return $cache[$action] = $default;
937         } else {
938             $default = $translation;
939         }
940         
941         // check for english version
942         if ($action != $translation and $action != $default) {
943             if ($this->_isActionPage($action))
944                 return $cache[$action] = $action;
945         }
946
947         trigger_error("$action: Cannot find action page", E_USER_NOTICE);
948         return $cache[$action] = false;
949     }
950     
951     function isActionPage ($pagename) {
952         return $this->findActionPage($pagename);
953     }
954
955     function action_browse () {
956         $this->buffer_output();
957         include_once("lib/display.php");
958         displayPage($this);
959     }
960
961     function action_verify () {
962         $this->action_browse();
963     }
964
965     function actionpage ($action) {
966         $this->buffer_output();
967         include_once("lib/display.php");
968         actionPage($this, $action);
969     }
970
971     function adminActionSubpage ($subpage) {
972         $page = _("PhpWikiAdministration")."/".$subpage;
973         $action = $this->findActionPage($page);
974         if ($action) {
975             $this->setArg('s',$this->getArg('pagename'));
976             $this->setArg('verify',1);
977             $this->setArg('action',$action);
978             $this->actionpage($action);
979         } else {
980             trigger_error($page.": Cannot find action page", E_USER_WARNING);
981         }
982     }
983
984     function action_chown () {
985         $this->adminActionSubpage(_("Chown"));
986     }
987
988     function action_setacl () {
989         $this->adminActionSubpage(_("SetAcl"));
990     }
991
992     function action_rename () {
993         $this->adminActionSubpage(_("Rename"));
994     }
995
996     function action_dump () {
997         $action = $this->findActionPage(_("PageDump"));
998         if ($action) {
999             $this->actionpage($action);
1000         } else {
1001             // redirect to action=upgrade if admin?
1002             trigger_error(_("PageDump").": Cannot find action page", E_USER_WARNING);
1003         }
1004     }
1005
1006     function action_diff () {
1007         $this->buffer_output();
1008         include_once "lib/diff.php";
1009         showDiff($this);
1010     }
1011
1012     function action_search () {
1013         // This is obsolete: reformulate URL and redirect.
1014         // FIXME: this whole section should probably be deleted.
1015         if ($this->getArg('searchtype') == 'full') {
1016             $search_page = _("FullTextSearch");
1017         }
1018         else {
1019             $search_page = _("TitleSearch");
1020         }
1021         $this->redirect(WikiURL($search_page,
1022                                 array('s' => $this->getArg('searchterm')),
1023                                 'absolute_url'));
1024     }
1025
1026     function action_edit () {
1027         $this->buffer_output();
1028         include "lib/editpage.php";
1029         $e = new PageEditor ($this);
1030         $e->editPage();
1031     }
1032
1033     function action_create () {
1034         $this->action_edit();
1035     }
1036     
1037     function action_viewsource () {
1038         $this->buffer_output();
1039         include "lib/editpage.php";
1040         $e = new PageEditor ($this);
1041         $e->viewSource();
1042     }
1043
1044     function action_lock () {
1045         $page = $this->getPage();
1046         $page->set('locked', true);
1047         $this->_dbi->touch();
1048         // check ModeratedPage hook
1049         if ($moderated = $page->get('moderated')) {
1050             require_once("lib/WikiPlugin.php");
1051             $plugin = WikiPluginLoader::getPlugin("ModeratedPage");
1052             if ($retval = $plugin->lock_check($this, $page, $moderated))
1053                 $this->setArg('errormsg', $retval);
1054         } 
1055         // check if a link to ModeratedPage exists
1056         elseif ($action_page = $page->existLink(_("ModeratedPage"))) {
1057             require_once("lib/WikiPlugin.php");
1058             $plugin = WikiPluginLoader::getPlugin("ModeratedPage");
1059             if ($retval = $plugin->lock_add($this, $page, $action_page))
1060                 $this->setArg('errormsg', $retval);
1061         }
1062         $this->action_browse();
1063     }
1064
1065     function action_unlock () {
1066         $page = $this->getPage();
1067         $page->set('locked', false);
1068         $this->_dbi->touch();
1069         $this->action_browse();
1070     }
1071
1072     function action_remove () {
1073         // This check is now redundant.
1074         //$user->requireAuth(WIKIAUTH_ADMIN);
1075         $pagename = $this->getArg('pagename');
1076         if (strstr($pagename, _("PhpWikiAdministration"))) {
1077             $this->action_browse();
1078         } else {
1079             include('lib/removepage.php');
1080             RemovePage($this);
1081         }
1082     }
1083
1084     function action_xmlrpc () {
1085         include_once("lib/XmlRpcServer.php");
1086         $xmlrpc = new XmlRpcServer($this);
1087         $xmlrpc->service();
1088     }
1089     
1090     function action_revert () {
1091         include_once "lib/loadsave.php";
1092         RevertPage($this);
1093     }
1094
1095     function action_zip () {
1096         include_once("lib/loadsave.php");
1097         MakeWikiZip($this);
1098         // I don't think it hurts to add cruft at the end of the zip file.
1099         //echo "\n========================================================\n";
1100         //echo "PhpWiki " . PHPWIKI_VERSION . " source:\n$GLOBALS[RCS_IDS]\n";
1101     }
1102
1103     function action_ziphtml () {
1104         include_once("lib/loadsave.php");
1105         MakeWikiZipHtml($this);
1106         // I don't think it hurts to add cruft at the end of the zip file.
1107         echo "\n========================================================\n";
1108         echo "PhpWiki " . PHPWIKI_VERSION . " source:\n$GLOBALS[RCS_IDS]\n";
1109     }
1110
1111     function action_dumpserial () {
1112         include_once("lib/loadsave.php");
1113         DumpToDir($this);
1114     }
1115
1116     function action_dumphtml () {
1117         include_once("lib/loadsave.php");
1118         DumpHtmlToDir($this);
1119     }
1120
1121     function action_upload () {
1122         include_once("lib/loadsave.php");
1123         LoadPostFile($this);
1124     }
1125
1126     function action_upgrade () {
1127         include_once("lib/loadsave.php");
1128         include_once("lib/upgrade.php");
1129         DoUpgrade($this);
1130     }
1131
1132     function action_loadfile () {
1133         include_once("lib/loadsave.php");
1134         LoadFileOrDir($this);
1135     }
1136
1137     function action_pdf () {
1138         include_once("lib/pdf.php");
1139         ConvertAndDisplayPdf($this);
1140     }
1141
1142     function action_captcha () {
1143         include_once "lib/Captcha.php";
1144         $captcha = new Captcha();
1145         $captcha->image ( $captcha->captchaword() ); 
1146     }
1147     
1148     function action_wikitohtml () {
1149        $content = $this->getArg("content");
1150
1151        require_once("lib/BlockParser.php");
1152        $xml = TransformText($content, 2.0, $this->getArg('pagename'));
1153        $xml->printXML();
1154        return true;
1155     }
1156
1157 }
1158
1159 //FIXME: deprecated with ENABLE_PAGEPERM (?)
1160 function is_safe_action ($action) {
1161     global $request;
1162     return $request->requiredAuthorityForAction($action) < WIKIAUTH_ADMIN;
1163 }
1164
1165 function validateSessionPath() {
1166     // Try to defer any session.save_path PHP errors before any html
1167     // is output, which causes some versions of IE to display a blank
1168     // page (due to its strict mode while parsing a page?).
1169     if (! is_writeable(ini_get('session.save_path'))) {
1170         $tmpdir = (defined('SESSION_SAVE_PATH') and SESSION_SAVE_PATH) ? SESSION_SAVE_PATH : '/tmp';
1171         if (!is_writeable($tmpdir))
1172             $tmpdir = '/tmp';
1173         trigger_error
1174             (sprintf(_("%s is not writable."),
1175                      _("The session.save_path directory"))
1176              . "\n"
1177              . sprintf(_("Please ensure that %s is writable, or redefine %s in config/config.ini."),
1178                        sprintf(_("the session.save_path directory '%s'"),
1179                                ini_get('session.save_path')),
1180                        'SESSION_SAVE_PATH')
1181              . "\n"
1182              . sprintf(_("Attempting to use the directory '%s' instead."),
1183                        $tmpdir)
1184              , E_USER_NOTICE);
1185         if (! is_writeable($tmpdir)) {
1186             trigger_error
1187                 (sprintf(_("%s is not writable."), $tmpdir)
1188                  . "\n"
1189                  . _("Users will not be able to sign in.")
1190                  , E_USER_NOTICE);
1191         }
1192         else
1193             @ini_set('session.save_path', $tmpdir);
1194     }
1195 }
1196
1197 function main () {
1198     if ( !USE_DB_SESSION )
1199         validateSessionPath();
1200
1201     global $request;
1202     if ((DEBUG & _DEBUG_APD) and extension_loaded("apd"))
1203         apd_set_session_trace(9);
1204
1205     // Postpone warnings
1206     global $ErrorManager;
1207     if (defined('E_STRICT')) // and (E_ALL & E_STRICT)) // strict php5?
1208         $ErrorManager->setPostponedErrorMask(E_NOTICE|E_USER_NOTICE|E_USER_WARNING|E_WARNING|E_STRICT);
1209     else
1210         $ErrorManager->setPostponedErrorMask(E_NOTICE|E_USER_NOTICE|E_USER_WARNING|E_WARNING);
1211     $request = new WikiRequest();
1212
1213     $action = $request->getArg('action');
1214     if (substr($action, 0, 3) != 'zip') {
1215         if ($action == 'pdf')
1216             $ErrorManager->setPostponedErrorMask(-1); // everything
1217         //else // reject postponing of warnings
1218         //    $ErrorManager->setPostponedErrorMask(E_NOTICE|E_USER_NOTICE);
1219     }
1220
1221     /*
1222      * Allow for disabling of markup cache.
1223      * (Mostly for debugging ... hopefully.)
1224      *
1225      * See also <?plugin WikiAdminUtils action=purge-cache ?>
1226      */
1227     if (!defined('WIKIDB_NOCACHE_MARKUP')) {
1228         if ($request->getArg('nocache')) // 1 or purge
1229             define('WIKIDB_NOCACHE_MARKUP', $request->getArg('nocache'));
1230         else
1231             define('WIKIDB_NOCACHE_MARKUP', false); // redundant, but explicit
1232     }
1233     
1234     // Initialize with system defaults in case user not logged in.
1235     // Should this go into constructor?
1236     $request->initializeTheme();
1237
1238     // convert wiki to html
1239     if ($action == 'wikitohtml') {
1240       $request->handleAction();
1241       return;
1242     }
1243
1244     $request->updateAuthAndPrefs();
1245     $request->initializeLang();
1246     
1247     //FIXME:
1248     //if ($user->is_authenticated())
1249     //  $LogEntry->user = $user->getId();
1250
1251     // Memory optimization:
1252     // http://www.procata.com/blog/archives/2004/05/27/rephlux-and-php-memory-usage/
1253     // kill the global PEAR _PEAR_destructor_object_list
1254     if (!empty($_PEAR_destructor_object_list))
1255         $_PEAR_destructor_object_list = array();
1256     $request->possiblyDeflowerVirginWiki();
1257     
1258 // hack! define proper actions for these.
1259 if (defined('WIKI_XMLRPC') and WIKI_XMLRPC) return;
1260 if (defined('WIKI_SOAP')   and WIKI_SOAP)   return;
1261
1262     $validators = array('wikiname' => WIKI_NAME,
1263                         'args'     => wikihash($request->getArgs()),
1264                         'prefs'    => wikihash($request->getPrefs()));
1265     if (CACHE_CONTROL == 'STRICT') {
1266         $dbi = $request->getDbh();
1267         $timestamp = $dbi->getTimestamp();
1268         $validators['mtime'] = $timestamp;
1269         $validators['%mtime'] = (int)$timestamp;
1270     }
1271     // FIXME: we should try to generate strong validators when possible,
1272     // but for now, our validator is weak, since equal validators do not
1273     // indicate byte-level equality of content.  (Due to DEBUG timing output, etc...)
1274     //
1275     // (If DEBUG if off, this may be a strong validator, but I'm going
1276     // to go the paranoid route here pending further study and testing.)
1277     //
1278     $validators['%weak'] = true;
1279     $request->setValidators($validators);
1280    
1281     $request->handleAction();
1282
1283     if (DEBUG and DEBUG & _DEBUG_INFO) phpinfo(INFO_VARIABLES | INFO_MODULES);
1284     $request->finish();
1285 }
1286
1287 //$x = error_reporting();  // DEBUG: why is it 1 here? should be E_ALL
1288 if (defined('E_STRICT') and (E_ALL & E_STRICT)) // strict php5?
1289     error_reporting(E_ALL & ~E_STRICT);         // exclude E_STRICT
1290 else
1291     error_reporting(E_ALL); // php4
1292 // don't run the main loop for special requests (test, getimg, xmlrpc, soap, ...)
1293 if (!defined('PHPWIKI_NOMAIN') or !PHPWIKI_NOMAIN)
1294     main();
1295
1296
1297 // $Log: not supported by cvs2svn $
1298 // Revision 1.223  2006/03/19 15:01:00  rurban
1299 // sf.net patch #1333957 by Matt Brown: Authentication cookie identical across all wikis on a host
1300 //
1301 // Revision 1.222  2006/03/19 14:53:12  rurban
1302 // sf.net patch #1438392 by Matt Brown: Bogo Login is broken when ENABLE_PAGEPERM=false
1303 //
1304 // Revision 1.221  2006/03/19 14:23:51  rurban
1305 // sf.net patch #1377011 by Matt Brown: add DATABASE_OPTIMISE_FREQUENCY
1306 //
1307 // Revision 1.220  2006/03/07 21:04:15  rurban
1308 // wikihash for php-5.1
1309 //
1310 // Revision 1.219  2005/10/30 14:20:42  rurban
1311 // move Captcha specific vars and methods into a Captcha object
1312 // randomize Captcha chars positions and angles (smoothly)
1313 //
1314 // Revision 1.218  2005/10/29 14:18:06  rurban
1315 // fix typo
1316 //
1317 // Revision 1.217  2005/09/18 12:44:00  rurban
1318 // novatrope patch to let only _AUTHENTICATED view pages
1319 //
1320 // Revision 1.216  2005/08/27 09:40:46  rurban
1321 // fix login with HttpAuth
1322 //
1323 // Revision 1.215  2005/08/07 10:50:27  rurban
1324 // postpone guard
1325 //
1326 // Revision 1.214  2005/08/07 09:14:03  rurban
1327 // fix cookie logout; let the WIKI_ID cookie get deleted
1328 //
1329 // Revision 1.213  2005/06/10 06:10:35  rurban
1330 // ensure Update Preferences gets through
1331 //
1332 // Revision 1.212  2005/04/25 20:17:14  rurban
1333 // captcha feature by Benjamin Drieu. Patch #1110699
1334 //
1335 // Revision 1.211  2005/04/11 19:42:54  rurban
1336 // reformatting, SESSION_SAVE_PATH check
1337 //
1338 // Revision 1.210  2005/04/07 06:06:34  rurban
1339 // add _SERVER[REMOTE_USER] check for pubcookie et al, Bug #1177259 (iamjpr)
1340 //
1341 // Revision 1.209  2005/04/06 06:19:30  rurban
1342 // Revert the previous wrong bugfix #1175761: USECACHE was mixed with WIKIDB_NOCACHE_MARKUP.
1343 // Fix WIKIDB_NOCACHE_MARKUP in main (always set it) and clarify it in WikiDB
1344 //
1345 // Revision 1.208  2005/02/28 21:24:32  rurban
1346 // ignore forbidden ini_set warnings. Bug #1117254 by Xavier Roche
1347 //
1348 // Revision 1.207  2005/02/10 19:03:37  rurban
1349 // try to avoid duoplicate lang/theme init
1350 //
1351 // Revision 1.206  2005/02/04 11:30:10  rurban
1352 // remove old comments
1353 //
1354 // Revision 1.205  2005/01/29 20:41:47  rurban
1355 // some minor php5 strictness fixes
1356 //
1357 // Revision 1.204  2005/01/25 07:35:42  rurban
1358 // add TODO comment
1359 //
1360 // Revision 1.203  2005/01/21 14:11:23  rurban
1361 // better moderation class tag
1362 //
1363 // Revision 1.202  2005/01/21 12:02:32  rurban
1364 // deduce username for xmlrpc also
1365 //
1366 // Revision 1.201  2005/01/20 10:18:17  rurban
1367 // reformatting
1368 //
1369 // Revision 1.200  2004/12/26 17:08:36  rurban
1370 // php5 fixes: case-sensitivity, no & new
1371 //
1372 // Revision 1.199  2004/12/19 00:58:01  rurban
1373 // Enforce PASSWORD_LENGTH_MINIMUM in almost all PassUser checks,
1374 // Provide an errormessage if so. Just PersonalPage and BogoLogin not.
1375 // Simplify httpauth logout handling and set sessions for all methods.
1376 // fix main.php unknown index "x" getLevelDescription() warning.
1377 //
1378 // Revision 1.198  2004/12/17 16:49:51  rurban
1379 // avoid Invalid username message on Sign In button click
1380 //
1381 // Revision 1.197  2004/12/17 16:39:55  rurban
1382 // enable sessions for HttpAuth
1383 //
1384 // Revision 1.196  2004/12/10 02:36:43  rurban
1385 // More help with the new native xmlrpc lib. no warnings, no user cookie on xmlrpc.
1386 //
1387 // Revision 1.195  2004/12/09 22:24:44  rurban
1388 // optimize on _DEBUG_SQL only. but now again on every 50th request, not just save.
1389 //
1390 // Revision 1.194  2004/11/30 17:46:49  rurban
1391 // added ModeratedPage POST action hook (part 2/3)
1392 //
1393 // Revision 1.193  2004/11/30 07:51:08  rurban
1394 // fixed SESSION_SAVE_PATH warning msg
1395 //
1396 // Revision 1.192  2004/11/21 11:59:20  rurban
1397 // remove final \n to be ob_cache independent
1398 //
1399 // Revision 1.191  2004/11/19 19:22:03  rurban
1400 // ModeratePage part1: change status
1401 //
1402 // Revision 1.190  2004/11/15 15:56:40  rurban
1403 // don't load PagePerm on ENABLE_PAGEPERM = false to save memory. Move mayAccessPage() to main.php
1404 //
1405 // Revision 1.189  2004/11/09 17:11:16  rurban
1406 // * revert to the wikidb ref passing. there's no memory abuse there.
1407 // * use new wikidb->_cache->_id_cache[] instead of wikidb->_iwpcache, to effectively
1408 //   store page ids with getPageLinks (GleanDescription) of all existing pages, which
1409 //   are also needed at the rendering for linkExistingWikiWord().
1410 //   pass options to pageiterator.
1411 //   use this cache also for _get_pageid()
1412 //   This saves about 8 SELECT count per page (num all pagelinks).
1413 // * fix passing of all page fields to the pageiterator.
1414 // * fix overlarge session data which got broken with the latest ACCESS_LOG_SQL changes
1415 //
1416 // Revision 1.188  2004/11/07 16:02:52  rurban
1417 // new sql access log (for spam prevention), and restructured access log class
1418 // dbh->quote (generic)
1419 // pear_db: mysql specific parts seperated (using replace)
1420 //
1421 // Revision 1.187  2004/11/05 22:08:52  rurban
1422 // Ok: Fix loading all required userclasses beforehand. This is much slower than before but safes a few bytes RAM
1423 //
1424 // Revision 1.186  2004/11/05 20:53:35  rurban
1425 // login cleanup: better debug msg on failing login,
1426 // checked password less immediate login (bogo or anon),
1427 // checked olduser pref session error,
1428 // better PersonalPage without password warning on minimal password length=0
1429 //   (which is default now)
1430 //
1431 // Revision 1.185  2004/11/01 13:55:05  rurban
1432 // fix against switching user new/old between sessions
1433 //
1434 // Revision 1.184  2004/11/01 10:43:57  rurban
1435 // seperate PassUser methods into seperate dir (memory usage)
1436 // fix WikiUser (old) overlarge data session
1437 // remove wikidb arg from various page class methods, use global ->_dbi instead
1438 // ...
1439 //
1440 // Revision 1.183  2004/10/14 19:23:58  rurban
1441 // remove debugging prints
1442 //
1443 // Revision 1.182  2004/10/12 13:13:19  rurban
1444 // php5 compatibility (5.0.1 ok)
1445 //
1446 // Revision 1.181  2004/10/07 16:08:58  rurban
1447 // fixed broken FileUser session handling.
1448 //   thanks to Arnaud Fontaine for detecting this.
1449 // enable file user Administrator membership.
1450 //
1451 // Revision 1.180  2004/10/04 23:39:34  rurban
1452 // just aesthetics
1453 //
1454 // Revision 1.179  2004/09/25 18:57:42  rurban
1455 // better ACL error message: view not browse, change not setacl, ...
1456 //
1457 // Revision 1.178  2004/09/25 16:27:36  rurban
1458 // better not allowed description: on global disallowed, and on missing pageperms
1459 //
1460 // Revision 1.177  2004/09/14 10:31:09  rurban
1461 // exclude E_STRICT for php5: untested. I believe this must be set earlier because the parsing step is already strict, and this is called at run-time
1462 //
1463 // Revision 1.176  2004/08/05 17:33:22  rurban
1464 // aesthetic typo
1465 //
1466 // Revision 1.175  2004/07/13 13:08:25  rurban
1467 // fix PEAR memory waste issues
1468 //
1469 // Revision 1.174  2004/07/08 13:50:32  rurban
1470 // various unit test fixes: print error backtrace on _DEBUG_TRACE; allusers fix; new PHPWIKI_NOMAIN constant for omitting the mainloop
1471 //
1472 // Revision 1.173  2004/07/05 12:57:54  rurban
1473 // add mysql timeout
1474 //
1475 // Revision 1.172  2004/07/03 08:04:19  rurban
1476 // fixed implicit PersonalPage login (e.g. on edit), fixed to check against create ACL on create, not edit
1477 //
1478 // Revision 1.171  2004/06/29 09:30:42  rurban
1479 // force string hash
1480 //
1481 // Revision 1.170  2004/06/25 14:29:20  rurban
1482 // WikiGroup refactoring:
1483 //   global group attached to user, code for not_current user.
1484 //   improved helpers for special groups (avoid double invocations)
1485 // new experimental config option ENABLE_XHTML_XML (fails with IE, and document.write())
1486 // fixed a XHTML validation error on userprefs.tmpl
1487 //
1488 // Revision 1.169  2004/06/20 14:42:54  rurban
1489 // various php5 fixes (still broken at blockparser)
1490 //
1491 // Revision 1.168  2004/06/17 10:39:18  rurban
1492 // fix reverse translation of possible actionpage
1493 //
1494 // Revision 1.167  2004/06/16 13:21:16  rurban
1495 // stabilize on failing ldap queries or bind
1496 //
1497 // Revision 1.166  2004/06/15 09:15:52  rurban
1498 // IMPORTANT: fixed passwd handling for passwords stored in prefs:
1499 //   fix encrypted usage, actually store and retrieve them from db
1500 //   fix bogologin with passwd set.
1501 // fix php crashes with call-time pass-by-reference (references wrongly used
1502 //   in declaration AND call). This affected mainly Apache2 and IIS.
1503 //   (Thanks to John Cole to detect this!)
1504 //
1505 // Revision 1.165  2004/06/14 11:31:37  rurban
1506 // renamed global $Theme to $WikiTheme (gforge nameclash)
1507 // inherit PageList default options from PageList
1508 //   default sortby=pagename
1509 // use options in PageList_Selectable (limit, sortby, ...)
1510 // added action revert, with button at action=diff
1511 // added option regex to WikiAdminSearchReplace
1512 //
1513 // Revision 1.164  2004/06/13 13:54:25  rurban
1514 // Catch fatals on the four dump calls (as file and zip, as html and mimified)
1515 // FoafViewer: Check against external requirements, instead of fatal.
1516 // Change output for xhtmldumps: using file:// urls to the local fs.
1517 // Catch SOAP fatal by checking for GOOGLE_LICENSE_KEY
1518 // Import GOOGLE_LICENSE_KEY and FORTUNE_DIR from config.ini.
1519 //
1520 // Revision 1.163  2004/06/13 11:35:32  rurban
1521 // check for create action on action=edit not to fool PagePerm checks
1522 //
1523 // Revision 1.162  2004/06/08 10:05:11  rurban
1524 // simplified admin action shortcuts
1525 //
1526 // Revision 1.161  2004/06/07 22:58:40  rurban
1527 // simplified chown, setacl, dump actions
1528 //
1529 // Revision 1.160  2004/06/07 22:44:14  rurban
1530 // added simplified chown, setacl actions
1531 //
1532 // Revision 1.159  2004/06/06 16:58:51  rurban
1533 // added more required ActionPages for foreign languages
1534 // install now english ActionPages if no localized are found. (again)
1535 // fixed default anon user level to be 0, instead of -1
1536 //   (wrong "required administrator to view this page"...)
1537 //
1538 // Revision 1.158  2004/06/04 20:32:53  rurban
1539 // Several locale related improvements suggested by Pierrick Meignen
1540 // LDAP fix by John Cole
1541 // reanable admin check without ENABLE_PAGEPERM in the admin plugins
1542 //
1543 // Revision 1.157  2004/06/04 12:40:21  rurban
1544 // Restrict valid usernames to prevent from attacks against external auth or compromise
1545 // possible holes.
1546 // Fix various WikiUser old issues with default IMAP,LDAP,POP3 configs. Removed these.
1547 // Fxied more warnings
1548 //
1549 // Revision 1.156  2004/06/03 17:58:16  rurban
1550 // support immediate LANG and THEME switch inside a session
1551 //
1552 // Revision 1.155  2004/06/03 10:18:19  rurban
1553 // fix FileUser locking issues, new config ENABLE_PAGEPERM
1554 //
1555 // Revision 1.154  2004/06/02 18:01:46  rurban
1556 // init global FileFinder to add proper include paths at startup
1557 //   adds PHPWIKI_DIR if started from another dir, lib/pear also
1558 // fix slashify for Windows
1559 // fix USER_AUTH_POLICY=old, use only USER_AUTH_ORDER methods (besides HttpAuth)
1560 //
1561 // Revision 1.153  2004/06/01 15:28:00  rurban
1562 // AdminUser only ADMIN_USER not member of Administrators
1563 // some RateIt improvements by dfrankow
1564 // edit_toolbar buttons
1565 //
1566 // Revision 1.152  2004/05/27 17:49:06  rurban
1567 // renamed DB_Session to DbSession (in CVS also)
1568 // added WikiDB->getParam and WikiDB->getAuthParam method to get rid of globals
1569 // remove leading slash in error message
1570 // added force_unlock parameter to File_Passwd (no return on stale locks)
1571 // fixed adodb session AffectedRows
1572 // added FileFinder helpers to unify local filenames and DATA_PATH names
1573 // editpage.php: new edit toolbar javascript on ENABLE_EDIT_TOOLBAR
1574 //
1575 // Revision 1.151  2004/05/25 12:40:48  rurban
1576 // trim the pagename
1577 //
1578 // Revision 1.150  2004/05/25 10:18:44  rurban
1579 // Check for UTF-8 URLs; Internet Explorer produces these if you
1580 // type non-ASCII chars in the URL bar or follow unescaped links.
1581 // Fixes sf.net bug #953949
1582 // src: languages/Language.php:checkTitleEncoding() from mediawiki
1583 //
1584 // Revision 1.149  2004/05/18 13:31:19  rurban
1585 // hold warnings until headers are sent. new Error-style with collapsed output of repeated messages
1586 //
1587 // Revision 1.148  2004/05/17 17:43:29  rurban
1588 // CGI: no PATH_INFO fix
1589 //
1590 // Revision 1.147  2004/05/15 19:48:33  rurban
1591 // fix some too loose PagePerms for signed, but not authenticated users
1592 //  (admin, owner, creator)
1593 // no double login page header, better login msg.
1594 // moved action_pdf to lib/pdf.php
1595 //
1596 // Revision 1.146  2004/05/15 18:31:01  rurban
1597 // some action=pdf Request fixes: With MSIE it works now. Now the work with the page formatting begins.
1598 //
1599 // Revision 1.145  2004/05/12 10:49:55  rurban
1600 // require_once fix for those libs which are loaded before FileFinder and
1601 //   its automatic include_path fix, and where require_once doesn't grok
1602 //   dirname(__FILE__) != './lib'
1603 // upgrade fix with PearDB
1604 // navbar.tmpl: remove spaces for IE &nbsp; button alignment
1605 //
1606 // Revision 1.144  2004/05/06 19:26:16  rurban
1607 // improve stability, trying to find the InlineParser endless loop on sf.net
1608 //
1609 // remove end-of-zip comments to fix sf.net bug #777278 and probably #859628
1610 //
1611 // Revision 1.143  2004/05/06 17:30:38  rurban
1612 // CategoryGroup: oops, dos2unix eol
1613 // improved phpwiki_version:
1614 //   pre -= .0001 (1.3.10pre: 1030.099)
1615 //   -p1 += .001 (1.3.9-p1: 1030.091)
1616 // improved InstallTable for mysql and generic SQL versions and all newer tables so far.
1617 // abstracted more ADODB/PearDB methods for action=upgrade stuff:
1618 //   backend->backendType(), backend->database(),
1619 //   backend->listOfFields(),
1620 //   backend->listOfTables(),
1621 //
1622 // Revision 1.142  2004/05/04 22:34:25  rurban
1623 // more pdf support
1624 //
1625 // Revision 1.141  2004/05/03 13:16:47  rurban
1626 // fixed UserPreferences update, esp for boolean and int
1627 //
1628 // Revision 1.140  2004/05/02 21:26:38  rurban
1629 // limit user session data (HomePageHandle and auth_dbi have to invalidated anyway)
1630 //   because they will not survive db sessions, if too large.
1631 // extended action=upgrade
1632 // some WikiTranslation button work
1633 // revert WIKIAUTH_UNOBTAINABLE (need it for main.php)
1634 // some temp. session debug statements
1635 //
1636 // Revision 1.139  2004/05/02 15:10:07  rurban
1637 // new finally reliable way to detect if /index.php is called directly
1638 //   and if to include lib/main.php
1639 // new global AllActionPages
1640 // SetupWiki now loads all mandatory pages: HOME_PAGE, action pages, and warns if not.
1641 // WikiTranslation what=buttons for Carsten to create the missing MacOSX buttons
1642 // PageGroupTestOne => subpages
1643 // renamed PhpWikiRss to PhpWikiRecentChanges
1644 // more docs, default configs, ...
1645 //
1646 // Revision 1.138  2004/05/01 15:59:29  rurban
1647 // more php-4.0.6 compatibility: superglobals
1648 //
1649 // Revision 1.137  2004/04/29 19:39:44  rurban
1650 // special support for formatted plugins (one-liners)
1651 //   like <small><plugin BlaBla ></small>
1652 // iter->asArray() helper for PopularNearby
1653 // db_session for older php's (no &func() allowed)
1654 //
1655 // Revision 1.136  2004/04/29 17:18:19  zorloc
1656 // Fixes permission failure issues.  With PagePermissions and Disabled
1657 // Actions when user did not have permission WIKIAUTH_FORBIDDEN was
1658 // returned.  In WikiUser this was ok because WIKIAUTH_FORBIDDEN had a
1659 // value of 11 -- thus no user could perform that action.  But
1660 // WikiUserNew has a WIKIAUTH_FORBIDDEN value of -1 -- thus a user
1661 // without sufficent permission to do anything.  The solution is a new
1662 // high value permission level (WIKIAUTH_UNOBTAINABLE) to be the
1663 // default level for access failure.
1664 //
1665 // Revision 1.135  2004/04/26 12:15:01  rurban
1666 // check default config values
1667 //
1668 // Revision 1.134  2004/04/23 06:46:37  zorloc
1669 // Leave DB connection open when USE_DB_SESSION is true so that session info can be written to the DB.
1670 //
1671 // Revision 1.133  2004/04/20 18:10:31  rurban
1672 // config refactoring:
1673 //   FileFinder is needed for WikiFarm scripts calling index.php
1674 //   config run-time calls moved to lib/IniConfig.php:fix_configs()
1675 //   added PHPWIKI_DIR smart-detection code (Theme finder)
1676 //   moved FileFind to lib/FileFinder.php
1677 //   cleaned lib/config.php
1678 //
1679 // Revision 1.132  2004/04/19 21:51:41  rurban
1680 // php5 compatibility: it works!
1681 //
1682 // Revision 1.131  2004/04/19 18:27:45  rurban
1683 // Prevent from some PHP5 warnings (ref args, no :: object init)
1684 //   php5 runs now through, just one wrong XmlElement object init missing
1685 // Removed unneccesary UpgradeUser lines
1686 // Changed WikiLink to omit version if current (RecentChanges)
1687 //
1688 // Revision 1.130  2004/04/18 00:25:53  rurban
1689 // allow "0" pagename
1690 //
1691 // Revision 1.129  2004/04/07 23:13:19  rurban
1692 // fixed pear/File_Passwd for Windows
1693 // fixed FilePassUser sessions (filehandle revive) and password update
1694 //
1695 // Revision 1.128  2004/04/02 15:06:55  rurban
1696 // fixed a nasty ADODB_mysql session update bug
1697 // improved UserPreferences layout (tabled hints)
1698 // fixed UserPreferences auth handling
1699 // improved auth stability
1700 // improved old cookie handling: fixed deletion of old cookies with paths
1701 //
1702 // Revision 1.127  2004/03/25 17:00:31  rurban
1703 // more code to convert old-style pref array to new hash
1704 //
1705 // Revision 1.126  2004/03/24 19:39:03  rurban
1706 // php5 workaround code (plus some interim debugging code in XmlElement)
1707 //   php5 doesn't work yet with the current XmlElement class constructors,
1708 //   WikiUserNew does work better than php4.
1709 // rewrote WikiUserNew user upgrading to ease php5 update
1710 // fixed pref handling in WikiUserNew
1711 // added Email Notification
1712 // added simple Email verification
1713 // removed emailVerify userpref subclass: just a email property
1714 // changed pref binary storage layout: numarray => hash of non default values
1715 // print optimize message only if really done.
1716 // forced new cookie policy: delete pref cookies, use only WIKI_ID as plain string.
1717 //   prefs should be stored in db or homepage, besides the current session.
1718 //
1719 // Revision 1.125  2004/03/14 16:30:52  rurban
1720 // db-handle session revivification, dba fixes
1721 //
1722 // Revision 1.124  2004/03/12 15:48:07  rurban
1723 // fixed explodePageList: wrong sortby argument order in UnfoldSubpages
1724 // simplified lib/stdlib.php:explodePageList
1725 //
1726 // Revision 1.123  2004/03/10 15:41:27  rurban
1727 // use default pref mysql table
1728 //
1729 // Revision 1.122  2004/03/08 18:17:09  rurban
1730 // added more WikiGroup::getMembersOf methods, esp. for special groups
1731 // fixed $LDAP_SET_OPTIONS
1732 // fixed _AuthInfo group methods
1733 //
1734 // Revision 1.121  2004/03/01 13:48:45  rurban
1735 // rename fix
1736 // p[] consistency fix
1737 //
1738 // Revision 1.120  2004/03/01 10:22:41  rurban
1739 // initializeTheme optimize
1740 //
1741 // Revision 1.119  2004/02/26 20:45:06  rurban
1742 // check for ALLOW_ANON_USER = false
1743 //
1744 // Revision 1.118  2004/02/26 01:32:03  rurban
1745 // fixed session login with old WikiUser object. 
1746 // strangely, the errormask gets corrupted to 1, Pear???
1747 //
1748 // Revision 1.117  2004/02/24 17:19:37  rurban
1749 // debugging helpers only
1750 //
1751 // Revision 1.116  2004/02/24 15:17:14  rurban
1752 // improved auth errors with individual pages. the fact that you may
1753 // not browse a certain admin page does not conclude that you may not
1754 // browse the whole wiki. renamed browse => view
1755 //
1756 // Revision 1.115  2004/02/15 21:34:37  rurban
1757 // PageList enhanced and improved.
1758 // fixed new WikiAdmin... plugins
1759 // editpage, Theme with exp. htmlarea framework
1760 //   (htmlarea yet committed, this is really questionable)
1761 // WikiUser... code with better session handling for prefs
1762 // enhanced UserPreferences (again)
1763 // RecentChanges for show_deleted: how should pages be deleted then?
1764 //
1765 // Revision 1.114  2004/02/15 17:30:13  rurban
1766 // workaround for lost db connnection handle on session restauration (->_auth_dbi)
1767 // fixed getPreferences() (esp. from sessions)
1768 // fixed setPreferences() (update and set),
1769 // fixed AdoDb DB statements,
1770 // update prefs only at UserPreferences POST (for testing)
1771 // unified db prefs methods (but in external pref classes yet)
1772 //
1773 // Revision 1.113  2004/02/12 13:05:49  rurban
1774 // Rename functional for PearDB backend
1775 // some other minor changes
1776 // SiteMap comes with a not yet functional feature request: includepages (tbd)
1777 //
1778 // Revision 1.112  2004/02/09 03:58:12  rurban
1779 // for now default DB_SESSION to false
1780 // PagePerm:
1781 //   * not existing perms will now query the parent, and not
1782 //     return the default perm
1783 //   * added pagePermissions func which returns the object per page
1784 //   * added getAccessDescription
1785 // WikiUserNew:
1786 //   * added global ->prepare (not yet used) with smart user/pref/member table prefixing.
1787 //   * force init of authdbh in the 2 db classes
1788 // main:
1789 //   * fixed session handling (not triple auth request anymore)
1790 //   * don't store cookie prefs with sessions
1791 // stdlib: global obj2hash helper from _AuthInfo, also needed for PagePerm
1792 //
1793 // Revision 1.111  2004/02/07 10:41:25  rurban
1794 // fixed auth from session (still double code but works)
1795 // fixed GroupDB
1796 // fixed DbPassUser upgrade and policy=old
1797 // added GroupLdap
1798 //
1799 // Revision 1.110  2004/02/03 09:45:39  rurban
1800 // LDAP cleanup, start of new Pref classes
1801 //
1802 // Revision 1.109  2004/01/30 19:57:58  rurban
1803 // fixed DBAuthParams['pref_select']: wrong _auth_dbi object used.
1804 //
1805 // Revision 1.108  2004/01/28 14:34:14  rurban
1806 // session table takes the common prefix
1807 // + various minor stuff
1808 // reallow password changing
1809 //
1810 // Revision 1.107  2004/01/27 23:23:39  rurban
1811 // renamed ->Username => _userid for consistency
1812 // renamed mayCheckPassword => mayCheckPass
1813 // fixed recursion problem in WikiUserNew
1814 // fixed bogo login (but not quite 100% ready yet, password storage)
1815 //
1816 // Revision 1.106  2004/01/26 09:17:49  rurban
1817 // * changed stored pref representation as before.
1818 //   the array of objects is 1) bigger and 2)
1819 //   less portable. If we would import packed pref
1820 //   objects and the object definition was changed, PHP would fail.
1821 //   This doesn't happen with an simple array of non-default values.
1822 // * use $prefs->retrieve and $prefs->store methods, where retrieve
1823 //   understands the interim format of array of objects also.
1824 // * simplified $prefs->get() and fixed $prefs->set()
1825 // * added $user->_userid and class '_WikiUser' portability functions
1826 // * fixed $user object ->_level upgrading, mostly using sessions.
1827 //   this fixes yesterdays problems with loosing authorization level.
1828 // * fixed WikiUserNew::checkPass to return the _level
1829 // * fixed WikiUserNew::isSignedIn
1830 // * added explodePageList to class PageList, support sortby arg
1831 // * fixed UserPreferences for WikiUserNew
1832 // * fixed WikiPlugin for empty defaults array
1833 // * UnfoldSubpages: added pagename arg, renamed pages arg,
1834 //   removed sort arg, support sortby arg
1835 //
1836 // Revision 1.105  2004/01/25 03:57:15  rurban
1837 // WikiUserNew support (temp. ENABLE_USER_NEW constant)
1838 //
1839 // Revision 1.104  2003/12/26 06:41:16  carstenklapp
1840 // Bugfix: Try to defer OS errors about session.save_path and ACCESS_LOG,
1841 // so they don't prevent IE from partially (or not at all) rendering the
1842 // page. This should help a little for the IE user who encounters trouble
1843 // when setting up a new PhpWiki for the first time.
1844 //
1845 // Revision 1.103  2003/12/02 00:10:00  carstenklapp
1846 // Bugfix: Ongoing work to untangle UserPreferences/WikiUser/request code
1847 // mess: UserPreferences should take effect immediately now upon signing
1848 // in.
1849 //
1850 // Revision 1.102  2003/11/25 22:55:32  carstenklapp
1851 // Localization bugfix: For wikis where English is not the default system
1852 // language, make sure that the authority error message (i.e. "You must
1853 // sign in to edit pages in this wiki" etc.) is displayed in the wiki's
1854 // default language. Previously it would always display in English.
1855 // (Added call to update_locale() before displaying any messages prior to
1856 // the login prompt.)
1857 //
1858 // Revision 1.101  2003/11/25 21:49:44  carstenklapp
1859 // Bugfix: For a non-english wiki or when the user's preference is not
1860 // english, the wiki would always use the english ActionPage first if it
1861 // was present rather than the appropriate localised variant. (PhpWikis
1862 // running only in english or Wikis running ONLY without any english
1863 // ActionPages would not notice this bug, only when both english and
1864 // localised ActionPages were in the DB.) Now we check for the localised
1865 // variant first.
1866 //
1867 // Revision 1.100  2003/11/18 16:54:18  carstenklapp
1868 // Reformatting only: Tabs to spaces, added rcs log.
1869 //
1870
1871
1872 // Local Variables:
1873 // mode: php
1874 // tab-width: 8
1875 // c-basic-offset: 4
1876 // c-hanging-comment-ender-p: nil
1877 // indent-tabs-mode: nil
1878 // End:
1879 ?>