Fully deprecate $wgProxyKey. Has been marked as deprecated since 1.4, but never seems...
[lhc/web/wiklou.git] / includes / PageHistory.php
index 320d857..4ba67a2 100644 (file)
@@ -3,12 +3,9 @@
  * Page history
  *
  * Split off from Article.php and Skin.php, 2003-12-22
- * @package MediaWiki
+ * @file
  */
 
-define('DIR_PREV', 0);
-define('DIR_NEXT', 1);
-
 /**
  * This class handles printing the history page for an article.  In order to
  * be efficient, it uses timestamps rather than offsets for paging, to avoid
@@ -17,10 +14,11 @@ define('DIR_NEXT', 1);
  * Construct it by passing in an Article, and call $h->history() to print the
  * history.
  *
- * @package MediaWiki
  */
-
 class PageHistory {
+       const DIR_PREV = 0;
+       const DIR_NEXT = 1;
+
        var $mArticle, $mTitle, $mSkin;
        var $lastdate;
        var $linesonpage;
@@ -33,15 +31,35 @@ class PageHistory {
         * @param Article $article
         * @returns nothing
         */
-       function PageHistory($article) {
+       function __construct($article) {
                global $wgUser;
 
                $this->mArticle =& $article;
                $this->mTitle =& $article->mTitle;
                $this->mNotificationTimestamp = NULL;
                $this->mSkin = $wgUser->getSkin();
+               $this->preCacheMessages();
+       }
+
+       function getArticle() {
+               return $this->mArticle;
+       }
+
+       function getTitle() {
+               return $this->mTitle;
+       }
 
-               $this->defaultLimit = 50;
+       /**
+        * As we use the same small set of messages in various methods and that
+        * they are called often, we call them once and save them in $this->message
+        */
+       function preCacheMessages() {
+               // Precache various messages
+               if( !isset( $this->message ) ) {
+                       foreach( explode(' ', 'cur last rev-delundel' ) as $msg ) {
+                               $this->message[$msg] = wfMsgExt( $msg, array( 'escape') );
+                       }
+               }
        }
 
        /**
@@ -50,32 +68,36 @@ class PageHistory {
         * @returns nothing
         */
        function history() {
-               global $wgOut, $wgRequest, $wgTitle;
+               global $wgOut, $wgRequest, $wgTitle, $wgScript;
 
                /*
                 * Allow client caching.
                 */
+               if( $wgOut->checkLastModified( $this->mArticle->getTouched() ) )
+               /* Client cache fresh and headers sent, nothing more to do. */
+               return;
 
-               if( $wgOut->checkLastModified( $this->mArticle->getTimestamp() ) )
-                       /* Client cache fresh and headers sent, nothing more to do. */
-                       return;
-
-               $fname = 'PageHistory::history';
-               wfProfileIn( $fname );
+               wfProfileIn( __METHOD__ );
 
                /*
                 * Setup page variables.
                 */
-               $wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
-               $wgOut->setSubtitle( wfMsg( 'revhistory' ) );
+               $wgOut->setPageTitle( wfMsg( 'history-title', $this->mTitle->getPrefixedText() ) );
+               $wgOut->setPageTitleActionText( wfMsg( 'history_short' ) );
                $wgOut->setArticleFlag( false );
                $wgOut->setArticleRelated( true );
-               $wgOut->setRobotpolicy( 'noindex,nofollow' );
+               $wgOut->setRobotPolicy( 'noindex,nofollow' );
                $wgOut->setSyndicated( true );
+               $wgOut->setFeedAppendQuery( 'action=history' );
+               $wgOut->addScriptFile( 'history.js' );
+
+               $logPage = SpecialPage::getTitleFor( 'Log' );
+               $logLink = $this->mSkin->makeKnownLinkObj( $logPage, wfMsgHtml( 'viewpagelogs' ), 'page=' . $this->mTitle->getPrefixedUrl() );
+               $wgOut->setSubtitle( $logLink );
 
                $feedType = $wgRequest->getVal( 'feed' );
                if( $feedType ) {
-                       wfProfileOut( $fname );
+                       wfProfileOut( __METHOD__ );
                        return $this->feed( $feedType );
                }
 
@@ -83,269 +105,384 @@ class PageHistory {
                 * Fail if article doesn't exist.
                 */
                if( !$this->mTitle->exists() ) {
-                       $wgOut->addWikiText( wfMsg( 'nohistory' ) );
-                       wfProfileOut( $fname );
+                       $wgOut->addWikiMsg( 'nohistory' );
+                       wfProfileOut( __METHOD__ );
                        return;
                }
 
-               $dbr =& wfGetDB(DB_SLAVE);
-
-               /*
-                * Extract limit, the number of revisions to show, and
-                * offset, the timestamp to begin at, from the URL.
-                */
-               $limit = $wgRequest->getInt('limit', $this->defaultLimit);
-               $offset = $wgRequest->getText('offset');
-
-               /* Offset must be an integral. */
-               if (!strlen($offset) || !preg_match("/^[0-9]+$/", $offset))
-                       $offset = 0;
-#              $offset = $dbr->timestamp($offset);
-               $dboffset = $offset === 0 ? 0 : $dbr->timestamp($offset);
                /*
-                * "go=last" means to jump to the last history page.
+                * "go=first" means to jump to the last (earliest) history page.
+                * This is deprecated, it no longer appears in the user interface
                 */
-               if (($gowhere = $wgRequest->getText("go")) !== NULL) {
-                       switch ($gowhere) {
-                       case "first":
-                               if (($lastid = $this->getLastOffsetForPaging($this->mTitle->getArticleID(), $limit)) === NULL)
-                                       break;
-                               $gourl = $wgTitle->getLocalURL("action=history&limit={$limit}&offset=".
-                                               wfTimestamp(TS_MW, $lastid));
-                               break;
-                       default:
-                               $gourl = NULL;
-                       }
-
-                       if (!is_null($gourl)) {
-                               $wgOut->redirect($gourl);
-                               return;
+               if ( $wgRequest->getText("go") == 'first' ) {
+                       $limit = $wgRequest->getInt( 'limit', 50 );
+                       global $wgFeedLimit;
+                       if( $limit > $wgFeedLimit ) {
+                               $limit = $wgFeedLimit;
                        }
+                       $wgOut->redirect( $wgTitle->getLocalURL( "action=history&limit={$limit}&dir=prev" ) );
+                       return;
                }
 
-               /*
-                * Fetch revisions.
-                *
-                * If the user clicked "previous", we retrieve the revisions backwards,
-                * then reverse them.  This is to avoid needing to know the timestamp of
-                * previous revisions when generating the URL.
-                */
-               $direction = $this->getDirection();
-               $revisions = $this->fetchRevisions($limit, $dboffset, $direction);
-               $navbar = $this->makeNavbar($revisions, $offset, $limit, $direction);
-
-               /*
-                * We fetch one more revision than needed to get the timestamp of the
-                * one after this page (and to know if it exists).
-                *
-                * linesonpage stores the actual number of lines.
+               /**
+                * Add date selector to quickly get to a certain time
                 */
-               if (count($revisions) < $limit + 1)
-                       $this->linesonpage = count($revisions);
-               else
-                       $this->linesonpage = count($revisions) - 1;
-
-               /* Un-reverse revisions */
-               if ($direction == DIR_PREV)
-                       $revisions = array_reverse($revisions);
+               $year = $wgRequest->getInt( 'year' );
+               $month = $wgRequest->getInt( 'month' );
+
+               $action = htmlspecialchars( $wgScript );
+               $wgOut->addHTML(
+               Xml::fieldset( wfMsg( 'history-search' ), false, array( 'id' => 'mw-history-search' ) ) .
+                       "<form action=\"$action\" method=\"get\">" .
+               Xml::hidden( 'title', $this->mTitle->getPrefixedDBKey() ) . "\n" .
+               Xml::hidden( 'action', 'history' ) . "\n" .
+               $this->getDateMenu( $year, $month ) . '&nbsp;' .
+               Xml::submitButton( wfMsg( 'allpagessubmit' ) ) . "\n" .
+                       '</form></fieldset>'
+                       );
 
-               /*
-                * Print the top navbar.
-                */
-               $s = $navbar;
-               $s .= $this->beginHistoryList();
-               $counter = 1;
+                       wfRunHooks( 'PageHistoryBeforeList', array( &$this->mArticle ) );
+
+                       /**
+                        * Do the list
+                        */
+                       $pager = new PageHistoryPager( $this, $year, $month );
+                       $this->linesonpage = $pager->getNumRows();
+                       $wgOut->addHTML(
+                       $pager->getNavigationBar() .
+                       $this->beginHistoryList() .
+                       $pager->getBody() .
+                       $this->endHistoryList() .
+                       $pager->getNavigationBar()
+                       );
+                       wfProfileOut( __METHOD__ );
+       }
 
-               /*
-                * Print each revision, excluding the one-past-the-end, if any.
-                */
-               foreach (array_slice($revisions, 0, $limit) as $i => $line) {
-                       $latest = !$i && $offset == 0;
-                       $firstInList = !$i;
-                       $next = isset( $revisions[$i + 1] ) ? $revisions[$i + 1 ] : null;
-                       $s .= $this->historyLine($line, $next, $counter, $this->getNotificationTimestamp(), $latest, $firstInList);
-                       $counter++;
+       /**
+        * @return string Formatted HTML
+        * @param int $year
+        * @param int $month
+        */
+       private function getDateMenu( $year, $month ) {
+               # Offset overrides year/month selection
+               if( $month && $month !== -1 ) {
+                       $encMonth = intval( $month );
+               } else {
+                       $encMonth = '';
                }
-
-               /*
-                * End navbar.
-               */
-               $s .= $this->endHistoryList();
-               $s .= $navbar;
-
-               $wgOut->addHTML( $s );
-               wfProfileOut( $fname );
+               if ( $year ) {
+                       $encYear = intval( $year );
+               } else if( $encMonth ) {
+                       $thisMonth = intval( gmdate( 'n' ) );
+                       $thisYear = intval( gmdate( 'Y' ) );
+                       if( intval($encMonth) > $thisMonth ) {
+                               $thisYear--;
+                       }
+                       $encYear = $thisYear;
+               } else {
+                       $encYear = '';
+               }
+               return Xml::label( wfMsg( 'year' ), 'year' ) . ' '.
+               Xml::input( 'year', 4, $encYear, array('id' => 'year', 'maxlength' => 4) ) .
+                       ' '.
+               Xml::label( wfMsg( 'month' ), 'month' ) . ' '.
+               Xml::monthSelector( $encMonth, -1 );
        }
 
-       /** @todo document */
+       /**
+        * Creates begin of history list with a submit button
+        *
+        * @return string HTML output
+        */
        function beginHistoryList() {
-               global $wgTitle;
+               global $wgTitle, $wgScript, $wgEnableHtmlDiff;
                $this->lastdate = '';
                $s = wfMsgExt( 'histlegend', array( 'parse') );
-               $s .= '<form action="' . $wgTitle->escapeLocalURL( '-' ) . '" method="get">';
-               $prefixedkey = htmlspecialchars($wgTitle->getPrefixedDbKey());
-
-               // The following line is SUPPOSED to have double-quotes around the
-               // $prefixedkey variable, because htmlspecialchars() doesn't escape
-               // single-quotes.
-               //
-               // On at least two occasions people have changed it to single-quotes,
-               // which creates invalid HTML and incorrect display of the resulting
-               // link.
-               //
-               // Please do not break this a third time. Thank you for your kind
-               // consideration and cooperation.
-               //
-               $s .= "<input type='hidden' name='title' value=\"{$prefixedkey}\" />\n";
-
-               $s .= $this->submitButton();
+               $s .= Xml::openElement( 'form', array( 'action' => $wgScript ) );
+               $s .= Xml::hidden( 'title', $wgTitle->getPrefixedDbKey() );
+               if($wgEnableHtmlDiff){
+                       $s .= $this->submitButton( wfMsg( 'visualcomparison'),
+                       array(
+                                       'name' => 'htmldiff',
+                                       'class'     => 'historysubmit',
+                                       'accesskey' => wfMsg( 'accesskey-visualcomparison' ),
+                                       'title'     => wfMsg( 'tooltip-compareselectedversions' ),
+                       )
+                       );
+                       $s .= $this->submitButton( wfMsg( 'wikicodecomparison'),
+                       array(
+                                       'class'     => 'historysubmit',
+                                       'accesskey' => wfMsg( 'accesskey-compareselectedversions' ),
+                                       'title'     => wfMsg( 'tooltip-compareselectedversions' ),
+                       )
+                       );
+               }else{
+                       $s .= $this->submitButton( wfMsg( 'compareselectedversions'),
+                       array(
+                                       'class'     => 'historysubmit',
+                                       'accesskey' => wfMsg( 'accesskey-compareselectedversions' ),
+                                       'title'     => wfMsg( 'tooltip-compareselectedversions' ),
+                       )
+                       );
+               }
                $s .= '<ul id="pagehistory">' . "\n";
                return $s;
        }
 
-       /** @todo document */
+       /**
+        * Creates end of history list with a submit button
+        *
+        * @return string HTML output
+        */
        function endHistoryList() {
+               global $wgEnableHtmlDiff;
                $s = '</ul>';
-               $s .= $this->submitButton( array( 'id' => 'historysubmit' ) );
+               if($wgEnableHtmlDiff){
+                       $s .= $this->submitButton( wfMsg( 'visualcomparison'),
+                       array(
+                                       'name' => 'htmldiff',
+                                       'class'     => 'historysubmit',
+                                       'accesskey' => wfMsg( 'accesskey-visualcomparison' ),
+                                       'title'     => wfMsg( 'tooltip-compareselectedversions' ),
+                       )
+                       );
+                       $s .= $this->submitButton( wfMsg( 'wikicodecomparison'),
+                       array(
+                                       'class'     => 'historysubmit',
+                                       'accesskey' => wfMsg( 'accesskey-compareselectedversions' ),
+                                       'title'     => wfMsg( 'tooltip-compareselectedversions' ),
+                       )
+                       );
+               }else{
+                       $s .= $this->submitButton( wfMsg( 'compareselectedversions'),
+                       array(
+                                       'class'     => 'historysubmit',
+                                       'accesskey' => wfMsg( 'accesskey-compareselectedversions' ),
+                                       'title'     => wfMsg( 'tooltip-compareselectedversions' ),
+                       )
+                       );
+               }
                $s .= '</form>';
                return $s;
        }
 
-       /** @todo document */
-       function submitButton( $bits = array() ) {
-               return ( $this->linesonpage > 0 )
-                       ? wfElement( 'input', array_merge( $bits,
-                               array(
-                                       'class'     => 'historysubmit',
-                                       'type'      => 'submit',
-                                       'accesskey' => wfMsg( 'accesskey-compareselectedversions' ),
-                                       'title'     => wfMsg( 'tooltip-compareselectedversions' ),
-                                       'value'     => wfMsg( 'compareselectedversions' ),
-                               ) ) )
-                       : '';
+       /**
+        * Creates a submit button
+        *
+        * @param array $attributes attributes
+        * @return string HTML output for the submit button
+        */
+       function submitButton($message, $attributes = array() ) {
+               # Disable submit button if history has 1 revision only
+               if ( $this->linesonpage > 1 ) {
+                       return Xml::submitButton( $message , $attributes );
+               } else {
+                       return '';
+               }
        }
 
-       /** @todo document */
+       /**
+        * Returns a row from the history printout.
+        *
+        * @todo document some more, and maybe clean up the code (some params redundant?)
+        *
+        * @param Row $row The database row corresponding to the previous line.
+        * @param mixed $next The database row corresponding to the next line.
+        * @param int $counter Apparently a counter of what row number we're at, counted from the top row = 1.
+        * @param $notificationtimestamp
+        * @param bool $latest Whether this row corresponds to the page's latest revision.
+        * @param bool $firstInList Whether this row corresponds to the first displayed on this history page.
+        * @return string HTML output for the row
+        */
        function historyLine( $row, $next, $counter = '', $notificationtimestamp = false, $latest = false, $firstInList = false ) {
-               global $wgUser;
+               global $wgUser, $wgLang;
                $rev = new Revision( $row );
+               $rev->setTitle( $this->mTitle );
 
-               $s = '<li>';
+               $s = '';
                $curlink = $this->curLink( $rev, $latest );
                $lastlink = $this->lastLink( $rev, $next, $counter );
                $arbitrary = $this->diffButtons( $rev, $firstInList, $counter );
                $link = $this->revLink( $rev );
-               $user = $this->mSkin->revUserLink( $rev );
 
                $s .= "($curlink) ($lastlink) $arbitrary";
-               
+
                if( $wgUser->isAllowed( 'deleterevision' ) ) {
-                       $revdel = Title::makeTitle( NS_SPECIAL, 'Revisiondelete' );
+                       $revdel = SpecialPage::getTitleFor( 'Revisiondelete' );
                        if( $firstInList ) {
                                // We don't currently handle well changing the top revision's settings
-                               $del = wfMsgHtml( 'rev-delundel' );
+                               $del = $this->message['rev-delundel'];
+                       } else if( !$rev->userCan( Revision::DELETED_RESTRICTED ) ) {
+                               // If revision was hidden from sysops
+                               $del = $this->message['rev-delundel'];
                        } else {
                                $del = $this->mSkin->makeKnownLinkObj( $revdel,
-                                       wfMsg( 'rev-delundel' ),
+                               $this->message['rev-delundel'],
                                        'target=' . urlencode( $this->mTitle->getPrefixedDbkey() ) .
                                        '&oldid=' . urlencode( $rev->getId() ) );
+                               // Bolden oversighted content
+                               if( $rev->isDeleted( Revision::DELETED_RESTRICTED ) )
+                               $del = "<strong>$del</strong>";
                        }
-                       $s .= "(<small>$del</small>) ";
+                       $s .= " <tt>(<small>$del</small>)</tt> ";
                }
-               
-               $s .= " $link <span class='history-user'>$user</span>";
+
+               $s .= " $link";
+               $s .= " <span class='history-user'>" . $this->mSkin->revUserTools( $rev, true ) . "</span>";
 
                if( $row->rev_minor_edit ) {
-                       $s .= ' ' . wfElement( 'span', array( 'class' => 'minor' ), wfMsg( 'minoreditletter') );
+                       $s .= ' ' . Xml::element( 'span', array( 'class' => 'minor' ), wfMsg( 'minoreditletter') );
                }
 
-               $s .= $this->mSkin->revComment( $rev );
+               if ( !is_null( $size = $rev->getSize() ) && $rev->userCan( Revision::DELETED_TEXT ) ) {
+                       $s .= ' ' . $this->mSkin->formatRevisionSize( $size );
+               }
+
+               $s .= $this->mSkin->revComment( $rev, false, true );
+
                if ($notificationtimestamp && ($row->rev_timestamp >= $notificationtimestamp)) {
                        $s .= ' <span class="updatedmarker">' .  wfMsgHtml( 'updatedmarker' ) . '</span>';
                }
-               if( $row->rev_deleted & Revision::MW_REV_DELETED_TEXT ) {
-                       $s .= ' ' . wfMsgHtml( 'deletedrev' );
+               #add blurb about text having been deleted
+               if( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
+                       $s .= ' <tt>' . wfMsgHtml( 'deletedrev' ) . '</tt>';
                }
-               $s .= "</li>\n";
 
-               return $s;
+               $tools = array();
+
+               if ( !is_null( $next ) && is_object( $next ) ) {
+                       if( !$this->mTitle->getUserPermissionsErrors( 'rollback', $wgUser )
+                       && !$this->mTitle->getUserPermissionsErrors( 'edit', $wgUser )
+                       && $latest ) {
+                               $tools[] = '<span class="mw-rollback-link">'
+                               . $this->mSkin->buildRollbackLink( $rev )
+                               . '</span>';
+                       }
+
+                       if( $this->mTitle->quickUserCan( 'edit' ) &&
+                       !$rev->isDeleted( Revision::DELETED_TEXT ) &&
+                       !$next->rev_deleted & Revision::DELETED_TEXT ) {
+
+                               # Create undo tooltip for the first (=latest) line only
+                               $undoTooltip = $latest
+                                       ? array( 'title' => wfMsg( 'tooltip-undo' ) )
+                                       : array();
+                               $undolink = $this->mSkin->link(
+                                       $this->mTitle,
+                                       wfMsgHtml( 'editundo' ),
+                                       $undoTooltip,
+                                       array( 'action' => 'edit', 'undoafter' => $next->rev_id, 'undo' => $rev->getId() ),
+                                       array( 'known', 'noclasses' )
+                               );
+                               $tools[] = "<span class=\"mw-history-undo\">{$undolink}</span>";
+                       }
+               }
+
+               if( $tools ) {
+                       $s .= ' (' . implode( ' | ', $tools ) . ')';
+               }
+
+               wfRunHooks( 'PageHistoryLineEnding', array( $this, &$row , &$s ) );
+
+               return "<li>$s</li>\n";
        }
-       
-       /** @todo document */
+
+       /**
+        * Create a link to view this revision of the page
+        * @param Revision $rev
+        * @returns string
+        */
        function revLink( $rev ) {
                global $wgLang;
                $date = $wgLang->timeanddate( wfTimestamp(TS_MW, $rev->getTimestamp()), true );
-               if( $rev->userCan( Revision::MW_REV_DELETED_TEXT ) ) {
+               if( $rev->userCan( Revision::DELETED_TEXT ) ) {
                        $link = $this->mSkin->makeKnownLinkObj(
-                               $this->mTitle, $date, "oldid=" . $rev->getId() );
+                       $this->mTitle, $date, "oldid=" . $rev->getId() );
                } else {
                        $link = $date;
                }
-               if( $rev->isDeleted( Revision::MW_REV_DELETED_TEXT ) ) {
+               if( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
                        return '<span class="history-deleted">' . $link . '</span>';
                }
                return $link;
        }
 
-       /** @todo document */
+       /**
+        * Create a diff-to-current link for this revision for this page
+        * @param Revision $rev
+        * @param Bool $latest, this is the latest revision of the page?
+        * @returns string
+        */
        function curLink( $rev, $latest ) {
-               $cur = wfMsgExt( 'cur', array( 'escape') );
-               if( $latest || !$rev->userCan( Revision::MW_REV_DELETED_TEXT ) ) {
+               $cur = $this->message['cur'];
+               if( $latest || !$rev->userCan( Revision::DELETED_TEXT ) ) {
                        return $cur;
                } else {
                        return $this->mSkin->makeKnownLinkObj(
-                               $this->mTitle, $cur,
+                       $this->mTitle, $cur,
                                'diff=' . $this->getLatestID() .
                                "&oldid=" . $rev->getId() );
                }
        }
 
-       /** @todo document */
-       function lastLink( $rev, $next, $counter ) {
-               $last = wfMsgExt( 'last', array( 'escape' ) );
-               if( is_null( $next ) ) {
-                       if( $rev->getTimestamp() == $this->getEarliestOffset() ) {
-                               return $last;
-                       } else {
-                               // Cut off by paging; there are more behind us...
-                               return $this->mSkin->makeKnownLinkObj(
-                                       $this->mTitle,
-                                       $last,
-                                       "diff=" . $rev->getId() . "&oldid=prev" );
-                       }
-               } elseif( !$rev->userCan( Revision::MW_REV_DELETED_TEXT ) ) {
+       /**
+        * Create a diff-to-previous link for this revision for this page.
+        * @param Revision $prevRev, the previous revision
+        * @param mixed $next, the newer revision
+        * @param int $counter, what row on the history list this is
+        * @returns string
+        */
+       function lastLink( $prevRev, $next, $counter ) {
+               $last = $this->message['last'];
+               # $next may either be a Row, null, or "unkown"
+               $nextRev = is_object($next) ? new Revision( $next ) : $next;
+               if( is_null($next) ) {
+                       # Probably no next row
+                       return $last;
+               } elseif( $next === 'unknown' ) {
+                       # Next row probably exists but is unknown, use an oldid=prev link
+                       return $this->mSkin->makeKnownLinkObj(
+                       $this->mTitle,
+                       $last,
+                               "diff=" . $prevRev->getId() . "&oldid=prev" );
+               } elseif( !$prevRev->userCan(Revision::DELETED_TEXT) || !$nextRev->userCan(Revision::DELETED_TEXT) ) {
                        return $last;
                } else {
                        return $this->mSkin->makeKnownLinkObj(
-                               $this->mTitle,
-                               $last,
-                               "diff=" . $rev->getId() . "&oldid={$next->rev_id}"
-                               /*,
+                       $this->mTitle,
+                       $last,
+                               "diff=" . $prevRev->getId() . "&oldid={$next->rev_id}"
+                       /*,
                                '',
                                '',
                                "tabindex={$counter}"*/ );
                }
        }
 
-       /** @todo document */
+       /**
+        * Create radio buttons for page history
+        *
+        * @param object $rev Revision
+        * @param bool $firstInList Is this version the first one?
+        * @param int $counter A counter of what row number we're at, counted from the top row = 1.
+        * @return string HTML output for the radio buttons
+        */
        function diffButtons( $rev, $firstInList, $counter ) {
                if( $this->linesonpage > 1) {
                        $radio = array(
                                'type'  => 'radio',
                                'value' => $rev->getId(),
-# do we really need to flood this on every item?
-#                              'title' => wfMsgHtml( 'selectolderversionfordiff' )
                        );
 
-                       if( !$rev->userCan( Revision::MW_REV_DELETED_TEXT ) ) {
+                       if( !$rev->userCan( Revision::DELETED_TEXT ) ) {
                                $radio['disabled'] = 'disabled';
                        }
 
                        /** @todo: move title texts to javascript */
                        if ( $firstInList ) {
-                               $first = wfElement( 'input', array_merge(
-                                       $radio,
-                                       array(
+                               $first = Xml::element( 'input', array_merge(
+                               $radio,
+                               array(
                                                'style' => 'visibility:hidden',
                                                'name'  => 'oldid' ) ) );
                                $checkmark = array( 'checked' => 'checked' );
@@ -355,244 +492,118 @@ class PageHistory {
                                } else {
                                        $checkmark = array();
                                }
-                               $first = wfElement( 'input', array_merge(
-                                       $radio,
-                                       $checkmark,
-                                       array( 'name'  => 'oldid' ) ) );
-                               $checkmark = array();
-                       }
-                       $second = wfElement( 'input', array_merge(
+                               $first = Xml::element( 'input', array_merge(
                                $radio,
                                $checkmark,
-                               array( 'name'  => 'diff' ) ) );
+                               array( 'name'  => 'oldid' ) ) );
+                               $checkmark = array();
+                       }
+                       $second = Xml::element( 'input', array_merge(
+                       $radio,
+                       $checkmark,
+                       array( 'name'  => 'diff' ) ) );
                        return $first . $second;
                } else {
                        return '';
                }
        }
 
-       /** @todo document */
-       function getLatestOffset( $id = null ) {
-               if ( $id === null) $id = $this->mTitle->getArticleID();
-               return $this->getExtremeOffset( $id, 'max' );
-       }
-
-       /** @todo document */
-       function getEarliestOffset( $id = null ) {
-               if ( $id === null) $id = $this->mTitle->getArticleID();
-               return $this->getExtremeOffset( $id, 'min' );
-       }
-
-       /** @todo document */
-       function getExtremeOffset( $id, $func ) {
-               $db =& wfGetDB(DB_SLAVE);
-               return $db->selectField( 'revision',
-                       "$func(rev_timestamp)",
-                       array( 'rev_page' => $id ),
-                       'PageHistory::getExtremeOffset' );
-       }
-
        /** @todo document */
        function getLatestId() {
                if( is_null( $this->mLatestId ) ) {
                        $id = $this->mTitle->getArticleID();
-                       $db =& wfGetDB(DB_SLAVE);
-                       $this->mLatestId = $db->selectField( 'revision',
-                               "max(rev_id)",
-                               array( 'rev_page' => $id ),
-                               'PageHistory::getLatestID' );
+                       $db = wfGetDB( DB_SLAVE );
+                       $this->mLatestId = $db->selectField( 'page',
+                               "page_latest",
+                       array( 'page_id' => $id ),
+                       __METHOD__ );
                }
                return $this->mLatestId;
        }
 
-       /** @todo document */
-       function getLastOffsetForPaging( $id, $step ) {
-               $fname = 'PageHistory::getLastOffsetForPaging';
-
-               $dbr =& wfGetDB(DB_SLAVE);
-               $res = $dbr->select(
-                       'revision',
-                       'rev_timestamp',
-                       "rev_page=$id",
-                       $fname,
-                       array('ORDER BY' => 'rev_timestamp ASC', 'LIMIT' => $step));
-
-               $n = $dbr->numRows( $res );
-               $last = null;
-               while( $obj = $dbr->fetchObject( $res ) ) {
-                       $last = $obj->rev_timestamp;
-               }
-               $dbr->freeResult( $res );
-               return $last;
-       }
-
        /**
-        * @return returns the direction of browsing watchlist
+        * Fetch an array of revisions, specified by a given limit, offset and
+        * direction. This is now only used by the feeds. It was previously
+        * used by the main UI but that's now handled by the pager.
         */
-       function getDirection() {
-               global $wgRequest;
-               if ($wgRequest->getText("dir") == "prev")
-                       return DIR_PREV;
-               else
-                       return DIR_NEXT;
-       }
-
-       /** @todo document */
        function fetchRevisions($limit, $offset, $direction) {
-               $fname = 'PageHistory::fetchRevisions';
-
-               $dbr =& wfGetDB( DB_SLAVE );
+               $dbr = wfGetDB( DB_SLAVE );
 
-               if ($direction == DIR_PREV)
-                       list($dirs, $oper) = array("ASC", ">=");
-               else /* $direction == DIR_NEXT */
-                       list($dirs, $oper) = array("DESC", "<=");
+               if ($direction == PageHistory::DIR_PREV)
+               list($dirs, $oper) = array("ASC", ">=");
+               else /* $direction == PageHistory::DIR_NEXT */
+               list($dirs, $oper) = array("DESC", "<=");
 
                if ($offset)
-                       $offsets = array("rev_timestamp $oper '$offset'");
+               $offsets = array("rev_timestamp $oper '$offset'");
                else
-                       $offsets = array();
+               $offsets = array();
 
                $page_id = $this->mTitle->getArticleID();
 
-               $res = $dbr->select(
+               return $dbr->select(
                        'revision',
-                       array('rev_id', 'rev_page', 'rev_text_id', 'rev_user', 'rev_comment', 'rev_user_text',
-                               'rev_timestamp', 'rev_minor_edit', 'rev_deleted'),
-                       array_merge(array("rev_page=$page_id"), $offsets),
-                       $fname,
-                       array('ORDER BY' => "rev_timestamp $dirs",
+               Revision::selectFields(),
+               array_merge(array("rev_page=$page_id"), $offsets),
+               __METHOD__,
+               array('ORDER BY' => "rev_timestamp $dirs",
                                'USE INDEX' => 'page_timestamp', 'LIMIT' => $limit)
-                       );
-
-               $result = array();
-               while (($obj = $dbr->fetchObject($res)) != NULL)
-                       $result[] = $obj;
-
-               return $result;
+               );
        }
 
        /** @todo document */
        function getNotificationTimestamp() {
                global $wgUser, $wgShowUpdatedMarker;
-               $fname = 'PageHistory::getNotficationTimestamp';
 
                if ($this->mNotificationTimestamp !== NULL)
-                       return $this->mNotificationTimestamp;
+               return $this->mNotificationTimestamp;
 
                if ($wgUser->isAnon() || !$wgShowUpdatedMarker)
-                       return $this->mNotificationTimestamp = false;
+               return $this->mNotificationTimestamp = false;
 
-               $dbr =& wfGetDB(DB_SLAVE);
+               $dbr = wfGetDB(DB_SLAVE);
 
                $this->mNotificationTimestamp = $dbr->selectField(
                        'watchlist',
                        'wl_notificationtimestamp',
-                       array(  'wl_namespace' => $this->mTitle->getNamespace(),
+               array(  'wl_namespace' => $this->mTitle->getNamespace(),
                                'wl_title' => $this->mTitle->getDBkey(),
-                               'wl_user' => $wgUser->getID()
-                       ),
-                       $fname);
-
-               return $this->mNotificationTimestamp;
-       }
-
-       /** @todo document */
-       function makeNavbar($revisions, $offset, $limit, $direction) {
-               global $wgLang;
-
-               $revisions = array_slice($revisions, 0, $limit);
+                               'wl_user' => $wgUser->getId()
+               ),
+               __METHOD__ );
 
-               $latestTimestamp = wfTimestamp(TS_MW, $this->getLatestOffset());
-               $earliestTimestamp = wfTimestamp(TS_MW, $this->getEarliestOffset());
-
-               /*
-                * When we're displaying previous revisions, we need to reverse
-                * the array, because it's queried in reverse order.
-                */
-               if ($direction == DIR_PREV)
-                       $revisions = array_reverse($revisions);
-
-               /*
-                * lowts is the timestamp of the first revision on this page.
-                * hights is the timestamp of the last revision.
-                */
-
-               $lowts = $hights = 0;
-
-               if( count( $revisions ) ) {
-                       $latestShown = wfTimestamp(TS_MW, $revisions[0]->rev_timestamp);
-                       $earliestShown = wfTimestamp(TS_MW, $revisions[count($revisions) - 1]->rev_timestamp);
-               }
-
-               /* Don't announce the limit everywhere if it's the default */
-               $usefulLimit = $limit == $this->defaultLimit ? '' : $limit;
-
-               $urls = array();
-               foreach (array(20, 50, 100, 250, 500) as $num) {
-                       $urls[] = $this->MakeLink( $wgLang->formatNum($num),
-                               array('offset' => $offset == 0 ? '' : wfTimestamp(TS_MW, $offset), 'limit' => $num, ) );
-               }
-
-               $bits = implode($urls, ' | ');
-
-               wfDebug("latestShown=$latestShown latestTimestamp=$latestTimestamp\n");
-               if( $latestShown < $latestTimestamp ) {
-                       $prevtext = $this->MakeLink( wfMsgHtml("prevn", $limit),
-                               array( 'dir' => 'prev', 'offset' => $latestShown, 'limit' => $usefulLimit ) );
-                       $lasttext = $this->MakeLink( wfMsgHtml('histlast'),
-                               array( 'limit' => $usefulLimit ) );
-               } else {
-                       $prevtext = wfMsgHtml("prevn", $limit);
-                       $lasttext = wfMsgHtml('histlast');
-               }
-
-               wfDebug("earliestShown=$earliestShown earliestTimestamp=$earliestTimestamp\n");
-               if( $earliestShown > $earliestTimestamp ) {
-                       $nexttext = $this->MakeLink( wfMsgHtml("nextn", $limit),
-                               array( 'offset' => $earliestShown, 'limit' => $usefulLimit ) );
-                       $firsttext = $this->MakeLink( wfMsgHtml('histfirst'),
-                               array( 'go' => 'first', 'limit' => $usefulLimit ) );
-               } else {
-                       $nexttext = wfMsgHtml("nextn", $limit);
-                       $firsttext = wfMsgHtml('histfirst');
+               // Don't use the special value reserved for telling whether the field is filled
+               if ( is_null( $this->mNotificationTimestamp ) ) {
+                       $this->mNotificationTimestamp = false;
                }
 
-               $firstlast = "($lasttext | $firsttext)";
-
-               return "$firstlast " . wfMsgHtml("viewprevnext", $prevtext, $nexttext, $bits);
+               return $this->mNotificationTimestamp;
        }
 
-       function MakeLink($text, $query = NULL) {
-               if ( $query === null ) return $text;
-               return $this->mSkin->makeKnownLinkObj(
-                               $this->mTitle, $text,
-                               wfArrayToCGI( $query, array( 'action' => 'history' )));
-       }
-       
-       
        /**
         * Output a subscription feed listing recent edits to this page.
         * @param string $type
         */
        function feed( $type ) {
-               require_once 'Feed.php';
-               require_once 'SpecialRecentchanges.php';
-               
-               global $wgFeedClasses;
-               if( !isset( $wgFeedClasses[$type] ) ) {
-                       global $wgOut;
-                       $wgOut->addWikiText( wfMsg( 'feed-invalid' ) );
+               global $wgFeedClasses, $wgRequest, $wgFeedLimit;
+               if ( !FeedUtils::checkFeedOutput($type) ) {
                        return;
                }
-               
+
                $feed = new $wgFeedClasses[$type](
-                       $this->mTitle->getPrefixedText() . ' - ' .
-                               wfMsgForContent( 'history-feed-title' ),
-                       wfMsgForContent( 'history-feed-description' ),
-                       $this->mTitle->getFullUrl( 'action=history' ) );
+               $this->mTitle->getPrefixedText() . ' - ' .
+               wfMsgForContent( 'history-feed-title' ),
+               wfMsgForContent( 'history-feed-description' ),
+               $this->mTitle->getFullUrl( 'action=history' ) );
+
+               // Get a limit on number of feed entries. Provide a sane default
+               // of 10 if none is defined (but limit to $wgFeedLimit max)
+               $limit = $wgRequest->getInt( 'limit', 10 );
+               if( $limit > $wgFeedLimit || $limit < 1 ) {
+                       $limit = 10;
+               }
+               $items = $this->fetchRevisions($limit, 0, PageHistory::DIR_NEXT);
 
-               $items = $this->fetchRevisions(10, 0, DIR_NEXT);
                $feed->outHeader();
                if( $items ) {
                        foreach( $items as $row ) {
@@ -603,18 +614,18 @@ class PageHistory {
                }
                $feed->outFooter();
        }
-       
+
        function feedEmpty() {
                global $wgOut;
                return new FeedItem(
-                       wfMsgForContent( 'nohistory' ),
-                       $wgOut->parse( wfMsgForContent( 'history-feed-empty' ) ),
-                       $this->mTitle->getFullUrl(),
-                       wfTimestamp( TS_MW ),
+               wfMsgForContent( 'nohistory' ),
+               $wgOut->parse( wfMsgForContent( 'history-feed-empty' ) ),
+               $this->mTitle->getFullUrl(),
+               wfTimestamp( TS_MW ),
                        '',
-                       $this->mTitle->getTalkPage()->getFullUrl() );
+               $this->mTitle->getTalkPage()->getFullUrl() );
        }
-       
+
        /**
         * Generate a FeedItem object from a given revision table row
         * Borrows Recent Changes' feed generation functions for formatting;
@@ -625,38 +636,106 @@ class PageHistory {
         */
        function feedItem( $row ) {
                $rev = new Revision( $row );
-               $text = rcFormatDiffRow( $this->mTitle,
-                       $this->mTitle->getPreviousRevisionID( $rev->getId() ),
-                       $rev->getId(),
-                       $rev->getTimestamp(),
-                       $rev->getComment() );
-               
+               $rev->setTitle( $this->mTitle );
+               $text = FeedUtils::formatDiffRow( $this->mTitle,
+               $this->mTitle->getPreviousRevisionID( $rev->getId() ),
+               $rev->getId(),
+               $rev->getTimestamp(),
+               $rev->getComment() );
+
                if( $rev->getComment() == '' ) {
                        global $wgContLang;
                        $title = wfMsgForContent( 'history-feed-item-nocomment',
-                               $rev->getUserText(),
-                               $wgContLang->timeanddate( $rev->getTimestamp() ) );
+                       $rev->getUserText(),
+                       $wgContLang->timeanddate( $rev->getTimestamp() ) );
                } else {
                        $title = $rev->getUserText() . ": " . $this->stripComment( $rev->getComment() );
                }
 
                return new FeedItem(
-                       $title,
-                       $text,
-                       $this->mTitle->getFullUrl( 'diff=' . $rev->getId() . '&oldid=prev' ),
-                       $rev->getTimestamp(),
-                       $rev->getUserText(),
-                       $this->mTitle->getTalkPage()->getFullUrl() );
+               $title,
+               $text,
+               $this->mTitle->getFullUrl( 'diff=' . $rev->getId() . '&oldid=prev' ),
+               $rev->getTimestamp(),
+               $rev->getUserText(),
+               $this->mTitle->getTalkPage()->getFullUrl() );
        }
-       
+
        /**
         * Quickie hack... strip out wikilinks to more legible form from the comment.
         */
        function stripComment( $text ) {
                return preg_replace( '/\[\[([^]]*\|)?([^]]+)\]\]/', '\2', $text );
        }
+}
 
 
-}
+/**
+ * @ingroup Pager
+ */
+class PageHistoryPager extends ReverseChronologicalPager {
+       public $mLastRow = false, $mPageHistory;
+
+       function __construct( $pageHistory, $year='', $month='' ) {
+               parent::__construct();
+               $this->mPageHistory = $pageHistory;
+               $this->getDateCond( $year, $month );
+       }
 
-?>
+       function getQueryInfo() {
+               $queryInfo = array(
+                       'tables'  => array('revision'),
+                       'fields'  => Revision::selectFields(),
+                       'conds'   => array('rev_page' => $this->mPageHistory->mTitle->getArticleID() ),
+                       'options' => array( 'USE INDEX' => array('revision' => 'page_timestamp') )
+               );
+               wfRunHooks( 'PageHistoryPager::getQueryInfo', array( &$this, &$queryInfo ) );
+               return $queryInfo;
+       }
+
+       function getIndexField() {
+               return 'rev_timestamp';
+       }
+
+       function formatRow( $row ) {
+               if ( $this->mLastRow ) {
+                       $latest = $this->mCounter == 1 && $this->mIsFirst;
+                       $firstInList = $this->mCounter == 1;
+                       $s = $this->mPageHistory->historyLine( $this->mLastRow, $row, $this->mCounter++,
+                       $this->mPageHistory->getNotificationTimestamp(), $latest, $firstInList );
+               } else {
+                       $s = '';
+               }
+               $this->mLastRow = $row;
+               return $s;
+       }
+
+       function getStartBody() {
+               $this->mLastRow = false;
+               $this->mCounter = 1;
+               return '';
+       }
+
+       function getEndBody() {
+               if ( $this->mLastRow ) {
+                       $latest = $this->mCounter == 1 && $this->mIsFirst;
+                       $firstInList = $this->mCounter == 1;
+                       if ( $this->mIsBackwards ) {
+                               # Next row is unknown, but for UI reasons, probably exists if an offset has been specified
+                               if ( $this->mOffset == '' ) {
+                                       $next = null;
+                               } else {
+                                       $next = 'unknown';
+                               }
+                       } else {
+                               # The next row is the past-the-end row
+                               $next = $this->mPastTheEndRow;
+                       }
+                       $s = $this->mPageHistory->historyLine( $this->mLastRow, $next, $this->mCounter++,
+                       $this->mPageHistory->getNotificationTimestamp(), $latest, $firstInList );
+               } else {
+                       $s = '';
+               }
+               return $s;
+       }
+}