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