Localisation updates for core and extension messages from translatewiki.net (2010...
[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->addModules( array( 'mediawiki.legacy.history' ) );
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 $s .= '<div>' . $this->submitButton( wfMsg( 'compareselectedversions'),
384 array( 'class' => 'historysubmit' ) ) . "\n";
385
386 $this->buttons = '<div>';
387 $this->buttons .= $this->submitButton( wfMsg( 'compareselectedversions'),
388 array( 'class' => 'historysubmit' )
389 + $wgUser->getSkin()->tooltipAndAccessKeyAttribs( 'compareselectedversions' )
390 ) . "\n";
391
392 if( $wgUser->isAllowed('deleterevision') ) {
393 $float = $wgContLang->alignEnd();
394 # Note bug #20966, <button> is non-standard in IE<8
395 $element = Html::element( 'button',
396 array(
397 'type' => 'submit',
398 'name' => 'revisiondelete',
399 'value' => '1',
400 'style' => "float: $float;",
401 'class' => 'mw-history-revisiondelete-button',
402 ),
403 wfMsg( 'showhideselectedversions' )
404 ) . "\n";
405 $s .= $element;
406 $this->buttons .= $element;
407 }
408 if( $wgUser->isAllowed( 'revisionmove' ) ) {
409 $float = $wgContLang->alignEnd();
410 # Note bug #20966, <button> is non-standard in IE<8
411 $element = Html::element( 'button',
412 array(
413 'type' => 'submit',
414 'name' => 'revisionmove',
415 'value' => '1',
416 'style' => "float: $float;",
417 'class' => 'mw-history-revisionmove-button',
418 ),
419 wfMsg( 'revisionmoveselectedversions' )
420 ) . "\n";
421 $s .= $element;
422 $this->buttons .= $element;
423 }
424 $this->buttons .= '</div>';
425 $s .= '</div><ul id="pagehistory">' . "\n";
426 return $s;
427 }
428
429 function getEndBody() {
430 if( $this->lastRow ) {
431 $latest = $this->counter == 1 && $this->mIsFirst;
432 $firstInList = $this->counter == 1;
433 if( $this->mIsBackwards ) {
434 # Next row is unknown, but for UI reasons, probably exists if an offset has been specified
435 if( $this->mOffset == '' ) {
436 $next = null;
437 } else {
438 $next = 'unknown';
439 }
440 } else {
441 # The next row is the past-the-end row
442 $next = $this->mPastTheEndRow;
443 }
444 $s = $this->historyLine( $this->lastRow, $next, $this->counter++,
445 $this->title->getNotificationTimestamp(), $latest, $firstInList );
446 } else {
447 $s = '';
448 }
449 $s .= "</ul>\n";
450 # Add second buttons only if there is more than one rev
451 if( $this->getNumRows() > 2 ) {
452 $s .= $this->buttons;
453 }
454 $s .= '</form>';
455 return $s;
456 }
457
458 /**
459 * Creates a submit button
460 *
461 * @param $message String: text of the submit button, will be escaped
462 * @param $attributes Array: attributes
463 * @return String: HTML output for the submit button
464 */
465 function submitButton( $message, $attributes = array() ) {
466 # Disable submit button if history has 1 revision only
467 if( $this->getNumRows() > 1 ) {
468 return Xml::submitButton( $message , $attributes );
469 } else {
470 return '';
471 }
472 }
473
474 /**
475 * Returns a row from the history printout.
476 *
477 * @todo document some more, and maybe clean up the code (some params redundant?)
478 *
479 * @param $row Object: the database row corresponding to the previous line.
480 * @param $next Mixed: the database row corresponding to the next line.
481 * @param $counter Integer: apparently a counter of what row number we're at, counted from the top row = 1.
482 * @param $notificationtimestamp
483 * @param $latest Boolean: whether this row corresponds to the page's latest revision.
484 * @param $firstInList Boolean: whether this row corresponds to the first displayed on this history page.
485 * @return String: HTML output for the row
486 */
487 function historyLine( $row, $next, $counter = '', $notificationtimestamp = false,
488 $latest = false, $firstInList = false )
489 {
490 global $wgUser, $wgLang;
491 $rev = new Revision( $row );
492 $rev->setTitle( $this->title );
493
494 $curlink = $this->curLink( $rev, $latest );
495 $lastlink = $this->lastLink( $rev, $next, $counter );
496 $diffButtons = $this->diffButtons( $rev, $firstInList, $counter );
497 $histLinks = Html::rawElement(
498 'span',
499 array( 'class' => 'mw-history-histlinks' ),
500 '(' . $curlink . $this->historyPage->message['pipe-separator'] . $lastlink . ') '
501 );
502 $s = $histLinks . $diffButtons;
503
504 $link = $this->revLink( $rev );
505 $classes = array();
506
507 $del = '';
508 // Show checkboxes for each revision
509 if( $wgUser->isAllowed( 'deleterevision' ) || $wgUser->isAllowed( 'revisionmove' ) ) {
510 // If revision was hidden from sysops, disable the checkbox
511 // However, if the user has revisionmove rights, we cannot disable the checkbox
512 if( !$rev->userCan( Revision::DELETED_RESTRICTED ) && !$wgUser->isAllowed( 'revisionmove' ) ) {
513 $del = Xml::check( 'deleterevisions', false, array( 'disabled' => 'disabled' ) );
514 // Otherwise, enable the checkbox...
515 } else {
516 $del = Xml::check( 'showhiderevisions', false,
517 array( 'name' => 'ids['.$rev->getId().']' ) );
518 }
519 // User can only view deleted revisions...
520 } else if( $rev->getVisibility() && $wgUser->isAllowed( 'deletedhistory' ) ) {
521 // If revision was hidden from sysops, disable the link
522 if( !$rev->userCan( Revision::DELETED_RESTRICTED ) ) {
523 $cdel = $this->getSkin()->revDeleteLinkDisabled( false );
524 // Otherwise, show the link...
525 } else {
526 $query = array( 'type' => 'revision',
527 'target' => $this->title->getPrefixedDbkey(), 'ids' => $rev->getId() );
528 $del .= $this->getSkin()->revDeleteLink( $query,
529 $rev->isDeleted( Revision::DELETED_RESTRICTED ), false );
530 }
531 }
532 if( $del ) $s .= " $del ";
533
534 $s .= " $link";
535 $s .= " <span class='history-user'>" .
536 $this->getSkin()->revUserTools( $rev, true ) . "</span>";
537
538 if( $rev->isMinor() ) {
539 $s .= ' ' . ChangesList::flag( 'minor' );
540 }
541
542 if( !is_null( $size = $rev->getSize() ) && !$rev->isDeleted( Revision::DELETED_TEXT ) ) {
543 $s .= ' ' . $this->getSkin()->formatRevisionSize( $size );
544 }
545
546 $s .= $this->getSkin()->revComment( $rev, false, true );
547
548 if( $notificationtimestamp && ($row->rev_timestamp >= $notificationtimestamp) ) {
549 $s .= ' <span class="updatedmarker">' . wfMsgHtml( 'updatedmarker' ) . '</span>';
550 }
551
552 $tools = array();
553
554 # Rollback and undo links
555 if( !is_null( $next ) && is_object( $next ) ) {
556 if( $latest && $this->title->userCan( 'rollback' ) && $this->title->userCan( 'edit' ) ) {
557 $tools[] = '<span class="mw-rollback-link">'.
558 $this->getSkin()->buildRollbackLink( $rev ).'</span>';
559 }
560
561 if( $this->title->quickUserCan( 'edit' )
562 && !$rev->isDeleted( Revision::DELETED_TEXT )
563 && !$next->rev_deleted & Revision::DELETED_TEXT )
564 {
565 # Create undo tooltip for the first (=latest) line only
566 $undoTooltip = $latest
567 ? array( 'title' => wfMsg( 'tooltip-undo' ) )
568 : array();
569 $undolink = $this->getSkin()->link(
570 $this->title,
571 wfMsgHtml( 'editundo' ),
572 $undoTooltip,
573 array(
574 'action' => 'edit',
575 'undoafter' => $next->rev_id,
576 'undo' => $rev->getId()
577 ),
578 array( 'known', 'noclasses' )
579 );
580 $tools[] = "<span class=\"mw-history-undo\">{$undolink}</span>";
581 }
582 }
583
584 if( $tools ) {
585 $s .= ' (' . $wgLang->pipeList( $tools ) . ')';
586 }
587
588 # Tags
589 list($tagSummary, $newClasses) = ChangeTags::formatSummaryRow( $row->ts_tags, 'history' );
590 $classes = array_merge( $classes, $newClasses );
591 $s .= " $tagSummary";
592
593 wfRunHooks( 'PageHistoryLineEnding', array( $this, &$row , &$s, &$classes ) );
594
595 $attribs = array();
596 if ( $classes ) {
597 $attribs['class'] = implode( ' ', $classes );
598 }
599
600 return Xml::tags( 'li', $attribs, $s ) . "\n";
601 }
602
603 /**
604 * Create a link to view this revision of the page
605 *
606 * @param $rev Revision
607 * @return String
608 */
609 function revLink( $rev ) {
610 global $wgLang;
611 $date = $wgLang->timeanddate( wfTimestamp(TS_MW, $rev->getTimestamp()), true );
612 $date = htmlspecialchars( $date );
613 if ( $rev->userCan( Revision::DELETED_TEXT ) ) {
614 $link = $this->getSkin()->link(
615 $this->title,
616 $date,
617 array(),
618 array( 'oldid' => $rev->getId() ),
619 array( 'known', 'noclasses' )
620 );
621 } else {
622 $link = $date;
623 }
624 if ( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
625 $link = "<span class=\"history-deleted\">$link</span>";
626 }
627 return $link;
628 }
629
630 /**
631 * Create a diff-to-current link for this revision for this page
632 *
633 * @param $rev Revision
634 * @param $latest Boolean: this is the latest revision of the page?
635 * @return String
636 */
637 function curLink( $rev, $latest ) {
638 $cur = $this->historyPage->message['cur'];
639 if( $latest || !$rev->userCan( Revision::DELETED_TEXT ) ) {
640 return $cur;
641 } else {
642 return $this->getSkin()->link(
643 $this->title,
644 $cur,
645 array(),
646 array(
647 'diff' => $this->title->getLatestRevID(),
648 'oldid' => $rev->getId()
649 ),
650 array( 'known', 'noclasses' )
651 );
652 }
653 }
654
655 /**
656 * Create a diff-to-previous link for this revision for this page.
657 *
658 * @param $prevRev Revision: the previous revision
659 * @param $next Mixed: the newer revision
660 * @param $counter Integer: what row on the history list this is
661 * @return String
662 */
663 function lastLink( $prevRev, $next, $counter ) {
664 $last = $this->historyPage->message['last'];
665 # $next may either be a Row, null, or "unkown"
666 $nextRev = is_object($next) ? new Revision( $next ) : $next;
667 if( is_null($next) ) {
668 # Probably no next row
669 return $last;
670 } elseif( $next === 'unknown' ) {
671 # Next row probably exists but is unknown, use an oldid=prev link
672 return $this->getSkin()->link(
673 $this->title,
674 $last,
675 array(),
676 array(
677 'diff' => $prevRev->getId(),
678 'oldid' => 'prev'
679 ),
680 array( 'known', 'noclasses' )
681 );
682 } elseif( !$prevRev->userCan(Revision::DELETED_TEXT)
683 || !$nextRev->userCan(Revision::DELETED_TEXT) )
684 {
685 return $last;
686 } else {
687 return $this->getSkin()->link(
688 $this->title,
689 $last,
690 array(),
691 array(
692 'diff' => $prevRev->getId(),
693 'oldid' => $next->rev_id
694 ),
695 array( 'known', 'noclasses' )
696 );
697 }
698 }
699
700 /**
701 * Create radio buttons for page history
702 *
703 * @param $rev Revision object
704 * @param $firstInList Boolean: is this version the first one?
705 * @param $counter Integer: a counter of what row number we're at, counted from the top row = 1.
706 * @return String: HTML output for the radio buttons
707 */
708 function diffButtons( $rev, $firstInList, $counter ) {
709 if( $this->getNumRows() > 1 ) {
710 $id = $rev->getId();
711 $radio = array( 'type' => 'radio', 'value' => $id );
712 /** @todo: move title texts to javascript */
713 if( $firstInList ) {
714 $first = Xml::element( 'input',
715 array_merge( $radio, array(
716 'style' => 'visibility:hidden',
717 'name' => 'oldid',
718 'id' => 'mw-oldid-null' ) )
719 );
720 $checkmark = array( 'checked' => 'checked' );
721 } else {
722 # Check visibility of old revisions
723 if( !$rev->userCan( Revision::DELETED_TEXT ) ) {
724 $radio['disabled'] = 'disabled';
725 $checkmark = array(); // We will check the next possible one
726 } else if( !$this->oldIdChecked ) {
727 $checkmark = array( 'checked' => 'checked' );
728 $this->oldIdChecked = $id;
729 } else {
730 $checkmark = array();
731 }
732 $first = Xml::element( 'input',
733 array_merge( $radio, $checkmark, array(
734 'name' => 'oldid',
735 'id' => "mw-oldid-$id" ) ) );
736 $checkmark = array();
737 }
738 $second = Xml::element( 'input',
739 array_merge( $radio, $checkmark, array(
740 'name' => 'diff',
741 'id' => "mw-diff-$id" ) ) );
742 return $first . $second;
743 } else {
744 return '';
745 }
746 }
747 }
748
749 /**
750 * Backwards-compatibility aliases
751 */
752 class PageHistory extends HistoryPage {}
753 class PageHistoryPager extends HistoryPager {}