mArticle =& $article; $this->mTitle =& $article->mTitle; } # This shares a lot of issues (and code) with Recent Changes function history() { global $wgUser, $wgOut, $wgLang, $wgShowUpdatedMarker; # If page hasn't changed, client can cache this if( $wgOut->checkLastModified( $this->mArticle->getTimestamp() ) ){ # Client cache fresh and headers sent, nothing more to do. return; } $fname = 'PageHistory::history'; wfProfileIn( $fname ); $wgOut->setPageTitle( $this->mTitle->getPRefixedText() ); $wgOut->setSubtitle( wfMsg( 'revhistory' ) ); $wgOut->setArticleFlag( false ); $wgOut->setArticleRelated( true ); $wgOut->setRobotpolicy( 'noindex,nofollow' ); $id = $this->mTitle->getArticleID(); if( $id == 0 ) { $wgOut->addHTML( wfMsg( 'nohistory' ) ); wfProfileOut( $fname ); return; } list( $limit, $offset ) = wfCheckLimits(); /* Check one extra row to see whether we need to show 'next' and diff links */ $limitplus = $limit + 1; $namespace = $this->mTitle->getNamespace(); $title = $this->mTitle->getText(); $uid = $wgUser->getID(); $db =& wfGetDB( DB_SLAVE ); if ($wgShowUpdatedMarker && $wgUser->getOption( 'showupdated' )) { $dbr =& wfGetDB( DB_MASTER ); $row = $dbr->selectRow( 'watchlist', array( 'wl_notificationtimestamp' ), array( 'wl_namespace' => $namespace, 'wl_title' => $this->mTitle->getDBkey(), 'wl_user' => $wgUser->getID() ), $fname ); $notificationtimestamp = $row->wl_notificationtimestamp; } else $notificationtimestamp = false ; $db =& wfGetDB( DB_SLAVE ); $use_index = $db->useIndexClause( 'page_timestamp' ); $revision = $db->tableName( 'revision' ); $sql = "SELECT rev_id,rev_user," . "rev_comment,rev_user_text,rev_timestamp,rev_minor_edit ". "FROM $revision $use_index " . "WHERE rev_page=$id " . "ORDER BY inverse_timestamp ".$db->limitResult($limitplus,$offset); $res = $db->query( $sql, $fname ); $revs = $db->numRows( $res ); if( $revs < $limitplus ) // the sql above tries to fetch one extra $this->linesonpage = $revs; else $this->linesonpage = $revs - 1; $atend = ($revs < $limitplus); $this->mSkin = $wgUser->getSkin(); $numbar = wfViewPrevNext( $offset, $limit, $this->mTitle->getPrefixedText(), 'action=history', $atend ); $s = $numbar; if($this->linesonpage > 0) { $submitpart1 = 'submitbuttonhtml1 = $submitpart1 . ' />'; $this->submitbuttonhtml2 = $submitpart1 . ' id="historysubmit" />'; } $s .= $this->beginHistoryList(); $counter = 1; while ( $line = $db->fetchObject( $res ) ) { $s .= $this->historyLine( $line->rev_timestamp, $line->rev_user, $line->rev_user_text, $namespace, $title, $line->rev_id, $line->rev_comment, ( $line->rev_minor_edit > 0 ), $counter, $notificationtimestamp, ($counter == 1 && $offset == 0) ); $counter++; } $s .= $this->endHistoryList( !$atend ); $s .= $numbar; $wgOut->addHTML( $s ); wfProfileOut( $fname ); } function beginHistoryList() { global $wgTitle; $this->lastdate = $this->lastline = ''; $s = '

' . wfMsg( 'histlegend' ) . '

'; $s .= '
'; $prefixedkey = htmlspecialchars($wgTitle->getPrefixedDbKey()); $s .= "\n"; $s .= !empty($this->submitbuttonhtml1) ? $this->submitbuttonhtml1."\n":''; $s .= ''; $s .= !empty($this->submitbuttonhtml2) ? $this->submitbuttonhtml2 : ''; $s .= '
'; return $s; } function historyLine( $ts, $u, $ut, $ns, $ttl, $oid, $c, $isminor, $counter = '', $notificationtimestamp = false, $latest = false ) { global $wgLang, $wgContLang; static $message; if( !isset( $message ) ) { foreach( explode( ' ', 'cur last selectolderversionfordiff selectnewerversionfordiff minoreditletter' ) as $msg ) { $message[$msg] = wfMsg( $msg ); } } if ( $oid && $this->lastline ) { $ret = preg_replace( "/!OLDID!([0-9]+)!/", $this->mSkin->makeKnownLinkObj( $this->mTitle, $message['last'], "diff=\\1&oldid={$oid}",'' ,'' ,' tabindex="'.$counter.'"' ), $this->lastline ); } else { $ret = ''; } $dt = $wgLang->timeanddate( $ts, true ); if ( $oid ) { $q = 'oldid='.$oid; } else { $q = ''; } $link = $this->mSkin->makeKnownLinkObj( $this->mTitle, $dt, $q ); if ( 0 == $u ) { $contribsPage =& Title::makeTitle( NS_SPECIAL, 'Contributions' ); $ul = $this->mSkin->makeKnownLinkObj( $contribsPage, htmlspecialchars( $ut ), 'target=' . urlencode( $ut ) ); } else { $userPage =& Title::makeTitle( NS_USER, $ut ); $ul = $this->mSkin->makeLinkObj( $userPage , htmlspecialchars( $ut ) ); } $s = '
  • '; if ( $oid && !$latest ) { $curlink = $this->mSkin->makeKnownLinkObj( $this->mTitle, $message['cur'], 'diff=0&oldid='.$oid ); } else { $curlink = $message['cur']; } $arbitrary = ''; if( $this->linesonpage > 1) { # XXX: move title texts to javascript $checkmark = ''; if ( !$oid || $latest ) { $arbitrary = ''; $checkmark = ' checked="checked"'; } else { if( $counter == 2 ) $checkmark = ' checked="checked"'; $arbitrary = ''; $checkmark = ''; } $arbitrary .= ''; } $s .= "({$curlink}) (!OLDID!{$oid}!) $arbitrary {$link} {$ul}"; $s .= $isminor ? ' '.$message['minoreditletter'].'': '' ; if ( '' != $c && '*' != $c ) { $c = $this->mSkin->formatcomment( $c, $this->mTitle ); $s .= " ($c)"; } if ($notificationtimestamp && ($ts >= $notificationtimestamp)) { $s .= wfMsg( 'updatedmarker' ); } $s .= '
  • '; $this->lastline = $s; return $ret; } } ?>