Decouple revision.rev_id from text.old_id
[lhc/web/wiklou.git] / includes / Setup.php
index d9d3ca2..c615667 100644 (file)
@@ -21,22 +21,36 @@ global $wgProfiling, $wgProfileSampleRate, $wgIP, $wgUseSquid, $IP;
 if( !isset( $wgProfiling ) )
        $wgProfiling = false;
 
-if ( $wgProfiling and (0 == rand() % $wgProfileSampleRate ) ) {        
-       require_once( 'Profiling.php' );
+if ( $wgProfiling and (0 == rand() % $wgProfileSampleRate ) ) {
+        require_once( 'Profiling.php' );
 } else {
-       function wfProfileIn( $fn = '' ) {}
-       function wfProfileOut( $fn = '' ) {}
-       function wfGetProfilingOutput( $s, $e ) {}
-       function wfProfileClose() {}
+        function wfProfileIn( $fn = '' ) {
+                global $hackwhere, $wgDBname;
+                $hackwhere[] = $fn;
+                if (function_exists("setproctitle"))
+                        setproctitle($fn . " [$wgDBname]");
+        }
+        function wfProfileOut( $fn = '' ) {
+                global $hackwhere, $wgDBname;
+                if (count($hackwhere))
+                        array_pop($hackwhere);
+                if (function_exists("setproctitle") && count($hackwhere))
+                        setproctitle($hackwhere[count($hackwhere)-1] . " [$wgDBname]");
+        }
+        function wfGetProfilingOutput( $s, $e ) {}
+        function wfProfileClose() {}
 }
 
+
+
 /* collect the originating ips */
 if( $wgUseSquid && isset( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
        # If the web server is behind a reverse proxy, we need to find
        # out where our requests are really coming from.
        $hopips = array_map( 'trim', explode( ',', $_SERVER['HTTP_X_FORWARDED_FOR'] ) );
 
-       while(in_array(trim(end($hopips)), $wgSquidServers)){
+       $allsquids = array_merge($wgSquidServers, $wgSquidServersNoPurge);
+       while(in_array(trim(end($hopips)), $allsquids)){
                array_pop($hopips);
        }
        $wgIP = trim(end($hopips));
@@ -47,11 +61,6 @@ if( $wgUseSquid && isset( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
        $wgIP = '127.0.0.1';
 }
 
-if ( $wgUseData ) {
-       $wgExtraNamespaces[20] = 'Data' ;
-       $wgExtraNamespaces[21] = 'Data_talk' ;
-}
-
 $fname = 'Setup.php';
 wfProfileIn( $fname );
 global $wgUseDynamicDates;
@@ -72,15 +81,13 @@ require_once( 'Block.php' );
 require_once( 'MessageCache.php' );
 require_once( 'BlockCache.php' );
 require_once( 'Parser.php' );
-require_once( 'ParserXML.php' );
+require_once( 'Parser.php' );
 require_once( 'ParserCache.php' );
 require_once( 'WebRequest.php' );
 require_once( 'LoadBalancer.php' );
 require_once( 'HistoryBlob.php' );
-       
-$wgRequest = new WebRequest();
-
 
+$wgRequest = new WebRequest();
 
 wfProfileOut( $fname.'-includes' );
 wfProfileIn( $fname.'-misc1' );
@@ -93,7 +100,7 @@ global $wgMsgCacheExpiry, $wgCommandLineMode;
 global $wgBlockCache, $wgParserCache, $wgParser, $wgMsgParserOptions;
 global $wgLoadBalancer, $wgDBservers, $wgDebugDumpSql;
 global $wgDBserver, $wgDBuser, $wgDBpassword, $wgDBname, $wgDBtype;
-global $wgUseOldExistenceCheck, $wgEnablePersistentLC;
+global $wgUseOldExistenceCheck, $wgEnablePersistentLC, $wgMasterWaitTimeout;
 
 global $wgFullyInitialised;
 
@@ -108,7 +115,7 @@ if ( $wgCommandLineMode ) {
                wfDebug( "$name: $value\n" );
        }
        wfDebug( "\n" );
-} else {
+} elseif( isset( $_SERVER['REQUEST_URI'] ) ) {
        wfDebug( $_SERVER['REQUEST_METHOD'] . ' ' . $_SERVER['REQUEST_URI'] . "\n" );
 }
 
@@ -140,7 +147,7 @@ if( $wgUseMemCached ) {
                }
        }
 
-       $wgMemc = new MemCachedClientforWiki( array('persistant' => true) );
+       $wgMemc = new MemCachedClientforWiki( array('persistant' => true, 'compress_threshold' => 1500 ) );
        $wgMemc->set_servers( $wgMemCachedServers );
        $wgMemc->set_debug( $wgMemCachedDebug );
 
@@ -151,6 +158,12 @@ if( $wgUseMemCached ) {
        require_once( 'ObjectCache.php' );
        $wgMemc = new TurckBagOStuff;
        $messageMemc = &$wgMemc;
+} elseif ( $wgUseEAccelShm ) {
+       # eAccelerator shared memory
+       #
+       require_once( 'ObjectCache.php' );
+       $wgMemc = new eAccelBagOStuff;
+       $messageMemc = &$wgMemc;
 } else {
        /**
         * No shared memory
@@ -205,7 +218,7 @@ if ( !$wgDBservers ) {
                'flags' => ($wgDebugDumpSql ? DBO_DEBUG : 0) | DBO_DEFAULT
        ));
 }
-$wgLoadBalancer = LoadBalancer::newFromParams( $wgDBservers );
+$wgLoadBalancer = LoadBalancer::newFromParams( $wgDBservers, false, $wgMasterWaitTimeout );
 $wgLoadBalancer->loadMasterPos();
 
 wfProfileOut( $fname.'-database' );
@@ -232,6 +245,8 @@ if( $wgCommandLineMode ) {
        # Used for some maintenance scripts; user session cookies can screw things up
        # when the database is in an in-between state.
        $wgUser = new User();
+       # Prevent loading User settings from the DB.
+       $wgUser->setLoaded( true );
 } else {
        $wgUser = User::loadFromSession();
 }
@@ -240,13 +255,11 @@ wfProfileOut( $fname.'-User' );
 wfProfileIn( $fname.'-language2' );
 
 function setupLangObj(&$langclass) {
-       global $wgUseLatin1, $IP;
+       global $IP;
 
        if( ! class_exists( $langclass ) ) {
-               # Default to English/UTF-8, or for non-UTF-8, to latin-1
+               # Default to English/UTF-8
                $baseclass = 'LanguageUtf8';
-               if( $wgUseLatin1 )
-                       $baseclass = 'LanguageLatin1';
                require_once( "$IP/languages/$baseclass.php" );
                $lc = strtolower(substr($langclass, 8));
                $snip = "
@@ -256,7 +269,6 @@ function setupLangObj(&$langclass) {
                                }
 
                        }";
-
                eval($snip);
        }
 
@@ -272,6 +284,7 @@ $wgContLanguageCode = $wgLanguageCode;
 $wgContLangClass = 'Language' . str_replace( '-', '_', ucfirst( $wgContLanguageCode ) );
 
 $wgContLang = setupLangObj( $wgContLangClass );
+$wgContLang->initEncoding();
 
 // set default user option from content language
 if( !$wgUser->mDataLoaded ) {
@@ -280,9 +293,8 @@ if( !$wgUser->mDataLoaded ) {
 
 // wgLanguageCode now specifically means the UI language
 $wgLanguageCode = $wgUser->getOption('language');
-if( empty( $wgLanguageCode ) ) {
-       # Quick hack for upgrades where this will be blank,
-       # and it's not handled right. Set to default.
+# Validate $wgLanguageCode, which will soon be sent to an eval()
+if( empty( $wgLanguageCode ) || !preg_match( '/^[a-z\-]*$/', $wgLanguageCode ) ) {
        $wgLanguageCode = $wgContLanguageCode;
 }
 
@@ -351,13 +363,19 @@ wfProfileOut( $fname.'-BlockCache' );
 wfProfileIn( $fname.'-misc2' );
 
 $wgDeferredUpdateList = array();
+$wgPostCommitUpdateList = array();
+
 $wgLinkCache = new LinkCache();
 $wgMagicWords = array();
 $wgMwRedir =& MagicWord::get( MAG_REDIRECT );
 $wgParserCache = new ParserCache( $messageMemc );
 
-if ( $wgUseXMLparser ) $wgParser = new ParserXML();
-else $wgParser = new Parser();
+if ( $wgUseXMLparser ) {
+       require_once( 'ParserXML.php' );
+       $wgParser = new ParserXML();
+} else {
+       $wgParser = new Parser();
+}
 $wgOut->setParserOptions( ParserOptions::newFromUser( $wgUser ) );
 $wgMsgParserOptions = ParserOptions::newFromUser($wgUser);
 wfSeedRandom();