]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/config.php
new reverse locale detection on DEFAULT_LANGUAGE="", ja default euc-jp again
[SourceForge/phpwiki.git] / lib / config.php
1 <?php
2 rcs_id('$Id: config.php,v 1.127 2004-12-26 17:15:32 rurban Exp $');
3 /*
4  * NOTE: The settings here should probably not need to be changed.
5  * The user-configurable settings have been moved to IniConfig.php
6  * The run-time code has been moved to lib/IniConfig.php:fix_configs()
7  */
8  
9 if (!defined("LC_ALL")) {
10     // Backward compatibility (for PHP < 4.0.5)
11     if (!check_php_version(4,0,5)) {
12         define("LC_ALL",   "LC_ALL");
13         define("LC_CTYPE", "LC_CTYPE");
14     } else {
15         define("LC_ALL",   0);
16         define("LC_CTYPE", 2);
17     }
18 }
19 // debug flags: 
20 define ('_DEBUG_VERBOSE',   1); // verbose msgs and add validator links on footer
21 define ('_DEBUG_PAGELINKS', 2); // list the extraced pagelinks at the top of each pages
22 define ('_DEBUG_PARSER',    4); // verbose parsing steps
23 define ('_DEBUG_TRACE',     8); // test php memory usage, prints php debug backtraces
24 define ('_DEBUG_INFO',     16);
25 define ('_DEBUG_APD',      32);
26 define ('_DEBUG_LOGIN',    64); // verbose login debug-msg (settings and reason for failure)
27 define ('_DEBUG_SQL',     128);
28
29 function isCGI() {
30     return (substr(php_sapi_name(),0,3) == 'cgi' and 
31             isset($GLOBALS['HTTP_ENV_VARS']['GATEWAY_INTERFACE']) and
32             @preg_match('/CGI/',$GLOBALS['HTTP_ENV_VARS']['GATEWAY_INTERFACE']));
33 }
34
35 /*
36 // copy some $_ENV vars to $_SERVER for CGI compatibility. php does it automatically since when?
37 if (isCGI()) {
38     foreach (explode(':','SERVER_SOFTWARE:SERVER_NAME:GATEWAY_INTERFACE:SERVER_PROTOCOL:SERVER_PORT:REQUEST_METHOD:HTTP_ACCEPT:PATH_INFO:PATH_TRANSLATED:SCRIPT_NAME:QUERY_STRING:REMOTE_HOST:REMOTE_ADDR:REMOTE_USER:AUTH_TYPE:CONTENT_TYPE:CONTENT_LENGTH') as $key) {
39         $GLOBALS['HTTP_SERVER_VARS'][$key] = &$GLOBALS['HTTP_ENV_VARS'][$key];
40     }
41 }
42 */
43
44 // essential internal stuff
45 set_magic_quotes_runtime(0);
46
47 /** 
48  * Browser Detection Functions
49  *
50  * Current Issues:
51  *  NS/IE < 4.0 doesn't accept < ? xml version="1.0" ? >
52  *  NS/IE < 4.0 cannot display PNG
53  *  NS/IE < 4.0 cannot display all XHTML tags
54  *  NS < 5.0 needs textarea wrap=virtual
55  *  IE55 has problems with transparent PNG's
56  * @author: ReiniUrban
57  */
58 function browserAgent() {
59     static $HTTP_USER_AGENT = false;
60     if (!$HTTP_USER_AGENT)
61         $HTTP_USER_AGENT = @$GLOBALS['HTTP_SERVER_VARS']['HTTP_USER_AGENT'];
62     if (!$HTTP_USER_AGENT) // CGI
63         $HTTP_USER_AGENT = $GLOBALS['HTTP_ENV_VARS']['HTTP_USER_AGENT'];
64     return $HTTP_USER_AGENT;
65 }
66 function browserDetect($match) {
67     return strstr(browserAgent(), $match);
68 }
69 // returns a similar number for Netscape/Mozilla (gecko=5.0)/IE/Opera features.
70 function browserVersion() {
71     if (strstr(browserAgent(),    "Mozilla/4.0 (compatible; MSIE"))
72         return (float) substr(browserAgent(),30);
73     elseif (strstr(browserAgent(),"Mozilla/5.0 (compatible; Konqueror/"))
74         return (float) substr(browserAgent(),36);
75     else
76         return (float) substr(browserAgent(),8);
77 }
78 function isBrowserIE() {
79     return (browserDetect('Mozilla/') and 
80             browserDetect('MSIE'));
81 }
82 // problem with transparent PNG's
83 function isBrowserIE55() {
84     return (isBrowserIE() and 
85             browserVersion() > 5.1 and browserVersion() < 6.0);
86 }
87 // old Netscape prior to Mozilla
88 function isBrowserNetscape($version = false) {
89     $agent = (browserDetect('Mozilla/') and 
90             ! browserDetect('Gecko/') and
91             ! browserDetect('MSIE'));
92     if ($version) return $agent and browserVersion() >= $version; 
93     else return $agent;
94 }
95 // NS3 or less
96 function isBrowserNS3() {
97     return (isBrowserNetscape() and browserVersion() < 4.0);
98 }
99 // NS4 or less
100 function isBrowserNS4() {
101     return (isBrowserNetscape() and browserVersion() < 5.0);
102 }
103 // must omit display alternate stylesheets: konqueror 3.1.4
104 // http://sourceforge.net/tracker/index.php?func=detail&aid=945154&group_id=6121&atid=106121
105 function isBrowserKonqueror($version = false) {
106     if ($version) return browserDetect('Konqueror/') and browserVersion() >= $version; 
107     return browserDetect('Konqueror/');
108 }
109 // FIXME: MacOSX Safarai has certain limitations. Need detection and patches.
110 function isBrowserSafari($version = false) {
111     if ($version) return browserDetect('Safari/') and browserVersion() >= $version; 
112     return browserDetect('Safari/');
113 }
114
115 /**
116  * Smart setlocale().
117  *
118  * This is a version of the builtin setlocale() which is
119  * smart enough to try some alternatives...
120  *
121  * @param mixed $category
122  * @param string $locale
123  * @return string The new locale, or <code>false</code> if unable
124  *  to set the requested locale.
125  * @see setlocale
126  * [56ms]
127  */
128 function guessing_setlocale ($category, $locale) {
129     $alt = array('en' => array('C', 'en_US', 'en_GB', 'en_AU', 'en_CA', 'english'),
130                  'de' => array('de_DE', 'de_DE', 'de_DE@euro', 
131                                'de_AT@euro', 'de_AT', 'German_Austria.1252', 'deutsch', 
132                                'german', 'ge'),
133                  'es' => array('es_ES', 'es_MX', 'es_AR', 'spanish'),
134                  'nl' => array('nl_NL', 'dutch'),
135                  'fr' => array('fr_FR', 'français', 'french'),
136                  'it' => array('it_IT'),
137                  'sv' => array('sv_SE'),
138                  'ja.utf-8'  => array('ja_JP','ja_JP.utf-8','japanese'),
139                  'ja.euc-jp' => array('ja_JP','ja_JP.eucJP','japanese.euc'),
140                  'zh' => array('zh_TW', 'zh_CN'),
141                  );
142     if (!$locale) { 
143         // do the reverse: return the detected locale collapsed to our LANG
144         $locale = setlocale($category,'');
145         if ($locale) {
146             if (strstr($locale, '_')) list ($lang) = split('_', $locale);
147             else $lang = $locale;
148             if (strlen($lang) > 2) { 
149                 foreach ($alt as $try => $locs) {
150                     if (in_array($locale, $locs) or in_array($lang, $locs)) {
151                         return $try;
152                     }
153                 }
154             }
155         }
156     }
157     if (strlen($locale) == 2)
158         $lang = $locale;
159     else 
160         list ($lang) = split('_', $locale);
161     if (!isset($alt[$lang]))
162         return false;
163         
164     foreach ($alt[$lang] as $try) {
165         if ($res = setlocale($category, $try))
166             return $res;
167         // Try with charset appended...
168         $try = $try . '.' . $GLOBALS['charset'];
169         if ($res = setlocale($category, $try))
170             return $res;
171         foreach (array('@', ".", '_') as $sep) {
172             list ($try) = split($sep, $try);
173             if ($res = setlocale($category, $try))
174                 return $res;
175         }
176     }
177     return false;
178
179     // A standard locale name is typically of  the  form
180     // language[_territory][.codeset][@modifier],  where  language is
181     // an ISO 639 language code, territory is an ISO 3166 country code,
182     // and codeset  is  a  character  set or encoding identifier like
183     // ISO-8859-1 or UTF-8.
184 }
185 // [99ms]
186 function update_locale($loc) {
187     if (!$loc) {
188         $newlocale = guessing_setlocale(LC_ALL, $loc); // [56ms]
189         if (!$newlocale) {
190             //trigger_error(sprintf(_("Can't setlocale(LC_ALL,'%s')"), $loc), E_USER_NOTICE);
191             // => LC_COLLATE=C;LC_CTYPE=German_Austria.1252;LC_MONETARY=C;LC_NUMERIC=C;LC_TIME=C
192             //$loc = setlocale(LC_CTYPE, '');  // pull locale from environment.
193             //require_once(dirname(__FILE__)."/FileFinder.php");
194             $newlocale = FileFinder::_get_lang();
195             list ($newlocale,) = split('_', $newlocale, 2);
196             //$GLOBALS['LANG'] = $loc;
197             //$newlocale = $loc;
198             //return false;
199         }
200         $loc = $newlocale;
201     }
202     //if (substr($newlocale,0,2) == $loc) // don't update with C or failing setlocale
203     if (!isset($GLOBALS['LANG'])) $GLOBALS['LANG'] = $loc;
204     // Try to put new locale into environment (so any
205     // programs we run will get the right locale.)
206     //
207     if (!function_exists ('bindtextdomain'))  {
208         // Reinitialize translation array.
209         global $locale;
210         $locale = array();
211         // do reinit to purge PHP's static cache
212         // [43ms]
213         if ( ($lcfile = FindLocalizedFile("LC_MESSAGES/phpwiki.php", 'missing_ok', 'reinit')) ) {
214             include($lcfile);
215         }
216     } else {
217         // If PHP is in safe mode, this is not allowed,
218         // so hide errors...
219         @putenv("LC_ALL=$loc");
220         @putenv("LANG=$loc");
221         @putenv("LANGUAGE=$loc");
222     }
223
224     // To get the POSIX character classes in the PCRE's (e.g.
225     // [[:upper:]]) to match extended characters (e.g. GrüßGott), we have
226     // to set the locale, using setlocale().
227     //
228     // The problem is which locale to set?  We would like to recognize all
229     // upper-case characters in the iso-8859-1 character set as upper-case
230     // characters --- not just the ones which are in the current $LANG.
231     //
232     // As it turns out, at least on my system (Linux/glibc-2.2) as long as
233     // you setlocale() to anything but "C" it works fine.  (I'm not sure
234     // whether this is how it's supposed to be, or whether this is a bug
235     // in the libc...)
236     //
237     // We don't currently use the locale setting for anything else, so for
238     // now, just set the locale to US English.
239     //
240     // FIXME: Not all environments may support en_US?  We should probably
241     // have a list of locales to try.
242     if (setlocale(LC_CTYPE, 0) == 'C') {
243         $x = setlocale(LC_CTYPE, 'en_US.' . $GLOBALS['charset']);
244     } else {
245         $x = setlocale(LC_CTYPE, $loc);
246     }
247
248     return $loc;
249 }
250
251 /** string pcre_fix_posix_classes (string $regexp)
252 *
253 * Older version (pre 3.x?) of the PCRE library do not support
254 * POSIX named character classes (e.g. [[:alnum:]]).
255 *
256 * This is a helper function which can be used to convert a regexp
257 * which contains POSIX named character classes to one that doesn't.
258 *
259 * All instances of strings like '[:<class>:]' are replaced by the equivalent
260 * enumerated character class.
261 *
262 * Implementation Notes:
263 *
264 * Currently we use hard-coded values which are valid only for
265 * ISO-8859-1.  Also, currently on the classes [:alpha:], [:alnum:],
266 * [:upper:] and [:lower:] are implemented.  (The missing classes:
267 * [:blank:], [:cntrl:], [:digit:], [:graph:], [:print:], [:punct:],
268 * [:space:], and [:xdigit:] could easily be added if needed.)
269 *
270 * This is a hack.  I tried to generate these classes automatically
271 * using ereg(), but discovered that in my PHP, at least, ereg() is
272 * slightly broken w.r.t. POSIX character classes.  (It includes
273 * "\xaa" and "\xba" in [:alpha:].)
274 *
275 * So for now, this will do.  --Jeff <dairiki@dairiki.org> 14 Mar, 2001
276 */
277 function pcre_fix_posix_classes ($regexp) {
278     global $charset;
279     if (!isset($charset))
280         $charset = CHARSET; // get rid of constant. pref is dynamic and language specific
281     if (in_array($GLOBALS['LANG'], array('zh')))
282         $charset = 'utf-8';
283     if (strstr($GLOBALS['LANG'],'.utf-8'))
284         $charset = 'utf-8';
285     elseif (strstr($GLOBALS['LANG'],'.euc-jp'))
286         $charset = 'euc-jp';
287     elseif (in_array($GLOBALS['LANG'], array('ja')))
288         //$charset = 'utf-8';
289         $charset = 'euc-jp';
290
291     if (strtolower($charset) == 'utf-8') { // thanks to John McPherson
292         // until posix class names/pcre work with utf-8
293         if (preg_match('/[[:upper:]]/', '\xc4\x80'))
294             return $regexp;    
295         // utf-8 non-ascii chars: most common (eg western) latin chars are 0xc380-0xc3bf
296         // we currently ignore other less common non-ascii characters
297         // (eg central/east european) latin chars are 0xc432-0xcdbf and 0xc580-0xc5be
298         // and indian/cyrillic/asian languages
299         
300         // this replaces [[:lower:]] with utf-8 match (Latin only)
301         $regexp = preg_replace('/\[\[\:lower\:\]\]/','(?:[a-z]|\xc3[\x9f-\xbf]|\xc4[\x81\x83\x85\x87])',
302                                $regexp);
303         // this replaces [[:upper:]] with utf-8 match (Latin only)
304         $regexp = preg_replace('/\[\[\:upper\:\]\]/','(?:[A-Z]|\xc3[\x80-\x9e]|\xc4[\x80\x82\x84\x86])',
305                                $regexp);
306     } elseif (preg_match('/[[:upper:]]/', 'Ä')) {
307         // First check to see if our PCRE lib supports POSIX character
308         // classes.  If it does, there's nothing to do.
309         return $regexp;
310     }
311     static $classes = array(
312                             'alnum' => "0-9A-Za-z\xc0-\xd6\xd8-\xf6\xf8-\xff",
313                             'alpha' => "A-Za-z\xc0-\xd6\xd8-\xf6\xf8-\xff",
314                             'upper' => "A-Z\xc0-\xd6\xd8-\xde",
315                             'lower' => "a-z\xdf-\xf6\xf8-\xff"
316                             );
317     $keys = join('|', array_keys($classes));
318     return preg_replace("/\[:($keys):]/e", '$classes["\1"]', $regexp);
319 }
320
321 function deduce_script_name() {
322     $s = &$GLOBALS['HTTP_SERVER_VARS'];
323     $script = @$s['SCRIPT_NAME'];
324     if (empty($script) or $script[0] != '/') {
325         // Some places (e.g. Lycos) only supply a relative name in
326         // SCRIPT_NAME, but give what we really want in SCRIPT_URL.
327         if (!empty($s['SCRIPT_URL']))
328             $script = $s['SCRIPT_URL'];
329     }
330     return $script;
331 }
332
333 function IsProbablyRedirectToIndex () {
334     // This might be a redirect to the DirectoryIndex,
335     // e.g. REQUEST_URI = /dir/?some_action got redirected
336     // to SCRIPT_NAME = /dir/index.php
337
338     // In this case, the proper virtual path is still
339     // $SCRIPT_NAME, since pages appear at
340     // e.g. /dir/index.php/HomePage.
341
342     $requri = preg_replace('/\?.*$/','',$GLOBALS['HTTP_SERVER_VARS']['REQUEST_URI']);
343     $requri = preg_quote($requri, '%');
344     return preg_match("%^${requri}[^/]*$%", $GLOBALS['HTTP_SERVER_VARS']['SCRIPT_NAME']);
345 }
346
347 // >= php-4.1.0
348 if (!function_exists('array_key_exists')) { // lib/IniConfig.php, sqlite, adodb, ...
349     function array_key_exists($item, $array) {
350         return isset($array[$item]);
351     }
352 }
353
354 // => php-4.0.5
355 if (!function_exists('is_scalar')) { // lib/stdlib.php:hash()
356     function is_scalar($x) {
357         return is_numeric($x) or is_string($x) or is_float($x) or is_bool($x); 
358     }
359 }
360
361 // => php-4.2.0. pear wants to break old php's! DB uses it now.
362 if (!function_exists('is_a')) {
363     function is_a($item,$class) {
364         return isa($item,$class); 
365     }
366 }
367
368 /** 
369  * wordwrap() might crash between 4.1.2 and php-4.3.0RC2, fixed in 4.3.0
370  * See http://bugs.php.net/bug.php?id=20927 and 
371  * http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2002-1396
372  * Improved version of wordwrap2() in the comments at http://www.php.net/wordwrap
373  */
374 function safe_wordwrap($str, $width=80, $break="\n", $cut=false) {
375     if (check_php_version(4,3))
376         return wordwrap($str, $width, $break, $cut);
377     elseif (!check_php_version(4,1,2))
378         return wordwrap($str, $width, $break, $cut);
379     else {
380         $len = strlen($str);
381         $tag = 0; $result = ''; $wordlen = 0;
382         for ($i = 0; $i < $len; $i++) {
383             $chr = $str[$i];
384             // don't break inside xml tags
385             if ($chr == '<') {
386                 $tag++;
387             } elseif ($chr == '>') {
388                 $tag--;
389             } elseif (!$tag) {
390                 if (!function_exists('ctype_space')) {
391                     if (preg_match('/^\s$/', $chr))
392                         $wordlen = 0;
393                     else
394                         $wordlen++;
395                 }
396                 elseif (ctype_space($chr)) {
397                     $wordlen = 0;
398                 } else {
399                     $wordlen++;
400                 }
401             }
402             if ((!$tag) && ($wordlen) && (!($wordlen % $width))) {
403                 $chr .= $break;
404             }
405             $result .= $chr;
406         }
407         return $result;
408         /*
409         if (isset($str) && isset($width)) {
410             $ex = explode(" ", $str); // wrong: must use preg_split \s+
411             $rp = array();
412             for ($i=0; $i<count($ex); $i++) {
413                 // $word_array = preg_split('//', $ex[$i], -1, PREG_SPLIT_NO_EMPTY);
414                 // delete #&& !is_numeric($ex[$i])# if you want force it anyway
415                 if (strlen($ex[$i]) > $width && !is_numeric($ex[$i])) {
416                     $where = 0;
417                     $rp[$i] = "";
418                     for($b=0; $b < (ceil(strlen($ex[$i]) / $width)); $b++) {
419                         $rp[$i] .= substr($ex[$i], $where, $width).$break;
420                         $where += $width;
421                     }
422                 } else {
423                     $rp[$i] = $ex[$i];
424                 }
425             }
426             return implode(" ",$rp);
427         }
428         return $text;
429         */
430     }
431 }
432
433 function getUploadFilePath() {
434     return defined('PHPWIKI_DIR') ? PHPWIKI_DIR . "/uploads/" : "uploads/";
435 }
436 function getUploadDataPath() {
437   return SERVER_URL . ((substr(DATA_PATH,0,1)=='/') ? '' : "/") . DATA_PATH . '/uploads/';
438 }
439
440 // $Log: not supported by cvs2svn $
441 // Revision 1.126  2004/12/20 16:05:00  rurban
442 // gettext msg unification
443 //
444 // Revision 1.125  2004/11/21 11:59:18  rurban
445 // remove final \n to be ob_cache independent
446 //
447 // Revision 1.124  2004/11/09 17:11:16  rurban
448 // * revert to the wikidb ref passing. there's no memory abuse there.
449 // * use new wikidb->_cache->_id_cache[] instead of wikidb->_iwpcache, to effectively
450 //   store page ids with getPageLinks (GleanDescription) of all existing pages, which
451 //   are also needed at the rendering for linkExistingWikiWord().
452 //   pass options to pageiterator.
453 //   use this cache also for _get_pageid()
454 //   This saves about 8 SELECT count per page (num all pagelinks).
455 // * fix passing of all page fields to the pageiterator.
456 // * fix overlarge session data which got broken with the latest ACCESS_LOG_SQL changes
457 //
458 // Revision 1.123  2004/11/05 21:03:27  rurban
459 // new DEBUG flag: _DEBUG_LOGIN (64)
460 //   verbose login debug-msg (settings and reason for failure)
461 //
462 // Revision 1.122  2004/10/14 17:49:58  rurban
463 // fix warning in safe_wordwrap
464 //
465 // Revision 1.121  2004/10/14 17:48:19  rurban
466 // typo in safe_wordwrap
467 //
468 // Revision 1.120  2004/09/22 13:46:26  rurban
469 // centralize upload paths.
470 // major WikiPluginCached feature enhancement:
471 //   support _STATIC pages in uploads/ instead of dynamic getimg.php? subrequests.
472 //   mainly for debugging, cache problems and action=pdf
473 //
474 // Revision 1.119  2004/09/16 07:50:37  rurban
475 // wordwrap() might crash between 4.1.2 and php-4.3.0RC2, fixed in 4.3.0
476 // See http://bugs.php.net/bug.php?id=20927 and
477 //     http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2002-1396
478 // Improved version of wordwrap2() from the comments at http://www.php.net/wordwrap
479 //
480 // Revision 1.118  2004/07/13 14:03:31  rurban
481 // just some comments
482 //
483 // Revision 1.117  2004/06/21 17:29:17  rurban
484 // pear DB introduced a is_a requirement. so pear lost support for php < 4.2.0
485 //
486 // Revision 1.116  2004/06/21 08:39:37  rurban
487 // pear/Cache update from Cache-1.5.4 (added db and trifile container)
488 // pear/DB update from DB-1.6.1 (mysql bugfixes, php5 compat, DB_PORTABILITY features)
489 //
490 // Revision 1.115  2004/06/20 14:42:54  rurban
491 // various php5 fixes (still broken at blockparser)
492 //
493 // Revision 1.114  2004/06/19 11:48:05  rurban
494 // moved version check forwards: already needed in XmlElement::_quote
495 //
496 // Revision 1.113  2004/06/03 12:59:41  rurban
497 // simplify translation
498 // NS4 wrap=virtual only
499 //
500 // Revision 1.112  2004/06/02 18:01:46  rurban
501 // init global FileFinder to add proper include paths at startup
502 //   adds PHPWIKI_DIR if started from another dir, lib/pear also
503 // fix slashify for Windows
504 // fix USER_AUTH_POLICY=old, use only USER_AUTH_ORDER methods (besides HttpAuth)
505 //
506 // Revision 1.111  2004/05/17 17:43:29  rurban
507 // CGI: no PATH_INFO fix
508 //
509 // Revision 1.110  2004/05/16 23:10:44  rurban
510 // update_locale wrongly resetted LANG, which broke japanese.
511 // japanese now correctly uses EUC_JP, not utf-8.
512 // more charset and lang headers to help the browser.
513 //
514 // Revision 1.109  2004/05/08 14:06:12  rurban
515 // new support for inlined image attributes: [image.jpg size=50x30 align=right]
516 // minor stability and portability fixes
517 //
518 // Revision 1.108  2004/05/08 11:25:16  rurban
519 // php-4.0.4 fixes
520 //
521 // Revision 1.107  2004/05/06 17:30:38  rurban
522 // CategoryGroup: oops, dos2unix eol
523 // improved phpwiki_version:
524 //   pre -= .0001 (1.3.10pre: 1030.099)
525 //   -p1 += .001 (1.3.9-p1: 1030.091)
526 // improved InstallTable for mysql and generic SQL versions and all newer tables so far.
527 // abstracted more ADODB/PearDB methods for action=upgrade stuff:
528 //   backend->backendType(), backend->database(),
529 //   backend->listOfFields(),
530 //   backend->listOfTables(),
531 //
532 // Revision 1.106  2004/05/02 19:12:14  rurban
533 // fix sf.net bug #945154 Konqueror alt css
534 //
535 // Revision 1.105  2004/05/02 15:10:06  rurban
536 // new finally reliable way to detect if /index.php is called directly
537 //   and if to include lib/main.php
538 // new global AllActionPages
539 // SetupWiki now loads all mandatory pages: HOME_PAGE, action pages, and warns if not.
540 // WikiTranslation what=buttons for Carsten to create the missing MacOSX buttons
541 // PageGroupTestOne => subpages
542 // renamed PhpWikiRss to PhpWikiRecentChanges
543 // more docs, default configs, ...
544 //
545 // Revision 1.104  2004/05/01 11:26:37  rurban
546 // php-4.0.x support: array_key_exists (PHP 4 >= 4.1.0)
547 //
548 // Revision 1.103  2004/04/30 00:04:14  rurban
549 // zh (chinese language) support
550 //
551 // Revision 1.102  2004/04/29 23:25:12  rurban
552 // re-ordered locale init (as in 1.3.9)
553 // fixed loadfile with subpages, and merge/restore anyway
554 //   (sf.net bug #844188)
555 //
556 // Revision 1.101  2004/04/26 13:22:32  rurban
557 // calculate bool old or dynamic constants later
558 //
559 // Revision 1.100  2004/04/26 12:15:01  rurban
560 // check default config values
561 //
562 // Revision 1.99  2004/04/21 14:04:24  zorloc
563 // 'Require lib/FileFinder.php' necessary to allow for call to FindLocalizedFile().
564 //
565 // Revision 1.98  2004/04/20 18:10:28  rurban
566 // config refactoring:
567 //   FileFinder is needed for WikiFarm scripts calling index.php
568 //   config run-time calls moved to lib/IniConfig.php:fix_configs()
569 //   added PHPWIKI_DIR smart-detection code (Theme finder)
570 //   moved FileFind to lib/FileFinder.php
571 //   cleaned lib/config.php
572 //
573 // Revision 1.97  2004/04/18 01:11:52  rurban
574 // more numeric pagename fixes.
575 // fixed action=upload with merge conflict warnings.
576 // charset changed from constant to global (dynamic utf-8 switching)
577 //
578
579 // For emacs users
580 // Local Variables:
581 // mode: php
582 // tab-width: 8
583 // c-basic-offset: 4
584 // c-hanging-comment-ender-p: nil
585 // indent-tabs-mode: nil
586 // End:
587 ?>