* added @file
[lhc/web/wiklou.git] / includes / Linker.php
index ccb34e5..e1ebbbe 100644 (file)
@@ -17,38 +17,28 @@ class Linker {
 
        function __construct() {}
 
-       /**
-        * @deprecated
-        */
-       function postParseLinkColour( $s = null ) {
-               wfDeprecated( __METHOD__ );
-               return null;
-       }
-
        /**
         * Get the appropriate HTML attributes to add to the "a" element of an ex-
         * ternal link, as created by [wikisyntax].
         *
-        * @param string $title  The (unescaped) title text for the link
-        * @param string $unused Unused
-        * @param string $class  The contents of the class attribute; if an empty
+        * @param $class String: the contents of the class attribute; if an empty
         *   string is passed, which is the default value, defaults to 'external'.
         */
-       function getExternalLinkAttributes( $title, $unused = null, $class='' ) {
-               return $this->getLinkAttributesInternal( $title, $class, 'external' );
+       function getExternalLinkAttributes( $class = 'external' ) {
+               return $this->getLinkAttributesInternal( '', $class );
        }
 
        /**
         * Get the appropriate HTML attributes to add to the "a" element of an in-
         * terwiki link.
         *
-        * @param string $title  The title text for the link, URL-encoded (???) but
+        * @param $title String: the title text for the link, URL-encoded (???) but
         *   not HTML-escaped
-        * @param string $unused Unused
-        * @param string $class  The contents of the class attribute; if an empty
+        * @param $unused String: unused
+        * @param $class String: the contents of the class attribute; if an empty
         *   string is passed, which is the default value, defaults to 'external'.
         */
-       function getInterwikiLinkAttributes( $title, $unused = null, $class='' ) {
+       function getInterwikiLinkAttributes( $title, $unused = null, $class = 'external' ) {
                global $wgContLang;
 
                # FIXME: We have a whole bunch of handling here that doesn't happen in
@@ -57,19 +47,19 @@ class Linker {
                $title = $wgContLang->checkTitleEncoding( $title );
                $title = preg_replace( '/[\\x00-\\x1f]/', ' ', $title );
 
-               return $this->getLinkAttributesInternal( $title, $class, 'external' );
+               return $this->getLinkAttributesInternal( $title, $class );
        }
 
        /**
         * Get the appropriate HTML attributes to add to the "a" element of an in-
         * ternal link.
         *
-        * @param string $title  The title text for the link, URL-encoded (???) but
+        * @param $title String: the title text for the link, URL-encoded (???) but
         *   not HTML-escaped
-        * @param string $unused Unused
-        * @param string $class  The contents of the class attribute, default none
+        * @param $unused String: unused
+        * @param $class String: the contents of the class attribute, default none
         */
-       function getInternalLinkAttributes( $title, $unused = null, $class='' ) {
+       function getInternalLinkAttributes( $title, $unused = null, $class = '' ) {
                $title = urldecode( $title );
                $title = str_replace( '_', ' ', $title );
                return $this->getLinkAttributesInternal( $title, $class );
@@ -79,14 +69,14 @@ class Linker {
         * Get the appropriate HTML attributes to add to the "a" element of an in-
         * ternal link, given the Title object for the page we want to link to.
         *
-        * @param Title  $nt     The Title object
-        * @param string $unused Unused
-        * @param string $class  The contents of the class attribute, default none
-        * @param mixed  $title  Optional (unescaped) string to use in the title
+        * @param $nt The Title object
+        * @param $unused String: unused
+        * @param $class String: the contents of the class attribute, default none
+        * @param $title Mixed: optional (unescaped) string to use in the title
         *   attribute; if false, default to the name of the page we're linking to
         */
        function getInternalLinkAttributesObj( $nt, $unused = null, $class = '', $title = false ) {
-               if( $title === false ) {
+               if ( $title === false ) {
                        $title = $nt->getPrefixedText();
                }
                return $this->getLinkAttributesInternal( $title, $class );
@@ -95,38 +85,34 @@ class Linker {
        /**
         * Common code for getLinkAttributesX functions
         */
-       private function getLinkAttributesInternal( $title, $class, $classDefault = false ) {
+       private function getLinkAttributesInternal( $title, $class ) {
                $title = htmlspecialchars( $title );
-               if( $class === '' and $classDefault !== false ) {
-                       # FIXME: Parameter defaults the hard way!  We should just have
-                       # $class = 'external' or whatever as the default in the externally-
-                       # exposed functions, not $class = ''.
-                       $class = $classDefault;
-               }
                $class = htmlspecialchars( $class );
                $r = '';
-               if( $class !== '' ) {
+               if ( $class != '' ) {
                        $r .= " class=\"$class\"";
                }
-               $r .= " title=\"$title\"";
+               if ( $title != '' ) {
+                       $r .= " title=\"$title\"";
+               }
                return $r;
        }
 
        /**
         * Return the CSS colour of a known link
         *
-        * @param Title $t
-        * @param integer $threshold user defined threshold
-        * @return string CSS class
+        * @param $t Title object
+        * @param $threshold Integer: user defined threshold
+        * @return String: CSS class
         */
        function getLinkColour( $t, $threshold ) {
                $colour = '';
                if ( $t->isRedirect() ) {
                        # Page is a redirect
                        $colour = 'mw-redirect';
-               } elseif ( $threshold > 0 && 
+               } elseif ( $threshold > 0 &&
                           $t->exists() && $t->getLength() < $threshold &&
-                          MWNamespace::isContent( $t->getNamespace() ) ) {
+                          $t->isContentPage() ) {
                        # Page is a stub
                        $colour = 'stub';
                }
@@ -172,13 +158,13 @@ class Linker {
         */
        public function link( $target, $text = null, $customAttribs = array(), $query = array(), $options = array() ) {
                wfProfileIn( __METHOD__ );
-               if( !$target instanceof Title ) {
+               if ( !$target instanceof Title ) {
                        return "<!-- ERROR -->$text";
                }
                $options = (array)$options;
 
                $ret = null;
-               if( !wfRunHooks( 'LinkBegin', array( $this, $target, &$text,
+               if ( !wfRunHooks( 'LinkBegin', array( $this, $target, &$text,
                &$customAttribs, &$query, &$options, &$ret ) ) ) {
                        wfProfileOut( __METHOD__ );
                        return $ret;
@@ -189,24 +175,24 @@ class Linker {
 
                # If we don't know whether the page exists, let's find out.
                wfProfileIn( __METHOD__ . '-checkPageExistence' );
-               if( !in_array( 'known', $options ) and !in_array( 'broken', $options ) ) {
-                       if( $target->isKnown() ) {
-                               $options []= 'known';
+               if ( !in_array( 'known', $options ) and !in_array( 'broken', $options ) ) {
+                       if ( $target->isKnown() ) {
+                               $options[] = 'known';
                        } else {
-                               $options []= 'broken';
+                               $options[] = 'broken';
                        }
                }
                wfProfileOut( __METHOD__ . '-checkPageExistence' );
 
                $oldquery = array();
-               if( in_array( "forcearticlepath", $options ) && $query ){
+               if ( in_array( "forcearticlepath", $options ) && $query ) {
                        $oldquery = $query;
                        $query = array();
                }
 
                # Note: we want the href attribute first, for prettiness.
                $attribs = array( 'href' => $this->linkUrl( $target, $query, $options ) );
-               if( in_array( 'forcearticlepath', $options ) && $oldquery ){
+               if ( in_array( 'forcearticlepath', $options ) && $oldquery ) {
                        $attribs['href'] = wfAppendQuery( $attribs['href'], wfArrayToCgi( $oldquery ) );
                }
 
@@ -214,24 +200,34 @@ class Linker {
                        $attribs,
                        $this->linkAttribs( $target, $customAttribs, $options )
                );
-               if( is_null( $text ) ) {
+               if ( is_null( $text ) ) {
                        $text = $this->linkText( $target );
                }
 
                $ret = null;
-               if( wfRunHooks( 'LinkEnd', array( $this, $target, $options, &$text, &$attribs, &$ret ) ) ) {
-                       $ret = Xml::openElement( 'a', $attribs ) . $text . Xml::closeElement( 'a' );
+               if ( wfRunHooks( 'LinkEnd', array( $this, $target, $options, &$text, &$attribs, &$ret ) ) ) {
+                       $ret = Html::rawElement( 'a', $attribs, $text );
                }
 
                wfProfileOut( __METHOD__ );
                return $ret;
        }
 
+       /**
+        * Identical to link(), except $options defaults to 'known'.
+        */
+       public function linkKnown( $target, $text = null, $customAttribs = array(), $query = array(), $options = array( 'known', 'noclasses' ) ) {
+               return $this->link( $target, $text, $customAttribs, $query, $options );
+       }
+
+       /**
+        * Returns the Url used to link to a Title
+        */
        private function linkUrl( $target, $query, $options ) {
                wfProfileIn( __METHOD__ );
                # We don't want to include fragments for broken links, because they
                # generally make no sense.
-               if( in_array( 'broken', $options ) and $target->mFragment !== '' ) {
+               if ( in_array( 'broken', $options ) and $target->mFragment !== '' ) {
                        $target = clone $target;
                        $target->mFragment = '';
                }
@@ -239,7 +235,7 @@ class Linker {
                # If it's a broken link, add the appropriate query pieces, unless
                # there's already an action specified, or unless 'edit' makes no sense
                # (i.e., for a nonexistent special page).
-               if( in_array( 'broken', $options ) and empty( $query['action'] )
+               if ( in_array( 'broken', $options ) and empty( $query['action'] )
                and $target->getNamespace() != NS_SPECIAL ) {
                        $query['action'] = 'edit';
                        $query['redlink'] = '1';
@@ -249,42 +245,44 @@ class Linker {
                return $ret;
        }
 
+       /**
+        * Returns the array of attributes used when linking to the Title $target
+        */
        private function linkAttribs( $target, $attribs, $options ) {
                wfProfileIn( __METHOD__ );
                global $wgUser;
                $defaults = array();
 
-               if( !in_array( 'noclasses', $options ) ) {
+               if ( !in_array( 'noclasses', $options ) ) {
                        wfProfileIn( __METHOD__ . '-getClasses' );
                        # Now build the classes.
                        $classes = array();
 
-                       if( in_array( 'broken', $options ) ) {
+                       if ( in_array( 'broken', $options ) ) {
                                $classes[] = 'new';
                        }
 
-                       if( $target->isExternal() ) {
+                       if ( $target->isExternal() ) {
                                $classes[] = 'extiw';
                        }
 
-                       # Note that redirects never count as stubs here.
-                       if ( $target->isRedirect() ) {
-                               $classes[] = 'mw-redirect';
-                       } elseif( $target->isContentPage() ) {
-                               # Check for stub.
-                               $threshold = $wgUser->getOption( 'stubthreshold' );
-                               if( $threshold > 0 and $target->exists() and $target->getLength() < $threshold ) {
-                                       $classes[] = 'stub';
+                       if ( !in_array( 'broken', $options ) ) { # Avoid useless calls to LinkCache (see r50387)
+                               $colour = $this->getLinkColour( $target, $wgUser->getStubThreshold() );
+                               if ( $colour !== '' ) {
+                                       $classes[] = $colour; # mw-redirect or stub
                                }
                        }
-                       if( $classes != array() ) {
+                       if ( $classes != array() ) {
                                $defaults['class'] = implode( ' ', $classes );
                        }
                        wfProfileOut( __METHOD__ . '-getClasses' );
                }
 
                # Get a default title attribute.
-               if( in_array( 'known', $options ) ) {
+               if ( $target->getPrefixedText() == '' ) {
+                       # A link like [[#Foo]].  This used to mean an empty title
+                       # attribute, but that's silly.  Just don't output a title.
+               } elseif ( in_array( 'known', $options ) ) {
                        $defaults['title'] = $target->getPrefixedText();
                } else {
                        $defaults['title'] = wfMsg( 'red-link-title', $target->getPrefixedText() );
@@ -294,10 +292,10 @@ class Linker {
                # over that, deleting all "false" attributes.
                $ret = array();
                $merged = Sanitizer::mergeAttributes( $defaults, $attribs );
-               foreach( $merged as $key => $val ) {
+               foreach ( $merged as $key => $val ) {
                        # A false value suppresses the attribute, and we don't want the
                        # href attribute to be overridden.
-                       if( $key != 'href' and $val !== false ) {
+                       if ( $key != 'href' and $val !== false ) {
                                $ret[$key] = $val;
                        }
                }
@@ -305,250 +303,23 @@ class Linker {
                return $ret;
        }
 
+       /**
+        * Default text of the links to the Title $target
+        */
        private function linkText( $target ) {
                # We might be passed a non-Title by make*LinkObj().  Fail gracefully.
-               if( !$target instanceof Title ) {
+               if ( !$target instanceof Title ) {
                        return '';
                }
 
                # If the target is just a fragment, with no title, we return the frag-
                # ment text.  Otherwise, we return the title text itself.
-               if( $target->getPrefixedText() === '' and $target->getFragment() !== '' ) {
+               if ( $target->getPrefixedText() === '' and $target->getFragment() !== '' ) {
                        return htmlspecialchars( $target->getFragment() );
                }
                return htmlspecialchars( $target->getPrefixedText() );
        }
 
-       /**
-        * @deprecated Use link()
-        *
-        * This function is a shortcut to makeLinkObj(Title::newFromText($title),...). Do not call
-        * it if you already have a title object handy. See makeLinkObj for further documentation.
-        *
-        * @param $title String: the text of the title
-        * @param $text  String: link text
-        * @param $query String: optional query part
-        * @param $trail String: optional trail. Alphabetic characters at the start of this string will
-        *                      be included in the link text. Other characters will be appended after
-        *                      the end of the link.
-        */
-       function makeLink( $title, $text = '', $query = '', $trail = '' ) {
-               wfProfileIn( __METHOD__ );
-               $nt = Title::newFromText( $title );
-               if ( $nt instanceof Title ) {
-                       $result = $this->makeLinkObj( $nt, $text, $query, $trail );
-               } else {
-                       wfDebug( 'Invalid title passed to Linker::makeLink(): "'.$title."\"\n" );
-                       $result = $text == "" ? $title : $text;
-               }
-
-               wfProfileOut( __METHOD__ );
-               return $result;
-       }
-
-       /**
-        * @deprecated Use link()
-        *
-        * This function is a shortcut to makeKnownLinkObj(Title::newFromText($title),...). Do not call
-        * it if you already have a title object handy. See makeKnownLinkObj for further documentation.
-        *
-        * @param $title String: the text of the title
-        * @param $text  String: link text
-        * @param $query String: optional query part
-        * @param $trail String: optional trail. Alphabetic characters at the start of this string will
-        *                      be included in the link text. Other characters will be appended after
-        *                      the end of the link.
-        */
-       function makeKnownLink( $title, $text = '', $query = '', $trail = '', $prefix = '',$aprops = '') {
-               $nt = Title::newFromText( $title );
-               if ( $nt instanceof Title ) {
-                       return $this->makeKnownLinkObj( $nt, $text, $query, $trail, $prefix , $aprops );
-               } else {
-                       wfDebug( 'Invalid title passed to Linker::makeKnownLink(): "'.$title."\"\n" );
-                       return $text == '' ? $title : $text;
-               }
-       }
-
-       /**
-        * @deprecated Use link()
-        *
-        * This function is a shortcut to makeBrokenLinkObj(Title::newFromText($title),...). Do not call
-        * it if you already have a title object handy. See makeBrokenLinkObj for further documentation.
-        *
-        * @param string $title The text of the title
-        * @param string $text Link text
-        * @param string $query Optional query part
-        * @param string $trail Optional trail. Alphabetic characters at the start of this string will
-        *                      be included in the link text. Other characters will be appended after
-        *                      the end of the link.
-        */
-       function makeBrokenLink( $title, $text = '', $query = '', $trail = '' ) {
-               $nt = Title::newFromText( $title );
-               if ( $nt instanceof Title ) {
-                       return $this->makeBrokenLinkObj( $nt, $text, $query, $trail );
-               } else {
-                       wfDebug( 'Invalid title passed to Linker::makeBrokenLink(): "'.$title."\"\n" );
-                       return $text == '' ? $title : $text;
-               }
-       }
-
-       /**
-        * @deprecated Use link()
-        *
-        * This function is a shortcut to makeStubLinkObj(Title::newFromText($title),...). Do not call
-        * it if you already have a title object handy. See makeStubLinkObj for further documentation.
-        *
-        * @param $title String: the text of the title
-        * @param $text  String: link text
-        * @param $query String: optional query part
-        * @param $trail String: optional trail. Alphabetic characters at the start of this string will
-        *                      be included in the link text. Other characters will be appended after
-        *                      the end of the link.
-        */
-       function makeStubLink( $title, $text = '', $query = '', $trail = '' ) {
-               wfDeprecated( __METHOD__ );
-               $nt = Title::newFromText( $title );
-               if ( $nt instanceof Title ) {
-                       return $this->makeStubLinkObj( $nt, $text, $query, $trail );
-               } else {
-                       wfDebug( 'Invalid title passed to Linker::makeStubLink(): "'.$title."\"\n" );
-                       return $text == '' ? $title : $text;
-               }
-       }
-
-       /**
-        * @deprecated Use link()
-        *
-        * Make a link for a title which may or may not be in the database. If you need to
-        * call this lots of times, pre-fill the link cache with a LinkBatch, otherwise each
-        * call to this will result in a DB query.
-        *
-        * @param $nt     Title: the title object to make the link from, e.g. from
-        *                      Title::newFromText.
-        * @param $text  String: link text
-        * @param $query String: optional query part
-        * @param $trail String: optional trail. Alphabetic characters at the start of this string will
-        *                      be included in the link text. Other characters will be appended after
-        *                      the end of the link.
-        * @param $prefix String: optional prefix. As trail, only before instead of after.
-        */
-       function makeLinkObj( $nt, $text= '', $query = '', $trail = '', $prefix = '' ) {
-               global $wgUser;
-               wfProfileIn( __METHOD__ );
-
-               $query = wfCgiToArray( $query );
-               list( $inside, $trail ) = Linker::splitTrail( $trail );
-               if( $text === '' ) {
-                       $text = $this->linkText( $nt );
-               }
-
-               $ret = $this->link( $nt, "$prefix$text$inside", array(), $query ) . $trail;
-
-               wfProfileOut( __METHOD__ );
-               return $ret;
-       }
-
-       /**
-        * @deprecated Use link()
-        *
-        * Make a link for a title which definitely exists. This is faster than makeLinkObj because
-        * it doesn't have to do a database query. It's also valid for interwiki titles and special
-        * pages.
-        *
-        * @param $nt Title object of target page
-        * @param $text   String: text to replace the title
-        * @param $query  String: link target
-        * @param $trail  String: text after link
-        * @param $prefix String: text before link text
-        * @param $aprops String: extra attributes to the a-element
-        * @param $style  String: style to apply - if empty, use getInternalLinkAttributesObj instead
-        * @return the a-element
-        */
-       function makeKnownLinkObj( $title, $text = '', $query = '', $trail = '', $prefix = '' , $aprops = '', $style = '' ) {
-               wfProfileIn( __METHOD__ );
-
-               if ( $text == '' ) {
-                       $text = $this->linkText( $title );
-               }
-               $attribs = Sanitizer::mergeAttributes(
-                       Sanitizer::decodeTagAttributes( $aprops ),
-                       Sanitizer::decodeTagAttributes( $style )
-               );
-               $query = wfCgiToArray( $query );
-               list( $inside, $trail ) = Linker::splitTrail( $trail );
-
-               $ret = $this->link( $title, "$prefix$text$inside", $attribs, $query,
-                       array( 'known', 'noclasses' ) ) . $trail;
-
-               wfProfileOut( __METHOD__ );
-               return $ret;
-       }
-
-       /**
-        * @deprecated Use link()
-        *
-        * Make a red link to the edit page of a given title.
-        *
-        * @param $nt Title object of the target page
-        * @param $text  String: Link text
-        * @param $query String: Optional query part
-        * @param $trail String: Optional trail. Alphabetic characters at the start of this string will
-        *                      be included in the link text. Other characters will be appended after
-        *                      the end of the link.
-        */
-       function makeBrokenLinkObj( $title, $text = '', $query = '', $trail = '', $prefix = '' ) {
-               wfProfileIn( __METHOD__ );
-
-               list( $inside, $trail ) = Linker::splitTrail( $trail );
-               if( $text === '' ) {
-                       $text = $this->linkText( $title );
-               }
-               $nt = $this->normaliseSpecialPage( $title );
-
-               $ret = $this->link( $title, "$prefix$text$inside", array(),
-                       wfCgiToArray( $query ), 'broken' ) . $trail;
-
-               wfProfileOut( __METHOD__ );
-               return $ret;
-       }
-
-       /**
-        * @deprecated Use link()
-        *
-        * Make a brown link to a short article.
-        *
-        * @param $nt Title object of the target page
-        * @param $text  String: link text
-        * @param $query String: optional query part
-        * @param $trail String: optional trail. Alphabetic characters at the start of this string will
-        *                      be included in the link text. Other characters will be appended after
-        *                      the end of the link.
-        */
-       function makeStubLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' ) {
-               wfDeprecated( __METHOD__ );
-               return $this->makeColouredLinkObj( $nt, 'stub', $text, $query, $trail, $prefix );
-       }
-
-       /**
-        * @deprecated Use link()
-        *
-        * Make a coloured link.
-        *
-        * @param $nt Title object of the target page
-        * @param $colour Integer: colour of the link
-        * @param $text   String:  link text
-        * @param $query  String:  optional query part
-        * @param $trail  String:  optional trail. Alphabetic characters at the start of this string will
-        *                      be included in the link text. Other characters will be appended after
-        *                      the end of the link.
-        */
-       function makeColouredLinkObj( $nt, $colour, $text = '', $query = '', $trail = '', $prefix = '' ) {
-               if($colour != ''){
-                       $style = $this->getInternalLinkAttributesObj( $nt, $text, $colour );
-               } else $style = '';
-               return $this->makeKnownLinkObj( $nt, $text, $query, $trail, $prefix, '', $style );
-       }
-
        /**
         * Generate either a normal exists-style link or a stub link, depending
         * on the given page size.
@@ -560,11 +331,15 @@ class Linker {
         * @param $trail String
         * @param $prefix String
         * @return string HTML of link
+        * @deprecated
         */
        function makeSizeLinkObj( $size, $nt, $text = '', $query = '', $trail = '', $prefix = '' ) {
                global $wgUser;
-               $threshold = intval( $wgUser->getOption( 'stubthreshold' ) );
+               wfDeprecated( __METHOD__ );
+
+               $threshold = $wgUser->getStubThreshold();
                $colour = ( $size < $threshold ) ? 'stub' : '';
+               // FIXME: replace deprecated makeColouredLinkObj by link()
                return $this->makeColouredLinkObj( $nt, $colour, $text, $query, $trail, $prefix );
        }
 
@@ -574,7 +349,7 @@ class Linker {
         * despite $query not being used.
         */
        function makeSelfLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' ) {
-               if ( '' == $text ) {
+               if ( $text == '' ) {
                        $text = htmlspecialchars( $nt->getPrefixedText() );
                }
                list( $inside, $trail ) = Linker::splitTrail( $trail );
@@ -584,7 +359,9 @@ class Linker {
        function normaliseSpecialPage( Title $title ) {
                if ( $title->getNamespace() == NS_SPECIAL ) {
                        list( $name, $subpage ) = SpecialPage::resolveAliasWithSubpage( $title->getDBkey() );
-                       if ( !$name ) return $title;
+                       if ( !$name ) {
+                               return $title;
+                       }
                        $ret = SpecialPage::getTitleFor( $name, $subpage );
                        $ret->mFragment = $title->getFragment();
                        return $ret;
@@ -593,7 +370,10 @@ class Linker {
                }
        }
 
-       /** @todo document */
+       /**
+        * Returns the filename part of an url.
+        * Used as alternative text for external images.
+        */
        function fnamePart( $url ) {
                $basename = strrchr( $url, '/' );
                if ( false === $basename ) {
@@ -604,76 +384,33 @@ class Linker {
                return $basename;
        }
 
-       /** Obsolete alias */
-       function makeImage( $url, $alt = '' ) {
-               wfDeprecated( __METHOD__ );
-               return $this->makeExternalImage( $url, $alt );
-       }
-
-       /** @todo document */
+       /**
+        * Return the code for images which were added via external links,
+        * via Parser::maybeMakeExternalImage().
+        */
        function makeExternalImage( $url, $alt = '' ) {
-               if ( '' == $alt ) {
+               if ( $alt == '' ) {
                        $alt = $this->fnamePart( $url );
                }
                $img = '';
-               $success = wfRunHooks('LinkerMakeExternalImage', array( &$url, &$alt, &$img ) );
-               if(!$success) {
-                       wfDebug("Hook LinkerMakeExternalImage changed the output of external image with url {$url} and alt text {$alt} to {$img}\n", true);
+               $success = wfRunHooks( 'LinkerMakeExternalImage', array( &$url, &$alt, &$img ) );
+               if ( !$success ) {
+                       wfDebug( "Hook LinkerMakeExternalImage changed the output of external image with url {$url} and alt text {$alt} to {$img}\n", true );
                        return $img;
                }
-               return Xml::element( 'img',
+               return Html::element( 'img',
                        array(
                                'src' => $url,
                                'alt' => $alt ) );
        }
 
        /**
-        * Creates the HTML source for images
-        * @deprecated use makeImageLink2
+        * Given parameters derived from [[Image:Foo|options...]], generate the
+        * HTML that that syntax inserts in the page.
         *
-        * @param object $title
-        * @param string $label label text
-        * @param string $alt alt text
-        * @param string $align horizontal alignment: none, left, center, right)
-        * @param array $handlerParams Parameters to be passed to the media handler
-        * @param boolean $framed shows image in original size in a frame
-        * @param boolean $thumb shows image as thumbnail in a frame
-        * @param string $manualthumb image name for the manual thumbnail
-        * @param string $valign vertical alignment: baseline, sub, super, top, text-top, middle, bottom, text-bottom
-        * @param string $time, timestamp of the file, set as false for current
-        * @return string
-        */
-       function makeImageLinkObj( $title, $label, $alt, $align = '', $handlerParams = array(), $framed = false,
-         $thumb = false, $manualthumb = '', $valign = '', $time = false )
-       {
-               $frameParams = array( 'alt' => $alt, 'caption' => $label );
-               if ( $align ) {
-                       $frameParams['align'] = $align;
-               }
-               if ( $framed ) {
-                       $frameParams['framed'] = true;
-               }
-               if ( $thumb ) {
-                       $frameParams['thumbnail'] = true;
-               }
-               if ( $manualthumb ) {
-                       $frameParams['manualthumb'] = $manualthumb;
-               }
-               if ( $valign ) {
-                       $frameParams['valign'] = $valign;
-               }
-               $file = wfFindFile( $title, $time );
-               return $this->makeImageLink2( $title, $file, $frameParams, $handlerParams, $time );
-       }
-
-       /**
-        * Given parameters derived from [[Image:Foo|options...]], generate the
-        * HTML that that syntax inserts in the page.
-        *
-        * @param Title $title Title object
-        * @param File $file File object, or false if it doesn't exist
-        *
-        * @param array $frameParams Associative array of parameters external to the media handler.
+        * @param $title Title object
+        * @param $file File object, or false if it doesn't exist
+        * @param $frameParams Array: associative array of parameters external to the media handler.
         *     Boolean parameters are indicated by presence or absence, the value is arbitrary and
         *     will often be false.
         *          thumbnail       If present, downscale and frame
@@ -692,22 +429,22 @@ class Linker {
         *          link-title      Title object to link to
         *          no-link         Boolean, suppress description link
         *
-        * @param array $handlerParams Associative array of media handler parameters, to be passed
+        * @param $handlerParams Array: associative array of media handler parameters, to be passed
         *       to transform(). Typical keys are "width" and "page".
-        * @param string $time, timestamp of the file, set as false for current
-        * @param string $query, query params for desc url
-        * @return string HTML for an image, with links, wrappers, etc.
+        * @param $time String: timestamp of the file, set as false for current
+        * @param $query String: query params for desc url
+        * @return String: HTML for an image, with links, wrappers, etc.
         */
-       function makeImageLink2( Title $title, $file, $frameParams = array(), $handlerParams = array(), $time = false, $query = "" ) {
+       function makeImageLink2( Title $title, $file, $frameParams = array(), $handlerParams = array(), $time = false, $query = "", $widthOption = null ) {
                $res = null;
-               if( !wfRunHooks( 'ImageBeforeProduceHTML', array( &$this, &$title,
+               if ( !wfRunHooks( 'ImageBeforeProduceHTML', array( &$this, &$title,
                &$file, &$frameParams, &$handlerParams, &$time, &$res ) ) ) {
                        return $res;
                }
 
-               global $wgContLang, $wgUser, $wgThumbLimits, $wgThumbUpright;
+               global $wgContLang, $wgThumbLimits, $wgThumbUpright;
                if ( $file && !$file->allowInlineDisplay() ) {
-                       wfDebug( __METHOD__.': '.$title->getPrefixedDBkey()." does not allow inline display\n" );
+                       wfDebug( __METHOD__ . ': ' . $title->getPrefixedDBkey() . " does not allow inline display\n" );
                        return $this->link( $title );
                }
 
@@ -719,8 +456,7 @@ class Linker {
                $page = isset( $hp['page'] ) ? $hp['page'] : false;
                if ( !isset( $fp['align'] ) ) $fp['align'] = '';
                if ( !isset( $fp['alt'] ) ) $fp['alt'] = '';
-               # Backward compatibility, title used to always be equal to alt text
-               if ( !isset( $fp['title'] ) ) $fp['title'] = $fp['alt'];
+               if ( !isset( $fp['title'] ) ) $fp['title'] = '';
 
                $prefix = $postfix = '';
 
@@ -732,11 +468,9 @@ class Linker {
                if ( $file && !isset( $hp['width'] ) ) {
                        $hp['width'] = $file->getWidth( $page );
 
-                       if( isset( $fp['thumbnail'] ) || isset( $fp['framed'] ) || isset( $fp['frameless'] ) || !$hp['width'] ) {
-                               $wopt = $wgUser->getOption( 'thumbsize' );
-
-                               if( !isset( $wgThumbLimits[$wopt] ) ) {
-                                        $wopt = User::getDefaultOption( 'thumbsize' );
+                       if ( isset( $fp['thumbnail'] ) || isset( $fp['framed'] ) || isset( $fp['frameless'] ) || !$hp['width'] ) {
+                               if ( !isset( $widthOption ) || !isset( $wgThumbLimits[$widthOption] ) ) {
+                                        $widthOption = User::getDefaultOption( 'thumbsize' );
                                }
 
                                // Reduce width for upright images when parameter 'upright' is used
@@ -746,10 +480,12 @@ class Linker {
                                // Use width which is smaller: real image width or user preference width
                                // For caching health: If width scaled down due to upright parameter, round to full __0 pixel to avoid the creation of a lot of odd thumbs
                                $prefWidth = isset( $fp['upright'] ) ?
-                                       round( $wgThumbLimits[$wopt] * $fp['upright'], -1 ) :
-                                       $wgThumbLimits[$wopt];
+                                       round( $wgThumbLimits[$widthOption] * $fp['upright'], -1 ) :
+                                       $wgThumbLimits[$widthOption];
                                if ( $hp['width'] <= 0 || $prefWidth < $hp['width'] ) {
-                                       $hp['width'] = $prefWidth;
+                                       if ( !isset( $hp['height'] ) ) {
+                                               $hp['width'] = $prefWidth;
+                                       }
                                }
                        }
                }
@@ -763,9 +499,9 @@ class Linker {
                        # If  thumbnail width has not been provided, it is set
                        # to the default user option as specified in Language*.php
                        if ( $fp['align'] == '' ) {
-                               $fp['align'] = $wgContLang->isRTL() ? 'left' : 'right';
+                               $fp['align'] = $wgContLang->alignEnd();
                        }
-                       return $prefix.$this->makeThumbLink2( $title, $file, $fp, $hp, $time, $query ).$postfix;
+                       return $prefix . $this->makeThumbLink2( $title, $file, $fp, $hp, $time, $query ) . $postfix;
                }
 
                if ( $file && isset( $fp['frameless'] ) ) {
@@ -785,38 +521,56 @@ class Linker {
                }
 
                if ( !$thumb ) {
-                       $s = $this->makeBrokenImageLinkObj( $title, '', '', '', '', $time==true );
+                       $s = $this->makeBrokenImageLinkObj( $title, $fp['title'], '', '', '', $time == true );
                } else {
                        $params = array(
                                'alt' => $fp['alt'],
                                'title' => $fp['title'],
                                'valign' => isset( $fp['valign'] ) ? $fp['valign'] : false ,
                                'img-class' => isset( $fp['border'] ) ? 'thumbborder' : false );
-                       if ( !empty( $fp['link-url'] ) ) {
-                               $params['custom-url-link'] = $fp['link-url'];
-                       } elseif ( !empty( $fp['link-title'] ) ) {
-                               $params['custom-title-link'] = $fp['link-title'];
-                       } elseif ( !empty( $fp['no-link'] ) ) {
-                               // No link
-                       } else {
-                               $params['desc-link'] = true;
-                               $params['desc-query'] = $query;
-                       }
+                       $params = $this->getImageLinkMTOParams( $fp, $query ) + $params;
 
                        $s = $thumb->toHtml( $params );
                }
-               if ( '' != $fp['align'] ) {
+               if ( $fp['align'] != '' ) {
                        $s = "<div class=\"float{$fp['align']}\">{$s}</div>";
                }
-               return str_replace("\n", ' ',$prefix.$s.$postfix);
+               return str_replace( "\n", ' ', $prefix . $s . $postfix );
+       }
+
+       /**
+        * Get the link parameters for MediaTransformOutput::toHtml() from given
+        * frame parameters supplied by the Parser.
+        * @param $frameParams The frame parameters
+        * @param $query An optional query string to add to description page links
+        */
+       function getImageLinkMTOParams( $frameParams, $query = '' ) {
+               $mtoParams = array();
+               if ( isset( $frameParams['link-url'] ) && $frameParams['link-url'] !== '' ) {
+                       $mtoParams['custom-url-link'] = $frameParams['link-url'];
+               } elseif ( isset( $frameParams['link-title'] ) && $frameParams['link-title'] !== '' ) {
+                       $mtoParams['custom-title-link'] = $frameParams['link-title'];
+               } elseif ( !empty( $frameParams['no-link'] ) ) {
+                       // No link
+               } else {
+                       $mtoParams['desc-link'] = true;
+                       $mtoParams['desc-query'] = $query;
+               }
+               return $mtoParams;
        }
 
        /**
         * Make HTML for a thumbnail including image, border and caption
-        * @param Title $title
-        * @param File $file File object or false if it doesn't exist
+        * @param $title Title object
+        * @param $file File object or false if it doesn't exist
+        * @param $label String
+        * @param $alt String
+        * @param $align String
+        * @param $params Array
+        * @param $framed Boolean
+        * @param $manualthumb String
         */
-       function makeThumbLinkObj( Title $title, $file, $label = '', $alt, $align = 'right', $params = array(), $framed=false , $manualthumb = "" ) {
+       function makeThumbLinkObj( Title $title, $file, $label = '', $alt, $align = 'right', $params = array(), $framed = false , $manualthumb = "" ) {
                $frameParams = array(
                        'alt' => $alt,
                        'caption' => $label,
@@ -828,7 +582,7 @@ class Linker {
        }
 
        function makeThumbLink2( Title $title, $file, $frameParams = array(), $handlerParams = array(), $time = false, $query = "" ) {
-               global $wgStylePath, $wgContLang;
+               global $wgStylePath;
                $exists = $file && $file->exists();
 
                # Shortcuts
@@ -838,8 +592,7 @@ class Linker {
                $page = isset( $hp['page'] ) ? $hp['page'] : false;
                if ( !isset( $fp['align'] ) ) $fp['align'] = 'right';
                if ( !isset( $fp['alt'] ) ) $fp['alt'] = '';
-               # Backward compatibility, title used to always be equal to alt text
-               if ( !isset( $fp['title'] ) ) $fp['title'] = $fp['alt'];
+               if ( !isset( $fp['title'] ) ) $fp['title'] = '';
                if ( !isset( $fp['caption'] ) ) $fp['caption'] = '';
 
                if ( empty( $hp['width'] ) ) {
@@ -854,17 +607,17 @@ class Linker {
                        if ( isset( $fp['manualthumb'] ) ) {
                                # Use manually specified thumbnail
                                $manual_title = Title::makeTitleSafe( NS_FILE, $fp['manualthumb'] );
-                               if( $manual_title ) {
+                               if ( $manual_title ) {
                                        $manual_img = wfFindFile( $manual_title );
                                        if ( $manual_img ) {
-                                               $thumb = $manual_img->getUnscaledThumb();
+                                               $thumb = $manual_img->getUnscaledThumb( $hp );
                                        } else {
                                                $exists = false;
                                        }
                                }
                        } elseif ( isset( $fp['framed'] ) ) {
                                // Use image dimensions, don't scale
-                               $thumb = $file->getUnscaledThumb( $page );
+                               $thumb = $file->getUnscaledThumb( $hp );
                        } else {
                                # Do not present an image bigger than the source, for bitmap-style images
                                # This is a hack to maintain compatibility with arbitrary pre-1.10 behaviour
@@ -882,72 +635,77 @@ class Linker {
                        }
                }
 
-               if( $page ) {
-                       $query = $query ? '&page=' . urlencode( $page ) : 'page=' . urlencode( $page );
-               }
+               # ThumbnailImage::toHtml() already adds page= onto the end of DjVu URLs
+               # So we don't need to pass it here in $query. However, the URL for the
+               # zoom icon still needs it, so we make a unique query for it. See bug 14771
                $url = $title->getLocalURL( $query );
-
-               $more = htmlspecialchars( wfMsg( 'thumbnail-more' ) );
+               if ( $page ) {
+                       $url = wfAppendQuery( $url, 'page=' . urlencode( $page ) );
+               }
 
                $s = "<div class=\"thumb t{$fp['align']}\"><div class=\"thumbinner\" style=\"width:{$outerWidth}px;\">";
-               if( !$exists ) {
-                       $s .= $this->makeBrokenImageLinkObj( $title, '', '', '', '', $time==true );
-                       $zoomicon = '';
+               if ( !$exists ) {
+                       $s .= $this->makeBrokenImageLinkObj( $title, $fp['title'], '', '', '', $time == true );
+                       $zoomIcon = '';
                } elseif ( !$thumb ) {
                        $s .= htmlspecialchars( wfMsg( 'thumbnail_error', '' ) );
-                       $zoomicon = '';
+                       $zoomIcon = '';
                } else {
-                       $s .= $thumb->toHtml( array(
+                       $params = array(
                                'alt' => $fp['alt'],
                                'title' => $fp['title'],
-                               'img-class' => 'thumbimage',
-                               'desc-link' => true,
-                               'desc-query' => $query ) );
+                               'img-class' => 'thumbimage' );
+                       $params = $this->getImageLinkMTOParams( $fp, $query ) + $params;
+                       $s .= $thumb->toHtml( $params );
                        if ( isset( $fp['framed'] ) ) {
-                               $zoomicon="";
+                               $zoomIcon = "";
                        } else {
-                               $zoomicon =  '<div class="magnify">'.
-                                       '<a href="'.$url.'" class="internal" title="'.$more.'">'.
-                                       '<img src="'.$wgStylePath.'/common/images/magnify-clip.png" ' .
-                                       'width="15" height="11" alt="" /></a></div>';
+                               $zoomIcon =  '<div class="magnify">' .
+                                       '<a href="' . htmlspecialchars( $url ) . '" class="internal" ' .
+                                               'title="' . htmlspecialchars( wfMsg( 'thumbnail-more' ) ) . '">' .
+                                       '<img src="' . htmlspecialchars( $wgStylePath ) . '/common/images/magnify-clip.png" ' .
+                                               'width="15" height="11" alt="" /></a></div>';
                        }
                }
-               $s .= '  <div class="thumbcaption">'.$zoomicon.$fp['caption']."</div></div></div>";
-               return str_replace("\n", ' ', $s);
+               $s .= '  <div class="thumbcaption">' . $zoomIcon . $fp['caption'] . "</div></div></div>";
+               return str_replace( "\n", ' ', $s );
        }
 
        /**
         * Make a "broken" link to an image
         *
-        * @param Title $title Image title
-        * @param string $text Link label
-        * @param string $query Query string
-        * @param string $trail Link trail
-        * @param string $prefix Link prefix
-        * @param bool $time, a file of a certain timestamp was requested
-        * @return string
+        * @param $title Title object
+        * @param $text String: link label
+        * @param $query String: query string
+        * @param $trail String: link trail
+        * @param $prefix String: link prefix
+        * @param $time Boolean: a file of a certain timestamp was requested
+        * @return String
         */
        public function makeBrokenImageLinkObj( $title, $text = '', $query = '', $trail = '', $prefix = '', $time = false ) {
-               global $wgEnableUploads;
-               if( $title instanceof Title ) {
+               global $wgEnableUploads, $wgUploadMissingFileUrl;
+               if ( $title instanceof Title ) {
                        wfProfileIn( __METHOD__ );
                        $currentExists = $time ? ( wfFindFile( $title ) != false ) : false;
-                       if( $wgEnableUploads && !$currentExists ) {
-                               $upload = SpecialPage::getTitleFor( 'Upload' );
-                               if( $text == '' )
+                       if ( ( $wgUploadMissingFileUrl || $wgEnableUploads ) && !$currentExists ) {
+                               if ( $text == '' )
                                        $text = htmlspecialchars( $title->getPrefixedText() );
+
                                $redir = RepoGroup::singleton()->getLocalRepo()->checkRedirect( $title );
-                               if( $redir ) {
+                               if ( $redir ) {
+                                       wfProfileOut( __METHOD__ );
                                        return $this->makeKnownLinkObj( $title, $text, $query, $trail, $prefix );
                                }
-                               $q = 'wpDestFile=' . $title->getPartialUrl();
-                               if( $query != '' )
-                                       $q .= '&' . $query;
+
+                               $href = $this->getUploadUrl( $title, $query );
+
+
                                list( $inside, $trail ) = self::splitTrail( $trail );
-                               $style = $this->getInternalLinkAttributesObj( $title, $text, 'new' );
+
                                wfProfileOut( __METHOD__ );
-                               return '<a href="' . $upload->escapeLocalUrl( $q ) . '"'
-                                       . $style . '>' . $prefix . $text . $inside . '</a>' . $trail;
+                               return '<a href="' . htmlspecialchars( $href ) . '" class="new" title="' .
+                                                               htmlspecialchars( $title->getPrefixedText(), ENT_QUOTES ) . '">' .
+                                                               htmlspecialchars( $prefix . $text . $inside, ENT_NOQUOTES ) . '</a>' . $trail;
                        } else {
                                wfProfileOut( __METHOD__ );
                                return $this->makeKnownLinkObj( $title, $text, $query, $trail, $prefix );
@@ -957,10 +715,25 @@ class Linker {
                }
        }
 
-       /** @deprecated use Linker::makeMediaLinkObj() */
-       function makeMediaLink( $name, $unused = '', $text = '', $time = false ) {
-               $nt = Title::makeTitleSafe( NS_FILE, $name );
-               return $this->makeMediaLinkObj( $nt, $text, $time );
+       /**
+        * Get the URL to upload a certain file
+        *
+        * @param $destFile Title object of the file to upload
+        * @param $query String: urlencoded query string to prepend
+        * @return String: urlencoded URL
+        */
+       protected function getUploadUrl( $destFile, $query = '' ) {
+               global $wgUploadMissingFileUrl;
+               $q = 'wpDestFile=' . $destFile->getPartialUrl();
+               if ( $query != '' )
+                       $q .= '&' . $query;
+
+               if ( $wgUploadMissingFileUrl ) {
+                       return wfAppendQuery( $wgUploadMissingFileUrl, $q );
+               } else {
+                       $upload = SpecialPage::getTitleFor( 'Upload' );
+                       return $upload->getLocalUrl( $q );
+               }
        }
 
        /**
@@ -969,27 +742,25 @@ class Linker {
         * @param $title Title object.
         * @param $text String: pre-sanitized HTML
         * @param $time string: time image was created
-        * @return string HTML
+        * @return String: HTML
         *
-        * @public
         * @todo Handle invalid or missing images better.
         */
-       function makeMediaLinkObj( $title, $text = '', $time = false ) {
-               if( is_null( $title ) ) {
-                       ### HOTFIX. Instead of breaking, return empty string.
+       public function makeMediaLinkObj( $title, $text = '', $time = false ) {
+               if ( is_null( $title ) ) {
+                       # # # HOTFIX. Instead of breaking, return empty string.
                        return $text;
                } else {
-                       $img  = wfFindFile( $title, $time );
-                       if( $img ) {
+                       $img  = wfFindFile( $title, array( 'time' => $time ) );
+                       if ( $img ) {
                                $url  = $img->getURL();
                                $class = 'internal';
                        } else {
-                               $upload = SpecialPage::getTitleFor( 'Upload' );
-                               $url = $upload->getLocalUrl( 'wpDestFile=' . urlencode( $title->getDBkey() ) );
+                               $url = $this->getUploadUrl( $title );
                                $class = 'new';
                        }
-                       $alt = htmlspecialchars( $title->getText() );
-                       if( $text == '' ) {
+                       $alt = htmlspecialchars( $title->getText(),  ENT_QUOTES );
+                       if ( $text == '' ) {
                                $text = $alt;
                        }
                        $u = htmlspecialchars( $url );
@@ -997,44 +768,67 @@ class Linker {
                }
        }
 
-       /** @todo document */
+       /**
+        *  Make a link to a special page given its name and, optionally,
+        * a message key from the link text.
+        * Usage example: $skin->specialLink( 'recentchanges' )
+        */
        function specialLink( $name, $key = '' ) {
-               global $wgContLang;
+               if ( $key == '' ) { $key = strtolower( $name ); }
 
-               if ( '' == $key ) { $key = strtolower( $name ); }
-               $pn = $wgContLang->ucfirst( $name );
-               return $this->makeKnownLink( $wgContLang->specialPage( $pn ),
-                 wfMsg( $key ) );
+               return $this->linkKnown( SpecialPage::getTitleFor( $name ) , wfMsg( $key ) );
        }
 
-       /** @todo document */
+       /**
+        * Make an external link
+        * @param $url String: URL to link to
+        * @param $text String: text of link
+        * @param $escape Boolean: do we escape the link text?
+        * @param $linktype String: type of external link. Gets added to the classes
+        * @param $attribs Array of extra attributes to <a>
+        *
+        * @todo FIXME: This is a really crappy implementation. $linktype and
+        * 'external' are mashed into the class attrib for the link (which is made
+        * into a string). Then, if we've got additional params in $attribs, we
+        * add to it. People using this might want to change the classes (or other
+        * default link attributes), but passing $attribsText is just messy. Would
+        * make a lot more sense to make put the classes into $attribs, let the
+        * hook play with them, *then* expand it all at once.
+        */
        function makeExternalLink( $url, $text, $escape = true, $linktype = '', $attribs = array() ) {
-               $attribsText = $this->getExternalLinkAttributes( $url, $text, 'external ' . $linktype );
-               if ( $attribs ) {
-                       $attribsText .= Xml::expandAttributes( $attribs );
+               if ( isset( $attribs['class'] ) ) {
+                       # yet another hack :(
+                       $class = $attribs['class'];
+               } else {
+                       $class =  "external $linktype";
                }
+
+               $attribsText = $this->getExternalLinkAttributes( $class );
                $url = htmlspecialchars( $url );
-               if( $escape ) {
+               if ( $escape ) {
                        $text = htmlspecialchars( $text );
                }
                $link = '';
-               $success = wfRunHooks('LinkerMakeExternalLink', array( &$url, &$text, &$link ) );
-               if(!$success) {
-                       wfDebug("Hook LinkerMakeExternalLink changed the output of link with url {$url} and text {$text} to {$link}\n", true);
+               $success = wfRunHooks( 'LinkerMakeExternalLink', array( &$url, &$text, &$link, &$attribs, $linktype ) );
+               if ( !$success ) {
+                       wfDebug( "Hook LinkerMakeExternalLink changed the output of link with url {$url} and text {$text} to {$link}\n", true );
                        return $link;
                }
-               return '<a href="'.$url.'"'.$attribsText.'>'.$text.'</a>';
+               if ( $attribs ) {
+                       $attribsText .= Html::expandAttributes( $attribs );
+               }
+               return '<a href="' . $url . '"' . $attribsText . '>' . $text . '</a>';
        }
 
        /**
         * Make user link (or user contributions for unregistered users)
         * @param $userId   Integer: user id in database.
         * @param $userText String: user name in database
-        * @return string HTML fragment
+        * @return String: HTML fragment
         * @private
         */
        function userLink( $userId, $userText ) {
-               if( $userId == 0 ) {
+               if ( $userId == 0 ) {
                        $page = SpecialPage::getTitleFor( 'Contributions', $userText );
                } else {
                        $page = Title::makeTitle( NS_USER, $userText );
@@ -1045,28 +839,29 @@ class Linker {
        /**
         * Generate standard user tool links (talk, contributions, block link, etc.)
         *
-        * @param int $userId User identifier
-        * @param string $userText User name or IP address
-        * @param bool $redContribsWhenNoEdits Should the contributions link be red if the user has no edits?
-        * @param int $flags Customisation flags (e.g. self::TOOL_LINKS_NOBLOCK)
-        * @param int $edits, user edit count (optional, for performance)
-        * @return string
+        * @param $userId Integer: user identifier
+        * @param $userText String: user name or IP address
+        * @param $redContribsWhenNoEdits Boolean: should the contributions link be
+        *        red if the user has no edits?
+        * @param $flags Integer: customisation flags (e.g. self::TOOL_LINKS_NOBLOCK)
+        * @param $edits Integer: user edit count (optional, for performance)
+        * @return String: HTML fragment
         */
-       public function userToolLinks( $userId, $userText, $redContribsWhenNoEdits = false, $flags = 0, $edits=null ) {
-               global $wgUser, $wgDisableAnonTalk, $wgSysopUserBans;
+       public function userToolLinks( $userId, $userText, $redContribsWhenNoEdits = false, $flags = 0, $edits = null ) {
+               global $wgUser, $wgDisableAnonTalk, $wgSysopUserBans, $wgLang;
                $talkable = !( $wgDisableAnonTalk && 0 == $userId );
                $blockable = ( $wgSysopUserBans || 0 == $userId ) && !$flags & self::TOOL_LINKS_NOBLOCK;
 
                $items = array();
-               if( $talkable ) {
+               if ( $talkable ) {
                        $items[] = $this->userTalkLink( $userId, $userText );
                }
-               if( $userId ) {
+               if ( $userId ) {
                        // check if the user has an edit
                        $attribs = array();
-                       if( $redContribsWhenNoEdits ) {
-                               $count = !is_null($edits) ? $edits : User::edits( $userId );
-                               if( $count == 0 ) {
+                       if ( $redContribsWhenNoEdits ) {
+                               $count = !is_null( $edits ) ? $edits : User::edits( $userId );
+                               if ( $count == 0 ) {
                                        $attribs['class'] = 'new';
                                }
                        }
@@ -1074,12 +869,12 @@ class Linker {
 
                        $items[] = $this->link( $contribsPage, wfMsgHtml( 'contribslink' ), $attribs );
                }
-               if( $blockable && $wgUser->isAllowed( 'block' ) ) {
+               if ( $blockable && $wgUser->isAllowed( 'block' ) ) {
                        $items[] = $this->blockLink( $userId, $userText );
                }
 
-               if( $items ) {
-                       return ' <span class="mw-usertoollinks">(' . implode( ' | ', $items ) . ')</span>';
+               if ( $items ) {
+                       return ' <span class="mw-usertoollinks">(' . $wgLang->pipeList( $items ) . ')</span>';
                } else {
                        return '';
                }
@@ -1087,11 +882,11 @@ class Linker {
 
        /**
         * Alias for userToolLinks( $userId, $userText, true );
-        * @param int $userId User identifier
-        * @param string $userText User name or IP address
-        * @param int $edits, user edit count (optional, for performance)
+        * @param $userId Integer: user identifier
+        * @param $userText String: user name or IP address
+        * @param $edits Integer: user edit count (optional, for performance)
         */
-       public function userToolLinksRedContribs( $userId, $userText, $edits=null ) {
+       public function userToolLinksRedContribs( $userId, $userText, $edits = null ) {
                return $this->userToolLinks( $userId, $userText, true, 0, $edits );
        }
 
@@ -1099,7 +894,7 @@ class Linker {
        /**
         * @param $userId Integer: user id in database.
         * @param $userText String: user name in database.
-        * @return string HTML fragment with user talk link
+        * @return String: HTML fragment with user talk link
         * @private
         */
        function userTalkLink( $userId, $userText ) {
@@ -1111,7 +906,7 @@ class Linker {
        /**
         * @param $userId Integer: userid
         * @param $userText String: user name in database.
-        * @return string HTML fragment with block link
+        * @return String: HTML fragment with block link
         * @private
         */
        function blockLink( $userId, $userText ) {
@@ -1123,19 +918,19 @@ class Linker {
        /**
         * Generate a user link if the current user is allowed to view it
         * @param $rev Revision object.
-        * @param $isPublic, bool, show only if all users can see it
-        * @return string HTML
+        * @param $isPublic Boolean: show only if all users can see it
+        * @return String: HTML fragment
         */
        function revUserLink( $rev, $isPublic = false ) {
-               if( $rev->isDeleted( Revision::DELETED_USER ) && $isPublic ) {
+               if ( $rev->isDeleted( Revision::DELETED_USER ) && $isPublic ) {
                        $link = wfMsgHtml( 'rev-deleted-user' );
-               } else if( $rev->userCan( Revision::DELETED_USER ) ) {
-                       $link = $this->userLink( $rev->getUser( Revision::FOR_THIS_USER ), 
+               } else if ( $rev->userCan( Revision::DELETED_USER ) ) {
+                       $link = $this->userLink( $rev->getUser( Revision::FOR_THIS_USER ),
                                $rev->getUserText( Revision::FOR_THIS_USER ) );
                } else {
                        $link = wfMsgHtml( 'rev-deleted-user' );
                }
-               if( $rev->isDeleted( Revision::DELETED_USER ) ) {
+               if ( $rev->isDeleted( Revision::DELETED_USER ) ) {
                        return '<span class="history-deleted">' . $link . '</span>';
                }
                return $link;
@@ -1144,21 +939,21 @@ class Linker {
        /**
         * Generate a user tool link cluster if the current user is allowed to view it
         * @param $rev Revision object.
-        * @param $isPublic, bool, show only if all users can see it
+        * @param $isPublic Boolean: show only if all users can see it
         * @return string HTML
         */
        function revUserTools( $rev, $isPublic = false ) {
-               if( $rev->isDeleted( Revision::DELETED_USER ) && $isPublic ) {
+               if ( $rev->isDeleted( Revision::DELETED_USER ) && $isPublic ) {
                        $link = wfMsgHtml( 'rev-deleted-user' );
-               } else if( $rev->userCan( Revision::DELETED_USER ) ) {
+               } else if ( $rev->userCan( Revision::DELETED_USER ) ) {
                        $userId = $rev->getUser( Revision::FOR_THIS_USER );
-                       $userText = $rev->getUserText( Revision::FOR_THIS_USER ); 
+                       $userText = $rev->getUserText( Revision::FOR_THIS_USER );
                        $link = $this->userLink( $userId, $userText ) .
                                ' ' . $this->userToolLinks( $userId, $userText );
                } else {
                        $link = wfMsgHtml( 'rev-deleted-user' );
                }
-               if( $rev->isDeleted( Revision::DELETED_USER ) ) {
+               if ( $rev->isDeleted( Revision::DELETED_USER ) ) {
                        return ' <span class="history-deleted">' . $link . '</span>';
                }
                return $link;
@@ -1176,11 +971,11 @@ class Linker {
         * Since you can't set a default parameter for a reference, I've turned it
         * temporarily to a value pass. Should be adjusted further. --brion
         *
-        * @param string $comment
-        * @param mixed $title Title object (to generate link to the section in autocomment) or null
-        * @param bool $local Whether section links should refer to local page
+        * @param $comment String
+        * @param $title Mixed: Title object (to generate link to the section in autocomment) or null
+        * @param $local Boolean: whether section links should refer to local page
         */
-       function formatComment($comment, $title = NULL, $local = false) {
+       function formatComment( $comment, $title = null, $local = false ) {
                wfProfileIn( __METHOD__ );
 
                # Sanitize text a bit:
@@ -1189,8 +984,8 @@ class Linker {
                $comment = Sanitizer::escapeHtmlAllowEntities( $comment );
 
                # Render autocomments and make links:
-               $comment = $this->formatAutoComments( $comment, $title, $local );
-               $comment = $this->formatLinksInComment( $comment );
+               $comment = $this->formatAutocomments( $comment, $title, $local );
+               $comment = $this->formatLinksInComment( $comment, $title, $local );
 
                wfProfileOut( __METHOD__ );
                return $comment;
@@ -1203,11 +998,10 @@ class Linker {
         * add a separator where needed and format the comment itself with CSS
         * Called by Linker::formatComment.
         *
-        * @param string $comment Comment text
-        * @param object $title An optional title object used to links to sections
-        * @return string $comment formatted comment
-        *
-        * @todo Document the $local parameter.
+        * @param $comment String: comment text
+        * @param $title An optional title object used to links to sections
+        * @param $local Boolean: whether section links should refer to local page
+        * @return String: formatted comment
         */
        private function formatAutocomments( $comment, $title = null, $local = false ) {
                // Bah!
@@ -1221,46 +1015,45 @@ class Linker {
                unset( $this->autocommentLocal );
                return $comment;
        }
-       
+
        private function formatAutocommentsCallback( $match ) {
                $title = $this->autocommentTitle;
                $local = $this->autocommentLocal;
-               
-               $pre=$match[1];
-               $auto=$match[2];
-               $post=$match[3];
-               $link='';
-               if( $title ) {
+
+               $pre = $match[1];
+               $auto = $match[2];
+               $post = $match[3];
+               $link = '';
+               if ( $title ) {
                        $section = $auto;
 
-                       # Generate a valid anchor name from the section title.
-                       # Hackish, but should generally work - we strip wiki
-                       # syntax, including the magic [[: that is used to
-                       # "link rather than show" in case of images and
-                       # interlanguage links.
+                       # Remove links that a user may have manually put in the autosummary
+                       # This could be improved by copying as much of Parser::stripSectionName as desired.
                        $section = str_replace( '[[:', '', $section );
                        $section = str_replace( '[[', '', $section );
                        $section = str_replace( ']]', '', $section );
+
+                       $section = Sanitizer::normalizeSectionNameWhitespace( $section ); # bug 22784
                        if ( $local ) {
                                $sectionTitle = Title::newFromText( '#' . $section );
                        } else {
-                               $sectionTitle = Title::makeTitleSafe( $title->getNamespace(), 
+                               $sectionTitle = Title::makeTitleSafe( $title->getNamespace(),
                                        $title->getDBkey(), $section );
                        }
                        if ( $sectionTitle ) {
                                $link = $this->link( $sectionTitle,
-                                       wfMsgForContent( 'sectionlink' ), array(), array(),
+                                       htmlspecialchars( wfMsgForContent( 'sectionlink' ) ), array(), array(),
                                        'noclasses' );
                        } else {
                                $link = '';
                        }
                }
                $auto = "$link$auto";
-               if( $pre ) {
+               if ( $pre ) {
                        # written summary $presep autocomment (summary /* section */)
                        $auto = wfMsgExt( 'autocomment-prefix', array( 'escapenoentities', 'content' ) ) . $auto;
                }
-               if( $post ) {
+               if ( $post ) {
                        # autocomment $postsep written summary (/* section */ summary)
                        $auto .= wfMsgExt( 'colon-separator', array( 'escapenoentities', 'content' ) );
                }
@@ -1273,15 +1066,22 @@ class Linker {
         * Formats wiki links and media links in text; all other wiki formatting
         * is ignored
         *
-        * @fixme doesn't handle sub-links as in image thumb texts like the main parser
-        * @param string $comment Text to format links in
-        * @return string
+        * @todo Fixme: doesn't handle sub-links as in image thumb texts like the main parser
+        * @param $comment String: text to format links in
+        * @param $title An optional title object used to links to sections
+        * @param $local Boolean: whether section links should refer to local page
+        * @return String
         */
-       public function formatLinksInComment( $comment ) {
-               return preg_replace_callback(
+       public function formatLinksInComment( $comment, $title = null, $local = false ) {
+               $this->commentContextTitle = $title;
+               $this->commentLocal = $local;
+               $html = preg_replace_callback(
                        '/\[\[:?(.*?)(\|(.*?))*\]\]([^[]*)/',
                        array( $this, 'formatLinksInCommentCallback' ),
                        $comment );
+               unset( $this->commentContextTitle );
+               unset( $this->commentLocal );
+               return $html;
        }
 
        protected function formatLinksInCommentCallback( $match ) {
@@ -1293,53 +1093,149 @@ class Linker {
                $comment = $match[0];
 
                # fix up urlencoded title texts (copied from Parser::replaceInternalLinks)
-               if( strpos( $match[1], '%' ) !== false ) {
-                       $match[1] = str_replace( array('<', '>'), array('&lt;', '&gt;'), urldecode($match[1]) );
+               if ( strpos( $match[1], '%' ) !== false ) {
+                       $match[1] = str_replace( array( '<', '>' ), array( '&lt;', '&gt;' ), urldecode( $match[1] ) );
                }
 
                # Handle link renaming [[foo|text]] will show link as "text"
-               if( "" != $match[3] ) {
+               if ( $match[3] != "" ) {
                        $text = $match[3];
                } else {
                        $text = $match[1];
                }
                $submatch = array();
-               if( preg_match( '/^' . $medians . '(.*)$/i', $match[1], $submatch ) ) {
+               $thelink = null;
+               if ( preg_match( '/^' . $medians . '(.*)$/i', $match[1], $submatch ) ) {
                        # Media link; trail not supported.
                        $linkRegexp = '/\[\[(.*?)\]\]/';
-                       $thelink = $this->makeMediaLink( $submatch[1], "", $text );
+                       $title = Title::makeTitleSafe( NS_FILE, $submatch[1] );
+                       $thelink = $this->makeMediaLinkObj( $title, $text );
                } else {
                        # Other kind of link
-                       if( preg_match( $wgContLang->linkTrail(), $match[4], $submatch ) ) {
+                       if ( preg_match( $wgContLang->linkTrail(), $match[4], $submatch ) ) {
                                $trail = $submatch[1];
                        } else {
                                $trail = "";
                        }
                        $linkRegexp = '/\[\[(.*?)\]\]' . preg_quote( $trail, '/' ) . '/';
-                       if (isset($match[1][0]) && $match[1][0] == ':')
-                               $match[1] = substr($match[1], 1);
-                       $thelink = $this->makeLink( $match[1], $text, "", $trail );
+                       if ( isset( $match[1][0] ) && $match[1][0] == ':' )
+                               $match[1] = substr( $match[1], 1 );
+                       list( $inside, $trail ) = Linker::splitTrail( $trail );
+
+                       $linkText = $text;
+                       $linkTarget = Linker::normalizeSubpageLink( $this->commentContextTitle,
+                               $match[1], $linkText );
+
+                       $target = Title::newFromText( $linkTarget );
+                       if ( $target ) {
+                               if ( $target->getText() == '' && $target->getInterwiki() === ''
+                                       && !$this->commentLocal && $this->commentContextTitle )
+                               {
+                                       $newTarget = clone ( $this->commentContextTitle );
+                                       $newTarget->setFragment( '#' . $target->getFragment() );
+                                       $target = $newTarget;
+                               }
+                               $thelink = $this->link(
+                                       $target,
+                                       $linkText . $inside
+                               ) . $trail;
+                       }
+               }
+               if ( $thelink ) {
+                       // If the link is still valid, go ahead and replace it in!
+                       $comment = preg_replace( $linkRegexp, StringUtils::escapeRegexReplacement( $thelink ), $comment, 1 );
                }
-               $comment = preg_replace( $linkRegexp, StringUtils::escapeRegexReplacement( $thelink ), $comment, 1 );
 
                return $comment;
        }
 
+       static function normalizeSubpageLink( $contextTitle, $target, &$text ) {
+               # Valid link forms:
+               # Foobar -- normal
+               # :Foobar -- override special treatment of prefix (images, language links)
+               # /Foobar -- convert to CurrentPage/Foobar
+               # /Foobar/ -- convert to CurrentPage/Foobar, strip the initial / from text
+               # ../ -- convert to CurrentPage, from CurrentPage/CurrentSubPage
+               # ../Foobar -- convert to CurrentPage/Foobar, from CurrentPage/CurrentSubPage
+
+               wfProfileIn( __METHOD__ );
+               $ret = $target; # default return value is no change
+
+               # Some namespaces don't allow subpages,
+               # so only perform processing if subpages are allowed
+               if ( $contextTitle && MWNamespace::hasSubpages( $contextTitle->getNamespace() ) ) {
+                       $hash = strpos( $target, '#' );
+                       if ( $hash !== false ) {
+                               $suffix = substr( $target, $hash );
+                               $target = substr( $target, 0, $hash );
+                       } else {
+                               $suffix = '';
+                       }
+                       # bug 7425
+                       $target = trim( $target );
+                       # Look at the first character
+                       if ( $target != '' && $target { 0 } === '/' ) {
+                               # / at end means we don't want the slash to be shown
+                               $m = array();
+                               $trailingSlashes = preg_match_all( '%(/+)$%', $target, $m );
+                               if ( $trailingSlashes ) {
+                                       $noslash = $target = substr( $target, 1, -strlen( $m[0][0] ) );
+                               } else {
+                                       $noslash = substr( $target, 1 );
+                               }
+
+                               $ret = $contextTitle->getPrefixedText() . '/' . trim( $noslash ) . $suffix;
+                               if ( $text === '' ) {
+                                       $text = $target . $suffix;
+                               } # this might be changed for ugliness reasons
+                       } else {
+                               # check for .. subpage backlinks
+                               $dotdotcount = 0;
+                               $nodotdot = $target;
+                               while ( strncmp( $nodotdot, "../", 3 ) == 0 ) {
+                                       ++$dotdotcount;
+                                       $nodotdot = substr( $nodotdot, 3 );
+                               }
+                               if ( $dotdotcount > 0 ) {
+                                       $exploded = explode( '/', $contextTitle->GetPrefixedText() );
+                                       if ( count( $exploded ) > $dotdotcount ) { # not allowed to go below top level page
+                                               $ret = implode( '/', array_slice( $exploded, 0, -$dotdotcount ) );
+                                               # / at the end means don't show full path
+                                               if ( substr( $nodotdot, -1, 1 ) === '/' ) {
+                                                       $nodotdot = substr( $nodotdot, 0, -1 );
+                                                       if ( $text === '' ) {
+                                                               $text = $nodotdot . $suffix;
+                                                       }
+                                               }
+                                               $nodotdot = trim( $nodotdot );
+                                               if ( $nodotdot != '' ) {
+                                                       $ret .= '/' . $nodotdot;
+                                               }
+                                               $ret .= $suffix;
+                                       }
+                               }
+                       }
+               }
+
+               wfProfileOut( __METHOD__ );
+               return $ret;
+       }
+
        /**
         * Wrap a comment in standard punctuation and formatting if
         * it's non-empty, otherwise return empty string.
         *
-        * @param string $comment
-        * @param mixed $title Title object (to generate link to section in autocomment) or null
-        * @param bool $local Whether section links should refer to local page
+        * @param $comment String
+        * @param $title Mixed: Title object (to generate link to section in autocomment) or null
+        * @param $local Boolean: whether section links should refer to local page
         *
         * @return string
         */
-       function commentBlock( $comment, $title = NULL, $local = false ) {
+       function commentBlock( $comment, $title = null, $local = false ) {
                // '*' used to be the comment inserted by the software way back
                // in antiquity in case none was provided, here for backwards
                // compatability, acc. to brion -ævar
-               if( $comment == '' || $comment == '*' ) {
+               if ( $comment == '' || $comment == '*' ) {
                        return '';
                } else {
                        $formatted = $this->formatComment( $comment, $title, $local );
@@ -1351,21 +1247,22 @@ class Linker {
         * Wrap and format the given revision's comment block, if the current
         * user is allowed to view it.
         *
-        * @param Revision $rev
-        * @param bool $local Whether section links should refer to local page
-        * @param $isPublic, show only if all users can see it
-        * @return string HTML
+        * @param $rev Revision object
+        * @param $local Boolean: whether section links should refer to local page
+        * @param $isPublic Boolean: show only if all users can see it
+        * @return String: HTML fragment
         */
        function revComment( Revision $rev, $local = false, $isPublic = false ) {
-               if( $rev->isDeleted( Revision::DELETED_COMMENT ) && $isPublic ) {
+               if ( $rev->getRawComment() == "" ) return "";
+               if ( $rev->isDeleted( Revision::DELETED_COMMENT ) && $isPublic ) {
                        $block = " <span class=\"comment\">" . wfMsgHtml( 'rev-deleted-comment' ) . "</span>";
-               } else if( $rev->userCan( Revision::DELETED_COMMENT ) ) {
+               } else if ( $rev->userCan( Revision::DELETED_COMMENT ) ) {
                        $block = $this->commentBlock( $rev->getComment( Revision::FOR_THIS_USER ),
                                $rev->getTitle(), $local );
                } else {
                        $block = " <span class=\"comment\">" . wfMsgHtml( 'rev-deleted-comment' ) . "</span>";
                }
-               if( $rev->isDeleted( Revision::DELETED_COMMENT ) ) {
+               if ( $rev->isDeleted( Revision::DELETED_COMMENT ) ) {
                        return " <span class=\"history-deleted\">$block</span>";
                }
                return $block;
@@ -1383,77 +1280,83 @@ class Linker {
                return "<span class=\"history-size\">$stxt</span>";
        }
 
-       /** @todo document */
+       /**
+        * Add another level to the Table of Contents
+        */
        function tocIndent() {
                return "\n<ul>";
        }
 
-       /** @todo document */
-       function tocUnindent($level) {
-               return "</li>\n" . str_repeat( "</ul>\n</li>\n", $level>0 ? $level : 0 );
+       /**
+        * Finish one or more sublevels on the Table of Contents
+        */
+       function tocUnindent( $level ) {
+               return "</li>\n" . str_repeat( "</ul>\n</li>\n", $level > 0 ? $level : 0 );
        }
 
        /**
         * parameter level defines if we are on an indentation level
         */
-       function tocLine( $anchor, $tocline, $tocnumber, $level ) {
-               return "\n<li class=\"toclevel-$level\"><a href=\"#" .
+       function tocLine( $anchor, $tocline, $tocnumber, $level, $sectionIndex = false ) {
+               $classes = "toclevel-$level";
+               if ( $sectionIndex !== false )
+                       $classes .= " tocsection-$sectionIndex";
+               return "\n<li class=\"$classes\"><a href=\"#" .
                        $anchor . '"><span class="tocnumber">' .
                        $tocnumber . '</span> <span class="toctext">' .
                        $tocline . '</span></a>';
        }
 
-       /** @todo document */
+       /**
+        * End a Table Of Contents line.
+        * tocUnindent() will be used instead if we're ending a line below
+        * the new level.
+        */
        function tocLineEnd() {
                return "</li>\n";
        }
 
-       /** @todo document */
-       function tocList($toc) {
-               global $wgJsMimeType;
-               $title = wfMsgHtml('toc') ;
+       /**
+        * Wraps the TOC in a table and provides the hide/collapse javascript.
+        *
+        * @param $toc String: html of the Table Of Contents
+        * @return String: full html of the TOC
+        */
+       function tocList( $toc ) {
+               $title = wfMsgHtml( 'toc' ) ;
                return
-                  '<table id="toc" class="toc" summary="' . $title .'"><tr><td>'
+                  '<table id="toc" class="toc"><tr><td>'
                 . '<div id="toctitle"><h2>' . $title . "</h2></div>\n"
                 . $toc
-                # no trailing newline, script should not be wrapped in a
-                # paragraph
-                . "</ul>\n</td></tr></table>"
-                . '<script type="' . $wgJsMimeType . '">'
-                . ' if (window.showTocToggle) {'
-                . ' var tocShowText = "' . Xml::escapeJsString( wfMsg('showtoc') ) . '";'
-                . ' var tocHideText = "' . Xml::escapeJsString( wfMsg('hidetoc') ) . '";'
-                . ' showTocToggle();'
-                . ' } '
-                . "</script>\n";
+                . "</ul>\n</td></tr></table>\n";
        }
 
        /**
-        * Used to generate section edit links that point to "other" pages
-        * (sections that are really part of included pages).
+        * Generate a table of contents from a section tree
+        * Currently unused.
         *
-        * @param $title Title string.
-        * @param $section Integer: section number.
+        * @param $tree Return value of ParserOutput::getSections()
+        * @return String: HTML fragment
         */
-       public function editSectionLinkForOther( $title, $section ) {
-               wfDeprecated( __METHOD__ );
-               $title = Title::newFromText( $title );
-               return $this->doEditSectionLink( $title, $section );
-       }
-
-       /**
-        * @param $nt Title object.
-        * @param $section Integer: section number.
-        * @param $hint Link String: title, or default if omitted or empty
-        */
-       public function editSectionLink( Title $nt, $section, $hint = '' ) {
-               wfDeprecated( __METHOD__ );
-               if( $hint === '' ) {
-                       # No way to pass an actual empty $hint here!  The new interface al-
-                       # lows this, so we have to do this for compatibility.
-                       $hint = null;
-               }
-               return $this->doEditSectionLink( $nt, $section, $hint );
+       public function generateTOC( $tree ) {
+               $toc = '';
+               $lastLevel = 0;
+               foreach ( $tree as $section ) {
+                       if ( $section['toclevel'] > $lastLevel )
+                               $toc .= $this->tocIndent();
+                       else if ( $section['toclevel'] < $lastLevel )
+                               $toc .= $this->tocUnindent(
+                                       $lastLevel - $section['toclevel'] );
+                       else
+                               $toc .= $this->tocLineEnd();
+
+                       $toc .= $this->tocLine( $section['anchor'],
+                               $section['line'], $section['number'],
+                               $section['toclevel'], $section['index'] );
+                       $lastLevel = $section['toclevel'];
+               }
+               $toc .= $this->tocLineEnd();
+               return $this->tocList( $toc );
        }
 
        /**
@@ -1466,14 +1369,17 @@ class Linker {
         *   to be included in the link, like "&section=$section"
         * @param $tooltip string The tooltip to use for the link: will be escaped
         *   and wrapped in the 'editsectionhint' message
+        * @param $lang    string Language code
         * @return         string HTML to use for edit link
         */
-       public function doEditSectionLink( Title $nt, $section, $tooltip = null ) {
+       public function doEditSectionLink( Title $nt, $section, $tooltip = null, $lang = false ) {
+               // HTML generated here should probably have userlangattributes
+               // added to it for LTR text on RTL pages
                $attribs = array();
-               if( !is_null( $tooltip ) ) {
-                       $attribs['title'] = wfMsg( 'editsectionhint', $tooltip );
+               if ( !is_null( $tooltip ) ) {
+                       $attribs['title'] = wfMsgReal( 'editsectionhint', array( $tooltip ), true, $lang );
                }
-               $link = $this->link( $nt, wfMsg('editsection'),
+               $link = $this->link( $nt, wfMsgExt( 'editsection', array( 'language' => $lang ) ),
                        $attribs,
                        array( 'action' => 'edit', 'section' => $section ),
                        array( 'noclasses', 'known' )
@@ -1482,24 +1388,24 @@ class Linker {
                # Run the old hook.  This takes up half of the function . . . hopefully
                # we can rid of it someday.
                $attribs = '';
-               if( $tooltip ) {
-                       $attribs = wfMsgHtml( 'editsectionhint', htmlspecialchars( $tooltip ) );
+               if ( $tooltip ) {
+                       $attribs = htmlspecialchars( wfMsgReal( 'editsectionhint', array( $tooltip ), true, $lang ) );
                        $attribs = " title=\"$attribs\"";
                }
                $result = null;
                wfRunHooks( 'EditSectionLink', array( &$this, $nt, $section, $attribs, $link, &$result ) );
-               if( !is_null( $result ) ) {
+               if ( !is_null( $result ) ) {
                        # For reverse compatibility, add the brackets *after* the hook is
                        # run, and even add them to hook-provided text.  (This is the main
                        # reason that the EditSectionLink hook is deprecated in favor of
                        # DoEditSectionLink: it can't change the brackets or the span.)
-                       $result = wfMsgHtml( 'editsection-brackets', $result );
+                       $result = wfMsgExt( 'editsection-brackets', array( 'escape', 'replaceafter', 'language' => $lang ), $link );
                        return "<span class=\"editsection\">$result</span>";
                }
 
                # Add the brackets and the span, and *then* run the nice new hook, with
                # clean and non-redundant arguments.
-               $result = wfMsgHtml( 'editsection-brackets', $link );
+               $result = wfMsgExt( 'editsection-brackets', array( 'escape', 'replaceafter', 'language' => $lang ), $link );
                $result = "<span class=\"editsection\">$result</span>";
 
                wfRunHooks( 'DoEditSectionLink', array( $this, $nt, $section, $tooltip, &$result ) );
@@ -1509,25 +1415,25 @@ class Linker {
        /**
         * Create a headline for content
         *
-        * @param int    $level   The level of the headline (1-6)
-        * @param string $attribs Any attributes for the headline, starting with a space and ending with '>'
-        *                        This *must* be at least '>' for no attribs
-        * @param string $anchor  The anchor to give the headline (the bit after the #)
-        * @param string $text    The text of the header
-        * @param string $link    HTML to add for the section edit link
-        * @param mixed  $legacyAnchor A second, optional anchor to give for
+        * @param $level Integer: the level of the headline (1-6)
+        * @param $attribs String: any attributes for the headline, starting with
+        *                 a space and ending with '>'
+        *                 This *must* be at least '>' for no attribs
+        * @param $anchor String: the anchor to give the headline (the bit after the #)
+        * @param $text String: the text of the header
+        * @param $link String: HTML to add for the section edit link
+        * @param $legacyAnchor Mixed: a second, optional anchor to give for
         *   backward compatibility (false to omit)
         *
-        * @return string HTML headline
+        * @return String: HTML headline
         */
        public function makeHeadline( $level, $attribs, $anchor, $text, $link, $legacyAnchor = false ) {
-               $ret = "<a name=\"$anchor\" id=\"$anchor\"></a>"
-                       . "<h$level$attribs"
+               $ret = "<h$level$attribs"
                        . $link
-                       . " <span class=\"mw-headline\">$text</span>"
+                       . " <span class=\"mw-headline\" id=\"$anchor\">$text</span>"
                        . "</h$level>";
                if ( $legacyAnchor !== false ) {
-                       $ret = "<a name=\"$legacyAnchor\" id=\"$legacyAnchor\"></a>$ret";
+                       $ret = "<div id=\"$legacyAnchor\"></div>$ret";
                }
                return $ret;
        }
@@ -1535,8 +1441,6 @@ class Linker {
        /**
         * Split a link trail, return the "inside" portion and the remainder of the trail
         * as a two-element array
-        *
-        * @static
         */
        static function splitTrail( $trail ) {
                static $regex = false;
@@ -1545,7 +1449,7 @@ class Linker {
                        $regex = $wgContLang->linkTrail();
                }
                $inside = '';
-               if ( '' != $trail ) {
+               if ( $trail !== '' ) {
                        $m = array();
                        if ( preg_match( $regex, $trail, $m ) ) {
                                $inside = $m[1];
@@ -1566,7 +1470,7 @@ class Linker {
         * changes, so this allows sysops to combat a busy vandal without bothering
         * other users.
         *
-        * @param Revision $rev
+        * @param $rev Revision object
         */
        function generateRollback( $rev ) {
                return '<span class="mw-rollback-link">['
@@ -1577,8 +1481,8 @@ class Linker {
        /**
         * Build a raw rollback link, useful for collections of "tool" links
         *
-        * @param Revision $rev
-        * @return string
+        * @param $rev Revision object
+        * @return String: HTML fragment
         */
        public function buildRollbackLink( $rev ) {
                global $wgRequest, $wgUser;
@@ -1587,7 +1491,7 @@ class Linker {
                        'action' => 'rollback',
                        'from' => $rev->getUserText()
                );
-               if( $wgRequest->getBool( 'bot' ) ) {
+               if ( $wgRequest->getBool( 'bot' ) ) {
                        $query['bot'] = '1';
                        $query['hidediff'] = '1'; // bug 15999
                }
@@ -1601,11 +1505,11 @@ class Linker {
        /**
         * Returns HTML for the "templates used on this page" list.
         *
-        * @param array $templates Array of templates from Article::getUsedTemplate
+        * @param $templates Array of templates from Article::getUsedTemplate
         * or similar
-        * @param bool $preview Whether this is for a preview
-        * @param bool $section Whether this is for a section edit
-        * @return string HTML output
+        * @param $preview Boolean: whether this is for a preview
+        * @param $section Boolean: whether this is for a section edit
+        * @return String: HTML output
         */
        public function formatTemplates( $templates, $preview = false, $section = false ) {
                wfProfileIn( __METHOD__ );
@@ -1614,7 +1518,7 @@ class Linker {
                if ( count( $templates ) > 0 ) {
                        # Do a batch existence check
                        $batch = new LinkBatch;
-                       foreach( $templates as $title ) {
+                       foreach ( $templates as $title ) {
                                $batch->addObj( $title );
                        }
                        $batch->execute();
@@ -1622,11 +1526,11 @@ class Linker {
                        # Construct the HTML
                        $outText = '<div class="mw-templatesUsedExplanation">';
                        if ( $preview ) {
-                               $outText .= wfMsgExt( 'templatesusedpreview', array( 'parse' ) );
+                               $outText .= wfMsgExt( 'templatesusedpreview', array( 'parse' ), count( $templates ) );
                        } elseif ( $section ) {
-                               $outText .= wfMsgExt( 'templatesusedsection', array( 'parse' ) );
+                               $outText .= wfMsgExt( 'templatesusedsection', array( 'parse' ), count( $templates ) );
                        } else {
-                               $outText .= wfMsgExt( 'templatesused', array( 'parse' ) );
+                               $outText .= wfMsgExt( 'templatesused', array( 'parse' ), count( $templates ) );
                        }
                        $outText .= "</div><ul>\n";
 
@@ -1640,10 +1544,20 @@ class Linker {
                                } else {
                                        $protected = '';
                                }
-                               if( $titleObj->quickUserCan( 'edit' ) ) {
-                                       $editLink = $this->makeLinkObj( $titleObj, wfMsg('editlink'), 'action=edit' );
+                               if ( $titleObj->quickUserCan( 'edit' ) ) {
+                                       $editLink = $this->link(
+                                               $titleObj,
+                                               wfMsg( 'editlink' ),
+                                               array(),
+                                               array( 'action' => 'edit' )
+                                       );
                                } else {
-                                       $editLink = $this->makeLinkObj( $titleObj, wfMsg('viewsourcelink'), 'action=edit' );
+                                       $editLink = $this->link(
+                                               $titleObj,
+                                               wfMsg( 'viewsourcelink' ),
+                                               array(),
+                                               array( 'action' => 'edit' )
+                                       );
                                }
                                $outText .= '<li>' . $this->link( $titleObj ) . ' (' . $editLink . ') ' . $protected . '</li>';
                        }
@@ -1656,9 +1570,9 @@ class Linker {
        /**
         * Returns HTML for the "hidden categories on this page" list.
         *
-        * @param array $hiddencats Array of hidden categories from Article::getHiddenCategories
+        * @param $hiddencats Array of hidden categories from Article::getHiddenCategories
         * or similar
-        * @return string HTML output
+        * @return String: HTML output
         */
        public function formatHiddenCategories( $hiddencats ) {
                global $wgLang;
@@ -1685,74 +1599,43 @@ class Linker {
         * unit (B, KB, MB or GB) according to the magnitude in question
         *
         * @param $size Size to format
-        * @return string
+        * @return String
         */
        public function formatSize( $size ) {
                global $wgLang;
                return htmlspecialchars( $wgLang->formatSize( $size ) );
        }
 
-       /**
-        * @deprecated Returns raw bits of HTML, use titleAttrib() and accesskey()
-        */
-       public function tooltipAndAccesskey( $name ) {
-               # FIXME: If Sanitizer::expandAttributes() treated "false" as "output
-               # no attribute" instead of "output '' as value for attribute", this
-               # would be three lines.
-               $attribs = array(
-                       'title' => $this->titleAttrib( $name, 'withaccess' ),
-                       'accesskey' => $this->accesskey( $name )
-               );
-               if ( $attribs['title'] === false ) {
-                       unset( $attribs['title'] );
-               }
-               if ( $attribs['accesskey'] === false ) {
-                       unset( $attribs['accesskey'] );
-               }
-               return Xml::expandAttributes( $attribs );
-       }
-
-       /** @deprecated Returns raw bits of HTML, use titleAttrib() */
-       public function tooltip( $name, $options = null ) {
-               # FIXME: If Sanitizer::expandAttributes() treated "false" as "output
-               # no attribute" instead of "output '' as value for attribute", this
-               # would be two lines.
-               $tooltip = $this->titleAttrib( $name, $options );
-               if ( $tooltip === false ) {
-                       return '';
-               }
-               return Xml::expandAttributes( array(
-                       'title' => $this->titleAttrib( $name, $options )
-               ) );
-       }
-
        /**
         * Given the id of an interface element, constructs the appropriate title
         * attribute from the system messages.  (Note, this is usually the id but
         * isn't always, because sometimes the accesskey needs to go on a different
         * element than the id, for reverse-compatibility, etc.)
         *
-        * @param string $name    Id of the element, minus prefixes.
-        * @param mixed  $options null or the string 'withaccess' to add an access-
+        * @param $name String: id of the element, minus prefixes.
+        * @param $options Mixed: null or the string 'withaccess' to add an access-
         *   key hint
-        * @return string Contents of the title attribute (which you must HTML-
+        * @return String: contents of the title attribute (which you must HTML-
         *   escape), or false for no title attribute
         */
        public function titleAttrib( $name, $options = null ) {
                wfProfileIn( __METHOD__ );
 
-               $tooltip = wfMsg( "tooltip-$name" );
-               # Compatibility: formerly some tooltips had [alt-.] hardcoded
-               $tooltip = preg_replace( "/ ?\[alt-.\]$/", '', $tooltip );
-
-               # Message equal to '-' means suppress it.
-               if ( wfEmptyMsg( "tooltip-$name", $tooltip ) || $tooltip == '-' ) {
+               if ( wfEmptyMsg( "tooltip-$name" ) ) {
                        $tooltip = false;
+               } else {
+                       $tooltip = wfMsg( "tooltip-$name" );
+                       # Compatibility: formerly some tooltips had [alt-.] hardcoded
+                       $tooltip = preg_replace( "/ ?\[alt-.\]$/", '', $tooltip );
+                       # Message equal to '-' means suppress it.
+                       if (  $tooltip == '-' ) {
+                               $tooltip = false;
+                       }
                }
 
                if ( $options == 'withaccess' ) {
                        $accesskey = $this->accesskey( $name );
-                       if( $accesskey !== false ) {
+                       if ( $accesskey !== false ) {
                                if ( $tooltip === false || $tooltip === '' ) {
                                        $tooltip = "[$accesskey]";
                                } else {
@@ -1771,45 +1654,430 @@ class Linker {
         * the id but isn't always, because sometimes the accesskey needs to go on
         * a different element than the id, for reverse-compatibility, etc.)
         *
-        * @param string $name    Id of the element, minus prefixes.
-        * @return string Contents of the accesskey attribute (which you must HTML-
+        * @param $name String: id of the element, minus prefixes.
+        * @return String: contents of the accesskey attribute (which you must HTML-
         *   escape), or false for no accesskey attribute
         */
        public function accesskey( $name ) {
                wfProfileIn( __METHOD__ );
 
-               $accesskey = wfMsg( "accesskey-$name" );
-
-               # FIXME: Per standard MW behavior, a value of '-' means to suppress the
-               # attribute, but this is broken for accesskey: that might be a useful
-               # value.
-               if( $accesskey != ''
-               && $accesskey != '-'
-               && !wfEmptyMsg( "accesskey-$name", $accesskey ) ) {
-                       wfProfileOut( __METHOD__ );
-                       return $accesskey;
+               if ( wfEmptyMsg( "accesskey-$name" ) ) {
+                       $accesskey = false;
+               } else {
+                       $accesskey = wfMsg( "accesskey-$name" );
+                       if ( $accesskey === '' || $accesskey === '-' ) {
+                               # FIXME: Per standard MW behavior, a value of '-' means to suppress the
+                               # attribute, but this is broken for accesskey: that might be a useful
+                               # value.
+                               $accesskey = false;
+                       }
                }
 
                wfProfileOut( __METHOD__ );
-               return false;
+               return $accesskey;
        }
-       
+
        /**
         * Creates a (show/hide) link for deleting revisions/log entries
         *
-        * @param array $query  Query parameters to be passed to link()
-        * @param bool $restricted  Set to true to use a <strong> instead of a <span>
+        * @param $query Array: query parameters to be passed to link()
+        * @param $restricted Boolean: set to true to use a <strong> instead of a <span>
+        * @param $delete Boolean: set to true to use (show/hide) rather than (show)
         *
-        * @return string HTML <a> link to Special:Revisiondelete, wrapped in a
+        * @return String: HTML <a> link to Special:Revisiondelete, wrapped in a
         * span to allow for customization of appearance with CSS
         */
-       public function revDeleteLink( $query = array(), $restricted = false ) {
+       public function revDeleteLink( $query = array(), $restricted = false, $delete = true ) {
                $sp = SpecialPage::getTitleFor( 'Revisiondelete' );
-               $text = wfMsgHtml( 'rev-delundel' );
-               $tag = 'span';
-               if( $restricted )
-                       $tag = 'strong';
+               $text = $delete ? wfMsgHtml( 'rev-delundel' ) : wfMsgHtml( 'rev-showdeleted' );
+               $tag = $restricted ? 'strong' : 'span';
                $link = $this->link( $sp, $text, array(), $query, array( 'known', 'noclasses' ) );
                return Xml::tags( $tag, array( 'class' => 'mw-revdelundel-link' ), "($link)" );
        }
+
+       /**
+        * Creates a dead (show/hide) link for deleting revisions/log entries
+        *
+        * @param $delete Boolean: set to true to use (show/hide) rather than (show)
+        *
+        * @return string HTML text wrapped in a span to allow for customization
+        * of appearance with CSS
+        */
+       public function revDeleteLinkDisabled( $delete = true ) {
+               $text = $delete ? wfMsgHtml( 'rev-delundel' ) : wfMsgHtml( 'rev-showdeleted' );
+               return Xml::tags( 'span', array( 'class' => 'mw-revdelundel-link' ), "($text)" );
+       }
+
+       /* Deprecated methods */
+
+       /**
+        * @deprecated
+        */
+       function postParseLinkColour( $s = null ) {
+               wfDeprecated( __METHOD__ );
+               return null;
+       }
+
+
+       /**
+        * @deprecated Use link()
+        *
+        * This function is a shortcut to makeLinkObj(Title::newFromText($title),...). Do not call
+        * it if you already have a title object handy. See makeLinkObj for further documentation.
+        *
+        * @param $title String: the text of the title
+        * @param $text  String: link text
+        * @param $query String: optional query part
+        * @param $trail String: optional trail. Alphabetic characters at the start of this string will
+        *                      be included in the link text. Other characters will be appended after
+        *                      the end of the link.
+        */
+       function makeLink( $title, $text = '', $query = '', $trail = '' ) {
+               wfProfileIn( __METHOD__ );
+               $nt = Title::newFromText( $title );
+               if ( $nt instanceof Title ) {
+                       $result = $this->makeLinkObj( $nt, $text, $query, $trail );
+               } else {
+                       wfDebug( 'Invalid title passed to Linker::makeLink(): "' . $title . "\"\n" );
+                       $result = $text == "" ? $title : $text;
+               }
+
+               wfProfileOut( __METHOD__ );
+               return $result;
+       }
+
+       /**
+        * @deprecated Use link()
+        *
+        * This function is a shortcut to makeKnownLinkObj(Title::newFromText($title),...). Do not call
+        * it if you already have a title object handy. See makeKnownLinkObj for further documentation.
+        *
+        * @param $title String: the text of the title
+        * @param $text  String: link text
+        * @param $query String: optional query part
+        * @param $trail String: optional trail. Alphabetic characters at the start of this string will
+        *                      be included in the link text. Other characters will be appended after
+        *                      the end of the link.
+        * @param $prefix String: Optional prefix
+        * @param $aprops String: extra attributes to the a-element
+        */
+       function makeKnownLink( $title, $text = '', $query = '', $trail = '', $prefix = '', $aprops = '' ) {
+               $nt = Title::newFromText( $title );
+               if ( $nt instanceof Title ) {
+                       return $this->makeKnownLinkObj( $nt, $text, $query, $trail, $prefix , $aprops );
+               } else {
+                       wfDebug( 'Invalid title passed to Linker::makeKnownLink(): "' . $title . "\"\n" );
+                       return $text == '' ? $title : $text;
+               }
+       }
+
+       /**
+        * @deprecated Use link()
+        *
+        * This function is a shortcut to makeBrokenLinkObj(Title::newFromText($title),...). Do not call
+        * it if you already have a title object handy. See makeBrokenLinkObj for further documentation.
+        *
+        * @param $title String: The text of the title
+        * @param $text String: Link text
+        * @param $query String: Optional query part
+        * @param $trail String: Optional trail. Alphabetic characters at the start of this string will
+        *               be included in the link text. Other characters will be appended after
+        *               the end of the link.
+        */
+       function makeBrokenLink( $title, $text = '', $query = '', $trail = '' ) {
+               $nt = Title::newFromText( $title );
+               if ( $nt instanceof Title ) {
+                       return $this->makeBrokenLinkObj( $nt, $text, $query, $trail );
+               } else {
+                       wfDebug( 'Invalid title passed to Linker::makeBrokenLink(): "' . $title . "\"\n" );
+                       return $text == '' ? $title : $text;
+               }
+       }
+
+       /**
+        * @deprecated Use link()
+        *
+        * This function is a shortcut to makeStubLinkObj(Title::newFromText($title),...). Do not call
+        * it if you already have a title object handy. See makeStubLinkObj for further documentation.
+        *
+        * @param $title String: the text of the title
+        * @param $text  String: link text
+        * @param $query String: optional query part
+        * @param $trail String: optional trail. Alphabetic characters at the start of this string will
+        *                      be included in the link text. Other characters will be appended after
+        *                      the end of the link.
+        */
+       function makeStubLink( $title, $text = '', $query = '', $trail = '' ) {
+               wfDeprecated( __METHOD__ );
+               $nt = Title::newFromText( $title );
+               if ( $nt instanceof Title ) {
+                       return $this->makeStubLinkObj( $nt, $text, $query, $trail );
+               } else {
+                       wfDebug( 'Invalid title passed to Linker::makeStubLink(): "' . $title . "\"\n" );
+                       return $text == '' ? $title : $text;
+               }
+       }
+
+       /**
+        * @deprecated Use link()
+        *
+        * Make a link for a title which may or may not be in the database. If you need to
+        * call this lots of times, pre-fill the link cache with a LinkBatch, otherwise each
+        * call to this will result in a DB query.
+        *
+        * @param $nt     Title: the title object to make the link from, e.g. from
+        *                      Title::newFromText.
+        * @param $text  String: link text
+        * @param $query String: optional query part
+        * @param $trail String: optional trail. Alphabetic characters at the start of this string will
+        *                      be included in the link text. Other characters will be appended after
+        *                      the end of the link.
+        * @param $prefix String: optional prefix. As trail, only before instead of after.
+        */
+       function makeLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' ) {
+               wfProfileIn( __METHOD__ );
+
+               $query = wfCgiToArray( $query );
+               list( $inside, $trail ) = Linker::splitTrail( $trail );
+               if ( $text === '' ) {
+                       $text = $this->linkText( $nt );
+               }
+
+               $ret = $this->link( $nt, "$prefix$text$inside", array(), $query ) . $trail;
+
+               wfProfileOut( __METHOD__ );
+               return $ret;
+       }
+
+       /**
+        * @deprecated Use link()
+        *
+        * Make a link for a title which definitely exists. This is faster than makeLinkObj because
+        * it doesn't have to do a database query. It's also valid for interwiki titles and special
+        * pages.
+        *
+        * @param $title  Title object of target page
+        * @param $text   String: text to replace the title
+        * @param $query  String: link target
+        * @param $trail  String: text after link
+        * @param $prefix String: text before link text
+        * @param $aprops String: extra attributes to the a-element
+        * @param $style  String: style to apply - if empty, use getInternalLinkAttributesObj instead
+        * @return the a-element
+        */
+       function makeKnownLinkObj( $title, $text = '', $query = '', $trail = '', $prefix = '' , $aprops = '', $style = '' ) {
+               wfProfileIn( __METHOD__ );
+
+               if ( $text == '' ) {
+                       $text = $this->linkText( $title );
+               }
+               $attribs = Sanitizer::mergeAttributes(
+                       Sanitizer::decodeTagAttributes( $aprops ),
+                       Sanitizer::decodeTagAttributes( $style )
+               );
+               $query = wfCgiToArray( $query );
+               list( $inside, $trail ) = Linker::splitTrail( $trail );
+
+               $ret = $this->link( $title, "$prefix$text$inside", $attribs, $query,
+                       array( 'known', 'noclasses' ) ) . $trail;
+
+               wfProfileOut( __METHOD__ );
+               return $ret;
+       }
+
+       /**
+        * @deprecated Use link()
+        *
+        * Make a red link to the edit page of a given title.
+        *
+        * @param $title Title object of the target page
+        * @param $text  String: Link text
+        * @param $query String: Optional query part
+        * @param $trail String: Optional trail. Alphabetic characters at the start of this string will
+        *                      be included in the link text. Other characters will be appended after
+        *                      the end of the link.
+        * @param $prefix String: Optional prefix
+        */
+       function makeBrokenLinkObj( $title, $text = '', $query = '', $trail = '', $prefix = '' ) {
+               wfProfileIn( __METHOD__ );
+
+               list( $inside, $trail ) = Linker::splitTrail( $trail );
+               if ( $text === '' ) {
+                       $text = $this->linkText( $title );
+               }
+
+               $ret = $this->link( $title, "$prefix$text$inside", array(),
+                       wfCgiToArray( $query ), 'broken' ) . $trail;
+
+               wfProfileOut( __METHOD__ );
+               return $ret;
+       }
+
+       /**
+        * @deprecated Use link()
+        *
+        * Make a brown link to a short article.
+        *
+        * @param $nt Title object of the target page
+        * @param $text  String: link text
+        * @param $query String: optional query part
+        * @param $trail String: optional trail. Alphabetic characters at the start of this string will
+        *                      be included in the link text. Other characters will be appended after
+        *                      the end of the link.
+        * @param $prefix String: Optional prefix
+        */
+       function makeStubLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' ) {
+               // wfDeprecated( __METHOD__ );
+               return $this->makeColouredLinkObj( $nt, 'stub', $text, $query, $trail, $prefix );
+       }
+
+       /**
+        * @deprecated Use link()
+        *
+        * Make a coloured link.
+        *
+        * @param $nt Title object of the target page
+        * @param $colour Integer: colour of the link
+        * @param $text   String:  link text
+        * @param $query  String:  optional query part
+        * @param $trail  String:  optional trail. Alphabetic characters at the start of this string will
+        *                      be included in the link text. Other characters will be appended after
+        *                      the end of the link.
+        * @param $prefix String: Optional prefix
+        */
+       function makeColouredLinkObj( $nt, $colour, $text = '', $query = '', $trail = '', $prefix = '' ) {
+               // wfDeprecated( __METHOD__ );
+               if ( $colour != '' ) {
+                       $style = $this->getInternalLinkAttributesObj( $nt, $text, $colour );
+               } else $style = '';
+               return $this->makeKnownLinkObj( $nt, $text, $query, $trail, $prefix, '', $style );
+       }
+
+       /** Obsolete alias */
+       function makeImage( $url, $alt = '' ) {
+               wfDeprecated( __METHOD__ );
+               return $this->makeExternalImage( $url, $alt );
+       }
+
+       /**
+        * Creates the HTML source for images
+        * @deprecated use makeImageLink2
+        *
+        * @param $title Title object
+        * @param $label String: label text
+        * @param $alt String: alt text
+        * @param $align String: horizontal alignment: none, left, center, right)
+        * @param $handlerParams Array: parameters to be passed to the media handler
+        * @param $framed Boolean: shows image in original size in a frame
+        * @param $thumb Boolean: shows image as thumbnail in a frame
+        * @param $manualthumb String: image name for the manual thumbnail
+        * @param $valign String: vertical alignment: baseline, sub, super, top, text-top, middle, bottom, text-bottom
+        * @param $time String: timestamp of the file, set as false for current
+        * @return String
+        */
+       function makeImageLinkObj( $title, $label, $alt, $align = '', $handlerParams = array(), $framed = false,
+         $thumb = false, $manualthumb = '', $valign = '', $time = false )
+       {
+               $frameParams = array( 'alt' => $alt, 'caption' => $label );
+               if ( $align ) {
+                       $frameParams['align'] = $align;
+               }
+               if ( $framed ) {
+                       $frameParams['framed'] = true;
+               }
+               if ( $thumb ) {
+                       $frameParams['thumbnail'] = true;
+               }
+               if ( $manualthumb ) {
+                       $frameParams['manualthumb'] = $manualthumb;
+               }
+               if ( $valign ) {
+                       $frameParams['valign'] = $valign;
+               }
+               $file = wfFindFile( $title, array( 'time' => $time ) );
+               return $this->makeImageLink2( $title, $file, $frameParams, $handlerParams, $time );
+       }
+
+       /** @deprecated use Linker::makeMediaLinkObj() */
+       function makeMediaLink( $name, $unused = '', $text = '', $time = false ) {
+               $nt = Title::makeTitleSafe( NS_FILE, $name );
+               return $this->makeMediaLinkObj( $nt, $text, $time );
+       }
+
+       /**
+        * Used to generate section edit links that point to "other" pages
+        * (sections that are really part of included pages).
+        *
+        * @deprecated use Linker::doEditSectionLink()
+        * @param $title Title string.
+        * @param $section Integer: section number.
+        */
+       public function editSectionLinkForOther( $title, $section ) {
+               wfDeprecated( __METHOD__ );
+               $title = Title::newFromText( $title );
+               return $this->doEditSectionLink( $title, $section );
+       }
+
+       /**
+        * @deprecated use Linker::doEditSectionLink()
+        * @param $nt Title object.
+        * @param $section Integer: section number.
+        * @param $hint Link String: title, or default if omitted or empty
+        */
+       public function editSectionLink( Title $nt, $section, $hint = '' ) {
+               wfDeprecated( __METHOD__ );
+               if ( $hint === '' ) {
+                       # No way to pass an actual empty $hint here!  The new interface al-
+                       # lows this, so we have to do this for compatibility.
+                       $hint = null;
+               }
+               return $this->doEditSectionLink( $nt, $section, $hint );
+       }
+
+       /**
+        * Returns the attributes for the tooltip and access key.
+        */
+       public function tooltipAndAccesskeyAttribs( $name ) {
+               global $wgEnableTooltipsAndAccesskeys;
+               if ( !$wgEnableTooltipsAndAccesskeys )
+                       return array();
+               # FIXME: If Sanitizer::expandAttributes() treated "false" as "output
+               # no attribute" instead of "output '' as value for attribute", this
+               # would be three lines.
+               $attribs = array(
+                       'title' => $this->titleAttrib( $name, 'withaccess' ),
+                       'accesskey' => $this->accesskey( $name )
+               );
+               if ( $attribs['title'] === false ) {
+                       unset( $attribs['title'] );
+               }
+               if ( $attribs['accesskey'] === false ) {
+                       unset( $attribs['accesskey'] );
+               }
+               return $attribs;
+       }
+       /**
+        * @deprecated Returns raw bits of HTML, use titleAttrib() and accesskey()
+        */
+       public function tooltipAndAccesskey( $name ) {
+               return Xml::expandAttributes( $this->tooltipAndAccesskeyAttribs( $name ) );
+       }
+
+
+       /** @deprecated Returns raw bits of HTML, use titleAttrib() */
+       public function tooltip( $name, $options = null ) {
+               global $wgEnableTooltipsAndAccesskeys;
+               if ( !$wgEnableTooltipsAndAccesskeys )
+                       return '';
+               # FIXME: If Sanitizer::expandAttributes() treated "false" as "output
+               # no attribute" instead of "output '' as value for attribute", this
+               # would be two lines.
+               $tooltip = $this->titleAttrib( $name, $options );
+               if ( $tooltip === false ) {
+                       return '';
+               }
+               return Xml::expandAttributes( array(
+                       'title' => $this->titleAttrib( $name, $options )
+               ) );
+       }
 }