$wgArticle is deprecated! Possible removal in 1.20 or 1.21!
authorChad Horohoe <demon@users.mediawiki.org>
Sun, 22 May 2011 17:59:47 +0000 (17:59 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Sun, 22 May 2011 17:59:47 +0000 (17:59 +0000)
* Encapsulate index.php in wfIndexMain() (similar to r77873)
* Kill $wgArticle check in Exception, not necessary anymore
* Kill $wgArticle in Setup, also not necessary
* Add angry note about $wgArticle to rebuildFileCache.
* Remove note about $wgArticle in Parser since it's dying anyway

docs/globals.txt
includes/Exception.php
includes/Setup.php
includes/Wiki.php
includes/parser/Parser.php
index.php
maintenance/rebuildFileCache.php

index bb3b294..ac4bd79 100644 (file)
@@ -45,9 +45,6 @@ For a description of the classes, see design.txt.
 $wgTitle
        Title object created from the request URL.
 
-$wgArticle
-       Article object corresponding to $wgTitle.
-
 $wgOut
        OutputPage object for HTTP response.
 
index 4c7fb6e..015298d 100644 (file)
@@ -22,7 +22,8 @@ class MWException extends Exception {
        function useOutputPage() {
                return $this->useMessageCache() &&
                        !empty( $GLOBALS['wgFullyInitialised'] ) &&
-                       ( !empty( $GLOBALS['wgArticle'] ) || ( !empty( $GLOBALS['wgOut'] ) && !$GLOBALS['wgOut']->isArticleRelated() ) ) &&
+                       !empty( $GLOBALS['wgOut'] ) &&
+                       !$GLOBALS['wgOut']->isArticleRelated() &&
                        !empty( $GLOBALS['wgTitle'] );
        }
 
index 069c03f..2ae28ad 100644 (file)
@@ -443,11 +443,10 @@ if ( !is_object( $wgAuth ) ) {
 
 # Placeholders in case of DB error
 $wgTitle = null;
-$wgArticle = null;
 
 $wgDeferredUpdateList = array();
 
-// We need to check for safe_mode, because mail() willl throws an E_NOTICE
+// We need to check for safe_mode, because mail() will throw an E_NOTICE
 // on additional parameters
 if( !is_null($wgAdditionalMailParams) && wfIniGetBool('safe_mode') ) {
        $wgAdditionalMailParams = null;
index 25d220f..fe9b0e3 100644 (file)
@@ -150,7 +150,6 @@ class MediaWiki {
 
                // Invalid titles. Bug 21776: The interwikis must redirect even if the page name is empty.
                if ( $this->context->title instanceof BadTitle ) {
-                       // Die now before we mess up $wgArticle and the skin stops working
                        throw new ErrorPageError( 'badtitle', 'badtitletext' );
 
                // Interwiki redirects
@@ -292,7 +291,7 @@ class MediaWiki {
        }
 
        /**
-        * Initialize the object to be known as $wgArticle for "standard" actions
+        * Initialize the main Article object for "standard" actions (view, etc)
         * Create an Article object for the page, following redirects if needed.
         *
         * @return mixed an Article, or a string to redirect to another URL
index 085f392..b0f8235 100644 (file)
@@ -34,7 +34,7 @@
  * Globals used:
  *    objects:   $wgLang, $wgContLang
  *
- * NOT $wgArticle, $wgUser or $wgTitle. Keep them away!
+ * NOT $wgUser or $wgTitle. Keep them away!
  *
  * settings:
  *  $wgUseDynamicDates*, $wgInterwikiMagic*,
index 685b14e..ba325e0 100644 (file)
--- a/index.php
+++ b/index.php
@@ -63,82 +63,97 @@ ENDL;
 
 # Initialise common code.  This gives us access to GlobalFunctions, the AutoLoader, and
 # the globals $wgRequest, $wgOut, $wgUser, $wgLang and $wgContLang, amongst others; it
-# does *not* load $wgTitle or $wgArticle
+# does *not* load $wgTitle
 require ( dirname( __FILE__ ) . '/includes/WebStart.php' );
 
-wfProfileIn( 'index.php' );
-wfProfileIn( 'index.php-setup' );
-
-$maxLag = $wgRequest->getVal( 'maxlag' );
-if ( !is_null( $maxLag ) ) {
-       $lb = wfGetLB(); // foo()->bar() is not supported in PHP4
-       list( $host, $lag ) = $lb->getMaxLag();
-       if ( $lag > $maxLag ) {
-               header( 'HTTP/1.1 503 Service Unavailable' );
-               header( 'Retry-After: ' . max( intval( $maxLag ), 5 ) );
-               header( 'X-Database-Lag: ' . intval( $lag ) );
-               header( 'Content-Type: text/plain' );
-               if( $wgShowHostnames ) {
-                       echo "Waiting for $host: $lag seconds lagged\n";
-               } else {
-                       echo "Waiting for a database server: $lag seconds lagged\n";
+wfIndexMain();
+
+function wfIndexMain() {
+       global $wgRequest, $wgShowHostnames, $mediaWiki, $wgTitle, $wgUseAjax, $wgUseFileCache;
+
+       wfProfileIn( 'index.php' );
+       wfProfileIn( 'index.php-setup' );
+
+       $maxLag = $wgRequest->getVal( 'maxlag' );
+       if ( !is_null( $maxLag ) ) {
+               $lb = wfGetLB(); // foo()->bar() is not supported in PHP4
+               list( $host, $lag ) = $lb->getMaxLag();
+               if ( $lag > $maxLag ) {
+                       header( 'HTTP/1.1 503 Service Unavailable' );
+                       header( 'Retry-After: ' . max( intval( $maxLag ), 5 ) );
+                       header( 'X-Database-Lag: ' . intval( $lag ) );
+                       header( 'Content-Type: text/plain' );
+                       if( $wgShowHostnames ) {
+                               echo "Waiting for $host: $lag seconds lagged\n";
+                       } else {
+                               echo "Waiting for a database server: $lag seconds lagged\n";
+                       }
+                       exit;
                }
-               exit;
        }
-}
 
-# Initialize MediaWiki base class
-$context = RequestContext::getMain();
-$mediaWiki = new MediaWiki( $context );
+       # Initialize MediaWiki base class
+       $context = RequestContext::getMain();
+       $mediaWiki = new MediaWiki( $context );
 
-# Set title from request parameters
-$wgTitle = $mediaWiki->getTitle();
-$action = $wgRequest->getVal( 'action', 'view' );
+       # Set title from request parameters
+       $wgTitle = $mediaWiki->getTitle();
+       $action = $wgRequest->getVal( 'action', 'view' );
 
-wfProfileOut( 'index.php-setup' );
+       wfProfileOut( 'index.php-setup' );
 
-# Send Ajax requests to the Ajax dispatcher.
-if ( $wgUseAjax && $action == 'ajax' ) {
-       $dispatcher = new AjaxDispatcher();
-       $dispatcher->performAction();
-       wfProfileOut( 'index.php' );
-       $mediaWiki->restInPeace();
-       exit;
-}
+       # Send Ajax requests to the Ajax dispatcher.
+       if ( $wgUseAjax && $action == 'ajax' ) {
+               $dispatcher = new AjaxDispatcher();
+               $dispatcher->performAction();
+               wfProfileOut( 'index.php' );
+               $mediaWiki->restInPeace();
+               exit;
+       }
 
-if ( $wgUseFileCache && $wgTitle !== null ) {
-       wfProfileIn( 'index.php-filecache' );
-       // Raw pages should handle cache control on their own,
-       // even when using file cache. This reduces hits from clients.
-       if ( $action != 'raw' && HTMLFileCache::useFileCache() ) {
-               /* Try low-level file cache hit */
-               $cache = new HTMLFileCache( $wgTitle, $action );
-               if ( $cache->isFileCacheGood( /* Assume up to date */ ) ) {
-                       /* Check incoming headers to see if client has this cached */
-                       if ( !$context->output->checkLastModified( $cache->fileCacheTime() ) ) {
-                               $cache->loadFromFileCache();
+       if ( $wgUseFileCache && $wgTitle !== null ) {
+               wfProfileIn( 'index.php-filecache' );
+               // Raw pages should handle cache control on their own,
+               // even when using file cache. This reduces hits from clients.
+               if ( $action != 'raw' && HTMLFileCache::useFileCache() ) {
+                       /* Try low-level file cache hit */
+                       $cache = new HTMLFileCache( $wgTitle, $action );
+                       if ( $cache->isFileCacheGood( /* Assume up to date */ ) ) {
+                               /* Check incoming headers to see if client has this cached */
+                               if ( !$context->output->checkLastModified( $cache->fileCacheTime() ) ) {
+                                       $cache->loadFromFileCache();
+                               }
+                               # Do any stats increment/watchlist stuff
+                               $article = MediaWiki::articleFromTitle( $wgTitle, $context );
+                               $article->viewUpdates();
+                               # Tell OutputPage that output is taken care of
+                               $context->output->disable();
+                               wfProfileOut( 'index.php-filecache' );
+                               $mediaWiki->finalCleanup();
+                               wfProfileOut( 'index.php' );
+                               $mediaWiki->restInPeace();
+                               exit;
                        }
-                       # Do any stats increment/watchlist stuff
-                       $wgArticle = MediaWiki::articleFromTitle( $wgTitle, $context );
-                       $wgArticle->viewUpdates();
-                       # Tell OutputPage that output is taken care of
-                       $context->output->disable();
-                       wfProfileOut( 'index.php-filecache' );
-                       $mediaWiki->finalCleanup();
-                       wfProfileOut( 'index.php' );
-                       $mediaWiki->restInPeace();
-                       exit;
                }
+               wfProfileOut( 'index.php-filecache' );
        }
-       wfProfileOut( 'index.php-filecache' );
-}
 
-$mediaWiki->performRequestForTitle( $wgArticle );
-$mediaWiki->finalCleanup();
+       $mediaWiki->performRequestForTitle( $article );
+
+       /**
+        * $wgArticle is deprecated, do not use it. This will possibly be removed
+        * entirely in 1.20 or 1.21
+        * @deprecated since 1.19
+        */
+       global $wgArticle;
+       $wgArticle = $article;
 
-wfProfileOut( 'index.php' );
+       $mediaWiki->finalCleanup();
 
-$mediaWiki->restInPeace();
+       wfProfileOut( 'index.php' );
+
+       $mediaWiki->restInPeace();
+}
 
 /**
  * Display something vaguely comprehensible in the event of a totally unrecoverable error.
index 4bf6462..aa1bbbb 100644 (file)
@@ -31,6 +31,9 @@ class RebuildFileCache extends Maintenance {
                $this->setBatchSize( 100 );
        }
 
+       /**
+        * @todo MAKE $wgArticle GO AWAY! This is the absolute LAST use in core
+        */
        public function execute() {
                global $wgUseFileCache, $wgDisableCounters, $wgContentNamespaces, $wgRequestTime;
                global $wgTitle, $wgArticle, $wgOut;