Reverting r16861; incompatible change to message texts, breaks a lot of toggle displa...
[lhc/web/wiklou.git] / includes / OutputPage.php
index 1d89a45..0d55c2e 100644 (file)
@@ -1,63 +1,67 @@
 <?php
 if ( ! defined( 'MEDIAWIKI' ) )
-       die();
+       die( 1 );
 /**
  * @package MediaWiki
  */
 
-if ( $wgUseTeX )
-       require_once 'Math.php';
-
 /**
  * @todo document
  * @package MediaWiki
  */
 class OutputPage {
-       var $mHeaders, $mMetatags, $mKeywords;
+       var $mMetatags, $mKeywords;
        var $mLinktags, $mPagetitle, $mBodytext, $mDebugtext;
        var $mHTMLtitle, $mRobotpolicy, $mIsarticle, $mPrintable;
        var $mSubtitle, $mRedirect, $mStatusCode;
        var $mLastModified, $mETag, $mCategoryLinks;
-       var $mScripts, $mLinkColours;
+       var $mScripts, $mLinkColours, $mPageLinkTitle;
 
        var $mSuppressQuickbar;
        var $mOnloadHandler;
        var $mDoNothing;
        var $mContainsOldMagic, $mContainsNewMagic;
        var $mIsArticleRelated;
-       var $mParserOptions;
+       protected $mParserOptions; // lazy initialised, use parserOptions()
        var $mShowFeedLinks = false;
        var $mEnableClientCache = true;
        var $mArticleBodyOnly = false;
+       
+       var $mNewSectionLink = false;
+       var $mNoGallery = false;
 
        /**
         * Constructor
         * Initialise private variables
         */
        function OutputPage() {
-               $this->mHeaders = $this->mMetatags =
-               $this->mKeywords = $this->mLinktags = array();
+               $this->mMetatags = $this->mKeywords = $this->mLinktags = array();
                $this->mHTMLtitle = $this->mPagetitle = $this->mBodytext =
                $this->mRedirect = $this->mLastModified =
                $this->mSubtitle = $this->mDebugtext = $this->mRobotpolicy =
-               $this->mOnloadHandler = '';
+               $this->mOnloadHandler = $this->mPageLinkTitle = '';
                $this->mIsArticleRelated = $this->mIsarticle = $this->mPrintable = true;
                $this->mSuppressQuickbar = $this->mPrintable = false;
                $this->mLanguageLinks = array();
-               $this->mCategoryLinks = array() ;
+               $this->mCategoryLinks = array();
                $this->mDoNothing = false;
                $this->mContainsOldMagic = $this->mContainsNewMagic = 0;
-               $this->mParserOptions = ParserOptions::newFromUser( $temp = NULL );
+               $this->mParserOptions = null;
                $this->mSquidMaxage = 0;
                $this->mScripts = '';
                $this->mETag = false;
                $this->mRevisionId = null;
+               $this->mNewSectionLink = false;
+       }
+       
+       function redirect( $url, $responsecode = '302' ) { 
+               # Strip newlines as a paranoia check for header injection in PHP<5.1.2
+               $this->mRedirect = str_replace( "\n", '', $url );
+               $this->mRedirectCode = $responsecode;
        }
 
-       function addHeader( $name, $val ) { array_push( $this->mHeaders, $name.': '.$val ) ; }
-       function redirect( $url, $responsecode = '302' ) { $this->mRedirect = $url; $this->mRedirectCode = $responsecode; }
        function setStatusCode( $statusCode ) { $this->mStatusCode = $statusCode; }
-       
+
        # To add an http-equiv meta tag, precede the name with "http:"
        function addMeta( $name, $val ) { array_push( $this->mMetatags, array( $name, $val ) ); }
        function addKeyword( $text ) { array_push( $this->mKeywords, $text ); }
@@ -88,22 +92,24 @@ class OutputPage {
         * returns true iff cache-ok headers was sent.
         */
        function checkLastModified ( $timestamp ) {
-               global $wgCachePages, $wgUser;
+               global $wgCachePages, $wgCacheEpoch, $wgUser, $wgRequest;
+               $fname = 'OutputPage::checkLastModified';
+
                if ( !$timestamp || $timestamp == '19700101000000' ) {
-                       wfDebug( "CACHE DISABLED, NO TIMESTAMP\n" );
+                       wfDebug( "$fname: CACHE DISABLED, NO TIMESTAMP\n" );
                        return;
                }
                if( !$wgCachePages ) {
-                       wfDebug( "CACHE DISABLED\n", false );
+                       wfDebug( "$fname: CACHE DISABLED\n", false );
                        return;
                }
                if( $wgUser->getOption( 'nocache' ) ) {
-                       wfDebug( "USER DISABLED CACHE\n", false );
+                       wfDebug( "$fname: USER DISABLED CACHE\n", false );
                        return;
                }
 
                $timestamp=wfTimestamp(TS_MW,$timestamp);
-               $lastmod = wfTimestamp( TS_RFC2822, max( $timestamp, $wgUser->mTouched ) );
+               $lastmod = wfTimestamp( TS_RFC2822, max( $timestamp, $wgUser->mTouched, $wgCacheEpoch ) );
 
                if( !empty( $_SERVER['HTTP_IF_MODIFIED_SINCE'] ) ) {
                        # IE sends sizes after the date like this:
@@ -112,23 +118,23 @@ class OutputPage {
                        $modsince = preg_replace( '/;.*$/', '', $_SERVER["HTTP_IF_MODIFIED_SINCE"] );
                        $modsinceTime = strtotime( $modsince );
                        $ismodsince = wfTimestamp( TS_MW, $modsinceTime ? $modsinceTime : 1 );
-                       wfDebug( "-- client send If-Modified-Since: " . $modsince . "\n", false );
-                       wfDebug( "--  we might send Last-Modified : $lastmod\n", false );
-                       if( ($ismodsince >= $timestamp ) && $wgUser->validateCache( $ismodsince ) ) {
+                       wfDebug( "$fname: -- client send If-Modified-Since: " . $modsince . "\n", false );
+                       wfDebug( "$fname: --  we might send Last-Modified : $lastmod\n", false );
+                       if( ($ismodsince >= $timestamp ) && $wgUser->validateCache( $ismodsince ) && $ismodsince >= $wgCacheEpoch ) {
                                # Make sure you're in a place you can leave when you call us!
-                               header( "HTTP/1.0 304 Not Modified" );
+                               $wgRequest->response()->header( "HTTP/1.0 304 Not Modified" );
                                $this->mLastModified = $lastmod;
                                $this->sendCacheControl();
-                               wfDebug( "CACHED client: $ismodsince ; user: $wgUser->mTouched ; page: $timestamp\n", false );
+                               wfDebug( "$fname: CACHED client: $ismodsince ; user: $wgUser->mTouched ; page: $timestamp ; site $wgCacheEpoch\n", false );
                                $this->disable();
                                @ob_end_clean(); // Don't output compressed blob
                                return true;
                        } else {
-                               wfDebug( "READY  client: $ismodsince ; user: $wgUser->mTouched ; page: $timestamp\n", false );
+                               wfDebug( "$fname: READY  client: $ismodsince ; user: $wgUser->mTouched ; page: $timestamp ; site $wgCacheEpoch\n", false );
                                $this->mLastModified = $lastmod;
                        }
                } else {
-                       wfDebug( "client did not send If-Modified-Since header\n", false );
+                       wfDebug( "$fname: client did not send If-Modified-Since header\n", false );
                        $this->mLastModified = $lastmod;
                }
        }
@@ -168,7 +174,7 @@ class OutputPage {
                                $name .= ' - '.$taction;
                        }
                }
-               
+
                $this->setHTMLTitle( wfMsg( 'pagetitle', $name ) );
        }
        function getHTMLTitle() { return $this->mHTMLtitle; }
@@ -217,6 +223,9 @@ class OutputPage {
        function addCategoryLinks($categories) {
                global $wgUser, $wgContLang;
 
+               if ( !is_array( $categories ) ) {
+                       return;
+               }
                # Add the links to the link cache in a batch
                $arr = array( NS_CATEGORY => $categories );
                $lb = new LinkBatch;
@@ -246,13 +255,16 @@ class OutputPage {
 
        /* @deprecated */
        function setParserOptions( $options ) {
-               return $this->ParserOptions( $options );
+               return $this->parserOptions( $options );
        }
 
-       function ParserOptions( $options = null ) {
+       function parserOptions( $options = null ) {
+               if ( !$this->mParserOptions ) {
+                       $this->mParserOptions = new ParserOptions;
+               }
                return wfSetVar( $this->mParserOptions, $options );
        }
-       
+
        /**
         * Set the revision ID which will be seen by the wiki text parser
         * for things such as embedded {{REVISIONID}} variable use.
@@ -280,23 +292,38 @@ class OutputPage {
 
        function addWikiTextTitle($text, &$title, $linestart) {
                global $wgParser;
-               $parserOutput = $wgParser->parse( $text, $title, $this->mParserOptions,
+               $fname = 'OutputPage:addWikiTextTitle';
+               wfProfileIn($fname);
+               wfIncrStats('pcache_not_possible');
+               $parserOutput = $wgParser->parse( $text, $title, $this->parserOptions(),
                        $linestart, true, $this->mRevisionId );
                $this->addParserOutput( $parserOutput );
+               wfProfileOut($fname);
        }
 
        function addParserOutputNoText( &$parserOutput ) {
                $this->mLanguageLinks += $parserOutput->getLanguageLinks();
                $this->addCategoryLinks( $parserOutput->getCategories() );
+               $this->mNewSectionLink = $parserOutput->getNewSection();
                $this->addKeywords( $parserOutput );
                if ( $parserOutput->getCacheTime() == -1 ) {
                        $this->enableClientCache( false );
                }
+               if ( $parserOutput->mHTMLtitle != "" ) {
+                       $this->mPagetitle = $parserOutput->mHTMLtitle ;
+               }
+               if ( $parserOutput->mSubtitle != '' ) {
+                       $this->mSubtitle .= $parserOutput->mSubtitle ;
+               }
+               $this->mNoGallery = $parserOutput->getNoGallery();
+               wfRunHooks( 'OutputPageParserOutput', array( &$this, $parserOutput ) );
        }
-       
+
        function addParserOutput( &$parserOutput ) {
                $this->addParserOutputNoText( $parserOutput );
-               $this->addHTML( $parserOutput->getText() );
+               $text = $parserOutput->getText();
+               wfRunHooks( 'OutputPageBeforeHTML',array( &$this, &$text ) );
+               $this->addHTML( $text );
        }
 
        /**
@@ -306,10 +333,12 @@ class OutputPage {
        function addPrimaryWikiText( $text, $article, $cache = true ) {
                global $wgParser, $wgUser;
 
+               $popts = $this->parserOptions();
+               $popts->setTidy(true);
                $parserOutput = $wgParser->parse( $text, $article->mTitle,
-                       $this->mParserOptions, true, true, $this->mRevisionId );
-
-               if ( $article && $parserOutput->getCacheTime() != -1 ) {
+                       $popts, true, true, $this->mRevisionId );
+               $popts->setTidy(false);
+               if ( $cache && $article && $parserOutput->getCacheTime() != -1 ) {
                        $parserCache =& ParserCache::singleton();
                        $parserCache->save( $parserOutput, $article, $wgUser );
                }
@@ -317,6 +346,18 @@ class OutputPage {
                $this->addParserOutput( $parserOutput );
        }
 
+       /**
+        * For anything that isn't primary text or interface message
+        */
+       function addSecondaryWikiText( $text, $linestart = true ) {
+               global $wgTitle;
+               $popts = $this->parserOptions();
+               $popts->setTidy(true);
+               $this->addWikiTextTitle($text, $wgTitle, $linestart);
+               $popts->setTidy(false);
+       }
+
+
        /**
         * Add the output of a QuickTemplate to the output buffer
         * @param QuickTemplate $template
@@ -329,12 +370,15 @@ class OutputPage {
        }
 
        /**
-        * Parse wikitext and return the HTML. This is for special pages that add the text later
+        * Parse wikitext and return the HTML.
         */
-       function parse( $text, $linestart = true ) {
+       function parse( $text, $linestart = true, $interface = false ) {
                global $wgParser, $wgTitle;
-               $parserOutput = $wgParser->parse( $text, $wgTitle, $this->mParserOptions,
+               $popts = $this->parserOptions();
+               if ( $interface) { $popts->setInterfaceMessage(true); }
+               $parserOutput = $wgParser->parse( $text, $wgTitle, $popts,
                        $linestart, true, $this->mRevisionId );
+               if ( $interface) { $popts->setInterfaceMessage(false); }
                return $parserOutput->getText();
        }
 
@@ -344,18 +388,11 @@ class OutputPage {
         *
         * @return bool
         */
-       function tryParserCache( $article, $user ) {
+       function tryParserCache( &$article, $user ) {
                $parserCache =& ParserCache::singleton();
                $parserOutput = $parserCache->get( $article, $user );
                if ( $parserOutput !== false ) {
-                       $this->mLanguageLinks += $parserOutput->getLanguageLinks();
-                       $this->addCategoryLinks( $parserOutput->getCategories() );
-                       $this->addKeywords( $parserOutput );
-                       $this->addHTML( $parserOutput->getText() );
-                       $t = $parserOutput->getTitleText();
-                       if( !empty( $t ) ) {
-                               $this->setPageTitle( $t );
-                       }
+                       $this->addParserOutput( $parserOutput );
                        return true;
                } else {
                        return false;
@@ -385,14 +422,15 @@ class OutputPage {
        }
 
        function sendCacheControl() {
-               global $wgUseSquid, $wgUseESI;
+               global $wgUseSquid, $wgUseESI, $wgUseETag, $wgSquidMaxage, $wgRequest;
+               $fname = 'OutputPage::sendCacheControl';
 
-               if ($this->mETag)
-                       header("ETag: $this->mETag");
+               if ($wgUseETag && $this->mETag)
+                       $wgRequest->response()->header("ETag: $this->mETag");
 
                # don't serve compressed data to clients who can't handle it
                # maintain different caches for logged-in users and non-logged in ones
-               header( 'Vary: Accept-Encoding, Cookie' );
+               $wgRequest->response()->header( 'Vary: Accept-Encoding, Cookie' );
                if( !$this->uncacheableBecauseRequestvars() && $this->mEnableClientCache ) {
                        if( $wgUseSquid && ! isset( $_COOKIE[ini_get( 'session.name') ] ) &&
                          ! $this->isPrintable() && $this->mSquidMaxage != 0 )
@@ -401,37 +439,37 @@ class OutputPage {
                                        # We'll purge the proxy cache explicitly, but require end user agents
                                        # to revalidate against the proxy on each visit.
                                        # Surrogate-Control controls our Squid, Cache-Control downstream caches
-                                       wfDebug( "** proxy caching with ESI; {$this->mLastModified} **\n", false );
+                                       wfDebug( "$fname: proxy caching with ESI; {$this->mLastModified} **\n", false );
                                        # start with a shorter timeout for initial testing
                                        # header( 'Surrogate-Control: max-age=2678400+2678400, content="ESI/1.0"');
-                                       header( 'Surrogate-Control: max-age='.$wgSquidMaxage.'+'.$this->mSquidMaxage.', content="ESI/1.0"');
-                                       header( 'Cache-Control: s-maxage=0, must-revalidate, max-age=0' );
+                                       $wgRequest->response()->header( 'Surrogate-Control: max-age='.$wgSquidMaxage.'+'.$this->mSquidMaxage.', content="ESI/1.0"');
+                                       $wgRequest->response()->header( 'Cache-Control: s-maxage=0, must-revalidate, max-age=0' );
                                } else {
                                        # We'll purge the proxy cache for anons explicitly, but require end user agents
                                        # to revalidate against the proxy on each visit.
                                        # IMPORTANT! The Squid needs to replace the Cache-Control header with
                                        # Cache-Control: s-maxage=0, must-revalidate, max-age=0
-                                       wfDebug( "** local proxy caching; {$this->mLastModified} **\n", false );
+                                       wfDebug( "$fname: local proxy caching; {$this->mLastModified} **\n", false );
                                        # start with a shorter timeout for initial testing
                                        # header( "Cache-Control: s-maxage=2678400, must-revalidate, max-age=0" );
-                                       header( 'Cache-Control: s-maxage='.$this->mSquidMaxage.', must-revalidate, max-age=0' );
+                                       $wgRequest->response()->header( 'Cache-Control: s-maxage='.$this->mSquidMaxage.', must-revalidate, max-age=0' );
                                }
                        } else {
                                # We do want clients to cache if they can, but they *must* check for updates
                                # on revisiting the page.
-                               wfDebug( "** private caching; {$this->mLastModified} **\n", false );
-                               header( "Expires: -1" );
-                               header( "Cache-Control: private, must-revalidate, max-age=0" );
+                               wfDebug( "$fname: private caching; {$this->mLastModified} **\n", false );
+                               $wgRequest->response()->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
+                               $wgRequest->response()->header( "Cache-Control: private, must-revalidate, max-age=0" );
                        }
-                       if($this->mLastModified) header( "Last-modified: {$this->mLastModified}" );
+                       if($this->mLastModified) $wgRequest->response()->header( "Last-modified: {$this->mLastModified}" );
                } else {
-                       wfDebug( "** no caching **\n", false );
+                       wfDebug( "$fname: no caching **\n", false );
 
                        # In general, the absence of a last modified header should be enough to prevent
                        # the client from using its cache. We send a few other things just to make sure.
-                       header( 'Expires: -1' );
-                       header( 'Cache-Control: no-cache, no-store, max-age=0, must-revalidate' );
-                       header( 'Pragma: no-cache' );
+                       $wgRequest->response()->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
+                       $wgRequest->response()->header( 'Cache-Control: no-cache, no-store, max-age=0, must-revalidate' );
+                       $wgRequest->response()->header( 'Pragma: no-cache' );
                }
        }
 
@@ -440,8 +478,9 @@ class OutputPage {
         * the object, let's actually output it:
         */
        function output() {
-               global $wgUser, $wgOutputEncoding;
-               global $wgContLanguageCode, $wgDebugRedirects, $wgMimeType, $wgProfiler;
+               global $wgUser, $wgOutputEncoding, $wgRequest;
+               global $wgContLanguageCode, $wgDebugRedirects, $wgMimeType;
+               global $wgJsMimeType, $wgStylePath, $wgUseAjax, $wgAjaxSearch, $wgScriptPath, $wgServer;
 
                if( $this->mDoNothing ){
                        return;
@@ -450,6 +489,15 @@ class OutputPage {
                wfProfileIn( $fname );
                $sk = $wgUser->getSkin();
 
+               if ( $wgUseAjax ) {
+                       $this->addScript( "<script type=\"{$wgJsMimeType}\" src=\"{$wgStylePath}/common/ajax.js\"></script>\n" );
+               }
+
+               if ( $wgUseAjax && $wgAjaxSearch ) {
+                       $this->addScript( "<script type=\"{$wgJsMimeType}\" src=\"{$wgStylePath}/common/ajaxsearch.js\"></script>\n" );
+                       $this->addScript( "<script type=\"{$wgJsMimeType}\">hookEvent(\"load\", sajax_onload);</script>\n" );
+               }
+
                if ( '' != $this->mRedirect ) {
                        if( substr( $this->mRedirect, 0, 4 ) != 'http' ) {
                                # Standards require redirect URLs to be absolute
@@ -458,7 +506,7 @@ class OutputPage {
                        }
                        if( $this->mRedirectCode == '301') {
                                if( !$wgDebugRedirects ) {
-                                       header("HTTP/1.1 {$this->mRedirectCode} Moved Permanently");
+                                       $wgRequest->response()->header("HTTP/1.1 {$this->mRedirectCode} Moved Permanently");
                                }
                                $this->mLastModified = wfTimestamp( TS_RFC2822 );
                        }
@@ -471,9 +519,8 @@ class OutputPage {
                                print "<p>Location: <a href=\"$url\">$url</a></p>\n";
                                print "</body>\n</html>\n";
                        } else {
-                               header( 'Location: '.$this->mRedirect );
+                               $wgRequest->response()->header( 'Location: '.$this->mRedirect );
                        }
-                       if ( isset( $wgProfiler ) ) { wfDebug( $wgProfiler->getOutput() ); }
                        wfProfileOut( $fname );
                        return;
                }
@@ -529,7 +576,7 @@ class OutputPage {
                        );
 
                        if ( $statusMessage[$this->mStatusCode] )
-                               header( 'HTTP/1.1 ' . $this->mStatusCode . ' ' . $statusMessage[$this->mStatusCode] );
+                               $wgRequest->response()->header( 'HTTP/1.1 ' . $this->mStatusCode . ' ' . $statusMessage[$this->mStatusCode] );
                }
 
                # Buffer output; final headers may depend on later processing
@@ -538,8 +585,8 @@ class OutputPage {
                # Disable temporary placeholders, so that the skin produces HTML
                $sk->postParseLinkColour( false );
 
-               header( "Content-type: $wgMimeType; charset={$wgOutputEncoding}" );
-               header( 'Content-language: '.$wgContLanguageCode );
+               $wgRequest->response()->header( "Content-type: $wgMimeType; charset={$wgOutputEncoding}" );
+               $wgRequest->response()->header( 'Content-language: '.$wgContLanguageCode );
 
                if ($this->mArticleBodyOnly) {
                        $this->out($this->mBodytext);
@@ -571,11 +618,6 @@ class OutputPage {
 
                $wgInputEncoding = strtolower( $wgInputEncoding );
 
-               if( $wgUser->getOption( 'altencoding' ) ) {
-                       $wgContLang->setAltEncoding();
-                       return;
-               }
-
                if ( empty( $_SERVER['HTTP_ACCEPT_CHARSET'] ) ) {
                        $wgOutputEncoding = strtolower( $wgOutputEncoding );
                        return;
@@ -594,12 +636,12 @@ class OutputPage {
                $time = wfReportTime();
                return $time;
        }
-       
+
        /**
         * Produce a "user is blocked" page
         */
-       function blockedPage() {
-               global $wgUser, $wgContLang;
+       function blockedPage( $return = true ) {
+               global $wgUser, $wgContLang, $wgTitle;
 
                $this->setPageTitle( wfMsg( 'blockedtitle' ) );
                $this->setRobotpolicy( 'noindex,nofollow' );
@@ -617,13 +659,18 @@ class OutputPage {
                $link = '[[' . $wgContLang->getNsText( NS_USER ) . ":{$name}|{$name}]]";
 
                $this->addWikiText( wfMsg( 'blockedtext', $link, $reason, $ip, $name ) );
-               $this->returnToMain( false );
+               
+               # Don't auto-return to special pages
+               if( $return ) {
+                       $return = $wgTitle->getNamespace() > -1 ? $wgTitle->getPrefixedText() : NULL;
+                       $this->returnToMain( false, $return );
+               }
        }
 
        /**
         * Note: these arguments are keys into wfMsg(), not text!
         */
-       function errorpage( $title, $msg ) {
+       function showErrorPage( $title, $msg ) {
                global $wgTitle;
 
                $this->mDebugtext .= 'Original title: ' .
@@ -638,11 +685,13 @@ class OutputPage {
                $this->mBodytext = '';
                $this->addWikiText( wfMsg( $msg ) );
                $this->returnToMain( false );
-
-               $this->output();
-               wfErrorExit();
        }
 
+       /** @obsolete */
+       function errorpage( $title, $msg ) {
+               throw new ErrorPageError( $title, $msg );
+       }
+               
        /**
         * Display an error page indicating that a given version of MediaWiki is
         * required to use it
@@ -650,8 +699,6 @@ class OutputPage {
         * @param mixed $version The version of MediaWiki needed to use the page
         */
        function versionRequired( $version ) {
-               global $wgUser;
-
                $this->setPageTitle( wfMsg( 'versionrequired', $version ) );
                $this->setHTMLTitle( wfMsg( 'versionrequired', $version ) );
                $this->setRobotpolicy( 'noindex,nofollow' );
@@ -664,11 +711,10 @@ class OutputPage {
 
        /**
         * Display an error page noting that a given permission bit is required.
-        * This should generally replace the sysopRequired, developerRequired etc.
         * @param string $permission key required
         */
        function permissionRequired( $permission ) {
-               global $wgUser;
+               global $wgGroupPermissions, $wgUser;
 
                $this->setPageTitle( wfMsg( 'badaccess' ) );
                $this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
@@ -676,110 +722,101 @@ class OutputPage {
                $this->setArticleRelated( false );
                $this->mBodytext = '';
 
-               $sk = $wgUser->getSkin();
-               $ap = $sk->makeKnownLink( wfMsgForContent( 'administrators' ) );
-               $this->addHTML( wfMsgHtml( 'badaccesstext', $ap, $permission ) );
-               $this->returnToMain();
+               $groups = array();
+               foreach( $wgGroupPermissions as $key => $value ) {
+                       if( isset( $value[$permission] ) && $value[$permission] == true ) {
+                               $groupName = User::getGroupName( $key );
+                               $groupPage = User::getGroupPage( $key );
+                               if( $groupPage ) {
+                                       $skin =& $wgUser->getSkin();
+                                       $groups[] = '"'.$skin->makeLinkObj( $groupPage, $groupName ).'"';
+                               } else {
+                                       $groups[] = '"'.$groupName.'"';
+                               }
+                       }
+               }
+               $n = count( $groups );
+               $groups = implode( ', ', $groups );
+               switch( $n ) {
+                       case 0:
+                       case 1:
+                       case 2:
+                               $message = wfMsgHtml( "badaccess-group$n", $groups );
+                               break;
+                       default:
+                               $message = wfMsgHtml( 'badaccess-groups', $groups );
+               }
+               $this->addHtml( $message );
+               $this->returnToMain( false );
        }
 
        /**
         * @deprecated
         */
        function sysopRequired() {
-               global $wgUser;
-
-               $this->setPageTitle( wfMsg( 'sysoptitle' ) );
-               $this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
-               $this->setRobotpolicy( 'noindex,nofollow' );
-               $this->setArticleRelated( false );
-               $this->mBodytext = '';
-
-               $sk = $wgUser->getSkin();
-               $ap = $sk->makeKnownLink( wfMsgForContent( 'administrators' ), '' );
-               $this->addHTML( wfMsgHtml( 'sysoptext', $ap ) );
-               $this->returnToMain();
+               throw new MWException( "Call to deprecated OutputPage::sysopRequired() method\n" );
        }
 
        /**
         * @deprecated
         */
        function developerRequired() {
-               global $wgUser;
-
-               $this->setPageTitle( wfMsg( 'developertitle' ) );
-               $this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
-               $this->setRobotpolicy( 'noindex,nofollow' );
-               $this->setArticleRelated( false );
-               $this->mBodytext = '';
-
-               $sk = $wgUser->getSkin();
-               $ap = $sk->makeKnownLink( wfMsgForContent( 'administrators' ), '' );
-               $this->addHTML( wfMsgHtml( 'developertext', $ap ) );
-               $this->returnToMain();
+               throw new MWException( "Call to deprecated OutputPage::developerRequired() method\n" );
        }
 
+       /**
+        * Produce the stock "please login to use the wiki" page
+        */
        function loginToUse() {
                global $wgUser, $wgTitle, $wgContLang;
 
+               if( $wgUser->isLoggedIn() ) {
+                       $this->permissionRequired( 'read' );
+                       return;
+               }
+
+               $skin = $wgUser->getSkin();
+               
                $this->setPageTitle( wfMsg( 'loginreqtitle' ) );
-               $this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
-               $this->setRobotpolicy( 'noindex,nofollow' );
+               $this->setHtmlTitle( wfMsg( 'errorpagetitle' ) );
+               $this->setRobotPolicy( 'noindex,nofollow' );
                $this->setArticleFlag( false );
-               $this->mBodytext = '';
-               $loginpage = Title::makeTitle(NS_SPECIAL, 'Userlogin');
-               $sk = $wgUser->getSkin();
-               $loginlink = $sk->makeKnownLinkObj($loginpage, wfMsg('loginreqlink'),
-                       'returnto=' . htmlspecialchars($wgTitle->getPrefixedDBkey()));
-               $this->addHTML( wfMsgHtml( 'loginreqpagetext', $loginlink ) );
-
-               # We put a comment in the .html file so a Sysop can diagnose the page the
-               # user can't see.
-               $this->addHTML( "\n<!--" .
-                                               $wgContLang->getNsText( $wgTitle->getNamespace() ) .
-                                               ':' .
-                                               $wgTitle->getDBkey() . '-->' );
-               $this->returnToMain();          # Flip back to the main page after 10 seconds.
+               
+               $loginTitle = Title::makeTitle( NS_SPECIAL, 'Userlogin' );
+               $loginLink = $skin->makeKnownLinkObj( $loginTitle, wfMsgHtml( 'loginreqlink' ), 'returnto=' . $wgTitle->getPrefixedUrl() );
+               $this->addHtml( wfMsgWikiHtml( 'loginreqpagetext', $loginLink ) );
+               $this->addHtml( "\n<!--" . $wgTitle->getPrefixedUrl() . "-->" );
+               
+               # Don't return to the main page if the user can't read it
+               # otherwise we'll end up in a pointless loop
+               $mainPage = Title::newFromText( wfMsgForContent( 'mainpage' ) );
+               if( $mainPage->userCanRead() )
+                       $this->returnToMain( true, $mainPage );
        }
 
+       /** @obsolete */
        function databaseError( $fname, $sql, $error, $errno ) {
-               global $wgUser, $wgCommandLineMode, $wgShowSQLErrors;
-
-               $this->setPageTitle( wfMsgNoDB( 'databaseerror' ) );
-               $this->setRobotpolicy( 'noindex,nofollow' );
-               $this->setArticleRelated( false );
-               $this->enableClientCache( false );
-               $this->mRedirect = '';
-
-               if( !$wgShowSQLErrors ) {
-                       $sql = wfMsg( 'sqlhidden' );
-               }
-
-               if ( $wgCommandLineMode ) {
-                       $msg = wfMsgNoDB( 'dberrortextcl', htmlspecialchars( $sql ),
-                                               htmlspecialchars( $fname ), $errno, htmlspecialchars( $error ) );
-               } else {
-                       $msg = wfMsgNoDB( 'dberrortext', htmlspecialchars( $sql ),
-                                               htmlspecialchars( $fname ), $errno, htmlspecialchars( $error ) );
-               }
-
-               if ( $wgCommandLineMode || !is_object( $wgUser )) {
-                       print $msg."\n";
-                       wfErrorExit();
-               }
-               $this->mBodytext = $msg;
-               $this->output();
-               wfErrorExit();
+               throw new MWException( "OutputPage::databaseError is obsolete\n" );
        }
 
        function readOnlyPage( $source = null, $protected = false ) {
-               global $wgUser, $wgReadOnlyFile, $wgReadOnly;
+               global $wgUser, $wgReadOnlyFile, $wgReadOnly, $wgTitle;
 
                $this->setRobotpolicy( 'noindex,nofollow' );
                $this->setArticleRelated( false );
 
                if( $protected ) {
+                       $skin = $wgUser->getSkin();
                        $this->setPageTitle( wfMsg( 'viewsource' ) );
-                       $this->addWikiText( wfMsg( 'protectedtext' ) );
+                       $this->setSubtitle( wfMsg( 'viewsourcefor', $skin->makeKnownLinkObj( $wgTitle ) ) );
+                       
+                       # Determine if protection is due to the page being a system message
+                       # and show an appropriate explanation
+                       if( $wgTitle->getNamespace() == NS_MEDIAWIKI && !$wgUser->isAllowed( 'editinterface' ) ) {
+                               $this->addWikiText( wfMsg( 'protectedinterface' ) );
+                       } else {
+                               $this->addWikiText( wfMsg( 'protectedtext' ) );
+                       }
                } else {
                        $this->setPageTitle( wfMsg( 'readonly' ) );
                        if ( $wgReadOnly ) {
@@ -792,16 +829,17 @@ class OutputPage {
 
                if( is_string( $source ) ) {
                        if( strcmp( $source, '' ) == 0 ) {
-                               global $wgTitle ;
+                               global $wgTitle;
                                if ( $wgTitle->getNamespace() == NS_MEDIAWIKI ) {
-                                       $source = wfMsgWeirdKey ( $wgTitle->getText() ) ;
+                                       $source = wfMsgWeirdKey ( $wgTitle->getText() );
                                } else {
-                                       $source = wfMsg( $wgUser->isLoggedIn() ? 'noarticletext' : 'noarticletextanon' );
+                                       $source = '';
                                }
                        }
-                       $rows = $wgUser->getOption( 'rows' );
-                       $cols = $wgUser->getOption( 'cols' );
-                       $text = "\n<textarea cols='$cols' rows='$rows' readonly='readonly'>" .
+                       $rows = $wgUser->getIntOption( 'rows' );
+                       $cols = $wgUser->getIntOption( 'cols' );
+                       
+                       $text = "\n<textarea name='wpTextbox1' id='wpTextbox1' cols='$cols' rows='$rows' readonly='readonly'>" .
                                htmlspecialchars( $source ) . "\n</textarea>";
                        $this->addHTML( $text );
                }
@@ -809,36 +847,63 @@ class OutputPage {
                $this->returnToMain( false );
        }
 
-       function fatalError( $message ) {
+       /** @obsolete */
+       function fatalError( $message ) { 
+               throw new FatalError( $message ); 
+       }
+       
+       /** @obsolete */
+       function unexpectedValueError( $name, $val ) {
+               throw new FatalError( wfMsg( 'unexpected', $name, $val ) );
+       }
+
+       /** @obsolete */
+       function fileCopyError( $old, $new ) {
+               throw new FatalError( wfMsg( 'filecopyerror', $old, $new ) );
+       }
+
+       /** @obsolete */
+       function fileRenameError( $old, $new ) {
+               throw new FatalError( wfMsg( 'filerenameerror', $old, $new ) );
+       }
+
+       /** @obsolete */
+       function fileDeleteError( $name ) {
+               throw new FatalError( wfMsg( 'filedeleteerror', $name ) );
+       }
+
+       /** @obsolete */
+       function fileNotFoundError( $name ) {
+               throw new FatalError( wfMsg( 'filenotfound', $name ) );
+       }
+
+       function showFatalError( $message ) {
                $this->setPageTitle( wfMsg( "internalerror" ) );
                $this->setRobotpolicy( "noindex,nofollow" );
                $this->setArticleRelated( false );
                $this->enableClientCache( false );
                $this->mRedirect = '';
-
                $this->mBodytext = $message;
-               $this->output();
-               wfErrorExit();
        }
 
-       function unexpectedValueError( $name, $val ) {
-               $this->fatalError( wfMsg( 'unexpected', $name, $val ) );
+       function showUnexpectedValueError( $name, $val ) {
+               $this->showFatalError( wfMsg( 'unexpected', $name, $val ) );
        }
 
-       function fileCopyError( $old, $new ) {
-               $this->fatalError( wfMsg( 'filecopyerror', $old, $new ) );
+       function showFileCopyError( $old, $new ) {
+               $this->showFatalError( wfMsg( 'filecopyerror', $old, $new ) );
        }
 
-       function fileRenameError( $old, $new ) {
-               $this->fatalError( wfMsg( 'filerenameerror', $old, $new ) );
+       function showFileRenameError( $old, $new ) {
+               $this->showFatalError( wfMsg( 'filerenameerror', $old, $new ) );
        }
 
-       function fileDeleteError( $name ) {
-               $this->fatalError( wfMsg( 'filedeleteerror', $name ) );
+       function showFileDeleteError( $name ) {
+               $this->showFatalError( wfMsg( 'filedeleteerror', $name ) );
        }
 
-       function fileNotFoundError( $name ) {
-               $this->fatalError( wfMsg( 'filenotfound', $name ) );
+       function showFileNotFoundError( $name ) {
+               $this->showFatalError( wfMsg( 'filenotfound', $name ) );
        }
 
        /**
@@ -848,21 +913,29 @@ class OutputPage {
         */
        function returnToMain( $auto = true, $returnto = NULL ) {
                global $wgUser, $wgOut, $wgRequest;
-
+               
                if ( $returnto == NULL ) {
                        $returnto = $wgRequest->getText( 'returnto' );
                }
-               $returnto = htmlspecialchars( $returnto );
-
-               $sk = $wgUser->getSkin();
-               if ( '' == $returnto ) {
+               
+               if ( '' === $returnto ) {
                        $returnto = wfMsgForContent( 'mainpage' );
                }
-               $link = $sk->makeKnownLink( $returnto, '' );
+
+               if ( is_object( $returnto ) ) {
+                       $titleObj = $returnto;
+               } else {
+                       $titleObj = Title::newFromText( $returnto );
+               }
+               if ( !is_object( $titleObj ) ) {
+                       $titleObj = Title::newMainPage();
+               }
+
+               $sk = $wgUser->getSkin();
+               $link = $sk->makeLinkObj( $titleObj, '' );
 
                $r = wfMsg( 'returnto', $link );
                if ( $auto ) {
-                       $titleObj = Title::newFromText( $returnto );
                        $wgOut->addMeta( 'http:Refresh', '10;url=' . $titleObj->escapeFullURL() );
                }
                $wgOut->addHTML( "\n<p>$r</p>\n" );
@@ -877,6 +950,9 @@ class OutputPage {
                $this->addKeyword( $wgTitle->getPrefixedText() );
                $count = 1;
                $links2d =& $parserOutput->getLinks();
+               if ( !is_array( $links2d ) ) {
+                       return;
+               }
                foreach ( $links2d as $ns => $dbkeys ) {
                        foreach( $dbkeys as $dbkey => $id ) {
                                $this->addKeyword( $dbkey );
@@ -893,7 +969,7 @@ class OutputPage {
         */
        function headElement() {
                global $wgDocType, $wgDTD, $wgContLanguageCode, $wgOutputEncoding, $wgMimeType;
-               global $wgUser, $wgContLang, $wgRequest, $wgUseTrackbacks, $wgTitle;
+               global $wgUser, $wgContLang, $wgUseTrackbacks, $wgTitle;
 
                if( $wgMimeType == 'text/xml' || $wgMimeType == 'application/xhtml+xml' || $wgMimeType == 'application/xml' ) {
                        $ret = "<?xml version=\"1.0\" encoding=\"$wgOutputEncoding\" ?>\n";
@@ -935,7 +1011,7 @@ class OutputPage {
        }
 
        function getHeadLinks() {
-               global $wgRequest, $wgStylePath;
+               global $wgRequest;
                $ret = '';
                foreach ( $this->mMetatags as $tag ) {
                        if ( 0 == strcasecmp( 'http:', substr( $tag[0], 0, 5 ) ) ) {
@@ -946,7 +1022,7 @@ class OutputPage {
                        }
                        $ret .= "<meta $a=\"{$tag[0]}\" content=\"{$tag[1]}\" />\n";
                }
-               
+
                $p = $this->mRobotpolicy;
                if( $p !== '' && $p != 'index,follow' ) {
                        // http://www.robotstxt.org/wc/meta-user.html
@@ -974,7 +1050,7 @@ class OutputPage {
                        $link = $wgRequest->escapeAppendQuery( 'feed=rss' );
                        $ret .= "<link rel='alternate' type='application/rss+xml' title='RSS 2.0' href='$link' />\n";
                        $link = $wgRequest->escapeAppendQuery( 'feed=atom' );
-                       $ret .= "<link rel='alternate' type='application/atom+xml' title='Atom 0.3' href='$link' />\n";
+                       $ret .= "<link rel='alternate' type='application/atom+xml' title='Atom 1.0' href='$link' />\n";
                }
 
                return $ret;
@@ -993,6 +1069,15 @@ class OutputPage {
                        'Sorry, the server has encountered an internal error. ' .
                        'Please wait a moment and hit "refresh" to submit the request again.' );
        }
+       
+       /**
+        * Show an "add new section" link?
+        *
+        * @return bool True if the parser output instructs us to add one
+        */
+       function showNewSectionLink() {
+               return $this->mNewSectionLink;
+       }
 
 }
 ?>