3 * Classes to show lists of changes.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * http://www.gnu.org/copyleft/gpl.html
31 class RCCacheEntry
extends RecentChange
{
32 var $secureName, $link;
33 var $curlink, $difflink, $lastlink, $usertalklink, $versionlink;
34 var $userlink, $timestamp, $watched;
37 * @param $rc RecentChange
38 * @return RCCacheEntry
40 static function newFromParent( $rc ) {
41 $rc2 = new RCCacheEntry
;
42 $rc2->mAttribs
= $rc->mAttribs
;
43 $rc2->mExtra
= $rc->mExtra
;
49 * Base class for all changes lists
51 class ChangesList
extends ContextSource
{
58 protected $watchlist = false;
63 * Changeslist constructor
65 * @param $obj Skin or IContextSource
67 public function __construct( $obj ) {
68 if ( $obj instanceof IContextSource
) {
69 $this->setContext( $obj );
70 $this->skin
= $obj->getSkin();
72 $this->setContext( $obj->getContext() );
75 $this->preCacheMessages();
79 * Fetch an appropriate changes list class for the main context
80 * This first argument used to be an User object.
82 * @deprecated in 1.18; use newFromContext() instead
83 * @param string|User $unused Unused
84 * @return ChangesList|EnhancedChangesList|OldChangesList derivative
86 public static function newFromUser( $unused ) {
87 wfDeprecated( __METHOD__
, '1.18' );
88 return self
::newFromContext( RequestContext
::getMain() );
92 * Fetch an appropriate changes list class for the specified context
93 * Some users might want to use an enhanced list format, for instance
95 * @param $context IContextSource to use
96 * @return ChangesList|EnhancedChangesList|OldChangesList derivative
98 public static function newFromContext( IContextSource
$context ) {
99 $user = $context->getUser();
100 $sk = $context->getSkin();
102 if ( wfRunHooks( 'FetchChangesList', array( $user, &$sk, &$list ) ) ) {
103 $new = $context->getRequest()->getBool( 'enhanced', $user->getOption( 'usenewrc' ) );
104 return $new ?
new EnhancedChangesList( $context ) : new OldChangesList( $context );
111 * Sets the list to use a "<li class='watchlist-(namespace)-(page)'>" tag
112 * @param $value Boolean
114 public function setWatchlistDivs( $value = true ) {
115 $this->watchlist
= $value;
119 * As we use the same small set of messages in various methods and that
120 * they are called often, we call them once and save them in $this->message
122 private function preCacheMessages() {
123 if ( !isset( $this->message
) ) {
125 'cur', 'diff', 'hist', 'last', 'blocklink', 'history',
126 'semicolon-separator', 'pipe-separator' ) as $msg
128 $this->message
[$msg] = $this->msg( $msg )->escaped();
134 * Returns the appropriate flags for new page, minor change and patrolling
135 * @param array $flags Associative array of 'flag' => Bool
136 * @param string $nothing to use for empty space
139 public function recentChangesFlags( $flags, $nothing = ' ' ) {
140 global $wgRecentChangesFlags;
142 foreach ( array_keys( $wgRecentChangesFlags ) as $flag ) {
143 $f .= isset( $flags[$flag] ) && $flags[$flag]
144 ? self
::flag( $flag )
151 * Provide the "<abbr>" element appropriate to a given abbreviated flag,
152 * namely the flag indicating a new page, a minor edit, a bot edit, or an
153 * unpatrolled edit. By default in English it will contain "N", "m", "b",
154 * "!" respectively, plus it will have an appropriate title and class.
156 * @param string $flag One key of $wgRecentChangesFlags
157 * @return String: Raw HTML
159 public static function flag( $flag ) {
160 static $flagInfos = null;
161 if ( is_null( $flagInfos ) ) {
162 global $wgRecentChangesFlags;
163 $flagInfos = array();
164 foreach ( $wgRecentChangesFlags as $key => $value ) {
165 $flagInfos[$key]['letter'] = wfMessage( $value['letter'] )->escaped();
166 $flagInfos[$key]['title'] = wfMessage( $value['title'] )->escaped();
167 // Allow customized class name, fall back to flag name
168 $flagInfos[$key]['class'] = Sanitizer
::escapeClass(
169 isset( $value['class'] ) ?
$value['class'] : $key );
173 // Inconsistent naming, bleh, kepted for b/c
175 'minoredit' => 'minor',
178 if ( isset( $map[$flag] ) ) {
182 return "<abbr class='" . $flagInfos[$flag]['class'] . "' title='" . $flagInfos[$flag]['title'] . "'>" .
183 $flagInfos[$flag]['letter'] .
188 * Returns text for the start of the tabular part of RC
191 public function beginRecentChangesList() {
192 $this->rc_cache
= array();
193 $this->rcMoveIndex
= 0;
194 $this->rcCacheIndex
= 0;
195 $this->lastdate
= '';
196 $this->rclistOpen
= false;
197 $this->getOutput()->addModuleStyles( 'mediawiki.special.changeslist' );
202 * Show formatted char difference
203 * @param $old Integer: bytes
204 * @param $new Integer: bytes
205 * @param $context IContextSource context to use
208 public static function showCharacterDifference( $old, $new, IContextSource
$context = null ) {
209 global $wgRCChangedSizeThreshold, $wgMiserMode;
212 $context = RequestContext
::getMain();
217 $szdiff = $new - $old;
219 $lang = $context->getLanguage();
220 $code = $lang->getCode();
221 static $fastCharDiff = array();
222 if ( !isset( $fastCharDiff[$code] ) ) {
223 $fastCharDiff[$code] = $wgMiserMode ||
$context->msg( 'rc-change-size' )->plain() === '$1';
226 $formattedSize = $lang->formatNum( $szdiff );
228 if ( !$fastCharDiff[$code] ) {
229 $formattedSize = $context->msg( 'rc-change-size', $formattedSize )->text();
232 if ( abs( $szdiff ) > abs( $wgRCChangedSizeThreshold ) ) {
238 if ( $szdiff === 0 ) {
239 $formattedSizeClass = 'mw-plusminus-null';
242 $formattedSize = '+' . $formattedSize;
243 $formattedSizeClass = 'mw-plusminus-pos';
246 $formattedSizeClass = 'mw-plusminus-neg';
249 $formattedTotalSize = $context->msg( 'rc-change-size-new' )->numParams( $new )->text();
251 return Html
::element( $tag,
252 array( 'dir' => 'ltr', 'class' => $formattedSizeClass, 'title' => $formattedTotalSize ),
253 $context->msg( 'parentheses', $formattedSize )->plain() ) . $lang->getDirMark();
257 * Format the character difference of one or several changes.
259 * @param $old RecentChange
260 * @param $new RecentChange last change to use, if not provided, $old will be used
261 * @return string HTML fragment
263 public function formatCharacterDifference( RecentChange
$old, RecentChange
$new = null ) {
264 $oldlen = $old->mAttribs
['rc_old_len'];
267 $newlen = $new->mAttribs
['rc_new_len'];
269 $newlen = $old->mAttribs
['rc_new_len'];
272 if ( $oldlen === null ||
$newlen === null ) {
276 return self
::showCharacterDifference( $oldlen, $newlen, $this->getContext() );
280 * Returns text for the end of RC
283 public function endRecentChangesList() {
284 if ( $this->rclistOpen
) {
292 * @param string $s HTML to update
293 * @param $rc_timestamp mixed
295 public function insertDateHeader( &$s, $rc_timestamp ) {
296 # Make date header if necessary
297 $date = $this->getLanguage()->userDate( $rc_timestamp, $this->getUser() );
298 if ( $date != $this->lastdate
) {
299 if ( $this->lastdate
!= '' ) {
302 $s .= Xml
::element( 'h4', null, $date ) . "\n<ul class=\"special\">";
303 $this->lastdate
= $date;
304 $this->rclistOpen
= true;
309 * @param string $s HTML to update
310 * @param $title Title
311 * @param $logtype string
313 public function insertLog( &$s, $title, $logtype ) {
314 $page = new LogPage( $logtype );
315 $logname = $page->getName()->escaped();
316 $s .= $this->msg( 'parentheses' )->rawParams( Linker
::linkKnown( $title, $logname ) )->escaped();
320 * @param string $s HTML to update
321 * @param $rc RecentChange
322 * @param $unpatrolled
324 public function insertDiffHist( &$s, &$rc, $unpatrolled ) {
326 if ( $rc->mAttribs
['rc_type'] == RC_NEW ||
$rc->mAttribs
['rc_type'] == RC_LOG
) {
327 $diffLink = $this->message
['diff'];
328 } elseif ( !self
::userCan( $rc, Revision
::DELETED_TEXT
, $this->getUser() ) ) {
329 $diffLink = $this->message
['diff'];
332 'curid' => $rc->mAttribs
['rc_cur_id'],
333 'diff' => $rc->mAttribs
['rc_this_oldid'],
334 'oldid' => $rc->mAttribs
['rc_last_oldid']
337 $diffLink = Linker
::linkKnown(
339 $this->message
['diff'],
340 array( 'tabindex' => $rc->counter
),
344 $diffhist = $diffLink . $this->message
['pipe-separator'];
346 $diffhist .= Linker
::linkKnown(
348 $this->message
['hist'],
351 'curid' => $rc->mAttribs
['rc_cur_id'],
352 'action' => 'history'
355 $s .= $this->msg( 'parentheses' )->rawParams( $diffhist )->escaped() . ' <span class="mw-changeslist-separator">. .</span> ';
359 * @param string $s HTML to update
360 * @param $rc RecentChange
361 * @param $unpatrolled
364 public function insertArticleLink( &$s, &$rc, $unpatrolled, $watched ) {
367 $articlelink = Linker
::linkKnown(
370 array( 'class' => 'mw-changeslist-title' ),
373 if ( $this->isDeleted( $rc, Revision
::DELETED_TEXT
) ) {
374 $articlelink = '<span class="history-deleted">' . $articlelink . '</span>';
376 # To allow for boldening pages watched by this user
377 $articlelink = "<span class=\"mw-title\">{$articlelink}</span>";
379 $articlelink .= $this->getLanguage()->getDirMark();
381 wfRunHooks( 'ChangesListInsertArticleLink',
382 array( &$this, &$articlelink, &$s, &$rc, $unpatrolled, $watched ) );
384 $s .= " $articlelink";
388 * Get the timestamp from $rc formatted with current user's settings
391 * @param $rc RecentChange
392 * @return string HTML fragment
394 public function getTimestamp( $rc ) {
395 return $this->message
['semicolon-separator'] . '<span class="mw-changeslist-date">' .
396 $this->getLanguage()->userTime( $rc->mAttribs
['rc_timestamp'], $this->getUser() ) . '</span> <span class="mw-changeslist-separator">. .</span> ';
400 * Insert time timestamp string from $rc into $s
402 * @param string $s HTML to update
403 * @param $rc RecentChange
405 public function insertTimestamp( &$s, $rc ) {
406 $s .= $this->getTimestamp( $rc );
410 * Insert links to user page, user talk page and eventually a blocking link
412 * @param &$s String HTML to update
413 * @param &$rc RecentChange
415 public function insertUserRelatedLinks( &$s, &$rc ) {
416 if ( $this->isDeleted( $rc, Revision
::DELETED_USER
) ) {
417 $s .= ' <span class="history-deleted">' . $this->msg( 'rev-deleted-user' )->escaped() . '</span>';
419 $s .= $this->getLanguage()->getDirMark() . Linker
::userLink( $rc->mAttribs
['rc_user'],
420 $rc->mAttribs
['rc_user_text'] );
421 $s .= Linker
::userToolLinks( $rc->mAttribs
['rc_user'], $rc->mAttribs
['rc_user_text'] );
426 * Insert a formatted action
428 * @param $rc RecentChange
431 public function insertLogEntry( $rc ) {
432 $formatter = LogFormatter
::newFromRow( $rc->mAttribs
);
433 $formatter->setContext( $this->getContext() );
434 $formatter->setShowUserToolLinks( true );
435 $mark = $this->getLanguage()->getDirMark();
436 return $formatter->getActionText() . " $mark" . $formatter->getComment();
440 * Insert a formatted comment
441 * @param $rc RecentChange
444 public function insertComment( $rc ) {
445 if ( $rc->mAttribs
['rc_type'] != RC_MOVE
&& $rc->mAttribs
['rc_type'] != RC_MOVE_OVER_REDIRECT
) {
446 if ( $this->isDeleted( $rc, Revision
::DELETED_COMMENT
) ) {
447 return ' <span class="history-deleted">' . $this->msg( 'rev-deleted-comment' )->escaped() . '</span>';
449 return Linker
::commentBlock( $rc->mAttribs
['rc_comment'], $rc->getTitle() );
456 * Check whether to enable recent changes patrol features
458 * @deprecated since 1.22
461 public static function usePatrol() {
464 wfDeprecated( __METHOD__
, '1.22' );
466 return $wgUser->useRCPatrol();
470 * Returns the string which indicates the number of watching users
473 protected function numberofWatchingusers( $count ) {
474 static $cache = array();
476 if ( !isset( $cache[$count] ) ) {
477 $cache[$count] = $this->msg( 'number_of_watching_users_RCview' )->numParams( $count )->escaped();
479 return $cache[$count];
486 * Determine if said field of a revision is hidden
487 * @param $rc RCCacheEntry
488 * @param $field Integer: one of DELETED_* bitfield constants
491 public static function isDeleted( $rc, $field ) {
492 return ( $rc->mAttribs
['rc_deleted'] & $field ) == $field;
496 * Determine if the current user is allowed to view a particular
497 * field of this revision, if it's marked as deleted.
498 * @param $rc RCCacheEntry
499 * @param $field Integer
500 * @param $user User object to check, or null to use $wgUser
503 public static function userCan( $rc, $field, User
$user = null ) {
504 if ( $rc->mAttribs
['rc_type'] == RC_LOG
) {
505 return LogEventsList
::userCanBitfield( $rc->mAttribs
['rc_deleted'], $field, $user );
507 return Revision
::userCanBitfield( $rc->mAttribs
['rc_deleted'], $field, $user );
512 * @param $link string
513 * @param $watched bool
516 protected function maybeWatchedLink( $link, $watched = false ) {
518 return '<strong class="mw-watched">' . $link . '</strong>';
520 return '<span class="mw-rc-unwatched">' . $link . '</span>';
524 /** Inserts a rollback link
527 * @param $rc RecentChange
529 public function insertRollback( &$s, &$rc ) {
530 if ( $rc->mAttribs
['rc_type'] == RC_EDIT
&& $rc->mAttribs
['rc_this_oldid'] && $rc->mAttribs
['rc_cur_id'] ) {
531 $page = $rc->getTitle();
532 /** Check for rollback and edit permissions, disallow special pages, and only
533 * show a link on the top-most revision */
534 if ( $this->getUser()->isAllowed( 'rollback' ) && $rc->mAttribs
['page_latest'] == $rc->mAttribs
['rc_this_oldid'] )
536 $rev = new Revision( array(
538 'id' => $rc->mAttribs
['rc_this_oldid'],
539 'user' => $rc->mAttribs
['rc_user'],
540 'user_text' => $rc->mAttribs
['rc_user_text'],
541 'deleted' => $rc->mAttribs
['rc_deleted']
543 $s .= ' ' . Linker
::generateRollback( $rev, $this->getContext() );
550 * @param $rc RecentChange
553 public function insertTags( &$s, &$rc, &$classes ) {
554 if ( empty( $rc->mAttribs
['ts_tags'] ) ) {
558 list( $tagSummary, $newClasses ) = ChangeTags
::formatSummaryRow( $rc->mAttribs
['ts_tags'], 'changeslist' );
559 $classes = array_merge( $classes, $newClasses );
560 $s .= ' ' . $tagSummary;
563 public function insertExtra( &$s, &$rc, &$classes ) {
564 // Empty, used for subclasses to add anything special.
567 protected function showAsUnpatrolled( RecentChange
$rc ) {
568 $unpatrolled = false;
569 if ( !$rc->mAttribs
['rc_patrolled'] ) {
570 if ( $this->getUser()->useRCPatrol() ) {
572 } elseif ( $this->getUser()->useNPPatrol() && $rc->mAttribs
['rc_type'] == RC_NEW
) {
581 * Generate a list of changes using the good old system (no javascript)
583 class OldChangesList
extends ChangesList
{
585 * Format a line using the old system (aka without any javascript).
587 * @param $rc RecentChange, passed by reference
588 * @param bool $watched (default false)
589 * @param int $linenumber (default null)
591 * @return string|bool
593 public function recentChangesLine( &$rc, $watched = false, $linenumber = null ) {
594 global $wgRCShowChangedSize;
595 wfProfileIn( __METHOD__
);
597 # Should patrol-related stuff be shown?
598 $unpatrolled = $this->showAsUnpatrolled( $rc );
600 $dateheader = ''; // $s now contains only <li>...</li>, for hooks' convenience.
601 $this->insertDateHeader( $dateheader, $rc->mAttribs
['rc_timestamp'] );
605 // use mw-line-even/mw-line-odd class only if linenumber is given (feature from bug 14468)
607 if ( $linenumber & 1 ) {
608 $classes[] = 'mw-line-odd';
610 $classes[] = 'mw-line-even';
614 // Indicate watched status on the line to allow for more
615 // comprehensive styling.
616 $classes[] = $watched && $rc->mAttribs
['rc_timestamp'] >= $watched
617 ?
'mw-changeslist-line-watched' : 'mw-changeslist-line-not-watched';
619 // Moved pages (very very old, not supported anymore)
620 if ( $rc->mAttribs
['rc_type'] == RC_MOVE ||
$rc->mAttribs
['rc_type'] == RC_MOVE_OVER_REDIRECT
) {
622 } elseif ( $rc->mAttribs
['rc_log_type'] ) {
623 $logtitle = SpecialPage
::getTitleFor( 'Log', $rc->mAttribs
['rc_log_type'] );
624 $this->insertLog( $s, $logtitle, $rc->mAttribs
['rc_log_type'] );
625 // Log entries (old format) or log targets, and special pages
626 } elseif ( $rc->mAttribs
['rc_namespace'] == NS_SPECIAL
) {
627 list( $name, $subpage ) = SpecialPageFactory
::resolveAlias( $rc->mAttribs
['rc_title'] );
628 if ( $name == 'Log' ) {
629 $this->insertLog( $s, $rc->getTitle(), $subpage );
633 $this->insertDiffHist( $s, $rc, $unpatrolled );
634 # M, N, b and ! (minor, new, bot and unpatrolled)
635 $s .= $this->recentChangesFlags(
637 'newpage' => $rc->mAttribs
['rc_type'] == RC_NEW
,
638 'minor' => $rc->mAttribs
['rc_minor'],
639 'unpatrolled' => $unpatrolled,
640 'bot' => $rc->mAttribs
['rc_bot']
644 $this->insertArticleLink( $s, $rc, $unpatrolled, $watched );
647 $this->insertTimestamp( $s, $rc );
648 # Bytes added or removed
649 if ( $wgRCShowChangedSize ) {
650 $cd = $this->formatCharacterDifference( $rc );
652 $s .= $cd . ' <span class="mw-changeslist-separator">. .</span> ';
656 if ( $rc->mAttribs
['rc_type'] == RC_LOG
) {
657 $s .= $this->insertLogEntry( $rc );
660 $this->insertUserRelatedLinks( $s, $rc );
661 # LTR/RTL direction mark
662 $s .= $this->getLanguage()->getDirMark();
663 $s .= $this->insertComment( $rc );
667 $this->insertTags( $s, $rc, $classes );
669 $this->insertRollback( $s, $rc );
671 $this->insertExtra( $s, $rc, $classes );
673 # How many users watch this page
674 if ( $rc->numberofWatchingusers
> 0 ) {
675 $s .= ' ' . $this->numberofWatchingusers( $rc->numberofWatchingusers
);
678 if ( $this->watchlist
) {
679 $classes[] = Sanitizer
::escapeClass( 'watchlist-' . $rc->mAttribs
['rc_namespace'] . '-' . $rc->mAttribs
['rc_title'] );
682 if ( !wfRunHooks( 'OldChangesListRecentChangesLine', array( &$this, &$s, $rc, &$classes ) ) ) {
683 wfProfileOut( __METHOD__
);
687 wfProfileOut( __METHOD__
);
688 return "$dateheader<li class=\"" . implode( ' ', $classes ) . "\">" . $s . "</li>\n";
693 * Generate a list of changes using an Enhanced system (uses javascript).
695 class EnhancedChangesList
extends ChangesList
{
700 * Add the JavaScript file for enhanced changeslist
703 public function beginRecentChangesList() {
704 $this->rc_cache
= array();
705 $this->rcMoveIndex
= 0;
706 $this->rcCacheIndex
= 0;
707 $this->lastdate
= '';
708 $this->rclistOpen
= false;
709 $this->getOutput()->addModuleStyles( array(
710 'mediawiki.special.changeslist',
711 'mediawiki.special.changeslist.enhanced',
713 $this->getOutput()->addModules( array(
714 'jquery.makeCollapsible',
720 * Format a line for enhanced recentchange (aka with javascript and block of lines).
722 * @param $baseRC RecentChange
723 * @param $watched bool
727 public function recentChangesLine( &$baseRC, $watched = false ) {
728 wfProfileIn( __METHOD__
);
730 # Create a specialised object
731 $rc = RCCacheEntry
::newFromParent( $baseRC );
733 $curIdEq = array( 'curid' => $rc->mAttribs
['rc_cur_id'] );
735 # If it's a new day, add the headline and flush the cache
736 $date = $this->getLanguage()->userDate( $rc->mAttribs
['rc_timestamp'], $this->getUser() );
738 if ( $date != $this->lastdate
) {
739 # Process current cache
740 $ret = $this->recentChangesBlock();
741 $this->rc_cache
= array();
742 $ret .= Xml
::element( 'h4', null, $date ) . "\n";
743 $this->lastdate
= $date;
746 # Should patrol-related stuff be shown?
747 $rc->unpatrolled
= $this->showAsUnpatrolled( $rc );
749 $showdifflinks = true;
751 $type = $rc->mAttribs
['rc_type'];
752 $logType = $rc->mAttribs
['rc_log_type'];
753 // Page moves, very old style, not supported anymore
754 if ( $type == RC_MOVE ||
$type == RC_MOVE_OVER_REDIRECT
) {
755 // New unpatrolled pages
756 } elseif ( $rc->unpatrolled
&& $type == RC_NEW
) {
757 $clink = Linker
::linkKnown( $rc->getTitle() );
759 } elseif ( $type == RC_LOG
) {
761 $logtitle = SpecialPage
::getTitleFor( 'Log', $logType );
762 $logpage = new LogPage( $logType );
763 $logname = $logpage->getName()->escaped();
764 $clink = $this->msg( 'parentheses' )->rawParams( Linker
::linkKnown( $logtitle, $logname ) )->escaped();
766 $clink = Linker
::link( $rc->getTitle() );
769 // Log entries (old format) and special pages
770 } elseif ( $rc->mAttribs
['rc_namespace'] == NS_SPECIAL
) {
771 wfDebug( "Unexpected special page in recentchanges\n" );
775 $clink = Linker
::linkKnown( $rc->getTitle() );
778 # Don't show unusable diff links
779 if ( !ChangesList
::userCan( $rc, Revision
::DELETED_TEXT
, $this->getUser() ) ) {
780 $showdifflinks = false;
783 $time = $this->getLanguage()->userTime( $rc->mAttribs
['rc_timestamp'], $this->getUser() );
784 $rc->watched
= $watched;
786 $rc->timestamp
= $time;
787 $rc->numberofWatchingusers
= $baseRC->numberofWatchingusers
;
789 # Make "cur" and "diff" links. Do not use link(), it is too slow if
790 # called too many times (50% of CPU time on RecentChanges!).
791 $thisOldid = $rc->mAttribs
['rc_this_oldid'];
792 $lastOldid = $rc->mAttribs
['rc_last_oldid'];
794 $querycur = $curIdEq +
array( 'diff' => '0', 'oldid' => $thisOldid );
795 $querydiff = $curIdEq +
array( 'diff' => $thisOldid, 'oldid' => $lastOldid );
797 if ( !$showdifflinks ) {
798 $curLink = $this->message
['cur'];
799 $diffLink = $this->message
['diff'];
800 } elseif ( in_array( $type, array( RC_NEW
, RC_LOG
, RC_MOVE
, RC_MOVE_OVER_REDIRECT
) ) ) {
801 if ( $type != RC_NEW
) {
802 $curLink = $this->message
['cur'];
804 $curUrl = htmlspecialchars( $rc->getTitle()->getLinkURL( $querycur ) );
805 $curLink = "<a href=\"$curUrl\" tabindex=\"{$baseRC->counter}\">{$this->message['cur']}</a>";
807 $diffLink = $this->message
['diff'];
809 $diffUrl = htmlspecialchars( $rc->getTitle()->getLinkURL( $querydiff ) );
810 $curUrl = htmlspecialchars( $rc->getTitle()->getLinkURL( $querycur ) );
811 $diffLink = "<a href=\"$diffUrl\" tabindex=\"{$baseRC->counter}\">{$this->message['diff']}</a>";
812 $curLink = "<a href=\"$curUrl\" tabindex=\"{$baseRC->counter}\">{$this->message['cur']}</a>";
816 if ( !$showdifflinks ||
!$lastOldid ) {
817 $lastLink = $this->message
['last'];
818 } elseif ( in_array( $type, array( RC_LOG
, RC_MOVE
, RC_MOVE_OVER_REDIRECT
) ) ) {
819 $lastLink = $this->message
['last'];
821 $lastLink = Linker
::linkKnown( $rc->getTitle(), $this->message
['last'],
822 array(), $curIdEq +
array( 'diff' => $thisOldid, 'oldid' => $lastOldid ) );
826 if ( $this->isDeleted( $rc, Revision
::DELETED_USER
) ) {
827 $rc->userlink
= ' <span class="history-deleted">' . $this->msg( 'rev-deleted-user' )->escaped() . '</span>';
829 $rc->userlink
= Linker
::userLink( $rc->mAttribs
['rc_user'], $rc->mAttribs
['rc_user_text'] );
830 $rc->usertalklink
= Linker
::userToolLinks( $rc->mAttribs
['rc_user'], $rc->mAttribs
['rc_user_text'] );
833 $rc->lastlink
= $lastLink;
834 $rc->curlink
= $curLink;
835 $rc->difflink
= $diffLink;
837 # Put accumulated information into the cache, for later display
838 # Page moves go on their own line
839 $title = $rc->getTitle();
840 $secureName = $title->getPrefixedDBkey();
841 if ( $type == RC_MOVE ||
$type == RC_MOVE_OVER_REDIRECT
) {
842 # Use an @ character to prevent collision with page names
843 $this->rc_cache
['@@' . ( $this->rcMoveIndex++
)] = array( $rc );
845 # Logs are grouped by type
846 if ( $type == RC_LOG
) {
847 $secureName = SpecialPage
::getTitleFor( 'Log', $logType )->getPrefixedDBkey();
849 if ( !isset( $this->rc_cache
[$secureName] ) ) {
850 $this->rc_cache
[$secureName] = array();
853 array_push( $this->rc_cache
[$secureName], $rc );
856 wfProfileOut( __METHOD__
);
865 protected function recentChangesBlockGroup( $block ) {
866 global $wgRCShowChangedSize;
868 wfProfileIn( __METHOD__
);
870 # Add the namespace and title of the block as part of the class
871 $classes = array( 'mw-collapsible', 'mw-collapsed', 'mw-enhanced-rc' );
872 if ( $block[0]->mAttribs
['rc_log_type'] ) {
874 $classes[] = Sanitizer
::escapeClass( 'mw-changeslist-log-'
875 . $block[0]->mAttribs
['rc_log_type'] . '-' . $block[0]->mAttribs
['rc_title'] );
877 $classes[] = Sanitizer
::escapeClass( 'mw-changeslist-ns'
878 . $block[0]->mAttribs
['rc_namespace'] . '-' . $block[0]->mAttribs
['rc_title'] );
880 $classes[] = $block[0]->watched
&& $block[0]->mAttribs
['rc_timestamp'] >= $block[0]->watched
881 ?
'mw-changeslist-line-watched' : 'mw-changeslist-line-not-watched';
882 $r = Html
::openElement( 'table', array( 'class' => $classes ) ) .
883 Html
::openElement( 'tr' );
885 # Collate list of users
886 $userlinks = array();
888 $unpatrolled = false;
892 $curId = $currentRevision = 0;
893 # Some catalyst variables...
896 foreach ( $block as $rcObj ) {
897 $oldid = $rcObj->mAttribs
['rc_last_oldid'];
898 if ( $rcObj->mAttribs
['rc_type'] == RC_NEW
) {
901 // If all log actions to this page were hidden, then don't
902 // give the name of the affected page for this block!
903 if ( !$this->isDeleted( $rcObj, LogPage
::DELETED_ACTION
) ) {
906 $u = $rcObj->userlink
;
907 if ( !isset( $userlinks[$u] ) ) {
910 if ( $rcObj->unpatrolled
) {
913 if ( $rcObj->mAttribs
['rc_type'] != RC_LOG
) {
916 # Get the latest entry with a page_id and oldid
917 # since logs may not have these.
918 if ( !$curId && $rcObj->mAttribs
['rc_cur_id'] ) {
919 $curId = $rcObj->mAttribs
['rc_cur_id'];
921 if ( !$currentRevision && $rcObj->mAttribs
['rc_this_oldid'] ) {
922 $currentRevision = $rcObj->mAttribs
['rc_this_oldid'];
925 if ( !$rcObj->mAttribs
['rc_bot'] ) {
928 if ( !$rcObj->mAttribs
['rc_minor'] ) {
935 # Sort the list and convert to text
936 krsort( $userlinks );
939 foreach ( $userlinks as $userlink => $count ) {
941 $text .= $this->getLanguage()->getDirMark();
943 $text .= ' ' . $this->msg( 'parentheses' )->rawParams( $this->getLanguage()->formatNum( $count ) . '×' )->escaped();
945 array_push( $users, $text );
948 $users = ' <span class="changedby">'
949 . $this->msg( 'brackets' )->rawParams(
950 implode( $this->message
['semicolon-separator'], $users )
951 )->escaped() . '</span>';
953 $tl = '<span class="mw-collapsible-toggle mw-collapsible-arrow mw-enhancedchanges-arrow mw-enhancedchanges-arrow-space"></span>';
954 $r .= "<td>$tl</td>";
957 $r .= '<td class="mw-enhanced-rc">' . $this->recentChangesFlags( array(
958 'newpage' => $isnew, # show, when one have this flag
959 'minor' => $allMinors, # show only, when all have this flag
960 'unpatrolled' => $unpatrolled, # show, when one have this flag
961 'bot' => $allBots, # show only, when all have this flag
965 $r .= ' ' . $block[0]->timestamp
. ' </td><td>';
969 $r .= ' <span class="history-deleted">' . $this->msg( 'rev-deleted-event' )->escaped() . '</span>';
970 } elseif ( $allLogs ) {
971 $r .= $this->maybeWatchedLink( $block[0]->link
, $block[0]->watched
);
973 $this->insertArticleLink( $r, $block[0], $block[0]->unpatrolled
, $block[0]->watched
);
976 $r .= $this->getLanguage()->getDirMark();
978 $queryParams['curid'] = $curId;
980 $n = count( $block );
981 static $nchanges = array();
982 if ( !isset( $nchanges[$n] ) ) {
983 $nchanges[$n] = $this->msg( 'nchanges' )->numParams( $n )->escaped();
989 if ( !ChangesList
::userCan( $rcObj, Revision
::DELETED_TEXT
, $this->getUser() ) ) {
990 $logtext .= $nchanges[$n];
991 } elseif ( $isnew ) {
992 $logtext .= $nchanges[$n];
994 $params = $queryParams;
995 $params['diff'] = $currentRevision;
996 $params['oldid'] = $oldid;
998 $logtext .= Linker
::link(
999 $block[0]->getTitle(),
1003 array( 'known', 'noclasses' )
1010 // don't show history link for logs
1011 } elseif ( $namehidden ||
!$block[0]->getTitle()->exists() ) {
1012 $logtext .= $this->message
['pipe-separator'] . $this->message
['hist'];
1014 $params = $queryParams;
1015 $params['action'] = 'history';
1017 $logtext .= $this->message
['pipe-separator'] .
1019 $block[0]->getTitle(),
1020 $this->message
['hist'],
1026 if ( $logtext !== '' ) {
1027 $r .= $this->msg( 'parentheses' )->rawParams( $logtext )->escaped();
1030 $r .= ' <span class="mw-changeslist-separator">. .</span> ';
1032 # Character difference (does not apply if only log items)
1033 if ( $wgRCShowChangedSize && !$allLogs ) {
1035 $first = count( $block ) - 1;
1036 # Some events (like logs) have an "empty" size, so we need to skip those...
1037 while ( $last < $first && $block[$last]->mAttribs
['rc_new_len'] === null ) {
1040 while ( $first > $last && $block[$first]->mAttribs
['rc_old_len'] === null ) {
1044 $chardiff = $this->formatCharacterDifference( $block[$first], $block[$last] );
1046 if ( $chardiff == '' ) {
1049 $r .= ' ' . $chardiff . ' <span class="mw-changeslist-separator">. .</span> ';
1054 $r .= $this->numberofWatchingusers( $block[0]->numberofWatchingusers
);
1057 foreach ( $block as $rcObj ) {
1058 # Classes to apply -- TODO implement
1060 $type = $rcObj->mAttribs
['rc_type'];
1062 $trClass = $rcObj->watched
&& $rcObj->mAttribs
['rc_timestamp'] >= $rcObj->watched
1063 ?
' class="mw-enhanced-watched"' : '';
1065 $r .= '<tr' . $trClass . '><td></td><td class="mw-enhanced-rc">';
1066 $r .= $this->recentChangesFlags( array(
1067 'newpage' => $type == RC_NEW
,
1068 'minor' => $rcObj->mAttribs
['rc_minor'],
1069 'unpatrolled' => $rcObj->unpatrolled
,
1070 'bot' => $rcObj->mAttribs
['rc_bot'],
1072 $r .= ' </td><td class="mw-enhanced-rc-nested"><span class="mw-enhanced-rc-time">';
1074 $params = $queryParams;
1076 if ( $rcObj->mAttribs
['rc_this_oldid'] != 0 ) {
1077 $params['oldid'] = $rcObj->mAttribs
['rc_this_oldid'];
1081 if ( $type == RC_LOG
) {
1082 $link = $rcObj->timestamp
;
1084 } elseif ( !ChangesList
::userCan( $rcObj, Revision
::DELETED_TEXT
, $this->getUser() ) ) {
1085 $link = '<span class="history-deleted">' . $rcObj->timestamp
. '</span> ';
1088 $link = Linker
::linkKnown(
1094 if ( $this->isDeleted( $rcObj, Revision
::DELETED_TEXT
) ) {
1095 $link = '<span class="history-deleted">' . $link . '</span> ';
1098 $r .= $link . '</span>';
1100 if ( !$type == RC_LOG ||
$type == RC_NEW
) {
1101 $r .= ' ' . $this->msg( 'parentheses' )->rawParams( $rcObj->curlink
. $this->message
['pipe-separator'] . $rcObj->lastlink
)->escaped();
1103 $r .= ' <span class="mw-changeslist-separator">. .</span> ';
1106 if ( $wgRCShowChangedSize ) {
1107 $cd = $this->formatCharacterDifference( $rcObj );
1109 $r .= $cd . ' <span class="mw-changeslist-separator">. .</span> ';
1113 if ( $rcObj->mAttribs
['rc_type'] == RC_LOG
) {
1114 $r .= $this->insertLogEntry( $rcObj );
1117 $r .= $rcObj->userlink
;
1118 $r .= $rcObj->usertalklink
;
1119 $r .= $this->insertComment( $rcObj );
1123 $this->insertRollback( $r, $rcObj );
1125 $this->insertTags( $r, $rcObj, $classes );
1127 $r .= "</td></tr>\n";
1131 $this->rcCacheIndex++
;
1133 wfProfileOut( __METHOD__
);
1139 * Generate HTML for an arrow or placeholder graphic
1140 * @param string $dir one of '', 'd', 'l', 'r'
1141 * @param string $alt text
1142 * @param string $title text
1143 * @return String: HTML "<img>" tag
1145 protected function arrow( $dir, $alt = '', $title = '' ) {
1146 global $wgStylePath;
1147 $encUrl = htmlspecialchars( $wgStylePath . '/common/images/Arr_' . $dir . '.png' );
1148 $encAlt = htmlspecialchars( $alt );
1149 $encTitle = htmlspecialchars( $title );
1150 return "<img src=\"$encUrl\" width=\"12\" height=\"12\" alt=\"$encAlt\" title=\"$encTitle\" />";
1154 * Generate HTML for a right- or left-facing arrow,
1155 * depending on language direction.
1156 * @return String: HTML "<img>" tag
1158 protected function sideArrow() {
1159 $dir = $this->getLanguage()->isRTL() ?
'l' : 'r';
1160 return $this->arrow( $dir, '+', $this->msg( 'rc-enhanced-expand' )->text() );
1164 * Generate HTML for a down-facing arrow
1165 * depending on language direction.
1166 * @return String: HTML "<img>" tag
1168 protected function downArrow() {
1169 return $this->arrow( 'd', '-', $this->msg( 'rc-enhanced-hide' )->text() );
1173 * Generate HTML for a spacer image
1174 * @return String: HTML "<img>" tag
1176 protected function spacerArrow() {
1177 return $this->arrow( '', codepointToUtf8( 0xa0 ) ); // non-breaking space
1181 * Enhanced RC ungrouped line.
1183 * @param $rcObj RecentChange
1184 * @return String: a HTML formatted line (generated using $r)
1186 protected function recentChangesBlockLine( $rcObj ) {
1187 global $wgRCShowChangedSize;
1189 wfProfileIn( __METHOD__
);
1190 $query['curid'] = $rcObj->mAttribs
['rc_cur_id'];
1192 $type = $rcObj->mAttribs
['rc_type'];
1193 $logType = $rcObj->mAttribs
['rc_log_type'];
1194 $classes = array( 'mw-enhanced-rc' );
1197 $classes[] = Sanitizer
::escapeClass( 'mw-changeslist-log-'
1198 . $logType . '-' . $rcObj->mAttribs
['rc_title'] );
1200 $classes[] = Sanitizer
::escapeClass( 'mw-changeslist-ns' .
1201 $rcObj->mAttribs
['rc_namespace'] . '-' . $rcObj->mAttribs
['rc_title'] );
1203 $classes[] = $rcObj->watched
&& $rcObj->mAttribs
['rc_timestamp'] >= $rcObj->watched
1204 ?
'mw-changeslist-line-watched' : 'mw-changeslist-line-not-watched';
1205 $r = Html
::openElement( 'table', array( 'class' => $classes ) ) .
1206 Html
::openElement( 'tr' );
1208 $r .= '<td class="mw-enhanced-rc"><span class="mw-enhancedchanges-arrow-space"></span>';
1209 # Flag and Timestamp
1210 if ( $type == RC_MOVE ||
$type == RC_MOVE_OVER_REDIRECT
) {
1211 $r .= $this->recentChangesFlags( array() ); // no flags, but need the placeholders
1213 $r .= $this->recentChangesFlags( array(
1214 'newpage' => $type == RC_NEW
,
1215 'minor' => $rcObj->mAttribs
['rc_minor'],
1216 'unpatrolled' => $rcObj->unpatrolled
,
1217 'bot' => $rcObj->mAttribs
['rc_bot'],
1220 $r .= ' ' . $rcObj->timestamp
. ' </td><td>';
1221 # Article or log link
1223 $logPage = new LogPage( $logType );
1224 $logTitle = SpecialPage
::getTitleFor( 'Log', $logType );
1225 $logName = $logPage->getName()->escaped();
1226 $r .= $this->msg( 'parentheses' )->rawParams( Linker
::linkKnown( $logTitle, $logName ) )->escaped();
1228 $this->insertArticleLink( $r, $rcObj, $rcObj->unpatrolled
, $rcObj->watched
);
1230 # Diff and hist links
1231 if ( $type != RC_LOG
) {
1232 $query['action'] = 'history';
1233 $r .= ' ' . $this->msg( 'parentheses' )->rawParams( $rcObj->difflink
. $this->message
['pipe-separator'] . Linker
::linkKnown(
1235 $this->message
['hist'],
1240 $r .= ' <span class="mw-changeslist-separator">. .</span> ';
1242 if ( $wgRCShowChangedSize ) {
1243 $cd = $this->formatCharacterDifference( $rcObj );
1245 $r .= $cd . ' <span class="mw-changeslist-separator">. .</span> ';
1249 if ( $type == RC_LOG
) {
1250 $r .= $this->insertLogEntry( $rcObj );
1252 $r .= ' ' . $rcObj->userlink
. $rcObj->usertalklink
;
1253 $r .= $this->insertComment( $rcObj );
1254 $this->insertRollback( $r, $rcObj );
1258 $this->insertTags( $r, $rcObj, $classes );
1259 # Show how many people are watching this if enabled
1260 $r .= $this->numberofWatchingusers( $rcObj->numberofWatchingusers
);
1262 $r .= "</td></tr></table>\n";
1264 wfProfileOut( __METHOD__
);
1270 * If enhanced RC is in use, this function takes the previously cached
1271 * RC lines, arranges them, and outputs the HTML
1275 protected function recentChangesBlock() {
1276 if ( count ( $this->rc_cache
) == 0 ) {
1280 wfProfileIn( __METHOD__
);
1283 foreach ( $this->rc_cache
as $block ) {
1284 if ( count( $block ) < 2 ) {
1285 $blockOut .= $this->recentChangesBlockLine( array_shift( $block ) );
1287 $blockOut .= $this->recentChangesBlockGroup( $block );
1291 wfProfileOut( __METHOD__
);
1293 return '<div>' . $blockOut . '</div>';
1297 * Returns text for the end of RC
1298 * If enhanced RC is in use, returns pretty much all the text
1301 public function endRecentChangesList() {
1302 return $this->recentChangesBlock() . parent
::endRecentChangesList();