Remove various unused parameters
[lhc/web/wiklou.git] / includes / HistoryPage.php
1 <?php
2 /**
3 * Page history
4 *
5 * Split off from Article.php and Skin.php, 2003-12-22
6 * @file
7 */
8
9 /**
10 * This class handles printing the history page for an article. In order to
11 * be efficient, it uses timestamps rather than offsets for paging, to avoid
12 * costly LIMIT,offset queries.
13 *
14 * Construct it by passing in an Article, and call $h->history() to print the
15 * history.
16 *
17 */
18 class HistoryPage {
19 const DIR_PREV = 0;
20 const DIR_NEXT = 1;
21
22 var $article, $title, $skin;
23
24 /**
25 * Construct a new HistoryPage.
26 *
27 * @param $article Article
28 */
29 function __construct( $article ) {
30 global $wgUser;
31 $this->article = $article;
32 $this->title = $article->getTitle();
33 $this->skin = $wgUser->getSkin();
34 $this->preCacheMessages();
35 }
36
37 function getArticle() {
38 return $this->article;
39 }
40
41 function getTitle() {
42 return $this->title;
43 }
44
45 /**
46 * As we use the same small set of messages in various methods and that
47 * they are called often, we call them once and save them in $this->message
48 */
49 function preCacheMessages() {
50 // Precache various messages
51 if( !isset( $this->message ) ) {
52 $msgs = array( 'cur', 'last', 'pipe-separator' );
53 foreach( $msgs as $msg ) {
54 $this->message[$msg] = wfMsgExt( $msg, array( 'escapenoentities') );
55 }
56 }
57 }
58
59 /**
60 * Print the history page for an article.
61 * @return nothing
62 */
63 function history() {
64 global $wgOut, $wgRequest, $wgScript;
65
66 /*
67 * Allow client caching.
68 */
69 if( $wgOut->checkLastModified( $this->article->getTouched() ) )
70 return; // Client cache fresh and headers sent, nothing more to do.
71
72 wfProfileIn( __METHOD__ );
73
74 /*
75 * Setup page variables.
76 */
77 $wgOut->setPageTitle( wfMsg( 'history-title', $this->title->getPrefixedText() ) );
78 $wgOut->setPageTitleActionText( wfMsg( 'history_short' ) );
79 $wgOut->setArticleFlag( false );
80 $wgOut->setArticleRelated( true );
81 $wgOut->setRobotPolicy( 'noindex,nofollow' );
82 $wgOut->setSyndicated( true );
83 $wgOut->setFeedAppendQuery( 'action=history' );
84 $wgOut->addScriptFile( 'history.js' );
85
86 $logPage = SpecialPage::getTitleFor( 'Log' );
87 $logLink = $this->skin->link(
88 $logPage,
89 wfMsgHtml( 'viewpagelogs' ),
90 array(),
91 array( 'page' => $this->title->getPrefixedText() ),
92 array( 'known', 'noclasses' )
93 );
94 $wgOut->setSubtitle( $logLink );
95
96 $feedType = $wgRequest->getVal( 'feed' );
97 if( $feedType ) {
98 wfProfileOut( __METHOD__ );
99 return $this->feed( $feedType );
100 }
101
102 /*
103 * Fail if article doesn't exist.
104 */
105 if( !$this->title->exists() ) {
106 $wgOut->addWikiMsg( 'nohistory' );
107 # show deletion/move log if there is an entry
108 LogEventsList::showLogExtract(
109 $wgOut,
110 array( 'delete', 'move' ),
111 $this->title->getPrefixedText(),
112 '',
113 array( 'lim' => 10,
114 'conds' => array( "log_action != 'revision'" ),
115 'showIfEmpty' => false,
116 'msgKey' => array( 'moveddeleted-notice' )
117 )
118 );
119 wfProfileOut( __METHOD__ );
120 return;
121 }
122
123 /**
124 * Add date selector to quickly get to a certain time
125 */
126 $year = $wgRequest->getInt( 'year' );
127 $month = $wgRequest->getInt( 'month' );
128 $tagFilter = $wgRequest->getVal( 'tagfilter' );
129 $tagSelector = ChangeTags::buildTagFilterSelector( $tagFilter );
130 /**
131 * Option to show only revisions that have been (partially) hidden via RevisionDelete
132 */
133 if ( $wgRequest->getBool( 'deleted' ) ) {
134 $conds = array("rev_deleted != '0'");
135 } else {
136 $conds = array();
137 }
138 $checkDeleted = Xml::checkLabel( wfMsg( 'history-show-deleted' ),
139 'deleted', 'mw-show-deleted-only', $wgRequest->getBool( 'deleted' ) ) . "\n";
140
141 $action = htmlspecialchars( $wgScript );
142 $wgOut->addHTML(
143 "<form action=\"$action\" method=\"get\" id=\"mw-history-searchform\">" .
144 Xml::fieldset(
145 wfMsg( 'history-fieldset-title' ),
146 false,
147 array( 'id' => 'mw-history-search' )
148 ) .
149 Xml::hidden( 'title', $this->title->getPrefixedDBKey() ) . "\n" .
150 Xml::hidden( 'action', 'history' ) . "\n" .
151 Xml::dateMenu( $year, $month ) . '&#160;' .
152 ( $tagSelector ? ( implode( '&#160;', $tagSelector ) . '&#160;' ) : '' ) .
153 $checkDeleted .
154 Xml::submitButton( wfMsg( 'allpagessubmit' ) ) . "\n" .
155 '</fieldset></form>'
156 );
157
158 wfRunHooks( 'PageHistoryBeforeList', array( &$this->article ) );
159
160 /**
161 * Do the list
162 */
163 $pager = new HistoryPager( $this, $year, $month, $tagFilter, $conds );
164 $wgOut->addHTML(
165 $pager->getNavigationBar() .
166 $pager->getBody() .
167 $pager->getNavigationBar()
168 );
169
170 wfProfileOut( __METHOD__ );
171 }
172
173 /**
174 * Fetch an array of revisions, specified by a given limit, offset and
175 * direction. This is now only used by the feeds. It was previously
176 * used by the main UI but that's now handled by the pager.
177 *
178 * @param $limit Integer: the limit number of revisions to get
179 * @param $offset Integer
180 * @param $direction Integer: either HistoryPage::DIR_PREV or HistoryPage::DIR_NEXT
181 * @return ResultWrapper
182 */
183 function fetchRevisions( $limit, $offset, $direction ) {
184 $dbr = wfGetDB( DB_SLAVE );
185
186 if( $direction == HistoryPage::DIR_PREV )
187 list($dirs, $oper) = array("ASC", ">=");
188 else /* $direction == HistoryPage::DIR_NEXT */
189 list($dirs, $oper) = array("DESC", "<=");
190
191 if( $offset )
192 $offsets = array("rev_timestamp $oper '$offset'");
193 else
194 $offsets = array();
195
196 $page_id = $this->title->getArticleID();
197
198 return $dbr->select( 'revision',
199 Revision::selectFields(),
200 array_merge(array("rev_page=$page_id"), $offsets),
201 __METHOD__,
202 array( 'ORDER BY' => "rev_timestamp $dirs",
203 'USE INDEX' => 'page_timestamp', 'LIMIT' => $limit)
204 );
205 }
206
207 /**
208 * Output a subscription feed listing recent edits to this page.
209 *
210 * @param $type String: feed type
211 */
212 function feed( $type ) {
213 global $wgFeedClasses, $wgRequest, $wgFeedLimit;
214 if( !FeedUtils::checkFeedOutput($type) ) {
215 return;
216 }
217
218 $feed = new $wgFeedClasses[$type](
219 $this->title->getPrefixedText() . ' - ' .
220 wfMsgForContent( 'history-feed-title' ),
221 wfMsgForContent( 'history-feed-description' ),
222 $this->title->getFullUrl( 'action=history' )
223 );
224
225 // Get a limit on number of feed entries. Provide a sane default
226 // of 10 if none is defined (but limit to $wgFeedLimit max)
227 $limit = $wgRequest->getInt( 'limit', 10 );
228 if( $limit > $wgFeedLimit || $limit < 1 ) {
229 $limit = 10;
230 }
231 $items = $this->fetchRevisions($limit, 0, HistoryPage::DIR_NEXT);
232
233 $feed->outHeader();
234 if( $items ) {
235 foreach( $items as $row ) {
236 $feed->outItem( $this->feedItem( $row ) );
237 }
238 } else {
239 $feed->outItem( $this->feedEmpty() );
240 }
241 $feed->outFooter();
242 }
243
244 function feedEmpty() {
245 global $wgOut;
246 return new FeedItem(
247 wfMsgForContent( 'nohistory' ),
248 $wgOut->parse( wfMsgForContent( 'history-feed-empty' ) ),
249 $this->title->getFullUrl(),
250 wfTimestamp( TS_MW ),
251 '',
252 $this->title->getTalkPage()->getFullUrl()
253 );
254 }
255
256 /**
257 * Generate a FeedItem object from a given revision table row
258 * Borrows Recent Changes' feed generation functions for formatting;
259 * includes a diff to the previous revision (if any).
260 *
261 * @param $row Object: database row
262 * @return FeedItem
263 */
264 function feedItem( $row ) {
265 $rev = new Revision( $row );
266 $rev->setTitle( $this->title );
267 $text = FeedUtils::formatDiffRow(
268 $this->title,
269 $this->title->getPreviousRevisionID( $rev->getId() ),
270 $rev->getId(),
271 $rev->getTimestamp(),
272 $rev->getComment()
273 );
274 if( $rev->getComment() == '' ) {
275 global $wgContLang;
276 $title = wfMsgForContent( 'history-feed-item-nocomment',
277 $rev->getUserText(),
278 $wgContLang->timeanddate( $rev->getTimestamp() ),
279 $wgContLang->date( $rev->getTimestamp() ),
280 $wgContLang->time( $rev->getTimestamp() )
281 );
282 } else {
283 $title = $rev->getUserText() .
284 wfMsgForContent( 'colon-separator' ) .
285 FeedItem::stripComment( $rev->getComment() );
286 }
287 return new FeedItem(
288 $title,
289 $text,
290 $this->title->getFullUrl( 'diff=' . $rev->getId() . '&oldid=prev' ),
291 $rev->getTimestamp(),
292 $rev->getUserText(),
293 $this->title->getTalkPage()->getFullUrl()
294 );
295 }
296 }
297
298 /**
299 * @ingroup Pager
300 */
301 class HistoryPager extends ReverseChronologicalPager {
302 public $lastRow = false, $counter, $historyPage, $title, $buttons, $conds;
303 protected $oldIdChecked;
304
305 function __construct( $historyPage, $year='', $month='', $tagFilter = '', $conds = array() ) {
306 parent::__construct();
307 $this->historyPage = $historyPage;
308 $this->title = $this->historyPage->title;
309 $this->tagFilter = $tagFilter;
310 $this->getDateCond( $year, $month );
311 $this->conds = $conds;
312 }
313
314 // For hook compatibility...
315 function getArticle() {
316 return $this->historyPage->getArticle();
317 }
318
319 function getSqlComment() {
320 if ( $this->conds ) {
321 return 'history page filtered'; // potentially slow, see CR r58153
322 } else {
323 return 'history page unfiltered';
324 }
325 }
326
327 function getQueryInfo() {
328 $queryInfo = array(
329 'tables' => array('revision'),
330 'fields' => Revision::selectFields(),
331 'conds' => array_merge(
332 array( 'rev_page' => $this->historyPage->title->getArticleID() ),
333 $this->conds ),
334 'options' => array( 'USE INDEX' => array('revision' => 'page_timestamp') ),
335 'join_conds' => array( 'tag_summary' => array( 'LEFT JOIN', 'ts_rev_id=rev_id' ) ),
336 );
337 ChangeTags::modifyDisplayQuery(
338 $queryInfo['tables'],
339 $queryInfo['fields'],
340 $queryInfo['conds'],
341 $queryInfo['join_conds'],
342 $queryInfo['options'],
343 $this->tagFilter
344 );
345 wfRunHooks( 'PageHistoryPager::getQueryInfo', array( &$this, &$queryInfo ) );
346 return $queryInfo;
347 }
348
349 function getIndexField() {
350 return 'rev_timestamp';
351 }
352
353 function formatRow( $row ) {
354 if( $this->lastRow ) {
355 $latest = ($this->counter == 1 && $this->mIsFirst);
356 $firstInList = $this->counter == 1;
357 $s = $this->historyLine( $this->lastRow, $row, $this->counter++,
358 $this->title->getNotificationTimestamp(), $latest, $firstInList );
359 } else {
360 $s = '';
361 }
362 $this->lastRow = $row;
363 return $s;
364 }
365
366 /**
367 * Creates begin of history list with a submit button
368 *
369 * @return string HTML output
370 */
371 function getStartBody() {
372 global $wgScript, $wgUser, $wgOut, $wgContLang;
373 $this->lastRow = false;
374 $this->counter = 1;
375 $this->oldIdChecked = 0;
376
377 $wgOut->wrapWikiMsg( "<div class='mw-history-legend'>\n$1\n</div>", 'histlegend' );
378 $s = Html::openElement( 'form', array( 'action' => $wgScript,
379 'id' => 'mw-history-compare' ) ) . "\n";
380 $s .= Html::hidden( 'title', $this->title->getPrefixedDbKey() ) . "\n";
381 $s .= Html::hidden( 'action', 'historysubmit' ) . "\n";
382
383 $this->buttons = '<div>';
384 $this->buttons .= $this->submitButton( wfMsg( 'compareselectedversions'),
385 array( 'class' => 'historysubmit' )
386 + $wgUser->getSkin()->tooltipAndAccessKeyAttribs( 'compareselectedversions' )
387 ) . "\n";
388 if( $wgUser->isAllowed('deleterevision') ) {
389 $float = $wgContLang->alignEnd();
390 # Note bug #20966, <button> is non-standard in IE<8
391 $this->buttons .= Html::element( 'button',
392 array(
393 'type' => 'submit',
394 'name' => 'revisiondelete',
395 'value' => '1',
396 'style' => "float: $float;",
397 'class' => 'mw-history-revisiondelete-button',
398 ),
399 wfMsg( 'showhideselectedversions' )
400 ) . "\n";
401 }
402 if( $wgUser->isAllowed( 'revisionmove' ) ) {
403 $float = $wgContLang->alignEnd();
404 # Note bug #20966, <button> is non-standard in IE<8
405 $this->buttons .= Html::element( 'button',
406 array(
407 'type' => 'submit',
408 'name' => 'revisionmove',
409 'value' => '1',
410 'style' => "float: $float;",
411 'class' => 'mw-history-revisionmove-button',
412 ),
413 wfMsg( 'revisionmoveselectedversions' )
414 ) . "\n";
415 }
416 $this->buttons .= '</div>';
417 $s .= $this->buttons . '<ul id="pagehistory">' . "\n";
418 return $s;
419 }
420
421 function getEndBody() {
422 if( $this->lastRow ) {
423 $latest = $this->counter == 1 && $this->mIsFirst;
424 $firstInList = $this->counter == 1;
425 if( $this->mIsBackwards ) {
426 # Next row is unknown, but for UI reasons, probably exists if an offset has been specified
427 if( $this->mOffset == '' ) {
428 $next = null;
429 } else {
430 $next = 'unknown';
431 }
432 } else {
433 # The next row is the past-the-end row
434 $next = $this->mPastTheEndRow;
435 }
436 $s = $this->historyLine( $this->lastRow, $next, $this->counter++,
437 $this->title->getNotificationTimestamp(), $latest, $firstInList );
438 } else {
439 $s = '';
440 }
441 $s .= "</ul>\n";
442 # Add second buttons only if there is more than one rev
443 if( $this->getNumRows() > 2 ) {
444 $s .= $this->buttons;
445 }
446 $s .= '</form>';
447 return $s;
448 }
449
450 /**
451 * Creates a submit button
452 *
453 * @param $message String: text of the submit button, will be escaped
454 * @param $attributes Array: attributes
455 * @return String: HTML output for the submit button
456 */
457 function submitButton( $message, $attributes = array() ) {
458 # Disable submit button if history has 1 revision only
459 if( $this->getNumRows() > 1 ) {
460 return Xml::submitButton( $message , $attributes );
461 } else {
462 return '';
463 }
464 }
465
466 /**
467 * Returns a row from the history printout.
468 *
469 * @todo document some more, and maybe clean up the code (some params redundant?)
470 *
471 * @param $row Object: the database row corresponding to the previous line.
472 * @param $next Mixed: the database row corresponding to the next line.
473 * @param $counter Integer: apparently a counter of what row number we're at, counted from the top row = 1.
474 * @param $notificationtimestamp
475 * @param $latest Boolean: whether this row corresponds to the page's latest revision.
476 * @param $firstInList Boolean: whether this row corresponds to the first displayed on this history page.
477 * @return String: HTML output for the row
478 */
479 function historyLine( $row, $next, $counter = '', $notificationtimestamp = false,
480 $latest = false, $firstInList = false )
481 {
482 global $wgUser, $wgLang;
483 $rev = new Revision( $row );
484 $rev->setTitle( $this->title );
485
486 $curlink = $this->curLink( $rev, $latest );
487 $lastlink = $this->lastLink( $rev, $next, $counter );
488 $diffButtons = $this->diffButtons( $rev, $firstInList, $counter );
489 $histLinks = Html::rawElement(
490 'span',
491 array( 'class' => 'mw-history-histlinks' ),
492 '(' . $curlink . $this->historyPage->message['pipe-separator'] . $lastlink . ') '
493 );
494 $s = $histLinks . $diffButtons;
495
496 $link = $this->revLink( $rev );
497 $classes = array();
498
499 $del = '';
500 // Show checkboxes for each revision
501 if( $wgUser->isAllowed( 'deleterevision' ) || $wgUser->isAllowed( 'revisionmove' ) ) {
502 // If revision was hidden from sysops, disable the checkbox
503 // However, if the user has revisionmove rights, we cannot disable the checkbox
504 if( !$rev->userCan( Revision::DELETED_RESTRICTED ) && !$wgUser->isAllowed( 'revisionmove' ) ) {
505 $del = Xml::check( 'deleterevisions', false, array( 'disabled' => 'disabled' ) );
506 // Otherwise, enable the checkbox...
507 } else {
508 $del = Xml::check( 'showhiderevisions', false,
509 array( 'name' => 'ids['.$rev->getId().']' ) );
510 }
511 // User can only view deleted revisions...
512 } else if( $rev->getVisibility() && $wgUser->isAllowed( 'deletedhistory' ) ) {
513 // If revision was hidden from sysops, disable the link
514 if( !$rev->userCan( Revision::DELETED_RESTRICTED ) ) {
515 $cdel = $this->getSkin()->revDeleteLinkDisabled( false );
516 // Otherwise, show the link...
517 } else {
518 $query = array( 'type' => 'revision',
519 'target' => $this->title->getPrefixedDbkey(), 'ids' => $rev->getId() );
520 $del .= $this->getSkin()->revDeleteLink( $query,
521 $rev->isDeleted( Revision::DELETED_RESTRICTED ), false );
522 }
523 }
524 if( $del ) $s .= " $del ";
525
526 $s .= " $link";
527 $s .= " <span class='history-user'>" .
528 $this->getSkin()->revUserTools( $rev, true ) . "</span>";
529
530 if( $rev->isMinor() ) {
531 $s .= ' ' . ChangesList::flag( 'minor' );
532 }
533
534 if( !is_null( $size = $rev->getSize() ) && !$rev->isDeleted( Revision::DELETED_TEXT ) ) {
535 $s .= ' ' . $this->getSkin()->formatRevisionSize( $size );
536 }
537
538 $s .= $this->getSkin()->revComment( $rev, false, true );
539
540 if( $notificationtimestamp && ($row->rev_timestamp >= $notificationtimestamp) ) {
541 $s .= ' <span class="updatedmarker">' . wfMsgHtml( 'updatedmarker' ) . '</span>';
542 }
543
544 $tools = array();
545
546 # Rollback and undo links
547 if( !is_null( $next ) && is_object( $next ) ) {
548 if( $latest && $this->title->userCan( 'rollback' ) && $this->title->userCan( 'edit' ) ) {
549 $tools[] = '<span class="mw-rollback-link">'.
550 $this->getSkin()->buildRollbackLink( $rev ).'</span>';
551 }
552
553 if( $this->title->quickUserCan( 'edit' )
554 && !$rev->isDeleted( Revision::DELETED_TEXT )
555 && !$next->rev_deleted & Revision::DELETED_TEXT )
556 {
557 # Create undo tooltip for the first (=latest) line only
558 $undoTooltip = $latest
559 ? array( 'title' => wfMsg( 'tooltip-undo' ) )
560 : array();
561 $undolink = $this->getSkin()->link(
562 $this->title,
563 wfMsgHtml( 'editundo' ),
564 $undoTooltip,
565 array(
566 'action' => 'edit',
567 'undoafter' => $next->rev_id,
568 'undo' => $rev->getId()
569 ),
570 array( 'known', 'noclasses' )
571 );
572 $tools[] = "<span class=\"mw-history-undo\">{$undolink}</span>";
573 }
574 }
575
576 if( $tools ) {
577 $s .= ' (' . $wgLang->pipeList( $tools ) . ')';
578 }
579
580 # Tags
581 list($tagSummary, $newClasses) = ChangeTags::formatSummaryRow( $row->ts_tags, 'history' );
582 $classes = array_merge( $classes, $newClasses );
583 $s .= " $tagSummary";
584
585 wfRunHooks( 'PageHistoryLineEnding', array( $this, &$row , &$s, &$classes ) );
586
587 $attribs = array();
588 if ( $classes ) {
589 $attribs['class'] = implode( ' ', $classes );
590 }
591
592 return Xml::tags( 'li', $attribs, $s ) . "\n";
593 }
594
595 /**
596 * Create a link to view this revision of the page
597 *
598 * @param $rev Revision
599 * @return String
600 */
601 function revLink( $rev ) {
602 global $wgLang;
603 $date = $wgLang->timeanddate( wfTimestamp(TS_MW, $rev->getTimestamp()), true );
604 $date = htmlspecialchars( $date );
605 if ( $rev->userCan( Revision::DELETED_TEXT ) ) {
606 $link = $this->getSkin()->link(
607 $this->title,
608 $date,
609 array(),
610 array( 'oldid' => $rev->getId() ),
611 array( 'known', 'noclasses' )
612 );
613 } else {
614 $link = $date;
615 }
616 if ( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
617 $link = "<span class=\"history-deleted\">$link</span>";
618 }
619 return $link;
620 }
621
622 /**
623 * Create a diff-to-current link for this revision for this page
624 *
625 * @param $rev Revision
626 * @param $latest Boolean: this is the latest revision of the page?
627 * @return String
628 */
629 function curLink( $rev, $latest ) {
630 $cur = $this->historyPage->message['cur'];
631 if( $latest || !$rev->userCan( Revision::DELETED_TEXT ) ) {
632 return $cur;
633 } else {
634 return $this->getSkin()->link(
635 $this->title,
636 $cur,
637 array(),
638 array(
639 'diff' => $this->title->getLatestRevID(),
640 'oldid' => $rev->getId()
641 ),
642 array( 'known', 'noclasses' )
643 );
644 }
645 }
646
647 /**
648 * Create a diff-to-previous link for this revision for this page.
649 *
650 * @param $prevRev Revision: the previous revision
651 * @param $next Mixed: the newer revision
652 * @param $counter Integer: what row on the history list this is
653 * @return String
654 */
655 function lastLink( $prevRev, $next, $counter ) {
656 $last = $this->historyPage->message['last'];
657 # $next may either be a Row, null, or "unkown"
658 $nextRev = is_object($next) ? new Revision( $next ) : $next;
659 if( is_null($next) ) {
660 # Probably no next row
661 return $last;
662 } elseif( $next === 'unknown' ) {
663 # Next row probably exists but is unknown, use an oldid=prev link
664 return $this->getSkin()->link(
665 $this->title,
666 $last,
667 array(),
668 array(
669 'diff' => $prevRev->getId(),
670 'oldid' => 'prev'
671 ),
672 array( 'known', 'noclasses' )
673 );
674 } elseif( !$prevRev->userCan(Revision::DELETED_TEXT)
675 || !$nextRev->userCan(Revision::DELETED_TEXT) )
676 {
677 return $last;
678 } else {
679 return $this->getSkin()->link(
680 $this->title,
681 $last,
682 array(),
683 array(
684 'diff' => $prevRev->getId(),
685 'oldid' => $next->rev_id
686 ),
687 array( 'known', 'noclasses' )
688 );
689 }
690 }
691
692 /**
693 * Create radio buttons for page history
694 *
695 * @param $rev Revision object
696 * @param $firstInList Boolean: is this version the first one?
697 * @param $counter Integer: a counter of what row number we're at, counted from the top row = 1.
698 * @return String: HTML output for the radio buttons
699 */
700 function diffButtons( $rev, $firstInList, $counter ) {
701 if( $this->getNumRows() > 1 ) {
702 $id = $rev->getId();
703 $radio = array( 'type' => 'radio', 'value' => $id );
704 /** @todo: move title texts to javascript */
705 if( $firstInList ) {
706 $first = Xml::element( 'input',
707 array_merge( $radio, array(
708 'style' => 'visibility:hidden',
709 'name' => 'oldid',
710 'id' => 'mw-oldid-null' ) )
711 );
712 $checkmark = array( 'checked' => 'checked' );
713 } else {
714 # Check visibility of old revisions
715 if( !$rev->userCan( Revision::DELETED_TEXT ) ) {
716 $radio['disabled'] = 'disabled';
717 $checkmark = array(); // We will check the next possible one
718 } else if( !$this->oldIdChecked ) {
719 $checkmark = array( 'checked' => 'checked' );
720 $this->oldIdChecked = $id;
721 } else {
722 $checkmark = array();
723 }
724 $first = Xml::element( 'input',
725 array_merge( $radio, $checkmark, array(
726 'name' => 'oldid',
727 'id' => "mw-oldid-$id" ) ) );
728 $checkmark = array();
729 }
730 $second = Xml::element( 'input',
731 array_merge( $radio, $checkmark, array(
732 'name' => 'diff',
733 'id' => "mw-diff-$id" ) ) );
734 return $first . $second;
735 } else {
736 return '';
737 }
738 }
739 }
740
741 /**
742 * Backwards-compatibility aliases
743 */
744 class PageHistory extends HistoryPage {}
745 class PageHistoryPager extends HistoryPager {}