]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/IniConfig.php
rename USE_SEARCHHIGHLIGHT to ENABLE_SEARCHHIGHLIGHT
[SourceForge/phpwiki.git] / lib / IniConfig.php
1 <?php
2 rcs_id('$Id: IniConfig.php,v 1.111 2007-01-20 15:54:04 rurban Exp $');
3 /**
4  * A configurator intended to read its config from a PHP-style INI file,
5  * instead of a PHP file.
6  *
7  * Pass a filename to the IniConfig() function and it will read all it's
8  * definitions from there, all by itself, and proceed to do a mass-define
9  * of all valid PHPWiki config items.  In this way, we can hopefully be
10  * totally backwards-compatible with the old index.php method, while still
11  * providing a much tastier on-going experience.
12  *
13  * @author: Joby Walker, Reini Urban, Matthew Palmer
14  */
15 /*
16  * Copyright 2004,2005,2006,2007 $ThePhpWikiProgrammingTeam
17  *
18  * This file is part of PhpWiki.
19  *
20  * PhpWiki is free software; you can redistribute it and/or modify
21  * it under the terms of the GNU General Public License as published by
22  * the Free Software Foundation; either version 2 of the License, or
23  * (at your option) any later version.
24  * 
25  * PhpWiki is distributed in the hope that it will be useful,
26  * but WITHOUT ANY WARRANTY; without even the implied warranty of
27  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
28  * GNU General Public License for more details.
29  * 
30  * You should have received a copy of the GNU General Public License
31  * along with PhpWiki; if not, write to the Free Software
32  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
33  */
34
35 /**
36  * DONE:
37  * - Convert the value lists to provide defaults, so that every "if
38  *      (defined())" and "if (!defined())" can fuck off to the dismal hole
39  *      it belongs in.
40  * - config.ini => config.php dumper for faster startup. (really faster? to time)
41  *
42  * TODO:
43  * - Old-style index.php => config/config.ini converter.
44  *
45  * - Don't use too much globals for easier integration into other projects
46  *   (namespace pollution). (gforge, phpnuke, postnuke, phpBB2, carolina, ...)
47  *   Use one global $phpwiki object instead which holds the cfg vars, constants 
48  *   and all other globals.
49  *     (global $FieldSeparator, $charset, $WikiNameRegexp, $KeywordLinkRegexp;
50  *      global $DisabledActions, $DBParams, $LANG, $AllActionPages)
51  *
52  * - Resurrect the larger "config object" code (in config/) so it'll aid the
53  *   GUI config writers, and allow us to do proper validation and default
54  *   value handling.
55  *
56  * - Get rid of WikiNameRegexp and KeywordLinkRegexp as globals by finding
57  *   everywhere that uses them as variables and modify the code to use
58  *   them as constants. Will involve hacking around
59  *   pcre_fix_posix_classes (probably with redefines()).
60  */
61
62 include_once (dirname(__FILE__)."/config.php");
63 include_once (dirname(__FILE__)."/FileFinder.php");
64
65 /**
66  * Speed-up iniconfig loading.
67  *
68  * Dump the static parts of the parsed config/config.ini settings to a fast-loadable config.php file.
69  * The dynamic parts are then evaluated as before.
70  * Requires write-permissions to config/config.php
71  */
72 function save_dump($file) {
73     $vars =& $GLOBALS; // copy + unset not possible
74     $ignore = array();
75     foreach (array("SERVER","ENV","GET","POST","REQUEST","COOKIE","FILES") as $key) {
76         $ignore["HTTP_".$key."_VARS"]++;
77         $ignore["_".$key]++;
78     }
79     foreach (array("HTTP_POST_FILES","GLOBALS","RUNTIMER","ErrorManager",'RCS_IDS','LANG',
80                    'HOME_PAGE','request','SCRIPT_NAME','VIRTUAL_PATH','SCRIPT_FILENAME') as $key)
81         $ignore[$key]++;
82     $fp = fopen($file, "wb");
83     fwrite($fp,"<?php\n");
84     fwrite($fp,"function wiki_configrestore(){\n");
85     //TODO: optimize this by removing ignore, big serialized array and merge into existing GLOBALS
86     foreach ($vars as $var => $val) {
87         if (!$ignore[$var])
88             fwrite($fp, "\$GLOBALS['".$var."']=unserialize(\""
89                             .addslashes(serialize($val))."\");\n");
90     }
91     // cannot be optimized, maybe leave away predefined consts somehow
92     foreach (get_defined_constants() as $var => $val) {
93         if (substr($var,0,4) != "PHP_" and substr($var,0,2) != "E_" 
94             and substr($var,0,2) != "T_"  and substr($var,0,2) != "M_")
95             fwrite($fp, "if(!defined('".$var."')) define('".$var."',unserialize(\""
96                         .addslashes(serialize($val))."\"));\n");
97     }
98     fwrite($fp, "return 'noerr';}");
99     fwrite($fp,"?>");
100     fclose($fp);
101 }
102
103 function _check_int_constant(&$c) {
104   // if int value == string value, force int type
105   if (sprintf("%d",(int)$c) === $c) { // DEBUG & _DEBUG_bla
106     $c = (int)$c;
107   }
108 }
109
110 function IniConfig($file) {
111
112     // check config/config.php dump for faster startup
113     $dump = substr($file, 0, -3)."php";
114     if (isWindows($dump)) $dump = str_replace("/","\\",$dump);
115     if (file_exists($dump) and is_readable($dump) and sort_file_mtime($dump, $file) < 0) {
116         @include($dump);
117         if (function_exists('wiki_configrestore') and (wiki_configrestore() === 'noerr')) {
118             fixup_dynamic_configs();
119             return;
120         }
121     }
122
123     // First-time installer detection here...
124     // Similar to SetupWiki()
125     if (!file_exists($file)) {
126         // We need to DATA_PATH for configurator, or pass the posted values 
127         // somewhow to the script
128         include_once(dirname(__FILE__)."/install.php");
129         run_install("_part1");
130         if (!defined("_PHPWIKI_INSTALL_RUNNING"))
131             trigger_error("Datasource file '$file' does not exist", E_USER_ERROR);
132         exit();
133     }
134
135     // List of all valid config options to be define()d which take "values" (not
136     // booleans). Needs to be categorised, and generally made a lot tidier. 
137     $_IC_VALID_VALUE = array
138         ('WIKI_NAME', 'ADMIN_USER', 'ADMIN_PASSWD',
139          'DEFAULT_DUMP_DIR', 'HTML_DUMP_DIR',
140          'HTML_DUMP_SUFFIX', 'MAX_UPLOAD_SIZE', 'MINOR_EDIT_TIMEOUT',
141          'ACCESS_LOG', 'CACHE_CONTROL', 'CACHE_CONTROL_MAX_AGE',
142          'COOKIE_EXPIRATION_DAYS', 'COOKIE_DOMAIN',
143          'PASSWORD_LENGTH_MINIMUM', 'USER_AUTH_POLICY', 
144          'GROUP_METHOD',
145          'EDITING_POLICY', 'THEME', 'CHARSET',
146          'WIKI_PGSRC', 'DEFAULT_WIKI_PGSRC',
147          'ALLOWED_PROTOCOLS', 'INLINE_IMAGES', 'SUBPAGE_SEPARATOR', /*'KEYWORDS',*/
148          // extra logic:
149          //'DATABASE_PREFIX', 'DATABASE_DSN', 'DATABASE_TYPE', 'DATABASE_DBHANDLER',
150          'DATABASE_OPTIMISE_FREQUENCY',
151          'INTERWIKI_MAP_FILE', 'COPYRIGHTPAGE_TITLE', 'COPYRIGHTPAGE_URL',
152          'AUTHORPAGE_TITLE', 'AUTHORPAGE_URL', 
153          'WIKI_NAME_REGEXP',
154          'PLUGIN_CACHED_DATABASE', 'PLUGIN_CACHED_FILENAME_PREFIX',
155          'PLUGIN_CACHED_HIGHWATER', 'PLUGIN_CACHED_LOWWATER', 'PLUGIN_CACHED_MAXLIFETIME',
156          'PLUGIN_CACHED_MAXARGLEN', 'PLUGIN_CACHED_IMGTYPES',
157          'WYSIWYG_BACKEND', 'PLUGIN_MARKUP_MAP',
158          // extra logic:
159          'SERVER_NAME','SERVER_PORT','SCRIPT_NAME', 'DATA_PATH', 'PHPWIKI_DIR', 'VIRTUAL_PATH',
160          'EXTERNAL_HTML2PDF_PAGELIST', 'PLUGIN_CACHED_CACHE_DIR'
161          );
162
163     // Optional values which need to be defined.
164     // These are not defined in config-default.ini and empty if not defined.
165     $_IC_OPTIONAL_VALUE = array
166         ( 
167          'DEBUG', 'TEMP_DIR', 'DEFAULT_LANGUAGE', 
168          'LDAP_AUTH_HOST','LDAP_SET_OPTION','LDAP_BASE_DN', 'LDAP_AUTH_USER',
169          'LDAP_AUTH_PASSWORD','LDAP_SEARCH_FIELD','LDAP_OU_GROUP','LDAP_OU_USERS',
170          'AUTH_USER_FILE','DBAUTH_AUTH_DSN',
171          'IMAP_AUTH_HOST', 'POP3_AUTH_HOST',
172          'AUTH_USER_FILE', 'AUTH_GROUP_FILE', 'AUTH_SESS_USER', 'AUTH_SESS_LEVEL',
173          'GOOGLE_LICENSE_KEY','FORTUNE_DIR',
174          'DISABLE_GETIMAGESIZE','DBADMIN_USER','DBADMIN_PASSWD',
175          'SESSION_SAVE_PATH', 'TOOLBAR_PAGELINK_PULLDOWN', 'TOOLBAR_TEMPLATE_PULLDOWN',
176          'EXTERNAL_LINK_TARGET', 'ACCESS_LOG_SQL', 'USE_EXTERNAL_HTML2PDF'
177          );
178
179     // List of all valid config options to be define()d which take booleans.
180     $_IC_VALID_BOOL = array
181         ('ENABLE_USER_NEW', 'ENABLE_PAGEPERM', 'ENABLE_EDIT_TOOLBAR', 'JS_SEARCHREPLACE',
182          'ENABLE_XHTML_XML', 'ENABLE_DOUBLECLICKEDIT', 'ENABLE_LIVESEARCH',
183          'USECACHE', 'WIKIDB_NOCACHE_MARKUP',
184          'ENABLE_REVERSE_DNS', 'ENCRYPTED_PASSWD', 'ZIPDUMP_AUTH', 
185          'ENABLE_RAW_HTML', 'ENABLE_RAW_HTML_LOCKEDONLY', 'ENABLE_RAW_HTML_SAFE', 
186          'STRICT_MAILABLE_PAGEDUMPS', 'COMPRESS_OUTPUT',
187          'ALLOW_ANON_USER', 'ALLOW_ANON_EDIT',
188          'ALLOW_BOGO_LOGIN', 'ALLOW_USER_PASSWORDS',
189          'AUTH_USER_FILE_STORABLE', 'ALLOW_HTTP_AUTH_LOGIN',
190          'ALLOW_USER_LOGIN', 'ALLOW_LDAP_LOGIN', 'ALLOW_IMAP_LOGIN',
191          'WARN_NONPUBLIC_INTERWIKIMAP', 'USE_PATH_INFO',
192          'DISABLE_HTTP_REDIRECT',
193          'PLUGIN_CACHED_USECACHE', 'PLUGIN_CACHED_FORCE_SYNCMAP',
194          'BLOG_DEFAULT_EMPTY_PREFIX', 'DATABASE_PERSISTENT',
195          'ENABLE_DISCUSSION_LINK', 'ENABLE_CAPTCHA',
196          'ENABLE_WYSIWYG', 'WYSIWYG_DEFAULT_PAGETYPE_HTML',
197          'DISABLE_MARKUP_WIKIWORD', 'ENABLE_MARKUP_COLOR', 'ENABLE_MARKUP_TEMPLATE',
198          'ENABLE_MARKUP_DIVSPAN', 'USE_BYTEA', 'UPLOAD_USERDIR', 'DISABLE_UNITS',
199          'ENABLE_SEARCHHIGHLIGHT'
200          );
201
202     $rs = @parse_ini_file($file);
203     $rsdef = @parse_ini_file(dirname(__FILE__)."/../config/config-default.ini");
204     foreach ($rsdef as $k => $v) {
205         if (defined($k)) {
206             $rs[$k] = constant($k);
207         } elseif (!isset($rs[$k])) {
208             $rs[$k] = $v;
209         }
210     }
211     unset($k); unset($v); 
212     
213     foreach ($_IC_VALID_VALUE as $item) {
214         if (defined($item)) {
215             unset($rs[$item]);
216             continue;
217         }
218         if (array_key_exists($item, $rs)) {
219             _check_int_constant($rs[$item]);
220             define($item, $rs[$item]);
221             unset($rs[$item]);
222         //} elseif (array_key_exists($item, $rsdef)) {
223         //    define($item, $rsdef[$item]);
224         // calculate them later or not at all:
225         } elseif (in_array($item,
226                            array('DATABASE_PREFIX', 'SERVER_NAME', 'SERVER_PORT',
227                                  'SCRIPT_NAME', 'DATA_PATH', 'PHPWIKI_DIR', 'VIRTUAL_PATH',
228                                  'LDAP_AUTH_HOST','IMAP_AUTH_HOST','POP3_AUTH_HOST',
229                                  'PLUGIN_CACHED_CACHE_DIR','EXTERNAL_HTML2PDF_PAGELIST'))) 
230         {
231             ;
232         } elseif (!defined("_PHPWIKI_INSTALL_RUNNING")) {
233             trigger_error(sprintf("missing config setting for %s",$item));
234         }
235     }
236     unset($item);
237
238     // Boolean options are slightly special - if they're set to any of
239     // '', 'false', '0', or 'no' (all case-insensitive) then the value will
240     // be a boolean false, otherwise if there is anything set it'll
241     // be true.
242     foreach ($_IC_VALID_BOOL as $item) {
243         if (defined($item)) {
244             unset($rs[$item]);
245             continue;
246         }
247         if (array_key_exists($item, $rs)) {
248             $val = $rs[$item];
249         //} elseif (array_key_exists($item, $rsdef)) {
250         //    $val = $rsdef[$item];
251         } else {
252             $val = false; 
253             //trigger_error(sprintf("missing boolean config setting for %s",$item));
254         }
255         
256         // calculate them later: old or dynamic constants
257         if (!array_key_exists($item, $rs) and
258             in_array($item, array('USE_PATH_INFO', 'USE_DB_SESSION',
259                                   'ALLOW_HTTP_AUTH_LOGIN', 'ALLOW_LDAP_LOGIN',
260                                   'ALLOW_IMAP_LOGIN', 'ALLOW_USER_LOGIN',
261                                   'REQUIRE_SIGNIN_BEFORE_EDIT',
262                                   'WIKIDB_NOCACHE_MARKUP',
263                                   'COMPRESS_OUTPUT', 'USE_BYTEA'
264                                   )))
265         {
266             ;
267         }
268         elseif (!$val) {
269             define($item, false);
270         }
271         elseif (strtolower($val) == 'false' ||
272                 strtolower($val) == 'no' ||
273                 $val == '' ||
274                 $val == false ||
275                 $val == '0') {
276             define($item, false);
277         }
278         else {
279             define($item, true);
280         }
281         unset($rs[$item]);
282     }
283     unset($item);
284
285     // Database
286     global $DBParams;
287     foreach (array('DATABASE_TYPE'      => 'dbtype',
288                    'DATABASE_DSN'       => 'dsn',
289                    'DATABASE_SESSION_TABLE' => 'db_session_table',
290                    'DATABASE_DBA_HANDLER'   => 'dba_handler',
291                    'DATABASE_DIRECTORY' => 'directory',
292                    'DATABASE_TIMEOUT'   => 'timeout',
293                    'DATABASE_PREFIX'    => 'prefix')
294              as $item => $k)
295     {
296         if (defined($item)) {
297             $DBParams[$k] = constant($item);
298             unset($rs[$item]);
299         } elseif (array_key_exists($item, $rs)) {
300             $DBParams[$k] = $rs[$item];
301             define($item, $rs[$item]);
302             unset($rs[$item]);
303         } elseif (array_key_exists($item, $rsdef)) {
304             $DBParams[$k] = $rsdef[$item];
305             define($item, $rsdef[$item]);
306             unset($rsdef[$item]);
307         }
308     }
309     $valid_database_types = array('SQL','ADODB','PDO','dba','file','flatfile','cvs','cvsclient');
310     if (!in_array(DATABASE_TYPE, $valid_database_types))
311         trigger_error(sprintf("Invalid DATABASE_TYPE=%s. Choose one of %s", 
312                               DATABASE_TYPE, join(",", $valid_database_types)), 
313                       E_USER_ERROR);
314     unset($valid_database_types);                  
315     if (DATABASE_TYPE == 'PDO') {
316         if (!check_php_version(5))
317             trigger_error("Invalid DATABASE_TYPE=PDO. PDO requires at least php-5.0!", 
318                           E_USER_ERROR);
319         // try to load it dynamically (unix only)
320         if (!loadPhpExtension("pdo")) {
321             echo $GLOBALS['php_errormsg'], "<br>\n";
322             trigger_error(sprintf("dl() problem: Required extension '%s' could not be loaded!",
323                                   "pdo"),
324                           E_USER_ERROR);
325         }
326     }
327         
328     // USE_DB_SESSION default logic:
329     if (!defined('USE_DB_SESSION')) {
330         if ($DBParams['db_session_table']
331             and in_array($DBParams['dbtype'], array('SQL','ADODB','PDO'))) {
332             define('USE_DB_SESSION', true);
333         } elseif ($DBParams['dbtype'] == 'dba' and check_php_version(4,1,2)) {
334             define('USE_DB_SESSION', true); // Depends on db handler as well. 
335                                             // BerkeleyDB on older php has problems 
336                                             // with multiple db handles.
337         } else {
338             define('USE_DB_SESSION', false);
339         }
340     }
341     unset($item); unset($k); 
342
343     // Expiry stuff
344     global $ExpireParams;
345     foreach (array('major','minor','author') as $major) {
346         foreach (array('max_age','min_age','min_keep','keep','max_keep') as $max) {
347             $item = strtoupper($major) . '_'. strtoupper($max);
348             if (defined($item)) $val = constant($item);
349             elseif (array_key_exists($item, $rs))
350                 $val = $rs[$item];
351             elseif (array_key_exists($item, $rsdef))
352                 $val = $rsdef[$item];
353             if (!isset($ExpireParams[$major]))
354                 $ExpireParams[$major] = array();
355             $ExpireParams[$major][$max] = $val;
356             unset($rs[$item]);
357         }
358     }
359     unset($item); unset($major); unset($max); 
360     
361     // User authentication
362     if (!isset($GLOBALS['USER_AUTH_ORDER'])) {
363         if (isset($rs['USER_AUTH_ORDER']))
364             $GLOBALS['USER_AUTH_ORDER'] = preg_split('/\s*:\s*/', 
365                                                      $rs['USER_AUTH_ORDER']);
366         else 
367             $GLOBALS['USER_AUTH_ORDER'] = array("PersonalPage");
368     }
369
370     // Now it's the external DB authentication stuff's turn
371     if (in_array('Db', $GLOBALS['USER_AUTH_ORDER']) && empty($rs['DBAUTH_AUTH_DSN'])) {
372         $rs['DBAUTH_AUTH_DSN'] = $DBParams['dsn'];
373     }
374     
375     global $DBAuthParams;
376     $DBAP_MAP = array('DBAUTH_AUTH_DSN' => 'auth_dsn',
377                       'DBAUTH_AUTH_CHECK' => 'auth_check',
378                       'DBAUTH_AUTH_USER_EXISTS' => 'auth_user_exists',
379                       'DBAUTH_AUTH_CRYPT_METHOD' => 'auth_crypt_method',
380                       'DBAUTH_AUTH_UPDATE' => 'auth_update',
381                       'DBAUTH_AUTH_CREATE' => 'auth_create',
382                       'DBAUTH_PREF_SELECT' => 'pref_select',
383                       'DBAUTH_PREF_INSERT' => 'pref_insert',
384                       'DBAUTH_PREF_UPDATE' => 'pref_update',
385                       'DBAUTH_IS_MEMBER' => 'is_member',
386                       'DBAUTH_GROUP_MEMBERS' => 'group_members',
387                       'DBAUTH_USER_GROUPS' => 'user_groups'
388                       );
389     foreach ($DBAP_MAP as $rskey => $apkey) {
390         if (defined($rskey)) {
391             $DBAuthParams[$apkey] = constant($rskey);
392         } elseif (isset($rs[$rskey])) {
393             $DBAuthParams[$apkey] = $rs[$rskey];
394             define($rskey, $rs[$rskey]);
395         } elseif (isset($rsdef[$rskey])) {
396             $DBAuthParams[$apkey] = $rsdef[$rskey];
397             define($rskey, $rsdef[$rskey]);
398         }
399         unset($rs[$rskey]);
400     }
401     unset($rskey); unset($apkey);
402
403     // TODO: Currently unsupported on non-SQL. Nice to have for RhNavPlugin
404     // CHECKME: PDO
405     if (array_key_exists('ACCESS_LOG_SQL', $rs)) {
406         // WikiDB_backend::isSql() not yet loaded
407         if (!in_array(DATABASE_TYPE, array('SQL','ADODB','PDO')))
408             // override false config setting on no SQL WikiDB database.
409             define('ACCESS_LOG_SQL', 0);
410     }
411     // SQL defaults to ACCESS_LOG_SQL = 2
412     else {
413         define('ACCESS_LOG_SQL', 
414                in_array(DATABASE_TYPE, array('SQL','ADODB','PDO')) ? 2 : 0);
415     }
416
417     global $PLUGIN_MARKUP_MAP;
418     $PLUGIN_MARKUP_MAP = array();
419     if (defined('PLUGIN_MARKUP_MAP') and trim(PLUGIN_MARKUP_MAP) != "") {
420         $_map = preg_split('/\s+/', PLUGIN_MARKUP_MAP);
421         foreach ($_map as $v) {
422             list($xml,$plugin) = split(':', $v);
423             if (!empty($xml) and !empty($plugin))
424                 $PLUGIN_MARKUP_MAP[$xml] = $plugin;
425         }
426         unset($_map); unset($xml); unset($plugin); unset($v);
427     }
428
429     // optional values will be set to '' to simplify the logic.
430     foreach ($_IC_OPTIONAL_VALUE as $item) {
431         if (defined($item)) {
432             unset($rs[$item]);
433             continue;
434         }
435         if (array_key_exists($item, $rs)) {
436             _check_int_constant($rs[$item]);
437             define($item, $rs[$item]);
438             unset($rs[$item]);
439         } else 
440             define($item, '');
441     }
442
443     if (USE_EXTERNAL_HTML2PDF) {
444         $item = 'EXTERNAL_HTML2PDF_PAGELIST';
445         if (defined($item)) {
446             unset($rs[$item]);
447         } elseif (array_key_exists($item, $rs)) {
448             define($item, $rs[$item]);
449             unset($rs[$item]);
450         } elseif (array_key_exists($item, $rsdef)) {
451             define($item, $rsdef[$item]);
452         }
453     }
454     unset($item); 
455         
456     // LDAP bind options
457     global $LDAP_SET_OPTION;
458     if (defined('LDAP_SET_OPTION') and LDAP_SET_OPTION) {
459         $optlist = preg_split('/\s*:\s*/', LDAP_SET_OPTION);
460         foreach ($optlist as $opt) {
461             $bits = preg_split('/\s*=\s*/', $opt, 2);
462             if (count($bits) == 2) {
463                 if (is_string($bits[0]) and defined($bits[0]))
464                     $bits[0] = constant($bits[0]);
465                 $LDAP_SET_OPTION[$bits[0]] = $bits[1];
466             }
467             else {
468                 // Possibly throw some sort of error?
469             }
470         }
471         unset($opt); unset($bits);
472     }
473
474     // Default Wiki pages to force loading from pgsrc
475     global $GenericPages;
476     $GenericPages = preg_split('/\s*:\s*/', @$rs['DEFAULT_WIKI_PAGES']);
477
478     // Wiki name regexp:  Should be a define(), but might needed to be changed at runtime
479     // (different LC_CHAR need different posix classes)
480     global $WikiNameRegexp;
481     $WikiNameRegexp = constant('WIKI_NAME_REGEXP');
482     if (!trim($WikiNameRegexp))
483        $WikiNameRegexp = '(?<![[:alnum:]])(?:[[:upper:]][[:lower:]]+){2,}(?![[:alnum:]])';
484
485     // Got rid of global $KeywordLinkRegexp by using a TextSearchQuery instead 
486     // of "Category:Topic"
487     if (!isset($rs['KEYWORDS'])) $rs['KEYWORDS'] = @$rsdef['KEYWORDS'];
488     if (!isset($rs['KEYWORDS'])) $rs['KEYWORDS'] = "Category* OR Topic*";
489     if ($rs['KEYWORDS'] == 'Category:Topic') $rs['KEYWORDS'] = "Category* OR Topic*";
490     if (!defined('KEYWORDS')) define('KEYWORDS', $rs['KEYWORDS']);
491     //if (empty($keywords)) $keywords = array("Category","Topic");
492     //$KeywordLinkRegexp = '(?<=' . implode('|^', $keywords) . ')[[:upper:]].*$';
493
494     // TODO: can this be a constant?
495     global $DisabledActions;
496     if (!array_key_exists('DISABLED_ACTIONS', $rs) 
497         and array_key_exists('DISABLED_ACTIONS', $rsdef))
498         $rs['DISABLED_ACTIONS'] = @$rsdef['DISABLED_ACTIONS'];
499     if (array_key_exists('DISABLED_ACTIONS', $rs))
500         $DisabledActions = preg_split('/\s*:\s*/', $rs['DISABLED_ACTIONS']);
501
502     global $PLUGIN_CACHED_IMGTYPES;
503     $PLUGIN_CACHED_IMGTYPES = preg_split('/\s*[|:]\s*/', PLUGIN_CACHED_IMGTYPES);
504
505     if (empty($rs['PLUGIN_CACHED_CACHE_DIR']) and !empty($rsdef['PLUGIN_CACHED_CACHE_DIR']))
506         $rs['PLUGIN_CACHED_CACHE_DIR'] = $rsdef['PLUGIN_CACHED_CACHE_DIR'];
507     if (empty($rs['PLUGIN_CACHED_CACHE_DIR'])) {
508         if (!empty($rs['INCLUDE_PATH'])) {
509             @ini_set('include_path', $rs['INCLUDE_PATH']);
510         }
511         if (empty($rs['TEMP_DIR'])) {
512             $rs['TEMP_DIR'] = "/tmp";
513             if (getenv("TEMP"))
514                 $rs['TEMP_DIR'] = getenv("TEMP");
515         }
516         $rs['PLUGIN_CACHED_CACHE_DIR'] = $rs['TEMP_DIR'] . '/cache';
517         if (!FindFile($rs['PLUGIN_CACHED_CACHE_DIR'], 1)) { // [29ms]
518             FindFile($rs['TEMP_DIR'], false, 1);            // TEMP must exist!
519             mkdir($rs['PLUGIN_CACHED_CACHE_DIR'], 777);
520         }
521         // will throw an error if not exists.
522         define('PLUGIN_CACHED_CACHE_DIR', FindFile($rs['PLUGIN_CACHED_CACHE_DIR'],false,1)); 
523     } else {
524         define('PLUGIN_CACHED_CACHE_DIR', $rs['PLUGIN_CACHED_CACHE_DIR']);
525         // will throw an error if not exists.
526         FindFile(PLUGIN_CACHED_CACHE_DIR);
527     }
528
529     // process the rest of the config.ini settings:
530     foreach ($rs as $item => $v) {
531         if (defined($item)) {
532             continue;
533         } else {
534             _check_int_constant($v);
535             define($item, $v);
536         }
537     }
538     unset($item); unset($v); 
539
540     unset($rs); 
541     unset($rsdef);
542     
543     fixup_static_configs($file); //[1ms]
544     // Dump all globals and constants
545     // The question is if reading this is faster then doing IniConfig() + fixup_static_configs()
546     if (is_writable($dump)) {
547         save_dump($dump);
548     }
549     // store locale[] in config.php? This is too problematic.
550     fixup_dynamic_configs($file); // [100ms]
551 }
552
553 function _ignore_unknown_charset_warning(&$error) {
554     //htmlspecialchars(): charset `iso-8859-2' not supported, assuming iso-8859-1
555     if (preg_match('/^htmlspecialchars\(\): charset \`.+\' not supported, assuming iso-8859-1/',
556                    $error->errstr)) {
557         $error->errno = 0;
558         return true;  // Ignore error
559     }
560     return false;
561 }
562
563 // moved from lib/config.php [1ms]
564 function fixup_static_configs($file) {
565     global $FieldSeparator, $charset, $WikiNameRegexp, $AllActionPages;
566     global $HTTP_SERVER_VARS, $DBParams, $LANG, $ErrorManager;
567     // init FileFinder to add proper include paths
568     FindFile("lib/interwiki.map",true);
569     
570     // "\x80"-"\x9f" (and "\x00" - "\x1f") are non-printing control
571     // chars in iso-8859-*
572     // $FieldSeparator = "\263"; // this is a superscript 3 in ISO-8859-1.
573     // $FieldSeparator = "\xFF"; // this byte should never appear in utf-8
574     // Get rid of constant. pref is dynamic and language specific
575     $charset = CHARSET;
576     // Disabled: Let the admin decide which charset.
577     //if (isset($LANG) and in_array($LANG,array('zh')))
578     //    $charset = 'utf-8';
579     if (strtolower($charset) == 'utf-8')
580         $FieldSeparator = "\xFF";
581     else
582         $FieldSeparator = "\x81";
583
584     // Some exotic charsets are not supported by htmlspecialchars, which just prints an E_WARNING.
585     // Even on simple 8bit charsets, where just <>& need to be replaced. For iso-8859-[2-4] e.g.
586     // See <php-src>/ext/standard/html.c
587     // For performance reasons we require a magic constant to ignore this warning.
588     if (defined('IGNORE_CHARSET_NOT_SUPPORTED_WARNING') and IGNORE_CHARSET_NOT_SUPPORTED_WARNING) {
589         $ErrorManager->pushErrorHandler(new WikiFunctionCb('_ignore_unknown_charset_warning'));
590     }
591     // Used by SetupWiki to pull in required pages, if not translated, then in english.
592     // Also used by _WikiTranslation. Really important are only those which return pagelists 
593     // or contain basic functionality.
594     /*
595       All pages containing plugins of the same name as the filename:
596       cd pgsrc
597       grep -l '\?plugin ' *| perl -ne'$/=0;chop; s/%([\da-fA-F]{2})/pack("C",hex($1))/ge; next LINE if m{^(Help/|Template|Pgsrc)}; print "$_\n"; {local $/;open F,"<$_"; $f=join("",<F>);} push @a,$_ if $f=~/plugin $_/; END{print join(":",@a)};'
598      */
599     $AllActionPages = explode(':',
600                               'AllPages:AllUsers:AppendText:AuthorHistory:BackLinks:CreatePage:EditMetaData:FindPage:FullTextSearch:'
601                               .'FuzzyPages:InterWikiSearch:LikePages:LinkDatabase:LinkSearch:ListRelations:ModeratedPage:'
602                               .'MostPopular:OrphanedPages:PageDump:PageHistory:PageInfo:PasswordReset:PluginManager:RandomPage:'
603                               .'RateIt:RecentChanges:RecentComments:RelatedChanges:SearchHighlight:SemanticRelations:SemanticSearch:'
604                               .'TitleSearch:TranslateText:UpLoad:UserPreferences:WantedPages:WatchPage:WhoIsOnline:WikiAdminSelect'
605                               // plus some derivations
606                               .':DebugInfo:LeastPopular:RecentEdits:AllPagesCreatedByMe:AllPagesLastEditedByMe:AllPagesOwnedByMe:'
607                               .'PhpWikiAdministration/Remove:PhpWikiAdministration/Chmod:'
608                               .'PhpWikiAdministration/Rename:PhpWikiAdministration/Replace:'
609                               .'PhpWikiAdministration/SetAcl:PhpWikiAdministration/Chown');
610     // If user has not defined PHPWIKI_DIR, and we need it
611     if (!defined('PHPWIKI_DIR') and !file_exists("themes/default")) {
612         $themes_dir = FindFile("themes");
613         define('PHPWIKI_DIR', dirname($themes_dir));
614     }
615         
616     // If user has not defined DATA_PATH, we want to use relative URLs.
617     if (!defined('DATA_PATH')) {
618         // fix similar to the one suggested by jkalmbach for 
619         // installations in the webrootdir, like "http://phpwiki.org/HomePage"
620         if (!defined('SCRIPT_NAME'))
621             define('SCRIPT_NAME', deduce_script_name());
622         $temp = dirname(SCRIPT_NAME);
623         if ( ($temp == '/') || ($temp == '\\') )
624             $temp = '';
625         define('DATA_PATH', $temp);
626         /*
627         if (USE_PATH_INFO)
628             define('DATA_PATH', '..');
629         */
630     }
631
632     //////////////////////////////////////////////////////////////////
633     // Select database
634     //
635     if (empty($DBParams['dbtype']))
636         $DBParams['dbtype'] = 'dba';
637
638     if (!defined('THEME'))
639         define('THEME', 'default');
640         
641     /*$configurator_link = HTML(HTML::br(), "=>", 
642                               HTML::a(array('href'=>DATA_PATH."/configurator.php"),
643                                                                   _("Configurator")));*/
644     // check whether the crypt() function is needed and present
645     if (defined('ENCRYPTED_PASSWD') && !function_exists('crypt')) {
646         $error = sprintf("Encrypted passwords cannot be used: %s.",
647                          "'function crypt()' not available in this version of php");
648         trigger_error($error, E_USER_WARNING);
649         if (!preg_match("/config\-dist\.ini$/", $file)) { // protect against recursion
650             include_once(dirname(__FILE__)."/install.php");
651             run_install("_part1");
652             exit();
653         }
654     }
655
656     // Basic configurator validation
657     if (!defined('ADMIN_USER') or ADMIN_USER == '') {
658         $error = sprintf("%s may not be empty. Please update your configuration.", 
659                          "ADMIN_USER");
660         // protect against recursion
661         if (!preg_match("/config\-(dist|default)\.ini$/", $file)
662             and !defined("_PHPWIKI_INSTALL_RUNNING"))
663         {
664             include_once(dirname(__FILE__)."/install.php");
665             run_install("_part1");
666             trigger_error($error, E_USER_ERROR);
667             exit();
668         } elseif ($HTTP_SERVER_VARS["REQUEST_METHOD"] == "POST") {
669             $GLOBALS['HTTP_GET_VARS']['show'] = '_part1';
670             trigger_error($error, E_USER_WARNING);
671         }
672     }
673     if (!defined('ADMIN_PASSWD') or ADMIN_PASSWD == '') {
674         $error = sprintf("%s may not be empty. Please update your configuration.", 
675                          "ADMIN_PASSWD");
676         // protect against recursion
677         if (!preg_match("/config\-(dist|default)\.ini$/", $file)
678            and !defined("_PHPWIKI_INSTALL_RUNNING")) 
679         { 
680             include_once(dirname(__FILE__)."/install.php");
681             run_install("_part1");
682             trigger_error($error, E_USER_ERROR);
683             exit();
684         } elseif ($HTTP_SERVER_VARS["REQUEST_METHOD"] == "POST") {
685             $GLOBALS['HTTP_GET_VARS']['show'] = '_part1';
686             trigger_error($error, E_USER_WARNING);
687         }
688     }
689
690     if (defined('USE_DB_SESSION') and USE_DB_SESSION) {
691         if (! $DBParams['db_session_table'] ) {
692             $DBParams['db_session_table'] = @$DBParams['prefix'] . 'session';
693             trigger_error(sprintf("DATABASE_SESSION_TABLE configuration set to %s.", 
694                                   $DBParams['db_session_table']),
695                           E_USER_ERROR);
696         }
697     }
698     // legacy:
699     if (!defined('ENABLE_USER_NEW')) define('ENABLE_USER_NEW',true);
700     if (!defined('ALLOW_USER_LOGIN'))
701         define('ALLOW_USER_LOGIN', defined('ALLOW_USER_PASSWORDS') && ALLOW_USER_PASSWORDS);
702     if (!defined('ALLOW_ANON_USER')) define('ALLOW_ANON_USER', true); 
703     if (!defined('ALLOW_ANON_EDIT')) define('ALLOW_ANON_EDIT', false); 
704     if (!defined('REQUIRE_SIGNIN_BEFORE_EDIT')) define('REQUIRE_SIGNIN_BEFORE_EDIT', ! ALLOW_ANON_EDIT);
705     if (!defined('ALLOW_BOGO_LOGIN')) define('ALLOW_BOGO_LOGIN', true);
706     if (!ENABLE_USER_NEW) {
707       if (!defined('ALLOW_HTTP_AUTH_LOGIN'))
708           define('ALLOW_HTTP_AUTH_LOGIN', false);
709       if (!defined('ALLOW_LDAP_LOGIN')) 
710           define('ALLOW_LDAP_LOGIN', function_exists('ldap_connect') and defined('LDAP_AUTH_HOST'));
711       if (!defined('ALLOW_IMAP_LOGIN')) 
712           define('ALLOW_IMAP_LOGIN', function_exists('imap_open') and defined('IMAP_AUTH_HOST'));
713     }
714
715     if (ALLOW_USER_LOGIN and !empty($DBAuthParams) and empty($DBAuthParams['auth_dsn'])) {
716         if (isset($DBParams['dsn']))
717             $DBAuthParams['auth_dsn'] = $DBParams['dsn'];
718     }
719 }
720
721 /** 
722  * Define constants which are client or request specific and should not be dumped statically.
723  * Such as the language, and the virtual and server paths, which might be overridden 
724  * by startup scripts for wiki farms.
725  */
726 function fixup_dynamic_configs($file) {
727     global $WikiNameRegexp;
728     global $HTTP_SERVER_VARS, $DBParams, $LANG;
729
730     if (defined('INCLUDE_PATH') and INCLUDE_PATH)
731         @ini_set('include_path', INCLUDE_PATH);
732     if (defined('SESSION_SAVE_PATH') and SESSION_SAVE_PATH)
733         @ini_set('session.save_path', SESSION_SAVE_PATH);
734     if (!defined('DEFAULT_LANGUAGE'))   // not needed anymore
735         define('DEFAULT_LANGUAGE', ''); // detect from client
736
737     update_locale(isset($LANG) ? $LANG : DEFAULT_LANGUAGE);
738     if (empty($LANG)) {
739         if (!defined("DEFAULT_LANGUAGE") or !DEFAULT_LANGUAGE) {
740             // TODO: defer this to WikiRequest::initializeLang()
741             $LANG = guessing_lang(); 
742             guessing_setlocale (LC_ALL,$LANG);
743         }
744         else
745             $LANG = DEFAULT_LANGUAGE;
746     }
747  
748     // Set up (possibly fake) gettext()
749     // Todo: this could be moved to fixup_static_configs()
750     // Bug #1381464 with php-5.1.1
751     if (!function_exists ('bindtextdomain')
752         and !function_exists ('gettext')
753         and !function_exists ('_'))
754     {
755         $locale = array();
756
757         function gettext ($text) { 
758             global $locale;
759             if (!empty ($locale[$text]))
760                 return $locale[$text];
761             return $text;
762         }
763         function _ ($text) {
764             return gettext($text);
765         }
766     }
767     else {
768         // Working around really weird gettext problems: (4.3.2, 4.3.6 win)
769         // bindtextdomain() returns the current domain path.
770         // 1. If the script is not index.php but something like "de", on a different path
771         //    then bindtextdomain() fails, but after chdir to the correct path it will work okay.
772         // 2. But the weird error "Undefined variable: bindtextdomain" is generated then.
773         $bindtextdomain_path = FindFile("locale", false, true);
774         $chback = 0;
775         if (isWindows())
776             $bindtextdomain_path = str_replace("/", "\\", $bindtextdomain_path);
777         $bindtextdomain_real = @bindtextdomain("phpwiki", $bindtextdomain_path);
778         if (realpath($bindtextdomain_real) != realpath($bindtextdomain_path)) {
779             // this will happen with virtual_paths. chdir and try again.
780             chdir($bindtextdomain_path);
781             $chback = 1;
782             $bindtextdomain_real = @bindtextdomain("phpwiki", $bindtextdomain_path);
783         }
784         // tell gettext not to use unicode. PHP >= 4.2.0. Thanks to Kai Krakow.
785         if (defined('CHARSET') and function_exists('bind_textdomain_codeset'))
786             @bind_textdomain_codeset("phpwiki", CHARSET);
787         textdomain("phpwiki");
788         if ($chback) { // change back
789             chdir($bindtextdomain_real . (isWindows() ? "\\.." : "/.."));
790         }
791     }
792
793     // language dependent updates:
794     $WikiNameRegexp = pcre_fix_posix_classes($WikiNameRegexp);
795     //if ($KeywordLinkRegexp) $KeywordLinkRegexp = pcre_fix_posix_classes($KeywordLinkRegexp);
796     if (!defined('CATEGORY_GROUP_PAGE'))
797         define('CATEGORY_GROUP_PAGE',_("CategoryGroup"));
798     if (!defined('WIKI_NAME'))
799         define('WIKI_NAME', _("An unnamed PhpWiki"));
800     if (!defined('HOME_PAGE'))
801         define('HOME_PAGE', _("HomePage"));
802
803
804     //////////////////////////////////////////////////////////////////
805     // Autodetect URL settings:
806     //
807     foreach (array('SERVER_NAME','SERVER_PORT') as $var) {
808         //FIXME: for CGI without _SERVER
809         if (!defined($var) and !empty($HTTP_SERVER_VARS[$var]))
810             // IPV6 fix by matt brown, #1546571
811             // An IPv6 address must be surrounded by square brackets to form a valid server name.
812             if ($var == 'SERVER_NAME' &&
813                     strstr($HTTP_SERVER_VARS[$var], ':')) {
814                 define($var, '[' . $HTTP_SERVER_VARS[$var] . ']');
815             } else {
816                 define($var, $HTTP_SERVER_VARS[$var]);
817             }
818     }
819     if (!defined('SERVER_NAME')) define('SERVER_NAME', '127.0.0.1');
820     if (!defined('SERVER_PORT')) define('SERVER_PORT', 80);
821     if (!defined('SERVER_PROTOCOL')) {
822         if (empty($HTTP_SERVER_VARS['HTTPS']) || $HTTP_SERVER_VARS['HTTPS'] == 'off')
823             define('SERVER_PROTOCOL', 'http');
824         else
825             define('SERVER_PROTOCOL', 'https');
826     }
827
828     if (!defined('SCRIPT_NAME'))
829         define('SCRIPT_NAME', deduce_script_name());
830
831     if (!defined('USE_PATH_INFO')) {
832         if (isCGI())
833             define('USE_PATH_INFO', false);
834         else {
835             /*
836              * If SCRIPT_NAME does not look like php source file,
837              * or user cgi we assume that php is getting run by an
838              * action handler in /cgi-bin.  In this case,
839              * I think there is no way to get Apache to pass
840              * useful PATH_INFO to the php script (PATH_INFO
841              * is used to the the php interpreter where the
842              * php script is...)
843              */
844             switch (php_sapi_name()) {
845             case 'apache':
846             case 'apache2handler':
847                 define('USE_PATH_INFO', true);
848                 break;
849             case 'cgi':
850             case 'apache2filter':
851                 define('USE_PATH_INFO', false);
852                 break;
853             default:
854                 define('USE_PATH_INFO', ereg('\.(php3?|cgi)$', SCRIPT_NAME));
855                 break;
856             }
857         }
858     }
859      
860     if (SERVER_PORT
861         && SERVER_PORT != (SERVER_PROTOCOL == 'https' ? 443 : 80)) {
862         define('SERVER_URL',
863                SERVER_PROTOCOL . '://' . SERVER_NAME . ':' . SERVER_PORT);
864     }
865     else {
866         define('SERVER_URL',
867                SERVER_PROTOCOL . '://' . SERVER_NAME);
868     }
869
870     if (!defined('VIRTUAL_PATH')) {
871         // We'd like to auto-detect when the cases where apaches
872         // 'Action' directive (or similar means) is used to
873         // redirect page requests to a cgi-handler.
874         //
875         // In cases like this, requests for e.g. /wiki/HomePage
876         // get redirected to a cgi-script called, say,
877         // /path/to/wiki/index.php.  The script gets all
878         // of /wiki/HomePage as it's PATH_INFO.
879         //
880         // The problem is:
881         //   How to detect when this has happened reliably?
882         //   How to pick out the "virtual path" (in this case '/wiki')?
883         //
884         // (Another time an redirect might occur is to a DirectoryIndex
885         // -- the requested URI is '/wikidir/', the request gets
886         // passed to '/wikidir/index.php'.  In this case, the
887         // proper VIRTUAL_PATH is '/wikidir/index.php', since the
888         // pages will appear at e.g. '/wikidir/index.php/HomePage'.
889         //
890
891         $REDIRECT_URL = &$HTTP_SERVER_VARS['REDIRECT_URL'];
892         if (USE_PATH_INFO and isset($REDIRECT_URL)
893             and ! IsProbablyRedirectToIndex()) {
894             // FIXME: This is a hack, and won't work if the requested
895             // pagename has a slash in it.
896             $temp = strtr(dirname($REDIRECT_URL . 'x'),"\\",'/');
897             if ( ($temp == '/') || ($temp == '\\') )
898                 $temp = '';
899             define('VIRTUAL_PATH', $temp);
900         } else {
901             define('VIRTUAL_PATH', SCRIPT_NAME);
902         }
903     }
904
905     if (VIRTUAL_PATH != SCRIPT_NAME) {
906         // Apache action handlers are used.
907         define('PATH_INFO_PREFIX', VIRTUAL_PATH . '/');
908     }
909     else
910         define('PATH_INFO_PREFIX', '/');
911
912     define('PHPWIKI_BASE_URL',
913            SERVER_URL . (USE_PATH_INFO ? VIRTUAL_PATH . '/' : SCRIPT_NAME));
914
915     // Detect PrettyWiki setup (not loading index.php directly)
916     // $SCRIPT_FILENAME should be the same as __FILE__ in index.php
917     if (!isset($SCRIPT_FILENAME))
918         $SCRIPT_FILENAME = @$HTTP_SERVER_VARS['SCRIPT_FILENAME'];
919     if (!isset($SCRIPT_FILENAME))
920         $SCRIPT_FILENAME = @$HTTP_ENV_VARS['SCRIPT_FILENAME'];
921     if (!isset($SCRIPT_FILENAME))
922         $SCRIPT_FILENAME = dirname(__FILE__.'/../') . '/index.php';
923     if (isWindows())
924         $SCRIPT_FILENAME = str_replace('\\\\','\\',strtr($SCRIPT_FILENAME, '/', '\\'));
925     define('SCRIPT_FILENAME', $SCRIPT_FILENAME);
926
927     // Get remote host name, if apache hasn't done it for us
928     if (empty($HTTP_SERVER_VARS['REMOTE_HOST'])
929         and !empty($HTTP_SERVER_VARS['REMOTE_ADDR'])
930         and ENABLE_REVERSE_DNS)
931         $HTTP_SERVER_VARS['REMOTE_HOST'] = gethostbyaddr($HTTP_SERVER_VARS['REMOTE_ADDR']);
932
933 }
934
935 // $Log: not supported by cvs2svn $
936 // Revision 1.110  2007/01/07 18:42:39  rurban
937 // Fix typo: BLOG_EMPTY_DEFAULT_PREFIX => BLOG_DEFAULT_EMPTY_PREFIX. Add USE_SEARCHHIGHLIGHT. Add EXTERNAL_HTML2PDF_PAGELIST logic. Update $AllActionPages.
938 //
939 // Revision 1.109  2007/01/04 16:40:47  rurban
940 // Add more action pages
941 //
942 // Revision 1.108  2007/01/03 21:22:22  rurban
943 // Add DISABLE_UNITS.
944 //
945 // Revision 1.107  2006/12/22 17:45:28  rurban
946 // add USE_BYTEA
947 //
948 // Revision 1.106  2006/11/19 13:52:18  rurban
949 // fix and stabilize MAP splitting
950 //
951 // Revision 1.105  2006/11/19 11:24:11  rurban
952 // IPV6 fix by matt brown, #1546571
953 // An IPv6 address must be surrounded by square brackets to form a valid server name.
954 //
955 // Revision 1.104  2006/10/12 06:36:09  rurban
956 // Guard against unwanted DEBUG="DEBUG" logic. In detail (WikiDB),
957 // and generally by forcing all int constants to be defined as int.
958 //
959 // Revision 1.103  2006/08/15 13:36:23  rurban
960 // support iso-8859-2
961 //
962 // Revision 1.102  2006/05/14 18:02:27  rurban
963 // patch from bug #1480077 by Kai Krakow
964 //
965 // Revision 1.101  2006/05/13 19:59:54  rurban
966 // added wysiwyg_editor-1.3a feature by Jean-Nicolas GEREONE <jean-nicolas.gereone@st.com>
967 // converted wysiwyg_editor-1.3a js to WysiwygEdit framework
968 // changed default ENABLE_WYSIWYG = true and added WYSIWYG_BACKEND = Wikiwyg
969 //
970 // Revision 1.100  2006/03/19 14:23:51  rurban
971 // sf.net patch #1377011 by Matt Brown: add DATABASE_OPTIMISE_FREQUENCY
972 //
973 // Revision 1.99  2006/03/07 20:42:34  rurban
974 // add DBAUTH_PREF_INSERT support
975 //
976 // Revision 1.98  2006/01/12 16:22:47  rurban
977 // Add flatfile and cvsclient to $valid_database_types (internal testing)
978 // Fix bug #1381464 "Duplicate functions ver. 1.3.11p1"
979 //
980 // Revision 1.97  2005/10/29 14:16:38  rurban
981 // fix broken locale update
982 //
983 // Revision 1.96  2005/09/26 06:27:33  rurban
984 // default locale fix Thomas Harding
985 //
986 // Revision 1.95  2005/09/18 15:15:53  rurban
987 // add a proper Content-Encoding: gzip if compressed, and omit Content-Length then.
988 //
989 // Revision 1.94  2005/09/15 05:56:12  rurban
990 // read configurator desc from config-dist.ini, update desc, fix some warnings
991 //
992 // Revision 1.93  2005/09/14 05:57:19  rurban
993 // make ENABLE_MARKUP_TEMPLATE optional
994 //
995 // Revision 1.92  2005/08/06 13:00:21  rurban
996 // accept config.ini ACCESS_LOG_SQL = 0
997 //
998 // Revision 1.91  2005/06/30 04:53:46  rurban
999 // use better /tmp/cache, dependent on TEMP_DIR and getenv("TEMP")
1000 //
1001 // Revision 1.90  2005/05/06 18:45:59  rurban
1002 // add TOOLBAR_TEMPLATE_PULLDOWN (AddTemplate icon)
1003 //
1004 // Revision 1.89  2005/05/06 16:54:18  rurban
1005 // support optional EXTERNAL_LINK_TARGET, default: _blank
1006 //
1007 // Revision 1.88  2005/04/25 20:17:13  rurban
1008 // captcha feature by Benjamin Drieu. Patch #1110699
1009 //
1010 // Revision 1.87  2005/04/08 18:11:50  rurban
1011 // guard against empty default INI values
1012 //
1013 // Revision 1.86  2005/04/06 06:41:05  rurban
1014 // add ENABLE_DISCUSSION_LINK dependency (to turn it off for 1.3.11)
1015 //
1016 // Revision 1.85  2005/03/27 20:36:16  rurban
1017 // configurator recursion fixes, dont print temp _dsn vars
1018 //
1019 // Revision 1.84  2005/03/27 18:23:40  rurban
1020 // compute locale only for setlocale and LC_ALL
1021 //
1022 // Revision 1.83  2005/02/28 21:24:32  rurban
1023 // ignore forbidden ini_set warnings. Bug #1117254 by Xavier Roche
1024 //
1025 // Revision 1.82  2005/02/28 20:14:19  rurban
1026 // prevent from recursion (configurator.php)
1027 //
1028 // Revision 1.81  2005/02/27 13:20:28  rurban
1029 // remove clsclient (typo and still exp)
1030 //
1031 // Revision 1.80  2005/02/26 17:47:57  rurban
1032 // configurator: add (c), support show=_part1 initial expand, enable
1033 //   ENABLE_FILE_OUTPUT, use part.id not name
1034 // install.php: fixed for multiple invocations (on various missing vars)
1035 // IniConfig: call install.php on more errors with expanded part.
1036 //
1037 // Revision 1.79  2005/02/11 14:45:44  rurban
1038 // support ENABLE_LIVESEARCH, enable PDO sessions
1039 //
1040 // Revision 1.78  2005/02/10 19:01:19  rurban
1041 // add PDO support
1042 //
1043 // Revision 1.77  2005/01/31 12:14:15  rurban
1044 // correct spelling
1045 //
1046 // Revision 1.76  2005/01/31 00:31:00  rurban
1047 // translate errmsg
1048 //
1049 // Revision 1.75  2005/01/30 21:52:09  rurban
1050 // print early warning on wrong DATABASE_TYPE
1051 //
1052 // Revision 1.74  2005/01/29 20:35:52  rurban
1053 // helper for local debugging (Zend Personal Edition)
1054 //
1055 // Revision 1.73  2005/01/25 06:51:37  rurban
1056 // new options: TOOLBAR_PAGELINK_PULLDOWN, DATABASE_PERSISTENT
1057 //
1058 // Revision 1.72  2005/01/13 07:29:27  rurban
1059 // Default ACCESS_LOG_SQL = 2 on SQL/ADODB
1060 //
1061 // Revision 1.71  2005/01/10 18:06:40  rurban
1062 // $LANG from DEFAULT_LANGUAGE
1063 //
1064 // Revision 1.70  2005/01/04 20:22:44  rurban
1065 // guess $LANG based on client
1066 //
1067 // Revision 1.69  2004/12/23 14:07:34  rurban
1068 // fix default language detection if DEFAULT_LANGUAGE=, collapse to 2char lang code, fix typo in @bindtextdomain
1069 //
1070 // Revision 1.68  2004/12/14 21:35:15  rurban
1071 // support new BLOG_EMPTY_DEFAULT_PREFIX
1072 //
1073 // Revision 1.67  2004/11/30 09:51:35  rurban
1074 // changed KEYWORDS from pageprefix to search term. added installer detection.
1075 //
1076 // Revision 1.66  2004/11/17 17:23:12  rurban
1077 // fixed chdir back from locale
1078 //
1079 // Revision 1.65  2004/11/11 10:31:26  rurban
1080 // Disable default options in config-dist.ini
1081 // Add new CATEGORY_GROUP_PAGE root page: Default: Translation of "CategoryGroup"
1082 // Clarify more options.
1083 //
1084 // Revision 1.64  2004/11/09 17:11:03  rurban
1085 // * revert to the wikidb ref passing. there's no memory abuse there.
1086 // * use new wikidb->_cache->_id_cache[] instead of wikidb->_iwpcache, to effectively
1087 //   store page ids with getPageLinks (GleanDescription) of all existing pages, which
1088 //   are also needed at the rendering for linkExistingWikiWord().
1089 //   pass options to pageiterator.
1090 //   use this cache also for _get_pageid()
1091 //   This saves about 8 SELECT count per page (num all pagelinks).
1092 // * fix passing of all page fields to the pageiterator.
1093 // * fix overlarge session data which got broken with the latest ACCESS_LOG_SQL changes
1094 //
1095 // Revision 1.63  2004/11/07 16:47:32  rurban
1096 // fix VIRTUAL_PATH
1097 //
1098 // Revision 1.62  2004/11/07 16:02:51  rurban
1099 // new sql access log (for spam prevention), and restructured access log class
1100 // dbh->quote (generic)
1101 // pear_db: mysql specific parts seperated (using replace)
1102 //
1103 // Revision 1.61  2004/11/06 17:01:30  rurban
1104 // unify DATABASE constants init as with DBAUTH
1105 //
1106 // Revision 1.60  2004/11/06 03:06:58  rurban
1107 // make use of dumped static config state in config/config.php (if writable)
1108 //
1109 // Revision 1.59  2004/11/05 20:53:35  rurban
1110 // login cleanup: better debug msg on failing login,
1111 // checked password less immediate login (bogo or anon),
1112 // checked olduser pref session error,
1113 // better PersonalPage without password warning on minimal password length=0
1114 //   (which is default now)
1115 //
1116 // Revision 1.58  2004/11/03 16:50:31  rurban
1117 // some new defaults and constants, renamed USE_DOUBLECLICKEDIT to ENABLE_DOUBLECLICKEDIT
1118 //
1119 // Revision 1.57  2004/11/01 10:43:55  rurban
1120 // seperate PassUser methods into seperate dir (memory usage)
1121 // fix WikiUser (old) overlarge data session
1122 // remove wikidb arg from various page class methods, use global ->_dbi instead
1123 // ...
1124 //
1125 // Revision 1.56  2004/10/21 20:20:53  rurban
1126 // From patch #970004 "Double clic to edit" by pixels.
1127 //
1128 // Revision 1.55  2004/10/14 19:23:58  rurban
1129 // remove debugging prints
1130 //
1131 // Revision 1.54  2004/10/14 17:13:01  rurban
1132 // use DATABASE_PREFIX
1133 //
1134 // Revision 1.53  2004/10/12 13:13:19  rurban
1135 // php5 compatibility (5.0.1 ok)
1136 //
1137 // Revision 1.52  2004/10/04 23:38:07  rurban
1138 // unittest fix
1139 //
1140 // Revision 1.51  2004/09/20 13:40:19  rurban
1141 // define all config.ini settings, only the supported will be taken from -default.
1142 // support USE_EXTERNAL_HTML2PDF renderer (htmldoc tested)
1143 //
1144 // Revision 1.50  2004/09/06 09:28:58  rurban
1145 // fix PLUGIN_CACHED_CACHE_DIR fallback logic. ini entry did not work before
1146 //
1147 // Revision 1.49  2004/07/13 13:07:27  rurban
1148 // improved DB_SESSION logic
1149 //
1150 // Revision 1.48  2004/07/05 13:09:37  rurban
1151 // ENABLE_RAW_HTML_LOCKEDONLY, ENABLE_RAW_HTML_SAFE
1152 //
1153 // Revision 1.47  2004/07/03 16:51:05  rurban
1154 // optional DBADMIN_USER:DBADMIN_PASSWD for action=upgrade (if no ALTER permission)
1155 // added atomic mysql REPLACE for PearDB as in ADODB
1156 // fixed _lock_tables typo links => link
1157 // fixes unserialize ADODB bug in line 180
1158 //
1159 // Revision 1.46  2004/07/02 09:55:58  rurban
1160 // more stability fixes: new DISABLE_GETIMAGESIZE if your php crashes when loading LinkIcons: failing getimagesize in old phps; blockparser stabilized
1161 //
1162 // Revision 1.45  2004/07/01 08:51:21  rurban
1163 // dumphtml: added exclude, print pagename before processing
1164 //
1165 // Revision 1.44  2004/06/29 08:52:22  rurban
1166 // Use ...version() $need_content argument in WikiDB also:
1167 // To reduce the memory footprint for larger sets of pagelists,
1168 // we don't cache the content (only true or false) and
1169 // we purge the pagedata (_cached_html) also.
1170 // _cached_html is only cached for the current pagename.
1171 // => Vastly improved page existance check, ACL check, ...
1172 //
1173 // Now only PagedList info=content or size needs the whole content, esp. if sortable.
1174 //
1175 // Revision 1.43  2004/06/29 06:48:02  rurban
1176 // Improve LDAP auth and GROUP_LDAP membership:
1177 //   no error message on false password,
1178 //   added two new config vars: LDAP_OU_USERS and LDAP_OU_GROUP with GROUP_METHOD=LDAP
1179 //   fixed two group queries (this -> user)
1180 // stdlib: ConvertOldMarkup still flawed
1181 //
1182 // Revision 1.42  2004/06/28 15:01:07  rurban
1183 // fixed LDAP_SET_OPTION handling, LDAP error on connection problem
1184 //
1185 // Revision 1.41  2004/06/25 14:29:17  rurban
1186 // WikiGroup refactoring:
1187 //   global group attached to user, code for not_current user.
1188 //   improved helpers for special groups (avoid double invocations)
1189 // new experimental config option ENABLE_XHTML_XML (fails with IE, and document.write())
1190 // fixed a XHTML validation error on userprefs.tmpl
1191 //
1192 // Revision 1.40  2004/06/22 07:12:48  rurban
1193 // removed USE_TAGLINES constant
1194 //
1195 // Revision 1.39  2004/06/21 16:22:28  rurban
1196 // add DEFAULT_DUMP_DIR and HTML_DUMP_DIR constants, for easier cmdline dumps,
1197 // fixed dumping buttons locally (images/buttons/),
1198 // support pages arg for dumphtml,
1199 // optional directory arg for dumpserial + dumphtml,
1200 // fix a AllPages warning,
1201 // show dump warnings/errors on DEBUG,
1202 // don't warn just ignore on wikilens pagelist columns, if not loaded.
1203 // RateIt pagelist column is called "rating", not "ratingwidget" (Dan?)
1204 //
1205 // Revision 1.38  2004/06/21 08:39:36  rurban
1206 // pear/Cache update from Cache-1.5.4 (added db and trifile container)
1207 // pear/DB update from DB-1.6.1 (mysql bugfixes, php5 compat, DB_PORTABILITY features)
1208 //
1209 // Revision 1.37  2004/06/19 12:32:37  rurban
1210 // new TEMP_DIR for ziplib
1211 //
1212 // Revision 1.36  2004/06/19 10:06:37  rurban
1213 // Moved lib/plugincache-config.php to config/*.ini
1214 // use PLUGIN_CACHED_* constants instead of global $CacheParams
1215 //
1216 // Revision 1.35  2004/06/15 09:15:52  rurban
1217 // IMPORTANT: fixed passwd handling for passwords stored in prefs:
1218 //   fix encrypted usage, actually store and retrieve them from db
1219 //   fix bogologin with passwd set.
1220 // fix php crashes with call-time pass-by-reference (references wrongly used
1221 //   in declaration AND call). This affected mainly Apache2 and IIS.
1222 //   (Thanks to John Cole to detect this!)
1223 //
1224 // Revision 1.34  2004/06/13 13:54:25  rurban
1225 // Catch fatals on the four dump calls (as file and zip, as html and mimified)
1226 // FoafViewer: Check against external requirements, instead of fatal.
1227 // Change output for xhtmldumps: using file:// urls to the local fs.
1228 // Catch SOAP fatal by checking for GOOGLE_LICENSE_KEY
1229 // Import GOOGLE_LICENSE_KEY and FORTUNE_DIR from config.ini.
1230 //
1231 // Revision 1.33  2004/06/08 19:48:16  rurban
1232 // fixed foreign setup: no ugly skipped msg for the GenericPages, load english actionpages if translated not found
1233 //
1234 // Revision 1.32  2004/06/08 10:54:46  rurban
1235 // better acl dump representation, read back acl and owner
1236 //
1237 // Revision 1.31  2004/06/06 16:58:51  rurban
1238 // added more required ActionPages for foreign languages
1239 // install now english ActionPages if no localized are found. (again)
1240 // fixed default anon user level to be 0, instead of -1
1241 //   (wrong "required administrator to view this page"...)
1242 //
1243 // Revision 1.30  2004/06/04 12:40:21  rurban
1244 // Restrict valid usernames to prevent from attacks against external auth or compromise
1245 // possible holes.
1246 // Fix various WikiUser old issues with default IMAP,LDAP,POP3 configs. Removed these.
1247 // Fxied more warnings
1248 //
1249 // Revision 1.29  2004/06/04 11:58:38  rurban
1250 // added USE_TAGLINES
1251 //
1252 // Revision 1.28  2004/06/03 20:42:49  rurban
1253 // fixed bad warning #964850
1254 //
1255 // Revision 1.27  2004/06/03 10:18:19  rurban
1256 // fix FileUser locking issues, new config ENABLE_PAGEPERM
1257 //
1258 // Revision 1.26  2004/06/02 18:01:45  rurban
1259 // init global FileFinder to add proper include paths at startup
1260 //   adds PHPWIKI_DIR if started from another dir, lib/pear also
1261 // fix slashify for Windows
1262 // fix USER_AUTH_POLICY=old, use only USER_AUTH_ORDER methods (besides HttpAuth)
1263 //
1264 // Revision 1.25  2004/05/27 17:49:05  rurban
1265 // renamed DB_Session to DbSession (in CVS also)
1266 // added WikiDB->getParam and WikiDB->getAuthParam method to get rid of globals
1267 // remove leading slash in error message
1268 // added force_unlock parameter to File_Passwd (no return on stale locks)
1269 // fixed adodb session AffectedRows
1270 // added FileFinder helpers to unify local filenames and DATA_PATH names
1271 // editpage.php: new edit toolbar javascript on ENABLE_EDIT_TOOLBAR
1272 //
1273 // Revision 1.24  2004/05/18 13:33:13  rurban
1274 // we already have a CGI function
1275 //
1276 // Revision 1.23  2004/05/17 17:43:29  rurban
1277 // CGI: no PATH_INFO fix
1278 //
1279 // Revision 1.22  2004/05/16 22:07:35  rurban
1280 // check more config-default and predefined constants
1281 // various PagePerm fixes:
1282 //   fix default PagePerms, esp. edit and view for Bogo and Password users
1283 //   implemented Creator and Owner
1284 //   BOGOUSERS renamed to BOGOUSER
1285 // fixed syntax errors in signin.tmpl
1286 //
1287 // Revision 1.21  2004/05/08 22:55:12  rurban
1288 // Fixed longstanding sf.net:demo problem. endless loop, caused by an empty definition of
1289 // WIKI_NAME_REGEXP. Exactly this constant wasn't checked for its default setting.
1290 //
1291 // Revision 1.20  2004/05/08 20:21:00  rurban
1292 // remove php tags in Log
1293 //
1294 // Revision 1.19  2004/05/08 19:55:29  rurban
1295 // support <span>inlined plugin-result</span>:
1296 //   if the plugin is parsed inside a line, use <span> instead of
1297 //   <div tightenable top bottom>
1298 //   e.g. for "This is the current Phpwiki <plugin SystemInfo version> version.
1299 //
1300 // Revision 1.18  2004/05/08 16:58:19  rurban
1301 // don't ignore some false config values (e.g. USE_PATH_INFO false was ignored)
1302 //
1303 // Revision 1.17  2004/05/06 19:26:15  rurban
1304 // improve stability, trying to find the InlineParser endless loop on sf.net
1305 //
1306 // remove end-of-zip comments to fix sf.net bug #777278 and probably #859628
1307 //
1308 // Revision 1.16  2004/05/02 15:10:05  rurban
1309 // new finally reliable way to detect if /index.php is called directly
1310 //   and if to include lib/main.php
1311 // new global AllActionPages
1312 // SetupWiki now loads all mandatory pages: HOME_PAGE, action pages, and warns if not.
1313 // WikiTranslation what=buttons for Carsten to create the missing MacOSX buttons
1314 // PageGroupTestOne => subpages
1315 // renamed PhpWikiRss to PhpWikiRecentChanges
1316 // more docs, default configs, ...
1317 //
1318 // Revision 1.15  2004/05/01 15:59:29  rurban
1319 // more php-4.0.6 compatibility: superglobals
1320 //
1321 // Revision 1.14  2004/04/29 23:25:12  rurban
1322 // re-ordered locale init (as in 1.3.9)
1323 // fixed loadfile with subpages, and merge/restore anyway
1324 //   (sf.net bug #844188)
1325 //
1326 // Revision 1.13  2004/04/29 21:54:05  rurban
1327 // typo
1328 //
1329 // Revision 1.12  2004/04/27 16:16:27  rurban
1330 // more subtle config problems with defaults
1331 //
1332 // Revision 1.11  2004/04/26 20:44:34  rurban
1333 // locking table specific for better databases
1334 //
1335 // Revision 1.10  2004/04/26 13:22:32  rurban
1336 // calculate bool old or dynamic constants later
1337 //
1338 // Revision 1.9  2004/04/26 12:15:01  rurban
1339 // check default config values
1340 //
1341 // Revision 1.8  2004/04/23 16:55:59  zorloc
1342 // If using Db auth and DBAUTH_AUTH_DSN is empty set DBAUTH_AUTH_DSN to $DBParams['dsn']
1343 //
1344 // Revision 1.7  2004/04/20 22:26:27  zorloc
1345 // Removed Pear_Config for parse_ini_file().
1346 //
1347 // Revision 1.6  2004/04/20 18:10:27  rurban
1348 // config refactoring:
1349 //   FileFinder is needed for WikiFarm scripts calling index.php
1350 //   config run-time calls moved to lib/IniConfig.php:fix_configs()
1351 //   added PHPWIKI_DIR smart-detection code (Theme finder)
1352 //   moved FileFind to lib/FileFinder.php
1353 //   cleaned lib/config.php
1354 //
1355 // Revision 1.5  2004/04/20 17:21:57  rurban
1356 // WikiFarm code: honor predefined constants
1357 //
1358 // Revision 1.4  2004/04/20 17:08:19  rurban
1359 // Some IniConfig fixes: prepend our private lib/pear dir
1360 //   switch from " to ' in the auth statements
1361 //   use error handling.
1362 // WikiUserNew changes for the new "'$variable'" syntax
1363 //   in the statements
1364 // TODO: optimization to put config vars into the session.
1365 //
1366
1367 // (c-file-style: "gnu")
1368 // Local Variables:
1369 // mode: php
1370 // tab-width: 8
1371 // c-basic-offset: 4
1372 // c-hanging-comment-ender-p: nil
1373 // indent-tabs-mode: nil
1374 // End:   
1375 ?>