This is giving me a syntax error. It looks gross this way, but I can't think of any...
[lhc/web/wiklou.git] / includes / Title.php
index 3f7f882..af720ee 100644 (file)
@@ -5,7 +5,9 @@
  */
 
 /** */
-require_once( 'normal/UtfNormal.php' );
+if ( !class_exists( 'UtfNormal' ) ) {
+       require_once( dirname(__FILE__) . '/normal/UtfNormal.php' );
+}
 
 define ( 'GAID_FOR_UPDATE', 1 );
 
@@ -38,13 +40,14 @@ class Title {
         * Please use the accessor functions
         */
 
-        /**#@+
+       /**#@+
         * @private
         */
 
        var $mTextform;                 # Text form (spaces not underscores) of the main part
        var $mUrlform;                  # URL-encoded form of the main part
        var $mDbkeyform;                # Main part with underscores
+       var $mUserCaseDBKey;        # DB key with the initial letter in the case specified by the user
        var $mNamespace;                # Namespace index, i.e. one of the NS_xxxx constants
        var $mInterwiki;                # Interwiki prefix (or null string)
        var $mFragment;                 # Title fragment (i.e. the bit after the #)
@@ -88,10 +91,8 @@ class Title {
         *      instead of spaces, possibly including namespace and
         *      interwiki prefixes
         * @return Title the new object, or NULL on an error
-        * @static
-        * @access public
         */
-       /* static */ function newFromDBkey( $key ) {
+       public static function newFromDBkey( $key ) {
                $t = new Title();
                $t->mDbkeyform = $key;
                if( $t->secureAndSplit() )
@@ -110,8 +111,6 @@ class Title {
         * @param int $defaultNamespace the namespace to use if
         *      none is specified by a prefix
         * @return Title the new object, or NULL on an error
-        * @static
-        * @access public
         */
        public static function newFromText( $text, $defaultNamespace = NS_MAIN ) {
                if( is_object( $text ) ) {
@@ -162,8 +161,6 @@ class Title {
         * the given title's length does not exceed the maximum.
         * @param string $url the title, as might be taken from a URL
         * @return Title the new object, or NULL on an error
-        * @static
-        * @access public
         */
        public static function newFromURL( $url ) {
                global $wgLegalTitleChars;
@@ -192,12 +189,10 @@ class Title {
         *
         * @param int $id the page_id corresponding to the Title to create
         * @return Title the new object, or NULL on an error
-        * @access public
-        * @static
         */
        public static function newFromID( $id ) {
                $fname = 'Title::newFromID';
-               $dbr =& wfGetDB( DB_SLAVE );
+               $dbr = wfGetDB( DB_SLAVE );
                $row = $dbr->selectRow( 'page', array( 'page_namespace', 'page_title' ),
                        array( 'page_id' => $id ), $fname );
                if ( $row !== false ) {
@@ -211,8 +206,8 @@ class Title {
        /**
         * Make an array of titles from an array of IDs 
         */
-       function newFromIDs( $ids ) {
-               $dbr =& wfGetDB( DB_SLAVE );
+       public static function newFromIDs( $ids ) {
+               $dbr = wfGetDB( DB_SLAVE );
                $res = $dbr->select( 'page', array( 'page_namespace', 'page_title' ),
                        'page_id IN (' . $dbr->makeList( $ids ) . ')', __METHOD__ );
 
@@ -233,14 +228,12 @@ class Title {
         * @param int $ns the namespace of the article
         * @param string $title the unprefixed database key form
         * @return Title the new object
-        * @static
-        * @access public
         */
        public static function &makeTitle( $ns, $title ) {
                $t = new Title();
                $t->mInterwiki = '';
                $t->mFragment = '';
-               $t->mNamespace = intval( $ns );
+               $t->mNamespace = $ns = intval( $ns );
                $t->mDbkeyform = str_replace( ' ', '_', $title );
                $t->mArticleID = ( $ns >= 0 ) ? -1 : 0;
                $t->mUrlform = wfUrlencode( $t->mDbkeyform );
@@ -256,8 +249,6 @@ class Title {
         * @param int $ns the namespace of the article
         * @param string $title the database key form
         * @return Title the new object, or NULL on an error
-        * @static
-        * @access public
         */
        public static function makeTitleSafe( $ns, $title ) {
                $t = new Title();
@@ -271,42 +262,40 @@ class Title {
 
        /**
         * Create a new Title for the Main Page
-        *
-        * @static
         * @return Title the new object
-        * @access public
         */
        public static function newMainPage() {
                return Title::newFromText( wfMsgForContent( 'mainpage' ) );
        }
 
        /**
-        * Create a new Title for a redirect
-        * @param string $text the redirect title text
-        * @return Title the new object, or NULL if the text is not a
-        *      valid redirect
+        * Extract a redirect destination from a string and return the
+        * Title, or null if the text doesn't contain a valid redirect
+        *
+        * @param string $text Text with possible redirect
+        * @return Title
         */
        public static function newFromRedirect( $text ) {
-               $mwRedir = MagicWord::get( 'redirect' );
-               $rt = NULL;
-               if ( $mwRedir->matchStart( $text ) ) {
+               $redir = MagicWord::get( 'redirect' );
+               if( $redir->matchStart( $text ) ) {
+                       // Extract the first link and see if it's usable
                        $m = array();
-                       if ( preg_match( '/\[{2}(.*?)(?:\||\]{2})/', $text, $m ) ) {
-                               # categories are escaped using : for example one can enter:
-                               # #REDIRECT [[:Category:Music]]. Need to remove it.
-                               if ( substr($m[1],0,1) == ':') {
-                                       # We don't want to keep the ':'
-                                       $m[1] = substr( $m[1], 1 );
-                               }
-
-                               $rt = Title::newFromText( $m[1] );
-                               # Disallow redirects to Special:Userlogout
-                               if ( !is_null($rt) && $rt->isSpecial( 'Userlogout' ) ) {
-                                       $rt = NULL;
+                       if( preg_match( '!\[{2}(.*?)(?:\||\]{2})!', $text, $m ) ) {
+                               // Strip preceding colon used to "escape" categories, etc.
+                               // and URL-decode links
+                               if( strpos( $m[1], '%' ) !== false ) {
+                                       // Match behavior of inline link parsing here;
+                                       // don't interpret + as " " most of the time!
+                                       // It might be safe to just use rawurldecode instead, though.
+                                       $m[1] = urldecode( ltrim( $m[1], ':' ) );
                                }
+                               $title = Title::newFromText( $m[1] );
+                               // Redirects to Special:Userlogout are not permitted
+                               if( $title instanceof Title && !$title->isSpecial( 'Userlogout' ) )
+                                       return $title;
                        }
                }
-               return $rt;
+               return null;
        }
 
 #----------------------------------------------------------------------------
@@ -323,7 +312,7 @@ class Title {
         */
        function nameOf( $id ) {
                $fname = 'Title::nameOf';
-               $dbr =& wfGetDB( DB_SLAVE );
+               $dbr = wfGetDB( DB_SLAVE );
 
                $s = $dbr->selectRow( 'page', array( 'page_namespace','page_title' ),  array( 'page_id' => $id ), $fname );
                if ( $s === false ) { return NULL; }
@@ -335,8 +324,6 @@ class Title {
        /**
         * Get a regex character class describing the legal characters in a link
         * @return string the list of characters, not delimited
-        * @static
-        * @access public
         */
        public static function legalChars() {
                global $wgLegalTitleChars;
@@ -391,9 +378,8 @@ class Title {
         * @return the associated URL, containing "$1", which should be
         *      replaced by an article title
         * @static (arguably)
-        * @access public
         */
-       function getInterwikiLink( $key )  {
+       public function getInterwikiLink( $key )  {
                global $wgMemc, $wgInterwikiExpiry;
                global $wgInterwikiCache, $wgContLang;
                $fname = 'Title::getInterwikiLink';
@@ -416,7 +402,7 @@ class Title {
                        return $s->iw_url;
                }
 
-               $dbr =& wfGetDB( DB_SLAVE );
+               $dbr = wfGetDB( DB_SLAVE );
                $res = $dbr->select( 'interwiki',
                        array( 'iw_url', 'iw_local', 'iw_trans' ),
                        array( 'iw_prefix' => $key ), $fname );
@@ -444,9 +430,8 @@ class Title {
         * More logic is explained in DefaultSettings
         *
         * @return string URL of interwiki site
-        * @access public
         */
-       function getInterwikiCached( $key ) {
+       public static function getInterwikiCached( $key ) {
                global $wgInterwikiCache, $wgInterwikiScopes, $wgInterwikiFallbackSite;
                static $db, $site;
 
@@ -487,9 +472,8 @@ class Title {
         *
         * @return bool TRUE if this is an in-project interwiki link
         *      or a wikilink, FALSE otherwise
-        * @access public
         */
-       function isLocal() {
+       public function isLocal() {
                if ( $this->mInterwiki != '' ) {
                        # Make sure key is loaded into cache
                        $this->getInterwikiLink( $this->mInterwiki );
@@ -505,9 +489,8 @@ class Title {
         * this project and is transcludable.
         *
         * @return bool TRUE if this is transcludable
-        * @access public
         */
-       function isTrans() {
+       public function isTrans() {
                if ($this->mInterwiki == '')
                        return false;
                # Make sure key is loaded into cache
@@ -516,60 +499,6 @@ class Title {
                return (bool)(Title::$interwikiCache[$k]->iw_trans);
        }
 
-       /**
-        * Update the page_touched field for an array of title objects
-        * @todo Inefficient unless the IDs are already loaded into the
-        *      link cache
-        * @param array $titles an array of Title objects to be touched
-        * @param string $timestamp the timestamp to use instead of the
-        *      default current time
-        * @static
-        * @access public
-        */
-       function touchArray( $titles, $timestamp = '' ) {
-
-               if ( count( $titles ) == 0 ) {
-                       return;
-               }
-               $dbw =& wfGetDB( DB_MASTER );
-               if ( $timestamp == '' ) {
-                       $timestamp = $dbw->timestamp();
-               }
-               /*
-               $page = $dbw->tableName( 'page' );
-               $sql = "UPDATE $page SET page_touched='{$timestamp}' WHERE page_id IN (";
-               $first = true;
-
-               foreach ( $titles as $title ) {
-                       if ( $wgUseFileCache ) {
-                               $cm = new HTMLFileCache($title);
-                               @unlink($cm->fileCacheName());
-                       }
-
-                       if ( ! $first ) {
-                               $sql .= ',';
-                       }
-                       $first = false;
-                       $sql .= $title->getArticleID();
-               }
-               $sql .= ')';
-               if ( ! $first ) {
-                       $dbw->query( $sql, 'Title::touchArray' );
-               }
-               */
-               // hack hack hack -- brion 2005-07-11. this was unfriendly to db.
-               // do them in small chunks:
-               $fname = 'Title::touchArray';
-               foreach( $titles as $title ) {
-                       $dbw->update( 'page',
-                               array( 'page_touched' => $timestamp ),
-                               array(
-                                       'page_namespace' => $title->getNamespace(),
-                                       'page_title'     => $title->getDBkey() ),
-                               $fname );
-               }
-       }
-
        /**
         * Escape a text fragment, say from a link, for a URL
         */
@@ -591,33 +520,28 @@ class Title {
        /**
         * Get the text form (spaces not underscores) of the main part
         * @return string
-        * @access public
         */
-       function getText() { return $this->mTextform; }
+       public function getText() { return $this->mTextform; }
        /**
         * Get the URL-encoded form of the main part
         * @return string
-        * @access public
         */
-       function getPartialURL() { return $this->mUrlform; }
+       public function getPartialURL() { return $this->mUrlform; }
        /**
         * Get the main part with underscores
         * @return string
-        * @access public
         */
-       function getDBkey() { return $this->mDbkeyform; }
+       public function getDBkey() { return $this->mDbkeyform; }
        /**
         * Get the namespace index, i.e. one of the NS_xxxx constants
         * @return int
-        * @access public
         */
-       function getNamespace() { return $this->mNamespace; }
+       public function getNamespace() { return $this->mNamespace; }
        /**
         * Get the namespace text
         * @return string
-        * @access public
         */
-       function getNsText() {
+       public function getNsText() {
                global $wgContLang, $wgCanonicalNamespaceNames;
 
                if ( '' != $this->mInterwiki ) {
@@ -633,12 +557,17 @@ class Title {
                }
                return $wgContLang->getNsText( $this->mNamespace );
        }
+       /**
+        * Get the DB key with the initial letter case as specified by the user
+        */
+       function getUserCaseDBKey() {
+               return $this->mUserCaseDBKey;
+       }
        /**
         * Get the namespace text of the subject (rather than talk) page
         * @return string
-        * @access public
         */
-       function getSubjectNsText() {
+       public function getSubjectNsText() {
                global $wgContLang;
                return $wgContLang->getNsText( Namespace::getSubject( $this->mNamespace ) );
        }
@@ -647,38 +576,34 @@ class Title {
         * Get the namespace text of the talk page
         * @return string
         */
-       function getTalkNsText() {
+       public function getTalkNsText() {
                global $wgContLang;
                return( $wgContLang->getNsText( Namespace::getTalk( $this->mNamespace ) ) );
        }
-       
+
        /**
         * Could this title have a corresponding talk page?
         * @return bool
         */
-       function canTalk() {
+       public function canTalk() {
                return( Namespace::canTalk( $this->mNamespace ) );
        }
-       
+
        /**
         * Get the interwiki prefix (or null string)
         * @return string
-        * @access public
         */
-       function getInterwiki() { return $this->mInterwiki; }
+       public function getInterwiki() { return $this->mInterwiki; }
        /**
         * Get the Title fragment (i.e. the bit after the #) in text form
         * @return string
-        * @access public
         */
-       function getFragment() { return $this->mFragment; }
+       public function getFragment() { return $this->mFragment; }
        /**
         * Get the fragment in URL form, including the "#" character if there is one
-        *
         * @return string
-        * @access public
         */
-       function getFragmentForURL() {
+       public function getFragmentForURL() {
                if ( $this->mFragment == '' ) {
                        return '';
                } else {
@@ -688,16 +613,15 @@ class Title {
        /**
         * Get the default namespace index, for when there is no namespace
         * @return int
-        * @access public
         */
-       function getDefaultNamespace() { return $this->mDefaultNamespace; }
+       public function getDefaultNamespace() { return $this->mDefaultNamespace; }
 
        /**
         * Get title for search index
         * @return string a stripped-down title string ready for the
         *      search index
         */
-       function getIndexTitle() {
+       public function getIndexTitle() {
                return Title::indexTitle( $this->mNamespace, $this->mTextform );
        }
 
@@ -705,9 +629,8 @@ class Title {
         * Get the prefixed database key form
         * @return string the prefixed title, with underscores and
         *      any interwiki and namespace prefixes
-        * @access public
         */
-       function getPrefixedDBkey() {
+       public function getPrefixedDBkey() {
                $s = $this->prefix( $this->mDbkeyform );
                $s = str_replace( ' ', '_', $s );
                return $s;
@@ -717,9 +640,8 @@ class Title {
         * Get the prefixed title with spaces.
         * This is the form usually used for display
         * @return string the prefixed title, with spaces
-        * @access public
         */
-       function getPrefixedText() {
+       public function getPrefixedText() {
                if ( empty( $this->mPrefixedText ) ) { // FIXME: bad usage of empty() ?
                        $s = $this->prefix( $this->mTextform );
                        $s = str_replace( '_', ' ', $s );
@@ -733,9 +655,8 @@ class Title {
         * (part beginning with '#')
         * @return string the prefixed title, with spaces and
         *      the fragment, including '#'
-        * @access public
         */
-       function getFullText() {
+       public function getFullText() {
                $text = $this->getPrefixedText();
                if( '' != $this->mFragment ) {
                        $text .= '#' . $this->mFragment;
@@ -747,7 +668,7 @@ class Title {
         * Get the base name, i.e. the leftmost parts before the /
         * @return string Base name
         */
-       function getBaseText() {
+       public function getBaseText() {
                global $wgNamespacesWithSubpages;
                if( isset( $wgNamespacesWithSubpages[ $this->mNamespace ] ) && $wgNamespacesWithSubpages[ $this->mNamespace ] ) {
                        $parts = explode( '/', $this->getText() );
@@ -764,7 +685,7 @@ class Title {
         * Get the lowest-level subpage name, i.e. the rightmost part after /
         * @return string Subpage name
         */
-       function getSubpageText() {
+       public function getSubpageText() {
                global $wgNamespacesWithSubpages;
                if( isset( $wgNamespacesWithSubpages[ $this->mNamespace ] ) && $wgNamespacesWithSubpages[ $this->mNamespace ] ) {
                        $parts = explode( '/', $this->mTextform );
@@ -773,12 +694,12 @@ class Title {
                        return( $this->mTextform );
                }
        }
-       
+
        /**
         * Get a URL-encoded form of the subpage text
         * @return string URL-encoded subpage name
         */
-       function getSubpageUrlForm() {
+       public function getSubpageUrlForm() {
                $text = $this->getSubpageText();
                $text = wfUrlencode( str_replace( ' ', '_', $text ) );
                $text = str_replace( '%28', '(', str_replace( '%29', ')', $text ) ); # Clean up the URL; per below, this might not be safe
@@ -788,9 +709,8 @@ class Title {
        /**
         * Get a URL-encoded title (not an actual URL) including interwiki
         * @return string the URL-encoded form
-        * @access public
         */
-       function getPrefixedURL() {
+       public function getPrefixedURL() {
                $s = $this->prefix( $this->mDbkeyform );
                $s = str_replace( ' ', '_', $s );
 
@@ -811,9 +731,8 @@ class Title {
         *      for interwiki links
         * @param string $variant language variant of url (for sr, zh..)
         * @return string the URL
-        * @access public
         */
-       function getFullURL( $query = '', $variant = false ) {
+       public function getFullURL( $query = '', $variant = false ) {
                global $wgContLang, $wgServer, $wgRequest;
 
                if ( '' == $this->mInterwiki ) {
@@ -834,14 +753,7 @@ class Title {
                                $namespace .= ':';
                        }
                        $url = str_replace( '$1', $namespace . $this->mUrlform, $baseUrl );
-                       if( $query != '' ) {
-                               if( false === strpos( $url, '?' ) ) {
-                                       $url .= '?';
-                               } else {
-                                       $url .= '&';
-                               }
-                               $url .= $query;
-                       }
+                       $url = wfAppendQuery( $url, $query );
                }
 
                # Finally, add the fragment.
@@ -858,9 +770,8 @@ class Title {
         *      $wgArticlePath will be used.
         * @param string $variant language variant of url (for sr, zh..)
         * @return string the URL
-        * @access public
         */
-       function getLocalURL( $query = '', $variant = false ) {
+       public function getLocalURL( $query = '', $variant = false ) {
                global $wgArticlePath, $wgScript, $wgServer, $wgRequest;
                global $wgVariantArticlePath, $wgContLang, $wgUser;
 
@@ -884,17 +795,17 @@ class Title {
                        $dbkey = wfUrlencode( $this->getPrefixedDBkey() );
                        if ( $query == '' ) {
                                if($variant!=false && $wgContLang->hasVariants()){
-                                       if($wgVariantArticlePath==false)
+                                       if($wgVariantArticlePath==false) {
                                                $variantArticlePath =  "$wgScript?title=$1&variant=$2"; // default
-                                       else 
+                                       } else {
                                                $variantArticlePath = $wgVariantArticlePath;
-                                       
+                                       }
                                        $url = str_replace( '$2', urlencode( $variant ), $variantArticlePath );
                                        $url = str_replace( '$1', $dbkey, $url  );
-                                       
                                }
-                               else 
+                               else {
                                        $url = str_replace( '$1', $dbkey, $wgArticlePath );
+                               }
                        } else {
                                global $wgActionPaths;
                                $url = false;
@@ -933,9 +844,8 @@ class Title {
         * using in a link, without a server name or fragment
         * @param string $query an optional query string
         * @return string the URL
-        * @access public
         */
-       function escapeLocalURL( $query = '' ) {
+       public function escapeLocalURL( $query = '' ) {
                return htmlspecialchars( $this->getLocalURL( $query ) );
        }
 
@@ -945,9 +855,8 @@ class Title {
         *
         * @return string the URL
         * @param string $query an optional query string
-        * @access public
         */
-       function escapeFullURL( $query = '' ) {
+       public function escapeFullURL( $query = '' ) {
                return htmlspecialchars( $this->getFullURL( $query ) );
        }
 
@@ -959,9 +868,8 @@ class Title {
         * @param string $query an optional query string
         * @param string $variant language variant of url (for sr, zh..)
         * @return string the URL
-        * @access public
         */
-       function getInternalURL( $query = '', $variant = false ) {
+       public function getInternalURL( $query = '', $variant = false ) {
                global $wgInternalServer;
                $url = $wgInternalServer . $this->getLocalURL( $query, $variant );
                wfRunHooks( 'GetInternalURL', array( &$this, &$url, $query ) );
@@ -972,9 +880,8 @@ class Title {
         * Get the edit URL for this Title
         * @return string the URL, or a null string if this is an
         *      interwiki link
-        * @access public
         */
-       function getEditURL() {
+       public function getEditURL() {
                if ( '' != $this->mInterwiki ) { return ''; }
                $s = $this->getLocalURL( 'action=edit' );
 
@@ -985,18 +892,16 @@ class Title {
         * Get the HTML-escaped displayable text form.
         * Used for the title field in <a> tags.
         * @return string the text, including any prefixes
-        * @access public
         */
-       function getEscapedText() {
+       public function getEscapedText() {
                return htmlspecialchars( $this->getPrefixedText() );
        }
 
        /**
         * Is this Title interwiki?
         * @return boolean
-        * @access public
         */
-       function isExternal() { return ( '' != $this->mInterwiki ); }
+       public function isExternal() { return ( '' != $this->mInterwiki ); }
 
        /**
         * Is this page "semi-protected" - the *only* protection is autoconfirm?
@@ -1004,7 +909,7 @@ class Title {
         * @param string Action to check (default: edit)
         * @return bool
         */
-       function isSemiProtected( $action = 'edit' ) {
+       public function isSemiProtected( $action = 'edit' ) {
                if( $this->exists() ) {
                        $restrictions = $this->getRestrictions( $action );
                        if( count( $restrictions ) > 0 ) {
@@ -1026,21 +931,15 @@ class Title {
        /**
         * Does the title correspond to a protected article?
         * @param string $what the action the page is protected from,
-        *      by default checks move and edit
+        * by default checks move and edit
         * @return boolean
-        * @access public
         */
-       function isProtected( $action = '' ) {
+       public function isProtected( $action = '' ) {
                global $wgRestrictionLevels;
 
                # Special pages have inherent protection
                if( $this->getNamespace() == NS_SPECIAL )
                        return true;
-               
-               # Cascading protection depends on more than
-               # this page...
-               if( $this->isCascadeProtected() )
-                       return true;
 
                # Check regular protection levels                               
                if( $action == 'edit' || $action == '' ) {
@@ -1067,9 +966,8 @@ class Title {
        /**
         * Is $wgUser is watching this page?
         * @return boolean
-        * @access public
         */
-       function userIsWatching() {
+       public function userIsWatching() {
                global $wgUser;
 
                if ( is_null( $this->mWatched ) ) {
@@ -1082,7 +980,7 @@ class Title {
                return $this->mWatched;
        }
 
-       /**
+       /**
         * Can $wgUser perform $action on this page?
         * This skips potentially expensive cascading permission checks.
         *
@@ -1098,95 +996,236 @@ class Title {
                return $this->userCan( $action, false );
        }
 
-       /**
+       /**
+        * Determines if $wgUser is unable to edit this page because it has been protected
+        * by $wgNamespaceProtection.
+        *
+        * @return boolean
+        */
+       public function isNamespaceProtected() {
+               global $wgNamespaceProtection, $wgUser;
+               if( isset( $wgNamespaceProtection[ $this->mNamespace ] ) ) {
+                       foreach( (array)$wgNamespaceProtection[ $this->mNamespace ] as $right ) {
+                               if( $right != '' && !$wgUser->isAllowed( $right ) )
+                                       return true;
+                       }
+               }
+               return false;
+       }
+
+       /**
         * Can $wgUser perform $action on this page?
         * @param string $action action that permission needs to be checked for
         * @param bool $doExpensiveQueries Set this to false to avoid doing unnecessary queries.
         * @return boolean
         */
        public function userCan( $action, $doExpensiveQueries = true ) {
+               global $wgUser;
+               return ( $this->getUserPermissionsErrorsInternal( $action, $wgUser, $doExpensiveQueries ) === array());
+       }
+
+       /**
+        * Can $user perform $action on this page?
+        * @param string $action action that permission needs to be checked for
+        * @param bool $doExpensiveQueries Set this to false to avoid doing unnecessary queries.
+        * @return array Array of arrays of the arguments to wfMsg to explain permissions problems.
+        */
+       public function getUserPermissionsErrors( $action, $user, $doExpensiveQueries = true ) {
+               $errors = $this->getUserPermissionsErrorsInternal( $action, $user, $doExpensiveQueries );
+
+               global $wgContLang;
+               global $wgLang;
+
+               if ( wfReadOnly() && $action != 'read' ) {
+                       global $wgReadOnly;
+                       $errors[] = array( 'readonlytext', $wgReadOnly );
+               }
+
+               global $wgEmailConfirmToEdit, $wgUser;
+
+               if ( $wgEmailConfirmToEdit && !$user->isEmailConfirmed() )
+               {
+                       $errors[] = array( 'confirmedittext' );
+               }
+
+               if ( $user->isBlockedFrom( $this ) ) {
+                       $block = $user->mBlock;
+
+                       // This is from OutputPage::blockedPage
+                       // Copied at r23888 by werdna
+
+                       $id = $user->blockedBy();
+                       $reason = $user->blockedFor();
+                       if( $reason == '' ) {
+                               $reason = wfMsg( 'blockednoreason' );
+                       }
+                       $ip = wfGetIP();
+
+                       if ( is_numeric( $id ) ) {
+                               $name = User::whoIs( $id );
+                       } else {
+                               $name = $id;
+                       }
+
+                       $link = '[[' . $wgContLang->getNsText( NS_USER ) . ":{$name}|{$name}]]";
+                       $blockid = $block->mId;
+                       $blockExpiry = $user->mBlock->mExpiry;
+                       $blockTimestamp = $wgLang->timeanddate( wfTimestamp( TS_MW, $user->mBlock->mTimestamp ), true );
+
+                       if ( $blockExpiry == 'infinity' ) {
+                               // Entry in database (table ipblocks) is 'infinity' but 'ipboptions' uses 'infinite' or 'indefinite'
+                               $scBlockExpiryOptions = wfMsg( 'ipboptions' );
+
+                               foreach ( explode( ',', $scBlockExpiryOptions ) as $option ) {
+                                       if ( strpos( $option, ':' ) == false )
+                                               continue;
+
+                                       list ($show, $value) = explode( ":", $option );
+
+                                       if ( $value == 'infinite' || $value == 'indefinite' ) {
+                                               $blockExpiry = $show;
+                                               break;
+                                       }
+                               }
+                       } else {
+                               $blockExpiry = $wgLang->timeanddate( wfTimestamp( TS_MW, $blockExpiry ), true );
+                       }
+
+                       $intended = $user->mBlock->mAddress;
+
+                       $errors[] = array ( ($block->mAuto ? 'autoblockedtext' : 'blockedtext'), $link, $reason, $ip, $name, $blockid, $blockExpiry, $intended, $blockTimestamp );
+               }
+
+               return $errors;
+       }
+
+       /**
+        * Can $user perform $action on this page?
+        * This is an internal function, which checks ONLY that previously checked by userCan (i.e. it leaves out checks on wfReadOnly() and blocks)
+        * @param string $action action that permission needs to be checked for
+        * @param bool $doExpensiveQueries Set this to false to avoid doing unnecessary queries.
+        * @return array Array of arrays of the arguments to wfMsg to explain permissions problems.
+        */
+       private function getUserPermissionsErrorsInternal( $action, $user, $doExpensiveQueries = true ) {
                $fname = 'Title::userCan';
                wfProfileIn( $fname );
 
-               global $wgUser, $wgNamespaceProtection;
+               $errors = array();
 
-               $result = null;
-               wfRunHooks( 'userCan', array( &$this, &$wgUser, $action, &$result ) );
-               if ( $result !== null ) {
-                       wfProfileOut( $fname );
-                       return $result;
+               // Use getUserPermissionsErrors instead
+               if ( !wfRunHooks( 'userCan', array( &$this, &$user, $action, &$result ) ) ) {
+                       return $result ? array() : array( array( 'badaccess-group0' ) );
+               }
+
+               if (!wfRunHooks( 'getUserPermissionsErrors', array( &$this, &$user, $action, &$result ) ) ) {
+                       if ($result != array() && is_array($result) && !is_array($result[0]))
+                               $errors[] = $result; # A single array representing an error
+                       else if (is_array($result) && is_array($result[0]))
+                               $errors = array_merge( $errors, $result ); # A nested array representing multiple errors
+                       else if ($result != '' && $result != null && $result !== true && $result !== false)
+                               $errors[] = array($result); # A string representing a message-id
+                       else if ($result === false )
+                               $errors[] = array('badaccess-group0'); # a generic "We don't want them to do that"
                }
 
                if( NS_SPECIAL == $this->mNamespace ) {
-                       wfProfileOut( $fname );
-                       return false;
+                       $errors[] = array('ns-specialprotected');
                }
                
-               if ( array_key_exists( $this->mNamespace, $wgNamespaceProtection ) ) {
-                       $nsProt = $wgNamespaceProtection[ $this->mNamespace ];
-                       if ( !is_array($nsProt) ) $nsProt = array($nsProt);
-                       foreach( $nsProt as $right ) {
-                               if( '' != $right && !$wgUser->isAllowed( $right ) ) {
-                                       wfProfileOut( $fname );
-                                       return false;
-                               }
-                       }
+               if ( $this->isNamespaceProtected() ) {
+                       $ns = $this->getNamespace() == NS_MAIN
+                               ? wfMsg( 'nstab-main' )
+                               : $this->getNsText();
+                       $errors[] = (NS_MEDIAWIKI == $this->mNamespace 
+                               ? array('protectedinterface') 
+                               : array( 'namespaceprotected',  $ns ) );
                }
 
                if( $this->mDbkeyform == '_' ) {
                        # FIXME: Is this necessary? Shouldn't be allowed anyway...
-                       wfProfileOut( $fname );
-                       return false;
+                       $errors[] = array('badaccess-group0');
                }
 
                # protect css/js subpages of user pages
                # XXX: this might be better using restrictions
                # XXX: Find a way to work around the php bug that prevents using $this->userCanEditCssJsSubpage() from working
                if( $this->isCssJsSubpage()
-                       && !$wgUser->isAllowed('editinterface')
-                       && !preg_match('/^'.preg_quote($wgUser->getName(), '/').'\//', $this->mTextform) ) {
-                       wfProfileOut( $fname );
-                       return false;
+                       && !$user->isAllowed('editusercssjs')
+                       && !preg_match('/^'.preg_quote($user->getName(), '/').'\//', $this->mTextform) ) {
+                       $errors[] = array('customcssjsprotected');
                }
                
-               if ( $doExpensiveQueries && !$this->isCssJsSubpage() && $this->isCascadeProtected() ) {
+               if ( $doExpensiveQueries && !$this->isCssJsSubpage() ) {
                        # We /could/ use the protection level on the source page, but it's fairly ugly
                        #  as we have to establish a precedence hierarchy for pages included by multiple
                        #  cascade-protected pages. So just restrict it to people with 'protect' permission,
                        #  as they could remove the protection anyway.
-                       if ( !$wgUser->isAllowed('protect') ) {
-                               wfProfileOut( $fname );
-                               return false;
+                       list( $cascadingSources, $restrictions ) = $this->getCascadeProtectionSources();
+                       # Cascading protection depends on more than this page...
+                       # Several cascading protected pages may include this page...
+                       # Check each cascading level
+                       # This is only for protection restrictions, not for all actions
+                       if( $cascadingSources > 0 && isset($restrictions[$action]) ) {
+                               foreach( $restrictions[$action] as $right ) {
+                                       $right = ( $right == 'sysop' ) ? 'protect' : $right;
+                                       if( '' != $right && !$user->isAllowed( $right ) ) {
+                                               $pages = '';
+                                               foreach( $cascadingSources as $page )
+                                                       $pages .= '* [[:' . $page->getPrefixedText() . "]]\n";
+                                               $errors[] = array( 'cascadeprotected', count( $cascadingSources ), $pages );
+                                       }
+                               }
                        }
                }
-
+               
                foreach( $this->getRestrictions($action) as $right ) {
                        // Backwards compatibility, rewrite sysop -> protect
                        if ( $right == 'sysop' ) {
                                $right = 'protect';
                        }
-                       if( '' != $right && !$wgUser->isAllowed( $right ) ) {
-                               wfProfileOut( $fname );
-                               return false;
+                       if( '' != $right && !$user->isAllowed( $right ) ) {
+                               $errors[] = array( 'protectedpagetext', $right );
                        }
                }
 
-               if( $action == 'move' &&
-                       !( $this->isMovable() && $wgUser->isAllowed( 'move' ) ) ) {
-                       wfProfileOut( $fname );
-                       return false;
-               }
-
                if( $action == 'create' ) {
-                       if( (  $this->isTalkPage() && !$wgUser->isAllowed( 'createtalk' ) ) ||
-                               ( !$this->isTalkPage() && !$wgUser->isAllowed( 'createpage' ) ) ) {
-                               wfProfileOut( $fname );
-                               return false;
+                       if( (  $this->isTalkPage() && !$user->isAllowed( 'createtalk' ) ) ||
+                               ( !$this->isTalkPage() && !$user->isAllowed( 'createpage' ) ) ) {
+                               $errors[] = $user->isAnon() ? array ('nocreatetext') : array ('nocreate-loggedin');
                        }
+               } elseif( $action == 'move' && !( $this->isMovable() && $user->isAllowed( 'move' ) ) ) {
+                       $errors[] = $user->isAnon() ? array ( 'movenologintext' ) : array ('movenotallowed');
+        } else if ( !$user->isAllowed( $action ) ) {
+                       $return = null;
+                   $groups = array();
+                       global $wgGroupPermissions;
+                       foreach( $wgGroupPermissions as $key => $value ) {
+                           if( isset( $value[$action] ) && $value[$action] == true ) {
+                               $groupName = User::getGroupName( $key );
+                               $groupPage = User::getGroupPage( $key );
+                               if( $groupPage ) {
+                                   $groups[] = '[['.$groupPage->getPrefixedText().'|'.$groupName.']]';
+                               } else {
+                                   $groups[] = $groupName;
+                               }
+                           }
+                       }
+                       $n = count( $groups );
+                       $groups = implode( ', ', $groups );
+                       switch( $n ) {
+                           case 0:
+                           case 1:
+                           case 2:
+                               $return = array( "badaccess-group$n", $groups );
+                               break;
+                           default:
+                               $return = array( 'badaccess-groups', $groups );
+                       }
+                       $errors[] = $return;
                }
 
                wfProfileOut( $fname );
-               return true;
+               return $errors;
        }
 
        /**
@@ -1221,9 +1260,8 @@ class Title {
         * Some pages just aren't movable.
         *
         * @return boolean
-        * @access public
         */
-       function isMovable() {
+       public function isMovable() {
                return Namespace::isMovable( $this->getNamespace() )
                        && $this->getInterwiki() == '';
        }
@@ -1231,7 +1269,7 @@ class Title {
        /**
         * Can $wgUser read this page?
         * @return boolean
-        * @fixme fold these checks into userCan()
+        * @todo fold these checks into userCan()
         */
        public function userCanRead() {
                global $wgUser;
@@ -1242,7 +1280,7 @@ class Title {
                        return $result;
                }
 
-               if( $wgUser->isAllowed('read') ) {
+               if( $wgUser->isAllowed( 'read' ) ) {
                        return true;
                } else {
                        global $wgWhitelistRead;
@@ -1255,18 +1293,46 @@ class Title {
                                return true;
                        }
 
-                       /** some pages are explicitly allowed */
+                       /**
+                        * Bail out if there isn't whitelist
+                        */
+                       if( !is_array($wgWhitelistRead) ) {
+                               return false;
+                       }
+                       
+                       /**
+                        * Check for explicit whitelisting
+                        */
                        $name = $this->getPrefixedText();
-                       if( $wgWhitelistRead && in_array( $name, $wgWhitelistRead ) ) {
+                       if( in_array( $name, $wgWhitelistRead, true ) )
                                return true;
+                       
+                       /**
+                        * Old settings might have the title prefixed with
+                        * a colon for main-namespace pages
+                        */
+                       if( $this->getNamespace() == NS_MAIN ) {
+                               if( in_array( ':' . $name, $wgWhitelistRead ) )
+                                       return true;
                        }
+                       
+                       /**
+                        * If it's a special page, ditch the subpage bit
+                        * and check again
+                        */
+                       if( $this->getNamespace() == NS_SPECIAL ) {
+                               $name = $this->getDBKey();
+                               list( $name, /* $subpage */) = SpecialPage::resolveAliasWithSubpage( $name );
+                               if ( $name === false ) {
+                                       # Invalid special page, but we show standard login required message
+                                       return false;
+                               }
 
-                       # Compatibility with old settings
-                       if( $wgWhitelistRead && $this->getNamespace() == NS_MAIN ) {
-                               if( in_array( ':' . $name, $wgWhitelistRead ) ) {
+                               $pure = SpecialPage::getTitleFor( $name )->getPrefixedText();
+                               if( in_array( $pure, $wgWhitelistRead, true ) )
                                        return true;
-                               }
                        }
+
                }
                return false;
        }
@@ -1274,18 +1340,16 @@ class Title {
        /**
         * Is this a talk page of some sort?
         * @return bool
-        * @access public
         */
-       function isTalkPage() {
+       public function isTalkPage() {
                return Namespace::isTalk( $this->getNamespace() );
        }
 
        /**
         * Is this a subpage?
         * @return bool
-        * @access public
         */
-       function isSubpage() {
+       public function isSubpage() {
                global $wgNamespacesWithSubpages;
                
                if( isset( $wgNamespacesWithSubpages[ $this->mNamespace ] ) ) {
@@ -1294,20 +1358,30 @@ class Title {
                        return false;
                }
        }
+       
+       /**
+        * Could this page contain custom CSS or JavaScript, based
+        * on the title?
+        *
+        * @return bool
+        */
+       public function isCssOrJsPage() {
+               return $this->mNamespace == NS_MEDIAWIKI
+                       && preg_match( '!\.(?:css|js)$!u', $this->mTextform ) > 0;
+       }
 
        /**
         * Is this a .css or .js subpage of a user page?
         * @return bool
-        * @access public
         */
-       function isCssJsSubpage() {
-               return ( NS_USER == $this->mNamespace and preg_match("/\\/.*\\.(css|js)$/", $this->mTextform ) );
+       public function isCssJsSubpage() {
+               return ( NS_USER == $this->mNamespace and preg_match("/\\/.*\\.(?:css|js)$/", $this->mTextform ) );
        }
        /**
         * Is this a *valid* .css or .js subpage of a user page?
         * Check that the corresponding skin exists
         */
-       function isValidCssJsSubpage() {
+       public function isValidCssJsSubpage() {
                if ( $this->isCssJsSubpage() ) {
                        $skinNames = Skin::getSkinNames();
                        return array_key_exists( $this->getSkinFromCssJsSubpage(), $skinNames );
@@ -1318,7 +1392,7 @@ class Title {
        /**
         * Trim down a .css or .js subpage title to get the corresponding skin name
         */
-       function getSkinFromCssJsSubpage() {
+       public function getSkinFromCssJsSubpage() {
                $subpage = explode( '/', $this->mTextform );
                $subpage = $subpage[ count( $subpage ) - 1 ];
                return( str_replace( array( '.css', '.js' ), array( '', '' ), $subpage ) );
@@ -1326,17 +1400,15 @@ class Title {
        /**
         * Is this a .css subpage of a user page?
         * @return bool
-        * @access public
         */
-       function isCssSubpage() {
+       public function isCssSubpage() {
                return ( NS_USER == $this->mNamespace and preg_match("/\\/.*\\.css$/", $this->mTextform ) );
        }
        /**
         * Is this a .js subpage of a user page?
         * @return bool
-        * @access public
         */
-       function isJsSubpage() {
+       public function isJsSubpage() {
                return ( NS_USER == $this->mNamespace and preg_match("/\\/.*\\.js$/", $this->mTextform ) );
        }
        /**
@@ -1345,91 +1417,115 @@ class Title {
         *
         * @return boolean
         * @todo XXX: this might be better using restrictions
-        * @access public
         */
-       function userCanEditCssJsSubpage() {
+       public function userCanEditCssJsSubpage() {
                global $wgUser;
-               return ( $wgUser->isAllowed('editinterface') or preg_match('/^'.preg_quote($wgUser->getName(), '/').'\//', $this->mTextform) );
+               return ( $wgUser->isAllowed('editusercssjs') or preg_match('/^'.preg_quote($wgUser->getName(), '/').'\//', $this->mTextform) );
        }
 
        /**
         * Cascading protection: Return true if cascading restrictions apply to this page, false if not.
         *
         * @return bool If the page is subject to cascading restrictions.
-        * @access public.
         */
-       function isCascadeProtected() {
-               return ( $this->getCascadeProtectionSources( false ) );
+       public function isCascadeProtected() {
+               list( $sources, /* $restrictions */ ) = $this->getCascadeProtectionSources( false );
+               return ( $sources > 0 );
        }
 
        /**
         * Cascading protection: Get the source of any cascading restrictions on this page.
         *
         * @param $get_pages bool Whether or not to retrieve the actual pages that the restrictions have come from.
-        * @return mixed Array of the Title objects of the pages from which cascading restrictions have come, false for none, or true if such restrictions exist, but $get_pages was not set.
-        * @access public
+        * @return array( mixed title array, restriction array)
+        * Array of the Title objects of the pages from which cascading restrictions have come, false for none, or true if such restrictions exist, but $get_pages was not set.
+        * The restriction array is an array of each type, each of which contains an array of unique groups
         */
-       function getCascadeProtectionSources( $get_pages = true ) {
-               global $wgEnableCascadingProtection;
+       public function getCascadeProtectionSources( $get_pages = true ) {
+               global $wgEnableCascadingProtection, $wgRestrictionTypes;
+
+               # Define our dimension of restrictions types
+               $pagerestrictions = array();
+               foreach( $wgRestrictionTypes as $action )
+                       $pagerestrictions[$action] = array();
+
                if (!$wgEnableCascadingProtection)
-                       return false;
+                       return array( false, $pagerestrictions );
 
                if ( isset( $this->mCascadeSources ) && $get_pages ) {
-                       return $this->mCascadeSources;
+                       return array( $this->mCascadeSources, $this->mCascadingRestrictions );
                } else if ( isset( $this->mHasCascadingRestrictions ) && !$get_pages ) {
-                       return $this->mHasCascadingRestrictions;
+                       return array( $this->mHasCascadingRestrictions, $pagerestrictions );
                }
 
                wfProfileIn( __METHOD__ );
 
-               $dbr =& wfGetDb( DB_SLAVE );
+               $dbr = wfGetDb( DB_SLAVE );
 
                if ( $this->getNamespace() == NS_IMAGE ) {
-                       $cols = $get_pages ? array('pr_page', 'page_namespace', 'page_title') : array( '1' );
                        $tables = array ('imagelinks', 'page_restrictions');
-                       $where_clauses = array( 'il_to' => $this->getDBkey(), 'il_from=pr_page', 'pr_cascade' => 1 );
+                       $where_clauses = array(
+                               'il_to' => $this->getDBkey(),
+                               'il_from=pr_page',
+                               'pr_cascade' => 1 );
                } else {
-                       $cols = $get_pages ? array( 'pr_page', 'page_namespace', 'page_title' ) : array( '1' );
                        $tables = array ('templatelinks', 'page_restrictions');
-                       $where_clauses = array( 'tl_namespace' => $this->getNamespace(), 'tl_title' => $this->getDBkey(), 'tl_from=pr_page', 'pr_cascade' => 1 );
+                       $where_clauses = array(
+                               'tl_namespace' => $this->getNamespace(),
+                               'tl_title' => $this->getDBkey(),
+                               'tl_from=pr_page',
+                               'pr_cascade' => 1 );
                }
 
-               $options = array ();
-
                if ( $get_pages ) {
+                       $cols = array('pr_page', 'page_namespace', 'page_title', 'pr_expiry', 'pr_type', 'pr_level' );
                        $where_clauses[] = 'page_id=pr_page';
                        $tables[] = 'page';
                } else {
-                       $options[] = "LIMIT 1";
+                       $cols = array( 'pr_expiry' );
                }
 
-               $res = $dbr->select( $tables, $cols, $where_clauses, __METHOD__, $options);
+               $res = $dbr->select( $tables, $cols, $where_clauses, __METHOD__ );
 
-               if ($dbr->numRows($res)) {
-                       if ($get_pages) {
-                               $sources = array ();
-                               while ($row = $dbr->fetchObject($res)) {
+               $sources = $get_pages ? array() : false;
+               $now = wfTimestampNow();
+               $purgeExpired = false;
+               
+               while( $row = $dbr->fetchObject( $res ) ) {
+                       $expiry = Block::decodeExpiry( $row->pr_expiry );
+                       if( $expiry > $now ) {
+                               if ($get_pages) {
                                        $page_id = $row->pr_page;
                                        $page_ns = $row->page_namespace;
                                        $page_title = $row->page_title;
                                        $sources[$page_id] = Title::makeTitle($page_ns, $page_title);
+                                       # Add groups needed for each restriction type if its not already there
+                                       # Make sure this restriction type still exists
+                                       if ( isset($pagerestrictions[$row->pr_type]) && !in_array($row->pr_level, $pagerestrictions[$row->pr_type]) ) {
+                                               $pagerestrictions[$row->pr_type][]=$row->pr_level;
+                                       }
+                               } else {
+                                       $sources = true;
                                }
                        } else {
-                               $sources = true;
+                               // Trigger lazy purge of expired restrictions from the db
+                               $purgeExpired = true;
                        }
-               } else {
-                       $sources = false;
+               }
+               if( $purgeExpired ) {
+                       Title::purgeExpiredRestrictions();
                }
 
                wfProfileOut( __METHOD__ );
 
                if ( $get_pages ) {
                        $this->mCascadeSources = $sources;
+                       $this->mCascadingRestrictions = $pagerestrictions;
                } else {
                        $this->mHasCascadingRestrictions = $sources;
                }
 
-               return $sources;
+               return array( $sources, $pagerestrictions );
        }
 
        function areRestrictionsCascading() {
@@ -1443,10 +1539,9 @@ class Title {
        /**
         * Loads a string into mRestrictions array
         * @param resource $res restrictions as an SQL result.
-        * @access public
         */
-       function loadRestrictionsFromRow( $res, $oldFashionedRestrictions = NULL ) {
-               $dbr =& wfGetDb( DB_SLAVE );
+       private function loadRestrictionsFromRow( $res, $oldFashionedRestrictions = NULL ) {
+               $dbr = wfGetDb( DB_SLAVE );
 
                $this->mRestrictions['edit'] = array();
                $this->mRestrictions['move'] = array();
@@ -1476,33 +1571,42 @@ class Title {
 
                }
 
-               if ($dbr->numRows( $res) ) {
+               if( $dbr->numRows( $res ) ) {
                        # Current system - load second to make them override.
-                       $now = wfTimestampNow( );
+                       $now = wfTimestampNow();
+                       $purgeExpired = false;
 
                        while ($row = $dbr->fetchObject( $res ) ) {
                                # Cycle through all the restrictions.
 
                                // This code should be refactored, now that it's being used more generally,
                                // But I don't really see any harm in leaving it in Block for now -werdna
-                               $this->mRestrictionsExpiry = Block::decodeExpiry( $row->pr_expiry );
+                               $expiry = Block::decodeExpiry( $row->pr_expiry );
 
                                // Only apply the restrictions if they haven't expired!
-                               if ( !$this->mRestrictionsExpiry || $this->mRestrictionsExpiry > $now ) {
+                               if ( !$expiry || $expiry > $now ) {
+                                       $this->mRestrictionsExpiry = $expiry;
                                        $this->mRestrictions[$row->pr_type] = explode( ',', trim( $row->pr_level ) );
-               
+
                                        $this->mCascadeRestriction |= $row->pr_cascade;
+                               } else {
+                                       // Trigger a lazy purge of expired restrictions
+                                       $purgeExpired = true;
                                }
                        }
+
+                       if( $purgeExpired ) {
+                               Title::purgeExpiredRestrictions();
+                       }
                }
 
                $this->mRestrictionsLoaded = true;
        }
 
-       function loadRestrictions( $oldFashionedRestrictions = NULL ) {
+       public function loadRestrictions( $oldFashionedRestrictions = NULL ) {
                if( !$this->mRestrictionsLoaded ) {
-                       $dbr =& wfGetDB( DB_SLAVE );
-               
+                       $dbr = wfGetDB( DB_SLAVE );
+
                        $res = $dbr->select( 'page_restrictions', '*',
                                array ( 'pr_page' => $this->getArticleId() ), __METHOD__ );
 
@@ -1510,7 +1614,7 @@ class Title {
                }
        }
 
-       /** 
+       /**
         * Purge expired restrictions from the page_restrictions table
         */
        static function purgeExpiredRestrictions() {
@@ -1523,11 +1627,10 @@ class Title {
        /**
         * Accessor/initialisation for mRestrictions
         *
-        * @access public
         * @param string $action action that permission needs to be checked for
         * @return array the array of groups allowed to edit this article
         */
-       function getRestrictions( $action ) {
+       public function getRestrictions( $action ) {
                if( $this->exists() ) {
                        if( !$this->mRestrictionsLoaded ) {
                                $this->loadRestrictions();
@@ -1543,14 +1646,13 @@ class Title {
        /**
         * Is there a version of this page in the deletion archive?
         * @return int the number of archived revisions
-        * @access public
         */
-       function isDeleted() {
+       public function isDeleted() {
                $fname = 'Title::isDeleted';
                if ( $this->getNamespace() < 0 ) {
                        $n = 0;
                } else {
-                       $dbr =& wfGetDB( DB_SLAVE );
+                       $dbr = wfGetDB( DB_SLAVE );
                        $n = $dbr->selectField( 'archive', 'COUNT(*)', array( 'ar_namespace' => $this->getNamespace(),
                                'ar_title' => $this->getDBkey() ), $fname );
                        if( $this->getNamespace() == NS_IMAGE ) {
@@ -1582,11 +1684,11 @@ class Title {
                return $this->mArticleID;
        }
 
-       function getLatestRevID() {
+       public function getLatestRevID() {
                if ($this->mLatestID !== false)
                        return $this->mLatestID;
 
-               $db =& wfGetDB(DB_SLAVE);
+               $db = wfGetDB(DB_SLAVE);
                return $this->mLatestID = $db->selectField( 'revision',
                        "max(rev_id)",
                        array('rev_page' => $this->getArticleID()),
@@ -1602,9 +1704,8 @@ class Title {
         * Article::doDeleteArticle()
         *
         * @param int $newid the new Article ID
-        * @access public
         */
-       function resetArticleID( $newid ) {
+       public function resetArticleID( $newid ) {
                $linkCache =& LinkCache::singleton();
                $linkCache->clearBadLink( $this->getPrefixedDBkey() );
 
@@ -1617,16 +1718,15 @@ class Title {
        /**
         * Updates page_touched for this page; called from LinksUpdate.php
         * @return bool true if the update succeded
-        * @access public
         */
-       function invalidateCache() {
+       public function invalidateCache() {
                global $wgUseFileCache;
 
                if ( wfReadOnly() ) {
                        return;
                }
 
-               $dbw =& wfGetDB( DB_MASTER );
+               $dbw = wfGetDB( DB_MASTER );
                $success = $dbw->update( 'page',
                        array( /* SET */
                                'page_touched' => $dbw->timestamp()
@@ -1672,9 +1772,8 @@ class Title {
         * namespace prefixes, sets the other forms, and canonicalizes
         * everything.
         * @return bool true on success
-        * @private
         */
-       /* private */ function secureAndSplit() {
+       private function secureAndSplit() {
                global $wgContLang, $wgLocalInterwiki, $wgCapitalLinks;
 
                # Initialisation
@@ -1716,6 +1815,7 @@ class Title {
                if ( ':' == $dbkey{0} ) {
                        $this->mNamespace = NS_MAIN;
                        $dbkey = substr( $dbkey, 1 ); # remove the colon but continue processing
+                       $dbkey = trim( $dbkey, '_' ); # remove any subsequent whitespace
                }
 
                # Namespace or interwiki prefix
@@ -1724,12 +1824,7 @@ class Title {
                        $m = array();
                        if ( preg_match( "/^(.+?)_*:_*(.*)$/S", $dbkey, $m ) ) {
                                $p = $m[1];
-                               $lowerNs = $wgContLang->lc( $p );
-                               if ( $ns = Namespace::getCanonicalIndex( $lowerNs ) ) {
-                                       # Canonical namespace
-                                       $dbkey = $m[2];
-                                       $this->mNamespace = $ns;
-                               } elseif ( $ns = $wgContLang->getNsIndex( $lowerNs )) {
+                               if ( $ns = $wgContLang->getNsIndex( $p )) {
                                        # Ordinary namespace
                                        $dbkey = $m[2];
                                        $this->mNamespace = $ns;
@@ -1803,6 +1898,13 @@ class Title {
                {
                        return false;
                }
+               
+               /**
+                * Magic tilde sequences? Nu-uh!
+                */
+               if( strpos( $dbkey, '~~~' ) !== false ) {
+                       return false;
+               }
 
                /**
                 * Limit the size of titles to 255 bytes.
@@ -1825,6 +1927,7 @@ class Title {
                 * Don't force it for interwikis, since the other
                 * site might be case-sensitive.
                 */
+               $this->mUserCaseDBKey = $dbkey;
                if( $wgCapitalLinks && $this->mInterwiki == '') {
                        $dbkey = $wgContLang->ucfirst( $dbkey );
                }
@@ -1839,7 +1942,14 @@ class Title {
                        $this->mNamespace != NS_MAIN ) {
                        return false;
                }
-
+               // Allow IPv6 usernames to start with '::' by canonicalizing IPv6 titles.
+               // IP names are not allowed for accounts, and can only be referring to 
+               // edits from the IP. Given '::' abbreviations and caps/lowercaps, 
+               // there are numerous ways to present the same IP. Having sp:contribs scan 
+               // them all is silly and having some show the edits and others not is 
+               // inconsistent. Same for talk/userpages. Keep them normalized instead.
+               $dbkey = ($this->mNamespace == NS_USER || $this->mNamespace == NS_USER_TALK) ? 
+                       IP::sanitizeIP( $dbkey ) : $dbkey;
                // Any remaining initial :s are illegal.
                if ( $dbkey !== '' && ':' == $dbkey{0} ) {
                        return false;
@@ -1861,18 +1971,17 @@ class Title {
         * members directly, which is what Linker::formatComment was doing previously.
         *
         * @param string $fragment text
-        * @access kind of public
+        * @todo clarify whether access is supposed to be public (was marked as "kind of public")
         */
-       function setFragment( $fragment ) {
+       public function setFragment( $fragment ) {
                $this->mFragment = str_replace( '_', ' ', substr( $fragment, 1 ) );
        }
 
        /**
         * Get a Title object associated with the talk page of this article
         * @return Title the object for the talk page
-        * @access public
         */
-       function getTalkPage() {
+       public function getTalkPage() {
                return Title::makeTitle( Namespace::getTalk( $this->getNamespace() ), $this->getDBkey() );
        }
 
@@ -1881,9 +1990,8 @@ class Title {
         * talk page
         *
         * @return Title the object for the subject page
-        * @access public
         */
-       function getSubjectPage() {
+       public function getSubjectPage() {
                return Title::makeTitle( Namespace::getSubject( $this->getNamespace() ), $this->getDBkey() );
        }
 
@@ -1896,15 +2004,14 @@ class Title {
         *
         * @param string $options may be FOR UPDATE
         * @return array the Title objects linking here
-        * @access public
         */
-       function getLinksTo( $options = '', $table = 'pagelinks', $prefix = 'pl' ) {
+       public function getLinksTo( $options = '', $table = 'pagelinks', $prefix = 'pl' ) {
                $linkCache =& LinkCache::singleton();
 
                if ( $options ) {
-                       $db =& wfGetDB( DB_MASTER );
+                       $db = wfGetDB( DB_MASTER );
                } else {
-                       $db =& wfGetDB( DB_SLAVE );
+                       $db = wfGetDB( DB_SLAVE );
                }
 
                $res = $db->select( array( 'page', $table ),
@@ -1938,24 +2045,28 @@ class Title {
         *
         * @param string $options may be FOR UPDATE
         * @return array the Title objects linking here
-        * @access public
         */
-       function getTemplateLinksTo( $options = '' ) {
+       public function getTemplateLinksTo( $options = '' ) {
                return $this->getLinksTo( $options, 'templatelinks', 'tl' );
        }
 
        /**
         * Get an array of Title objects referring to non-existent articles linked from this page
         *
+        * @todo check if needed (used only in SpecialBrokenRedirects.php, and should use redirect table in this case)
         * @param string $options may be FOR UPDATE
         * @return array the Title objects
-        * @access public
         */
-       function getBrokenLinksFrom( $options = '' ) {
+       public function getBrokenLinksFrom( $options = '' ) {
+               if ( $this->getArticleId() == 0 ) {
+                       # All links from article ID 0 are false positives
+                       return array();
+               }
+
                if ( $options ) {
-                       $db =& wfGetDB( DB_MASTER );
+                       $db = wfGetDB( DB_MASTER );
                } else {
-                       $db =& wfGetDB( DB_SLAVE );
+                       $db = wfGetDB( DB_SLAVE );
                }
 
                $res = $db->safeQuery(
@@ -1988,9 +2099,8 @@ class Title {
         * page changes
         *
         * @return array the URLs
-        * @access public
         */
-       function getSquidURLs() {
+       public function getSquidURLs() {
                global $wgContLang;
 
                $urls = array(
@@ -2010,7 +2120,7 @@ class Title {
                return $urls;
        }
 
-       function purgeSquid() {
+       public function purgeSquid() {
                global $wgUseSquid;
                if ( $wgUseSquid ) {
                        $urls = $this->getSquidURLs();
@@ -2022,9 +2132,8 @@ class Title {
        /**
         * Move this page without authentication
         * @param Title &$nt the new page Title
-        * @access public
         */
-       function moveNoAuth( &$nt ) {
+       public function moveNoAuth( &$nt ) {
                return $this->moveTo( $nt, false );
        }
 
@@ -2036,9 +2145,8 @@ class Title {
         * @param bool $auth indicates whether $wgUser's permissions
         *      should be checked
         * @return mixed true on success, message name on failure
-        * @access public
         */
-       function isValidMoveOperation( &$nt, $auth = true ) {
+       public function isValidMoveOperation( &$nt, $auth = true ) {
                if( !$this or !$nt ) {
                        return 'badtitletext';
                }
@@ -2084,10 +2192,11 @@ class Title {
         * @param Title &$nt the new title
         * @param bool $auth indicates whether $wgUser's permissions
         *      should be checked
+        * @param string $reason The reason for the move
+        * @param bool $createRedirect Whether to create a redirect from the old title to the new title
         * @return mixed true on success, message name on failure
-        * @access public
         */
-       function moveTo( &$nt, $auth = true, $reason = '' ) {
+       public function moveTo( &$nt, $auth = true, $reason = '', $createRedirect = true ) {
                $err = $this->isValidMoveOperation( $nt, $auth );
                if( is_string( $err ) ) {
                        return $err;
@@ -2095,16 +2204,16 @@ class Title {
 
                $pageid = $this->getArticleID();
                if( $nt->exists() ) {
-                       $this->moveOverExistingRedirect( $nt, $reason );
-                       $pageCountChange = 0;
+                       $this->moveOverExistingRedirect( $nt, $reason, $createRedirect );
+                       $pageCountChange = ($createRedirect ? 0 : -1);
                } else { # Target didn't exist, do normal move.
-                       $this->moveToNewTitle( $nt, $reason );
-                       $pageCountChange = 1;
+                       $this->moveToNewTitle( $nt, $reason, $createRedirect );
+                       $pageCountChange = ($createRedirect ? 1 : 0);
                }
                $redirid = $this->getArticleID();
 
                # Fixing category links (those without piped 'alternate' names) to be sorted under the new title
-               $dbw =& wfGetDB( DB_MASTER );
+               $dbw = wfGetDB( DB_MASTER );
                $categorylinks = $dbw->tableName( 'categorylinks' );
                $sql = "UPDATE $categorylinks SET cl_sortkey=" . $dbw->addQuotes( $nt->getPrefixedText() ) .
                        " WHERE cl_from=" . $dbw->addQuotes( $pageid ) .
@@ -2158,9 +2267,10 @@ class Title {
         *
         * @param Title &$nt the page to move to, which should currently
         *      be a redirect
-        * @private
+        * @param string $reason The reason for the move
+        * @param bool $createRedirect Whether to leave a redirect at the old title
         */
-       function moveOverExistingRedirect( &$nt, $reason = '' ) {
+       private function moveOverExistingRedirect( &$nt, $reason = '', $createRedirect = true ) {
                global $wgUseSquid;
                $fname = 'Title::moveOverExistingRedirect';
                $comment = wfMsgForContent( '1movedto2_redir', $this->getPrefixedText(), $nt->getPrefixedText() );
@@ -2172,7 +2282,7 @@ class Title {
                $now = wfTimestampNow();
                $newid = $nt->getArticleID();
                $oldid = $this->getArticleID();
-               $dbw =& wfGetDB( DB_MASTER );
+               $dbw = wfGetDB( DB_MASTER );
                $linkCache =& LinkCache::singleton();
 
                # Delete the old redirect. We don't save it to history since
@@ -2199,32 +2309,35 @@ class Title {
                $linkCache->clearLink( $nt->getPrefixedDBkey() );
 
                # Recreate the redirect, this time in the other direction.
-               $mwRedir = MagicWord::get( 'redirect' );
-               $redirectText = $mwRedir->getSynonym( 0 ) . ' [[' . $nt->getPrefixedText() . "]]\n";
-               $redirectArticle = new Article( $this );
-               $newid = $redirectArticle->insertOn( $dbw );
-               $redirectRevision = new Revision( array(
-                       'page'    => $newid,
-                       'comment' => $comment,
-                       'text'    => $redirectText ) );
-               $redirectRevision->insertOn( $dbw );
-               $redirectArticle->updateRevisionOn( $dbw, $redirectRevision, 0 );
-               $linkCache->clearLink( $this->getPrefixedDBkey() );
-
+               if($createRedirect)
+               {
+                       $mwRedir = MagicWord::get( 'redirect' );
+                       $redirectText = $mwRedir->getSynonym( 0 ) . ' [[' . $nt->getPrefixedText() . "]]\n";
+                       $redirectArticle = new Article( $this );
+                       $newid = $redirectArticle->insertOn( $dbw );
+                       $redirectRevision = new Revision( array(
+                               'page'    => $newid,
+                               'comment' => $comment,
+                               'text'    => $redirectText ) );
+                       $redirectRevision->insertOn( $dbw );
+                       $redirectArticle->updateRevisionOn( $dbw, $redirectRevision, 0 );
+                       $linkCache->clearLink( $this->getPrefixedDBkey() );
+
+                       # Now, we record the link from the redirect to the new title.
+                       # It should have no other outgoing links...
+                       $dbw->delete( 'pagelinks', array( 'pl_from' => $newid ), $fname );
+                       $dbw->insert( 'pagelinks',
+                               array(
+                                       'pl_from'      => $newid,
+                                       'pl_namespace' => $nt->getNamespace(),
+                                       'pl_title'     => $nt->getDbKey() ),
+                               $fname );
+               }
+               
                # Log the move
                $log = new LogPage( 'move' );
                $log->addEntry( 'move_redir', $this, $reason, array( 1 => $nt->getPrefixedText() ) );
 
-               # Now, we record the link from the redirect to the new title.
-               # It should have no other outgoing links...
-               $dbw->delete( 'pagelinks', array( 'pl_from' => $newid ), $fname );
-               $dbw->insert( 'pagelinks',
-                       array(
-                               'pl_from'      => $newid,
-                               'pl_namespace' => $nt->getNamespace(),
-                               'pl_title'     => $nt->getDbKey() ),
-                       $fname );
-
                # Purge squid
                if ( $wgUseSquid ) {
                        $urls = array_merge( $nt->getSquidURLs(), $this->getSquidURLs() );
@@ -2236,9 +2349,10 @@ class Title {
        /**
         * Move page to non-existing title.
         * @param Title &$nt the new Title
-        * @private
+        * @param string $reason The reason for the move
+        * @param bool $createRedirect Whether to create a redirect from the old title to the new title
         */
-       function moveToNewTitle( &$nt, $reason = '' ) {
+       private function moveToNewTitle( &$nt, $reason = '', $createRedirect = true ) {
                global $wgUseSquid;
                $fname = 'MovePageForm::moveToNewTitle';
                $comment = wfMsgForContent( '1movedto2', $this->getPrefixedText(), $nt->getPrefixedText() );
@@ -2248,7 +2362,7 @@ class Title {
 
                $newid = $nt->getArticleID();
                $oldid = $this->getArticleID();
-               $dbw =& wfGetDB( DB_MASTER );
+               $dbw = wfGetDB( DB_MASTER );
                $now = $dbw->timestamp();
                $linkCache =& LinkCache::singleton();
 
@@ -2270,18 +2384,28 @@ class Title {
 
                $linkCache->clearLink( $nt->getPrefixedDBkey() );
 
-               # Insert redirect
-               $mwRedir = MagicWord::get( 'redirect' );
-               $redirectText = $mwRedir->getSynonym( 0 ) . ' [[' . $nt->getPrefixedText() . "]]\n";
-               $redirectArticle = new Article( $this );
-               $newid = $redirectArticle->insertOn( $dbw );
-               $redirectRevision = new Revision( array(
-                       'page'    => $newid,
-                       'comment' => $comment,
-                       'text'    => $redirectText ) );
-               $redirectRevision->insertOn( $dbw );
-               $redirectArticle->updateRevisionOn( $dbw, $redirectRevision, 0 );
-               $linkCache->clearLink( $this->getPrefixedDBkey() );
+               if($createRedirect)
+               {
+                       # Insert redirect
+                       $mwRedir = MagicWord::get( 'redirect' );
+                       $redirectText = $mwRedir->getSynonym( 0 ) . ' [[' . $nt->getPrefixedText() . "]]\n";
+                       $redirectArticle = new Article( $this );
+                       $newid = $redirectArticle->insertOn( $dbw );
+                       $redirectRevision = new Revision( array(
+                               'page'    => $newid,
+                               'comment' => $comment,
+                               'text'    => $redirectText ) );
+                       $redirectRevision->insertOn( $dbw );
+                       $redirectArticle->updateRevisionOn( $dbw, $redirectRevision, 0 );
+                       $linkCache->clearLink( $this->getPrefixedDBkey() );
+                       # Record the just-created redirect's linking to the page
+                       $dbw->insert( 'pagelinks',
+                               array(
+                                       'pl_from'      => $newid,
+                                       'pl_namespace' => $nt->getNamespace(),
+                                       'pl_title'     => $nt->getDBkey() ),
+                               $fname );
+               }
 
                # Log the move
                $log = new LogPage( 'move' );
@@ -2290,14 +2414,6 @@ class Title {
                # Purge caches as per article creation
                Article::onArticleCreate( $nt );
 
-               # Record the just-created redirect's linking to the page
-               $dbw->insert( 'pagelinks',
-                       array(
-                               'pl_from'      => $newid,
-                               'pl_namespace' => $nt->getNamespace(),
-                               'pl_title'     => $nt->getDBkey() ),
-                       $fname );
-
                # Purge old title from squid
                # The new title, and links to the new title, are purged in Article::onArticleCreate()
                $this->purgeSquid();
@@ -2308,12 +2424,11 @@ class Title {
         * - Selects for update, so don't call it unless you mean business
         *
         * @param Title &$nt the new title to check
-        * @access public
         */
-       function isValidMoveTarget( $nt ) {
+       public function isValidMoveTarget( $nt ) {
 
                $fname = 'Title::isValidMoveTarget';
-               $dbw =& wfGetDB( DB_MASTER );
+               $dbw = wfGetDB( DB_MASTER );
 
                # Is it a redirect?
                $id  = $nt->getArticleID();
@@ -2358,6 +2473,16 @@ class Title {
                # Return true if there was no history
                return $row === false;
        }
+       
+       /**
+        * Can this title be added to a user's watchlist?
+        *
+        * @return bool
+        */
+       public function isWatchable() {
+               return !$this->isExternal()
+                       && Namespace::isWatchable( $this->getNamespace() );
+       }
 
        /**
         * Get categories to which this Title belongs and return an array of
@@ -2365,13 +2490,12 @@ class Title {
         *
         * @return array an array of parents in the form:
         *      $parent => $currentarticle
-        * @access public
         */
-       function getParentCategories() {
+       public function getParentCategories() {
                global $wgContLang;
 
                $titlekey = $this->getArticleId();
-               $dbr =& wfGetDB( DB_SLAVE );
+               $dbr = wfGetDB( DB_SLAVE );
                $categorylinks = $dbr->tableName( 'categorylinks' );
 
                # NEW SQL
@@ -2388,7 +2512,7 @@ class Title {
                                $data[$wgContLang->getNSText ( NS_CATEGORY ).':'.$x->cl_to] = $this->getFullText();
                        $dbr->freeResult ( $res ) ;
                } else {
-                       $data = '';
+                       $data = array();
                }
                return $data;
        }
@@ -2397,9 +2521,8 @@ class Title {
         * Get a tree of parent categories
         * @param array $children an array with the children in the keys, to check for circular refs
         * @return array
-        * @access public
         */
-       function getParentCategoryTree( $children = array() ) {
+       public function getParentCategoryTree( $children = array() ) {
                $parents = $this->getParentCategories();
 
                if($parents != '') {
@@ -2426,9 +2549,8 @@ class Title {
         * the "page" table
         *
         * @return array
-        * @access public
         */
-       function pageCond() {
+       public function pageCond() {
                return array( 'page_namespace' => $this->mNamespace, 'page_title' => $this->mDbkeyform );
        }
 
@@ -2438,8 +2560,8 @@ class Title {
         * @param integer $revision  Revision ID. Get the revision that was before this one.
         * @return integer $oldrevision|false
         */
-       function getPreviousRevisionID( $revision ) {
-               $dbr =& wfGetDB( DB_SLAVE );
+       public function getPreviousRevisionID( $revision ) {
+               $dbr = wfGetDB( DB_SLAVE );
                return $dbr->selectField( 'revision', 'rev_id',
                        'rev_page=' . intval( $this->getArticleId() ) .
                        ' AND rev_id<' . intval( $revision ) . ' ORDER BY rev_id DESC' );
@@ -2451,8 +2573,8 @@ class Title {
         * @param integer $revision  Revision ID. Get the revision that was after this one.
         * @return integer $oldrevision|false
         */
-       function getNextRevisionID( $revision ) {
-               $dbr =& wfGetDB( DB_SLAVE );
+       public function getNextRevisionID( $revision ) {
+               $dbr = wfGetDB( DB_SLAVE );
                return $dbr->selectField( 'revision', 'rev_id',
                        'rev_page=' . intval( $this->getArticleId() ) .
                        ' AND rev_id>' . intval( $revision ) . ' ORDER BY rev_id' );
@@ -2465,8 +2587,8 @@ class Title {
         * @param integer $new  Revision ID.
         * @return integer  Number of revisions between these IDs.
         */
-       function countRevisionsBetween( $old, $new ) {
-               $dbr =& wfGetDB( DB_SLAVE );
+       public function countRevisionsBetween( $old, $new ) {
+               $dbr = wfGetDB( DB_SLAVE );
                return $dbr->selectField( 'revision', 'count(*)',
                        'rev_page = ' . intval( $this->getArticleId() ) .
                        ' AND rev_id > ' . intval( $old ) .
@@ -2479,30 +2601,40 @@ class Title {
         * @param Title $title
         * @return bool
         */
-       function equals( $title ) {
+       public function equals( $title ) {
                // Note: === is necessary for proper matching of number-like titles.
                return $this->getInterwiki() === $title->getInterwiki()
                        && $this->getNamespace() == $title->getNamespace()
                        && $this->getDbkey() === $title->getDbkey();
        }
+       
+       /**
+        * Return a string representation of this title
+        *
+        * @return string
+        */
+       public function __toString() {
+               return $this->getPrefixedText();
+       }
 
        /**
         * Check if page exists
         * @return bool
         */
-       function exists() {
+       public function exists() {
                return $this->getArticleId() != 0;
        }
 
        /**
-        * Should a link should be displayed as a known link, just based on its title?
+        * Do we know that this title definitely exists, or should we otherwise
+        * consider that it exists?
         *
-        * Currently, a self-link with a fragment and special pages are in
-        * this category. Special pages never exist in the database.
+        * @return bool
         */
-       function isAlwaysKnown() {
-               return  $this->isExternal() || ( 0 == $this->mNamespace && "" == $this->mDbkeyform )
-                 || NS_SPECIAL == $this->mNamespace;
+       public function isAlwaysKnown() {
+               return $this->isExternal()
+                       || ( $this->mNamespace == NS_MAIN && $this->mDbkeyform == '' )
+                       || ( $this->mNamespace == NS_MEDIAWIKI && wfMsgWeirdKey( $this->mDbkeyform ) );
        }
 
        /**
@@ -2510,7 +2642,7 @@ class Title {
         * pages linking to this title. May be sent to the job queue depending 
         * on the number of links. Typically called on create and delete.
         */
-       function touchLinks() {
+       public function touchLinks() {
                $u = new HTMLCacheUpdate( $this, 'pagelinks' );
                $u->doUpdate();
 
@@ -2523,8 +2655,8 @@ class Title {
        /**
         * Get the last touched timestamp
         */
-       function getTouched() {
-               $dbr =& wfGetDB( DB_SLAVE );
+       public function getTouched() {
+               $dbr = wfGetDB( DB_SLAVE );
                $touched = $dbr->selectField( 'page', 'page_touched',
                        array( 
                                'page_namespace' => $this->getNamespace(),
@@ -2534,26 +2666,14 @@ class Title {
                return $touched;
        }
 
-       /**
-        * Get a cached value from a global cache that is invalidated when this page changes
-        * @param string $key the key
-        * @param callback $callback A callback function which generates the value on cache miss
-        *
-        * @deprecated use DependencyWrapper
-        */
-       function getRelatedCache( $memc, $key, $expiry, $callback, $params = array() ) {
-               return DependencyWrapper::getValueFromCache( $memc, $key, $expiry, $callback, 
-                       $params, new TitleDependency( $this ) );
-       }
-
-       function trackbackURL() {
+       public function trackbackURL() {
                global $wgTitle, $wgScriptPath, $wgServer;
 
                return "$wgServer$wgScriptPath/trackback.php?article="
                        . htmlspecialchars(urlencode($wgTitle->getPrefixedDBkey()));
        }
 
-       function trackbackRDF() {
+       public function trackbackRDF() {
                $url = htmlspecialchars($this->getFullURL());
                $title = htmlspecialchars($this->getText());
                $tburl = $this->trackbackURL();
@@ -2574,7 +2694,7 @@ class Title {
         * Generate strings used for xml 'id' names in monobook tabs
         * @return string
         */
-       function getNamespaceKey() {
+       public function getNamespaceKey() {
                global $wgContLang;
                switch ($this->getNamespace()) {
                        case NS_MAIN:
@@ -2613,9 +2733,8 @@ class Title {
        /**
         * Returns true if this title resolves to the named special page
         * @param string $name The special page name
-        * @access public
         */
-       function isSpecial( $name ) {
+       public function isSpecial( $name ) {
                if ( $this->getNamespace() == NS_SPECIAL ) {
                        list( $thisName, /* $subpage */ ) = SpecialPage::resolveAliasWithSubpage( $this->getDBkey() );
                        if ( $name == $thisName ) {
@@ -2629,7 +2748,7 @@ class Title {
         * If the Title refers to a special page alias which is not the local default, 
         * returns a new Title which points to the local default. Otherwise, returns $this.
         */
-       function fixSpecialName() {
+       public function fixSpecialName() {
                if ( $this->getNamespace() == NS_SPECIAL ) {
                        $canonicalName = SpecialPage::resolveAlias( $this->mDbkeyform );
                        if ( $canonicalName ) {
@@ -2641,7 +2760,7 @@ class Title {
                }
                return $this;
        }
-       
+
        /**
         * Is this Title in a namespace which contains content?
         * In other words, is this a content page, for the purposes of calculating
@@ -2655,4 +2774,4 @@ class Title {
        
 }
 
-?>
+