X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FPageHistory.php;h=05f0b9d3003f36a30a46a8d25e07849397782d59;hb=f289929d785e3cafc1b6befbd306b1012a9dff8b;hp=cc0fdf4e8095c935d6e3cc2ff62eaa6c769779a1;hpb=151701a2a92ee8ffc39f7f7ac1f2b13651ca44e5;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/PageHistory.php b/includes/PageHistory.php index cc0fdf4e80..05f0b9d300 100644 --- a/includes/PageHistory.php +++ b/includes/PageHistory.php @@ -10,9 +10,12 @@ * @todo document * @package MediaWiki */ + +include_once ( "SpecialValidate.php" ) ; + class PageHistory { var $mArticle, $mTitle, $mSkin; - var $lastline, $lastdate; + var $lastdate; var $linesonpage; function PageHistory( $article ) { $this->mArticle =& $article; @@ -22,7 +25,8 @@ class PageHistory { # This shares a lot of issues (and code) with Recent Changes function history() { - global $wgUser, $wgOut, $wgLang, $wgShowUpdatedMarker; + global $wgUser, $wgOut, $wgLang, $wgShowUpdatedMarker, $wgRequest, + $wgTitle, $wgUseValidation ; # If page hasn't changed, client can cache this @@ -46,7 +50,10 @@ class PageHistory { return; } - list( $limit, $offset ) = wfCheckLimits(); + $limit = $wgRequest->getInt('limit'); + if (!$limit) $limit = 50; + $offset = $wgRequest->getText('offset'); + if (!isset($offset) || !preg_match("/^[0-9]+$/", $offset)) $offset = 0; /* Check one extra row to see whether we need to show 'next' and diff links */ $limitplus = $limit + 1; @@ -65,11 +72,28 @@ class PageHistory { $use_index = $db->useIndexClause( 'page_timestamp' ); $revision = $db->tableName( 'revision' ); + $limits = $offsets = ""; + $dir = 0; + if ($wgRequest->getText("dir") == "prev") + $dir = 1; + + list($dirs, $oper) = array("DESC", "<"); + if ($dir) { + list($dirs, $oper) = array("ASC", ">"); + } + + if ($offset) + $offsets .= " AND rev_timestamp $oper '$offset' "; + if ($limit) + $limits .= " LIMIT $limitplus "; + $sql = "SELECT rev_id,rev_user," . - "rev_comment,rev_user_text,rev_timestamp,rev_minor_edit ". + "rev_comment,rev_user_text,rev_timestamp,rev_minor_edit,rev_deleted ". "FROM $revision $use_index " . "WHERE rev_page=$id " . - "ORDER BY inverse_timestamp ".$db->limitResult($limitplus,$offset); + $offsets . + "ORDER BY rev_timestamp $dirs " . + $limits; $res = $db->query( $sql, $fname ); $revs = $db->numRows( $res ); @@ -82,60 +106,88 @@ class PageHistory { $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" />'; + + $pages = array(); + $lowts = 0; + while ($line = $db->fetchObject($res)) { + $pages[] = $line; } + if ($dir) $pages = array_reverse($pages); + if (count($pages) > 1) + $lowts = $pages[count($pages) - 2]->rev_timestamp; + else + $lowts = $pages[count($pages) - 1]->rev_timestamp; + + + $prevurl = $wgTitle->escapeLocalURL("action=history&dir=prev&offset={$offset}&limit={$limit}"); + $nexturl = $wgTitle->escapeLocalURL("action=history&offset={$lowts}&limit={$limit}"); + $urls = array(); + foreach (array(20, 50, 100, 250, 500) as $num) { + $urls[] = "escapeLocalURL( + "action=history&offset={$offset}&limit={$num}")."\">".$wgLang->formatNum($num).""; + } + $bits = implode($urls, ' | '); + $numbar = wfMsg("viewprevnext", + "".wfMsg("prevn", $limit)."", + "".wfMsg("nextn", $limit)."", + $bits); + + $s = $numbar; $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) - ); + foreach($pages as $i => $line) { + $first = ($counter == 1 && $offset == 0); + $next = isset( $pages[$i + 1] ) ? $pages[$i + 1 ] : null; + $s .= $this->historyLine( $line, $next, $counter, $notificationtimestamp, $first ); $counter++; } $s .= $this->endHistoryList( !$atend ); $s .= $numbar; + + # Validation line + if ( isset ( $wgUseValidation ) && $wgUseValidation ) { + $s .= "

" . Validation::link2statistics ( $this->mArticle ) . "

" ; + } + $wgOut->addHTML( $s ); wfProfileOut( $fname ); } function beginHistoryList() { global $wgTitle; - $this->lastdate = $this->lastline = ''; + $this->lastdate = ''; $s = '

' . wfMsg( 'histlegend' ) . '

'; $s .= '
'; $prefixedkey = htmlspecialchars($wgTitle->getPrefixedDbKey()); $s .= "\n"; - $s .= !empty($this->submitbuttonhtml1) ? $this->submitbuttonhtml1."\n":''; + $s .= $this->submitButton(); $s .= ''; - $s .= !empty($this->submitbuttonhtml2) ? $this->submitbuttonhtml2 : ''; + $s = ''; + $s .= $this->submitButton( array( 'id' => 'historysubmit' ) ); $s .= '
'; return $s; } + + 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' ), + ) ) ) + : ''; + } - function historyLine( $ts, $u, $ut, $ns, $ttl, $oid, $c, $isminor, $counter = '', $notificationtimestamp = false, $latest = false ) { + function historyLine( $row, $next, $counter = '', $notificationtimestamp = false, $latest = false ) { global $wgLang, $wgContLang; static $message; @@ -145,68 +197,130 @@ class PageHistory { } } - 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 ); + $link = $this->revLink( $row ); - if ( 0 == $u ) { + if ( 0 == $row->rev_user ) { $contribsPage =& Title::makeTitle( NS_SPECIAL, 'Contributions' ); $ul = $this->mSkin->makeKnownLinkObj( $contribsPage, - htmlspecialchars( $ut ), 'target=' . urlencode( $ut ) ); + htmlspecialchars( $row->rev_user_text ), + 'target=' . urlencode( $row->rev_user_text ) ); } else { - $userPage =& Title::makeTitle( NS_USER, $ut ); - $ul = $this->mSkin->makeLinkObj( $userPage , htmlspecialchars( $ut ) ); + $userPage =& Title::makeTitle( NS_USER, $row->rev_user_text ); + $ul = $this->mSkin->makeLinkObj( $userPage , htmlspecialchars( $row->rev_user_text ) ); } $s = '
  • '; - if ( $oid && !$latest ) { - $curlink = $this->mSkin->makeKnownLinkObj( $this->mTitle, $message['cur'], - 'diff=0&oldid='.$oid ); - } else { - $curlink = $message['cur']; + if( $row->rev_deleted ) { + $s .= ''; } - $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 .= ''; + $curlink = $this->curLink( $row, $latest ); + $lastlink = $this->lastLink( $row, $next, $counter ); + $arbitrary = $this->diffButtons( $row, $latest, $counter ); + $s .= "({$curlink}) ({$lastlink}) $arbitrary {$link} {$ul}"; + + if( $row->rev_minor_edit ) { + $s .= ' ' . wfElement( 'span', array( 'class' => 'minor' ), $message['minoreditletter'] ); } - $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 .= $this->mSkin->commentBlock( $row->rev_comment, $this->mTitle ); + if ($notificationtimestamp && ($row->rev_timestamp >= $notificationtimestamp)) { $s .= wfMsg( 'updatedmarker' ); } + if( $row->rev_deleted ) { + $s .= " " . htmlspecialchars( wfMsg( 'deletedrev' ) ); + } $s .= '
  • '; - $this->lastline = $s; - return $ret; + return $s; } + function revLink( $row ) { + global $wgUser, $wgLang; + $date = $wgLang->timeanddate( $row->rev_timestamp, true ); + if( $row->rev_deleted && !$wgUser->isAllowed( 'undelete' ) ) { + return $date; + } else { + return $this->mSkin->makeKnownLinkObj( + $this->mTitle, + $date, + 'oldid='.$row->rev_id ); + } + } + + function curLink( $row, $latest ) { + global $wgUser; + $cur = htmlspecialchars( wfMsg( 'cur' ) ); + if( $latest + || ( $row->rev_deleted && !$wgUser->isAllowed( 'undelete' ) ) ) { + return $cur; + } else { + return $this->mSkin->makeKnownLinkObj( + $this->mTitle, + $cur, + 'diff=0&oldid=' . $row->rev_id ); + } + } + + function lastLink( $row, $next, $counter ) { + global $wgUser; + $last = htmlspecialchars( wfMsg( 'last' ) ); + if( is_null( $next ) + || ( $row->rev_deleted && !$wgUser->isAllowed( 'undelete' ) ) ) { + return $last; + } else { + return $this->mSkin->makeKnownLinkObj( + $this->mTitle, + $last, + "diff={$row->rev_id}&oldid={$next->rev_id}", + '', + '', + ' tabindex="'.$counter.'"' ); + } + } + + function diffButtons( $row, $latest, $counter ) { + global $wgUser; + if( $this->linesonpage > 1) { + $radio = array( + 'type' => 'radio', + 'value' => $row->rev_id, + 'title' => wfMsg( 'selectolderversionfordiff' ) + ); + if( $row->rev_deleted && !$wgUser->isAllowed( 'undelete' ) ) { + $radio['disabled'] = 'disabled'; + } + + # XXX: move title texts to javascript + if ( $latest ) { + $first = wfElement( 'input', array_merge( + $radio, + array( + 'style' => 'visibility:hidden', + 'name' => 'oldid' ) ) ); + $checkmark = array( 'checked' => 'checked' ); + } else { + if( $counter == 2 ) { + $checkmark = array( 'checked' => 'checked' ); + } else { + $checkmark = array(); + } + $first = wfElement( 'input', array_merge( + $radio, + $checkmark, + array( 'name' => 'oldid' ) ) ); + $checkmark = array(); + } + $second = wfElement( 'input', array_merge( + $radio, + $checkmark, + array( 'name' => 'diff' ) ) ); + return $first . $second; + } else { + return ''; + } + } + } ?>