fix for broken categories on preview
[lhc/web/wiklou.git] / includes / OutputPage.php
index 879f5e8..9978a31 100644 (file)
@@ -17,13 +17,13 @@ if($wgUseTeX) require_once( 'Math.php' );
  * @package MediaWiki
  */
 class OutputPage {
-       var $mHeaders, $mCookies, $mMetatags, $mKeywords;
+       var $mHeaders, $mMetatags, $mKeywords;
        var $mLinktags, $mPagetitle, $mBodytext, $mDebugtext;
        var $mHTMLtitle, $mRobotpolicy, $mIsarticle, $mPrintable;
-       var $mSubtitle, $mRedirect;
-       var $mLastModified, $mCategoryLinks;
+       var $mSubtitle, $mRedirect, $mStatusCode;
+       var $mLastModified, $mETag, $mCategoryLinks;
        var $mScripts, $mLinkColours;
-       
+
        var $mSuppressQuickbar;
        var $mOnloadHandler;
        var $mDoNothing;
@@ -32,13 +32,14 @@ class OutputPage {
        var $mParserOptions;
        var $mShowFeedLinks = false;
        var $mEnableClientCache = true;
+       var $mArticleBodyOnly = false;
 
        /**
         * Constructor
         * Initialise private variables
         */
        function OutputPage() {
-               $this->mHeaders = $this->mCookies = $this->mMetatags =
+               $this->mHeaders = $this->mMetatags =
                $this->mKeywords = $this->mLinktags = array();
                $this->mHTMLtitle = $this->mPagetitle = $this->mBodytext =
                $this->mRedirect = $this->mLastModified =
@@ -53,18 +54,24 @@ class OutputPage {
                $this->mParserOptions = ParserOptions::newFromUser( $temp = NULL );
                $this->mSquidMaxage = 0;
                $this->mScripts = '';
+               $this->mETag = false;
+               $this->mRevisionId = null;
        }
 
        function addHeader( $name, $val ) { array_push( $this->mHeaders, $name.': '.$val ) ; }
-       function addCookie( $name, $val ) { array_push( $this->mCookies, array( $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 ); }
        function addScript( $script ) { $this->mScripts .= $script; }
        function getScript() { return $this->mScripts; }
 
+       function setETag($tag) { $this->mETag = $tag; }
+       function setArticleBodyOnly($only) { $this->mArticleBodyOnly = $only; }
+       function getArticleBodyOnly($only) { return $this->mArticleBodyOnly; }
+
        function addLink( $linkarr ) {
                # $linkarr should be an associative array of attributes. We'll escape on output.
                array_push( $this->mLinktags, $linkarr );
@@ -85,7 +92,7 @@ class OutputPage {
         * returns true iff cache-ok headers was sent.
         */
        function checkLastModified ( $timestamp ) {
-               global $wgLang, $wgCachePages, $wgUser;
+               global $wgCachePages, $wgUser;
                if ( !$timestamp || $timestamp == '19700101000000' ) {
                        wfDebug( "CACHE DISABLED, NO TIMESTAMP\n" );
                        return;
@@ -107,7 +114,8 @@ class OutputPage {
                        # Wed, 20 Aug 2003 06:51:19 GMT; length=5202
                        # this breaks strtotime().
                        $modsince = preg_replace( '/;.*$/', '', $_SERVER["HTTP_IF_MODIFIED_SINCE"] );
-                       $ismodsince = wfTimestamp( TS_MW, strtotime( $modsince ) );
+                       $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 ) ) {
@@ -117,6 +125,7 @@ class OutputPage {
                                $this->sendCacheControl();
                                wfDebug( "CACHED client: $ismodsince ; user: $wgUser->mTouched ; page: $timestamp\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 );
@@ -132,20 +141,17 @@ class OutputPage {
                global $action;
                switch($action) {
                        case 'edit':
-                               return wfMsg('edit');
-                       case 'history':
-                               return wfMsg('history_short');
+                       case 'delete':
                        case 'protect':
-                               return wfMsg('protect');
                        case 'unprotect':
-                               return wfMsg('unprotect');
-                       case 'delete':
-                               return wfMsg('delete');
                        case 'watch':
-                               return wfMsg('watch');
                        case 'unwatch':
-                               return wfMsg('unwatch');
+                               // Display title is already customized
+                               return '';
+                       case 'history':
+                               return wfMsg('history_short');
                        case 'submit':
+                               // FIXME: bug 2735; not correct for special pages etc
                                return wfMsg('preview');
                        case 'info':
                                return wfMsg('info_short');
@@ -166,11 +172,12 @@ class OutputPage {
                                $name .= ' - '.$taction;
                        }
                }
-               $this->setHTMLTitle( $name . ' - ' . wfMsg( 'wikititlesuffix' ) );
+               
+               $this->setHTMLTitle( wfMsg( 'pagetitle', $name ) );
        }
        function getHTMLTitle() { return $this->mHTMLtitle; }
        function getPageTitle() { return $this->mPagetitle; }
-       function setSubtitle( $str ) { $this->mSubtitle = $str; }
+       function setSubtitle( $str ) { $this->mSubtitle = /*$this->parse(*/$str/*)*/; } // @bug 2514
        function getSubtitle() { return $this->mSubtitle; }
        function isArticle() { return $this->mIsarticle; }
        function setPrintable() { $this->mPrintable = true; }
@@ -207,11 +214,30 @@ class OutputPage {
        function getCategoryLinks() {
                return $this->mCategoryLinks;
        }
-       function addCategoryLinks($newLinkArray) {
-               $this->mCategoryLinks += $newLinkArray;
+
+       /**
+        * Add an array of categories, with names in the keys
+        */
+       function addCategoryLinks($categories) {
+               global $wgUser, $wgLinkCache, $wgContLang;
+
+               # Add the links to the link cache in a batch
+               $arr = array( NS_CATEGORY => $categories );
+               $lb = new LinkBatch;
+               $lb->setArray( $arr );
+               $lb->execute( $wgLinkCache );
+
+               $sk =& $wgUser->getSkin();
+               foreach ( $categories as $category => $arbitrary ) {
+                       $title = Title::makeTitleSafe( NS_CATEGORY, $category );
+                       $text = $wgContLang->convertHtml( $title->getText() );
+                       $this->mCategoryLinks[] = $sk->makeLinkObj( $title, $text );
+               }
        }
-       function setCategoryLinks($newLinkArray) {
-               $this->mCategoryLinks += $newLinkArray;
+
+       function setCategoryLinks($categories) {
+               $this->mCategoryLinks = array();
+               $this->addCategoryLinks($categories);
        }
 
        function suppressQuickbar() { $this->mSuppressQuickbar = true; }
@@ -222,9 +248,25 @@ class OutputPage {
        function getHTML() { return $this->mBodytext; }
        function debug( $text ) { $this->mDebugtext .= $text; }
 
+       /* @deprecated */
        function setParserOptions( $options ) {
+               return $this->ParserOptions( $options );
+       }
+
+       function ParserOptions( $options = null ) {
                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.
+        * @param mixed $revid an integer, or NULL
+        * @return mixed previous value
+        */
+       function setRevisionId( $revid ) {
+               $val = is_null( $revid ) ? null : intval( $revid );
+               return wfSetVar( $this->mRevisionId, $val );
+       }
 
        /**
         * Convert wikitext to HTML and add it to the buffer
@@ -239,39 +281,43 @@ class OutputPage {
        function addWikiTextWithTitle($text, &$title, $linestart = true) {
                $this->addWikiTextTitle($text, $title, $linestart);
        }
-       
+
        function addWikiTextTitle($text, &$title, $linestart) {
-               global $wgParser, $wgUseTidy;
-               $parserOutput = $wgParser->parse( $text, $title, $this->mParserOptions, $linestart );
+               global $wgParser;
+               $parserOutput = $wgParser->parse( $text, $title, $this->mParserOptions,
+                       $linestart, true, $this->mRevisionId );
+               $this->addParserOutput( $parserOutput );
+       }
+
+       function addParserOutputNoText( &$parserOutput ) {
                $this->mLanguageLinks += $parserOutput->getLanguageLinks();
-               $this->mCategoryLinks += $parserOutput->getCategoryLinks();
+               $this->addCategoryLinks( $parserOutput->getCategories() );
+               $this->addKeywords( $parserOutput );
                if ( $parserOutput->getCacheTime() == -1 ) {
                        $this->enableClientCache( false );
                }
+       }
+       
+       function addParserOutput( &$parserOutput ) {
+               $this->addParserOutputNoText( $parserOutput );
                $this->addHTML( $parserOutput->getText() );
-       }       
-               
+       }
+
        /**
         * Add wikitext to the buffer, assuming that this is the primary text for a page view
         * Saves the text into the parser cache if possible
         */
-       function addPrimaryWikiText( $text, $cacheArticle ) {
-               global $wgParser, $wgParserCache, $wgUser, $wgTitle, $wgUseTidy;
+       function addPrimaryWikiText( $text, $article, $cache = true ) {
+               global $wgParser, $wgParserCache, $wgUser;
 
-               $parserOutput = $wgParser->parse( $text, $wgTitle, $this->mParserOptions, true );
+               $parserOutput = $wgParser->parse( $text, $article->mTitle,
+                       $this->mParserOptions, true, true, $this->mRevisionId );
 
-               $text = $parserOutput->getText();
-               
-               if ( $cacheArticle && $parserOutput->getCacheTime() != -1 ) {
-                       $wgParserCache->save( $parserOutput, $cacheArticle, $wgUser );
+               if ( $article && $parserOutput->getCacheTime() != -1 ) {
+                       $wgParserCache->save( $parserOutput, $article, $wgUser );
                }
 
-               $this->mLanguageLinks += $parserOutput->getLanguageLinks();
-               $this->mCategoryLinks += $parserOutput->getCategoryLinks();
-               if ( $parserOutput->getCacheTime() == -1 ) {
-                       $this->enableClientCache( false );
-               }
-               $this->addHTML( $text );
+               $this->addParserOutput( $parserOutput );
        }
 
        /**
@@ -281,7 +327,7 @@ class OutputPage {
        function addTemplate( &$template ) {
                ob_start();
                $template->execute();
-               $this->addHtml( ob_get_contents() );
+               $this->addHTML( ob_get_contents() );
                ob_end_clean();
        }
 
@@ -290,10 +336,11 @@ class OutputPage {
         */
        function parse( $text, $linestart = true ) {
                global $wgParser, $wgTitle;
-               $parserOutput = $wgParser->parse( $text, $wgTitle, $this->mParserOptions, $linestart );
+               $parserOutput = $wgParser->parse( $text, $wgTitle, $this->mParserOptions,
+                       $linestart, true, $this->mRevisionId );
                return $parserOutput->getText();
        }
-       
+
        /**
         * @param $article
         * @param $user
@@ -305,7 +352,8 @@ class OutputPage {
                $parserOutput = $wgParserCache->get( $article, $user );
                if ( $parserOutput !== false ) {
                        $this->mLanguageLinks += $parserOutput->getLanguageLinks();
-                       $this->mCategoryLinks += $parserOutput->getCategoryLinks();
+                       $this->addCategoryLinks( $parserOutput->getCategories() );
+                       $this->addKeywords( $parserOutput );
                        $this->addHTML( $parserOutput->getText() );
                        $t = $parserOutput->getTitleText();
                        if( !empty( $t ) ) {
@@ -333,12 +381,22 @@ class OutputPage {
                return wfSetVar( $this->mEnableClientCache, $state );
        }
 
+       function uncacheableBecauseRequestvars() {
+               global $wgRequest;
+               return  $wgRequest->getText('useskin', false) === false
+                       && $wgRequest->getText('uselang', false) === false;
+       }
+
        function sendCacheControl() {
                global $wgUseSquid, $wgUseESI;
+
+               if ($this->mETag)
+                       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' );
-               if( $this->mEnableClientCache ) {
+               if( !$this->uncacheableBecauseRequestvars() && $this->mEnableClientCache ) {
                        if( $wgUseSquid && ! isset( $_COOKIE[ini_get( 'session.name') ] ) &&
                          ! $this->isPrintable() && $this->mSquidMaxage != 0 )
                        {
@@ -385,9 +443,8 @@ class OutputPage {
         * the object, let's actually output it:
         */
        function output() {
-               global $wgUser, $wgLang, $wgDebugComments, $wgCookieExpiration;
-               global $wgInputEncoding, $wgOutputEncoding, $wgContLanguageCode;
-               global $wgDebugRedirects, $wgMimeType, $wgProfiler;
+               global $wgUser, $wgOutputEncoding;
+               global $wgContLanguageCode, $wgDebugRedirects, $wgMimeType, $wgProfiler;
 
                if( $this->mDoNothing ){
                        return;
@@ -420,32 +477,84 @@ class OutputPage {
                                header( 'Location: '.$this->mRedirect );
                        }
                        if ( isset( $wgProfiler ) ) { wfDebug( $wgProfiler->getOutput() ); }
+                       wfProfileOut( $fname );
                        return;
                }
+               elseif ( $this->mStatusCode )
+               {
+                       $statusMessage = array(
+                               100 => 'Continue',
+                               101 => 'Switching Protocols',
+                               102 => 'Processing',
+                               200 => 'OK',
+                               201 => 'Created',
+                               202 => 'Accepted',
+                               203 => 'Non-Authoritative Information',
+                               204 => 'No Content',
+                               205 => 'Reset Content',
+                               206 => 'Partial Content',
+                               207 => 'Multi-Status',
+                               300 => 'Multiple Choices',
+                               301 => 'Moved Permanently',
+                               302 => 'Found',
+                               303 => 'See Other',
+                               304 => 'Not Modified',
+                               305 => 'Use Proxy',
+                               307 => 'Temporary Redirect',
+                               400 => 'Bad Request',
+                               401 => 'Unauthorized',
+                               402 => 'Payment Required',
+                               403 => 'Forbidden',
+                               404 => 'Not Found',
+                               405 => 'Method Not Allowed',
+                               406 => 'Not Acceptable',
+                               407 => 'Proxy Authentication Required',
+                               408 => 'Request Timeout',
+                               409 => 'Conflict',
+                               410 => 'Gone',
+                               411 => 'Length Required',
+                               412 => 'Precondition Failed',
+                               413 => 'Request Entity Too Large',
+                               414 => 'Request-URI Too Large',
+                               415 => 'Unsupported Media Type',
+                               416 => 'Request Range Not Satisfiable',
+                               417 => 'Expectation Failed',
+                               422 => 'Unprocessable Entity',
+                               423 => 'Locked',
+                               424 => 'Failed Dependency',
+                               500 => 'Internal Server Error',
+                               501 => 'Not Implemented',
+                               502 => 'Bad Gateway',
+                               503 => 'Service Unavailable',
+                               504 => 'Gateway Timeout',
+                               505 => 'HTTP Version Not Supported',
+                               507 => 'Insufficient Storage'
+                       );
 
+                       if ( $statusMessage[$this->mStatusCode] )
+                               header( 'HTTP/1.1 ' . $this->mStatusCode . ' ' . $statusMessage[$this->mStatusCode] );
+               }
 
                # Buffer output; final headers may depend on later processing
                ob_start();
 
-               $this->transformBuffer();
-               
                # Disable temporary placeholders, so that the skin produces HTML
                $sk->postParseLinkColour( false );
 
                header( "Content-type: $wgMimeType; charset={$wgOutputEncoding}" );
                header( 'Content-language: '.$wgContLanguageCode );
 
-               $exp = time() + $wgCookieExpiration;
-               foreach( $this->mCookies as $name => $val ) {
-                       setcookie( $name, $val, $exp, '/' );
+               if ($this->mArticleBodyOnly) {
+                       $this->out($this->mBodytext);
+               } else {
+                       wfProfileIn( 'Output-skin' );
+                       $sk->outputPage( $this );
+                       wfProfileOut( 'Output-skin' );
                }
 
-               wfProfileIn( 'Output-skin' );
-               $sk->outputPage( $this );
-               wfProfileOut( 'Output-skin' );
-               
                $this->sendCacheControl();
                ob_end_flush();
+               wfProfileOut( $fname );
        }
 
        function out( $ins ) {
@@ -480,32 +589,13 @@ class OutputPage {
        /**
         * Returns a HTML comment with the elapsed time since request.
         * This method has no side effects.
+        * Use wfReportTime() instead.
         * @return string
+        * @deprecated
         */
        function reportTime() {
-               global $wgRequestTime;
-
-               $now = wfTime();
-               list( $usec, $sec ) = explode( ' ', $wgRequestTime );
-               $start = (float)$sec + (float)$usec;
-               $elapsed = $now - $start;
-
-               # Use real server name if available, so we know which machine
-               # in a server farm generated the current page.
-               if ( function_exists( 'posix_uname' ) ) {
-                       $uname = @posix_uname();
-               } else {
-                       $uname = false;
-               }
-               if( is_array( $uname ) && isset( $uname['nodename'] ) ) {
-                       $hostname = $uname['nodename'];
-               } else {
-                       # This may be a virtual server.
-                       $hostname = $_SERVER['SERVER_NAME'];
-               }
-               $com = sprintf( "<!-- Served by %s in %01.2f secs. -->",
-                 $hostname, $elapsed );
-               return $com;
+               $time = wfReportTime();
+               return $time;
        }
 
        /**
@@ -531,6 +621,48 @@ class OutputPage {
                wfErrorExit();
        }
 
+       /**
+        * Display an error page indicating that a given version of MediaWiki is
+        * required to use it
+        *
+        * @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' );
+               $this->setArticleRelated( false );
+               $this->mBodytext = '';
+
+               $this->addWikiText( wfMsg( 'versionrequiredtext', $version ) );
+               $this->returnToMain();
+       }
+
+       /**
+        * 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;
+
+               $this->setPageTitle( wfMsg( 'badaccess' ) );
+               $this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
+               $this->setRobotpolicy( 'noindex,nofollow' );
+               $this->setArticleRelated( false );
+               $this->mBodytext = '';
+
+               $sk = $wgUser->getSkin();
+               $ap = $sk->makeKnownLink( wfMsgForContent( 'administrators' ) );
+               $this->addHTML( wfMsgHtml( 'badaccesstext', $ap, $permission ) );
+               $this->returnToMain();
+       }
+
+       /**
+        * @deprecated
+        */
        function sysopRequired() {
                global $wgUser;
 
@@ -542,10 +674,13 @@ class OutputPage {
 
                $sk = $wgUser->getSkin();
                $ap = $sk->makeKnownLink( wfMsgForContent( 'administrators' ), '' );
-               $this->addHTML( wfMsg( 'sysoptext', $ap ) );
+               $this->addHTML( wfMsgHtml( 'sysoptext', $ap ) );
                $this->returnToMain();
        }
 
+       /**
+        * @deprecated
+        */
        function developerRequired() {
                global $wgUser;
 
@@ -557,7 +692,7 @@ class OutputPage {
 
                $sk = $wgUser->getSkin();
                $ap = $sk->makeKnownLink( wfMsgForContent( 'administrators' ), '' );
-               $this->addHTML( wfMsg( 'developertext', $ap ) );
+               $this->addHTML( wfMsgHtml( 'developertext', $ap ) );
                $this->returnToMain();
        }
 
@@ -569,7 +704,11 @@ class OutputPage {
                $this->setRobotpolicy( 'noindex,nofollow' );
                $this->setArticleFlag( false );
                $this->mBodytext = '';
-               $this->addWikiText( wfMsg( 'loginreqtext' ) );
+               $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.
@@ -611,7 +750,7 @@ class OutputPage {
        }
 
        function readOnlyPage( $source = null, $protected = false ) {
-               global $wgUser, $wgReadOnlyFile;
+               global $wgUser, $wgReadOnlyFile, $wgReadOnly;
 
                $this->setRobotpolicy( 'noindex,nofollow' );
                $this->setArticleRelated( false );
@@ -621,13 +760,22 @@ class OutputPage {
                        $this->addWikiText( wfMsg( 'protectedtext' ) );
                } else {
                        $this->setPageTitle( wfMsg( 'readonly' ) );
-                       $reason = file_get_contents( $wgReadOnlyFile );
+                       if ( $wgReadOnly ) {
+                               $reason = $wgReadOnly;
+                       } else {
+                               $reason = file_get_contents( $wgReadOnlyFile );
+                       }
                        $this->addWikiText( wfMsg( 'readonlytext', $reason ) );
                }
 
                if( is_string( $source ) ) {
                        if( strcmp( $source, '' ) == 0 ) {
-                               $source = wfMsg( 'noarticletext' );
+                               global $wgTitle ;
+                               if ( $wgTitle->getNamespace() == NS_MEDIAWIKI ) {
+                                       $source = wfMsgWeirdKey ( $wgTitle->getText() ) ;
+                               } else {
+                                       $source = wfMsg( $wgUser->isLoggedIn() ? 'noarticletext' : 'noarticletextanon' );
+                               }
                        }
                        $rows = $wgUser->getOption( 'rows' );
                        $cols = $wgUser->getOption( 'cols' );
@@ -699,23 +847,22 @@ class OutputPage {
        }
 
        /**
-        * This function takes the existing and broken links for the page
+        * This function takes the title (first item of mGoodLinks), categories, existing and broken links for the page
         * and uses the first 10 of them for META keywords
         */
-       function addMetaTags () {
-               global $wgLinkCache , $wgOut ;
-               $good = array_keys ( $wgLinkCache->mGoodLinks ) ;
-               $bad = array_keys ( $wgLinkCache->mBadLinks ) ;
-               $a = array_merge ( $good , $bad ) ;
-               $a = array_slice ( $a , 0 , 10 ) ; # 10 keywords max
-               $a = implode ( ',' , $a ) ;
-               $strip = array(
-                       "/<.*?>/" => '',
-                       "/_/" => ' '
-               );
-               $a = htmlspecialchars(preg_replace(array_keys($strip), array_values($strip),$a ));
-
-               $wgOut->addMeta ( 'KEYWORDS' , $a ) ;
+       function addKeywords( &$parserOutput ) {
+               global $wgTitle;
+               $this->addKeyword( $wgTitle->getPrefixedText() );
+               $count = 1;
+               $links2d =& $parserOutput->getLinks();
+               foreach ( $links2d as $ns => $dbkeys ) {
+                       foreach( $dbkeys as $dbkey => $id ) {
+                               $this->addKeyword( $dbkey );
+                               if ( ++$count > 10 ) {
+                                       break 2;
+                               }
+                       }
+               }
        }
 
        /**
@@ -724,7 +871,7 @@ class OutputPage {
         */
        function headElement() {
                global $wgDocType, $wgDTD, $wgContLanguageCode, $wgOutputEncoding, $wgMimeType;
-               global $wgUser, $wgContLang, $wgRequest;
+               global $wgUser, $wgContLang, $wgRequest, $wgUseTrackbacks, $wgTitle;
 
                if( $wgMimeType == 'text/xml' || $wgMimeType == 'application/xhtml+xml' || $wgMimeType == 'application/xml' ) {
                        $ret = "<?xml version=\"1.0\" encoding=\"$wgOutputEncoding\" ?>\n";
@@ -734,13 +881,13 @@ class OutputPage {
 
                $ret .= "<!DOCTYPE html PUBLIC \"$wgDocType\"\n        \"$wgDTD\">\n";
 
-               if ( "" == $this->mHTMLtitle ) {
-                       $this->mHTMLtitle = wfMsg( "pagetitle", $this->mPagetitle );
+               if ( '' == $this->getHTMLTitle() ) {
+                       $this->setHTMLTitle(  wfMsg( 'pagetitle', $this->getPageTitle() ));
                }
 
                $rtl = $wgContLang->isRTL() ? " dir='RTL'" : '';
                $ret .= "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"$wgContLanguageCode\" lang=\"$wgContLanguageCode\" $rtl>\n";
-               $ret .= "<head>\n<title>" . htmlspecialchars( $this->mHTMLtitle ) . "</title>\n";
+               $ret .= "<head>\n<title>" . htmlspecialchars( $this->getHTMLTitle() ) . "</title>\n";
                array_push( $this->mMetatags, array( "http:Content-type", "$wgMimeType; charset={$wgOutputEncoding}" ) );
 
                $ret .= $this->getHeadLinks();
@@ -758,6 +905,9 @@ class OutputPage {
                $ret .= $this->mScripts;
                $ret .= $sk->getUserStyles();
 
+               if ($wgUseTrackbacks && $this->isArticleRelated())
+                       $ret .= $wgTitle->trackbackRDF();
+
                $ret .= "</head>\n";
                return $ret;
        }
@@ -774,9 +924,13 @@ class OutputPage {
                        }
                        $ret .= "<meta $a=\"{$tag[0]}\" content=\"{$tag[1]}\" />\n";
                }
+               
                $p = $this->mRobotpolicy;
-               if ( '' == $p ) { $p = 'index,follow'; }
-               $ret .= "<meta name=\"robots\" content=\"$p\" />\n";
+               if( $p !== '' && $p != 'index,follow' ) {
+                       // http://www.robotstxt.org/wc/meta-user.html
+                       // Only show if it's different from the default robots policy
+                       $ret .= "<meta name=\"robots\" content=\"$p\" />\n";
+               }
 
                if ( count( $this->mKeywords ) > 0 ) {
                        $strip = array(
@@ -798,23 +952,16 @@ 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/rss+atom' title='Atom 0.3' href='$link' />\n";
+                       $ret .= "<link rel='alternate' type='application/atom+xml' title='Atom 0.3' href='$link' />\n";
                }
 
                return $ret;
        }
-       
-       /**
-        * Run any necessary pre-output transformations on the buffer text
-        */
-       function transformBuffer( $options = 0 ) {
-       }
 
-       
        /**
         * Turn off regular page output and return an error reponse
         * for when rate limiting has triggered.
-        * @todo: i18n
+        * @todo i18n
         * @access public
         */
        function rateLimited() {