2004-11-25 13:47:17 +00:00
|
|
|
<?php
|
2005-01-27 19:51:47 +00:00
|
|
|
/**
|
|
|
|
|
* @package MediaWiki
|
|
|
|
|
*/
|
2004-11-25 13:47:17 +00:00
|
|
|
|
2005-01-27 19:51:47 +00:00
|
|
|
/**
|
|
|
|
|
* @package MediaWiki
|
|
|
|
|
*/
|
2004-11-25 13:47:17 +00:00
|
|
|
class ChangesList {
|
|
|
|
|
# Called by history lists and recent changes
|
|
|
|
|
#
|
|
|
|
|
|
2005-01-27 19:51:47 +00:00
|
|
|
/** @todo document */
|
2004-11-25 13:47:17 +00:00
|
|
|
function ChangesList( &$skin ) {
|
|
|
|
|
$this->skin =& $skin;
|
|
|
|
|
}
|
2005-07-01 20:36:04 +00:00
|
|
|
|
2005-04-24 15:43:49 +00:00
|
|
|
/**
|
|
|
|
|
* Returns the appropiate flags for new page, minor change and patrolling
|
|
|
|
|
*/
|
|
|
|
|
function recentChangesFlags( $new, $minor, $patrolled, $nothing = ' ' ) {
|
|
|
|
|
$f = $new ? '<span class="newpage">' . htmlspecialchars( wfMsg( 'newpageletter' ) ) . '</span>'
|
|
|
|
|
: $nothing;
|
|
|
|
|
$f .= $minor ? '<span class="minor">' . htmlspecialchars( wfMsg( 'minoreditletter' ) ) . '</span>'
|
|
|
|
|
: $nothing;
|
|
|
|
|
$f .= $patrolled ? '<span class="unpatrolled">!</span>' : $nothing;
|
|
|
|
|
return $f;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2005-07-01 20:36:04 +00:00
|
|
|
/**
|
2005-01-27 19:51:47 +00:00
|
|
|
* Returns text for the start of the tabular part of RC
|
|
|
|
|
*/
|
2004-11-25 13:47:17 +00:00
|
|
|
function beginRecentChangesList() {
|
|
|
|
|
$this->rc_cache = array() ;
|
|
|
|
|
$this->rcMoveIndex = 0;
|
|
|
|
|
$this->rcCacheIndex = 0 ;
|
|
|
|
|
$this->lastdate = '';
|
|
|
|
|
$this->rclistOpen = false;
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns text for the end of RC
|
|
|
|
|
* If enhanced RC is in use, returns pretty much all the text
|
|
|
|
|
*/
|
|
|
|
|
function endRecentChangesList() {
|
|
|
|
|
$s = $this->recentChangesBlock() ;
|
|
|
|
|
if( $this->rclistOpen ) {
|
|
|
|
|
$s .= "</ul>\n";
|
|
|
|
|
}
|
|
|
|
|
return $s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Enhanced RC ungrouped line
|
|
|
|
|
*/
|
|
|
|
|
function recentChangesBlockLine ( $rcObj ) {
|
|
|
|
|
global $wgStylePath, $wgContLang ;
|
|
|
|
|
|
|
|
|
|
# Get rc_xxxx variables
|
|
|
|
|
extract( $rcObj->mAttribs ) ;
|
|
|
|
|
$curIdEq = 'curid='.$rc_cur_id;
|
|
|
|
|
|
|
|
|
|
# Spacer image
|
|
|
|
|
$r = '' ;
|
|
|
|
|
|
|
|
|
|
$r .= '<img src="'.$wgStylePath.'/common/images/Arr_.png" width="12" height="12" border="0" />' ;
|
|
|
|
|
$r .= '<tt>' ;
|
|
|
|
|
|
|
|
|
|
if ( $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
|
2005-01-23 08:25:53 +00:00
|
|
|
$r .= ' ';
|
2004-11-25 13:47:17 +00:00
|
|
|
} else {
|
2005-04-24 15:43:49 +00:00
|
|
|
$r .= $this->recentChangesFlags( $rc_type == RC_NEW, $rc_minor, $rcObj->unpatrolled );
|
2004-11-25 13:47:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Timestamp
|
|
|
|
|
$r .= ' '.$rcObj->timestamp.' ' ;
|
|
|
|
|
$r .= '</tt>' ;
|
|
|
|
|
|
|
|
|
|
# Article link
|
|
|
|
|
$link = $rcObj->link ;
|
|
|
|
|
if ( $rcObj->watched ) $link = '<strong>'.$link.'</strong>' ;
|
|
|
|
|
$r .= $link ;
|
|
|
|
|
|
|
|
|
|
# Diff
|
|
|
|
|
$r .= ' (' ;
|
|
|
|
|
$r .= $rcObj->difflink ;
|
|
|
|
|
$r .= '; ' ;
|
|
|
|
|
|
|
|
|
|
# Hist
|
|
|
|
|
$r .= $this->skin->makeKnownLinkObj( $rcObj->getTitle(), wfMsg( 'hist' ), $curIdEq.'&action=history' );
|
|
|
|
|
|
|
|
|
|
# User/talk
|
|
|
|
|
$r .= ') . . '.$rcObj->userlink ;
|
|
|
|
|
$r .= $rcObj->usertalklink ;
|
|
|
|
|
|
|
|
|
|
# Comment
|
2005-02-22 06:04:03 +00:00
|
|
|
if ( $rc_type != RC_MOVE && $rc_type != RC_MOVE_OVER_REDIRECT ) {
|
|
|
|
|
$r .= $this->skin->commentBlock( $rc_comment, $rcObj->getTitle() );
|
2004-11-25 13:47:17 +00:00
|
|
|
}
|
|
|
|
|
|
2004-12-18 03:47:11 +00:00
|
|
|
if ($rcObj->numberofWatchingusers > 0) {
|
|
|
|
|
$r .= wfMsg('number_of_watching_users_RCview', $wgContLang->formatNum($rcObj->numberofWatchingusers));
|
|
|
|
|
}
|
|
|
|
|
|
2004-11-25 13:47:17 +00:00
|
|
|
$r .= "<br />\n" ;
|
|
|
|
|
return $r ;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Enhanced RC group
|
|
|
|
|
*/
|
|
|
|
|
function recentChangesBlockGroup ( $block ) {
|
|
|
|
|
global $wgStylePath, $wgContLang ;
|
|
|
|
|
|
2005-04-24 15:43:49 +00:00
|
|
|
$r = '';
|
2004-11-25 13:47:17 +00:00
|
|
|
|
|
|
|
|
# Collate list of users
|
|
|
|
|
$isnew = false ;
|
|
|
|
|
$unpatrolled = false;
|
|
|
|
|
$userlinks = array () ;
|
|
|
|
|
foreach ( $block AS $rcObj ) {
|
|
|
|
|
$oldid = $rcObj->mAttribs['rc_last_oldid'];
|
2005-07-03 07:16:20 +00:00
|
|
|
$newid = $rcObj->mAttribs['rc_this_oldid'];
|
2004-11-25 13:47:17 +00:00
|
|
|
if ( $rcObj->mAttribs['rc_new'] ) {
|
|
|
|
|
$isnew = true ;
|
|
|
|
|
}
|
|
|
|
|
$u = $rcObj->userlink ;
|
|
|
|
|
if ( !isset ( $userlinks[$u] ) ) {
|
|
|
|
|
$userlinks[$u] = 0 ;
|
|
|
|
|
}
|
|
|
|
|
if ( $rcObj->unpatrolled ) {
|
|
|
|
|
$unpatrolled = true;
|
|
|
|
|
}
|
|
|
|
|
$userlinks[$u]++ ;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Sort the list and convert to text
|
|
|
|
|
krsort ( $userlinks ) ;
|
|
|
|
|
asort ( $userlinks ) ;
|
|
|
|
|
$users = array () ;
|
|
|
|
|
foreach ( $userlinks as $userlink => $count) {
|
|
|
|
|
$text = $userlink ;
|
|
|
|
|
if ( $count > 1 ) $text .= " ({$count}×)" ;
|
|
|
|
|
array_push ( $users , $text ) ;
|
|
|
|
|
}
|
2005-02-25 09:13:03 +00:00
|
|
|
$users = ' <span class="changedby">['.implode('; ',$users).']</span>';
|
2004-11-25 13:47:17 +00:00
|
|
|
|
|
|
|
|
# Arrow
|
|
|
|
|
$rci = 'RCI'.$this->rcCacheIndex ;
|
|
|
|
|
$rcl = 'RCL'.$this->rcCacheIndex ;
|
|
|
|
|
$rcm = 'RCM'.$this->rcCacheIndex ;
|
|
|
|
|
$toggleLink = "javascript:toggleVisibility('$rci','$rcm','$rcl')" ;
|
|
|
|
|
$arrowdir = $wgContLang->isRTL() ? 'l' : 'r';
|
|
|
|
|
$tl = '<span id="'.$rcm.'"><a href="'.$toggleLink.'"><img src="'.$wgStylePath.'/common/images/Arr_'.$arrowdir.'.png" width="12" height="12" alt="+" /></a></span>' ;
|
|
|
|
|
$tl .= '<span id="'.$rcl.'" style="display:none"><a href="'.$toggleLink.'"><img src="'.$wgStylePath.'/common/images/Arr_d.png" width="12" height="12" alt="-" /></a></span>' ;
|
|
|
|
|
$r .= $tl ;
|
|
|
|
|
|
|
|
|
|
# Main line
|
2005-04-24 15:43:49 +00:00
|
|
|
|
2004-11-25 13:47:17 +00:00
|
|
|
$r .= '<tt>' ;
|
2005-04-24 15:43:49 +00:00
|
|
|
$r .= $this->recentChangesFlags( $isnew, false, $unpatrolled );
|
2004-11-25 13:47:17 +00:00
|
|
|
|
|
|
|
|
# Timestamp
|
|
|
|
|
$r .= ' '.$block[0]->timestamp.' ' ;
|
|
|
|
|
$r .= '</tt>' ;
|
|
|
|
|
|
|
|
|
|
# Article link
|
|
|
|
|
$link = $block[0]->link ;
|
|
|
|
|
if ( $block[0]->watched ) $link = '<strong>'.$link.'</strong>' ;
|
|
|
|
|
$r .= $link ;
|
|
|
|
|
|
|
|
|
|
$curIdEq = 'curid=' . $block[0]->mAttribs['rc_cur_id'];
|
2005-07-03 07:16:20 +00:00
|
|
|
$currentRevision = $block[0]->mAttribs['rc_this_oldid'];
|
2004-11-25 13:47:17 +00:00
|
|
|
if ( $block[0]->mAttribs['rc_type'] != RC_LOG ) {
|
|
|
|
|
# Changes
|
|
|
|
|
$r .= ' ('.count($block).' ' ;
|
|
|
|
|
if ( $isnew ) $r .= wfMsg('changes');
|
|
|
|
|
else $r .= $this->skin->makeKnownLinkObj( $block[0]->getTitle() , wfMsg('changes') ,
|
2005-07-03 07:16:20 +00:00
|
|
|
$curIdEq."&diff=$currentRevision&oldid=$oldid" ) ;
|
2004-11-25 13:47:17 +00:00
|
|
|
$r .= '; ' ;
|
|
|
|
|
|
|
|
|
|
# History
|
|
|
|
|
$r .= $this->skin->makeKnownLinkObj( $block[0]->getTitle(), wfMsg( 'history' ), $curIdEq.'&action=history' );
|
|
|
|
|
$r .= ')' ;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$r .= $users ;
|
2004-12-18 03:47:11 +00:00
|
|
|
|
|
|
|
|
if ($block[0]->numberofWatchingusers > 0) {
|
|
|
|
|
$r .= wfMsg('number_of_watching_users_RCview', $wgContLang->formatNum($block[0]->numberofWatchingusers));
|
|
|
|
|
}
|
2004-11-25 13:47:17 +00:00
|
|
|
$r .= "<br />\n" ;
|
|
|
|
|
|
|
|
|
|
# Sub-entries
|
|
|
|
|
$r .= '<div id="'.$rci.'" style="display:none">' ;
|
|
|
|
|
foreach ( $block AS $rcObj ) {
|
|
|
|
|
# Get rc_xxxx variables
|
|
|
|
|
extract( $rcObj->mAttribs );
|
|
|
|
|
|
|
|
|
|
$r .= '<img src="'.$wgStylePath.'/common/images/Arr_.png" width="12" height="12" />';
|
|
|
|
|
$r .= '<tt> ' ;
|
2005-04-24 15:43:49 +00:00
|
|
|
$r .= $this->recentChangesFlags( $rc_new, $rc_minor, $rcObj->unpatrolled );
|
2004-11-25 13:47:17 +00:00
|
|
|
$r .= ' </tt>' ;
|
|
|
|
|
|
|
|
|
|
$o = '' ;
|
|
|
|
|
if ( $rc_last_oldid != 0 ) {
|
|
|
|
|
$o = 'oldid='.$rc_last_oldid ;
|
|
|
|
|
}
|
|
|
|
|
if ( $rc_type == RC_LOG ) {
|
|
|
|
|
$link = $rcObj->timestamp ;
|
|
|
|
|
} else {
|
|
|
|
|
$link = $this->skin->makeKnownLinkObj( $rcObj->getTitle(), $rcObj->timestamp , "{$curIdEq}&$o" ) ;
|
|
|
|
|
}
|
|
|
|
|
$link = '<tt>'.$link.'</tt>' ;
|
|
|
|
|
|
|
|
|
|
$r .= $link ;
|
|
|
|
|
$r .= ' (' ;
|
|
|
|
|
$r .= $rcObj->curlink ;
|
|
|
|
|
$r .= '; ' ;
|
|
|
|
|
$r .= $rcObj->lastlink ;
|
|
|
|
|
$r .= ') . . '.$rcObj->userlink ;
|
|
|
|
|
$r .= $rcObj->usertalklink ;
|
2005-02-22 06:04:03 +00:00
|
|
|
$r .= $this->skin->commentBlock( $rc_comment, $rcObj->getTitle() );
|
2004-11-25 13:47:17 +00:00
|
|
|
$r .= "<br />\n" ;
|
|
|
|
|
}
|
|
|
|
|
$r .= "</div>\n" ;
|
|
|
|
|
|
|
|
|
|
$this->rcCacheIndex++ ;
|
|
|
|
|
return $r ;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* If enhanced RC is in use, this function takes the previously cached
|
|
|
|
|
* RC lines, arranges them, and outputs the HTML
|
|
|
|
|
*/
|
|
|
|
|
function recentChangesBlock () {
|
|
|
|
|
global $wgStylePath ;
|
|
|
|
|
if ( count ( $this->rc_cache ) == 0 ) return '' ;
|
|
|
|
|
$blockOut = '';
|
|
|
|
|
foreach ( $this->rc_cache AS $secureName => $block ) {
|
|
|
|
|
if ( count ( $block ) < 2 ) {
|
|
|
|
|
$blockOut .= $this->recentChangesBlockLine ( array_shift ( $block ) ) ;
|
|
|
|
|
} else {
|
|
|
|
|
$blockOut .= $this->recentChangesBlockGroup ( $block ) ;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return '<div>'.$blockOut.'</div>' ;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Called in a loop over all displayed RC entries
|
|
|
|
|
* Either returns the line, or caches it for later use
|
|
|
|
|
*/
|
|
|
|
|
function recentChangesLine( &$rc, $watched = false ) {
|
2004-12-18 03:47:11 +00:00
|
|
|
global $wgUser;
|
2004-11-25 13:47:17 +00:00
|
|
|
$usenew = $wgUser->getOption( 'usenewrc' );
|
|
|
|
|
if ( $usenew )
|
|
|
|
|
$line = $this->recentChangesLineNew ( $rc, $watched ) ;
|
|
|
|
|
else
|
|
|
|
|
$line = $this->recentChangesLineOld ( $rc, $watched ) ;
|
|
|
|
|
return $line ;
|
|
|
|
|
}
|
|
|
|
|
|
2004-12-18 03:47:11 +00:00
|
|
|
|
2004-11-25 13:47:17 +00:00
|
|
|
function recentChangesLineOld( &$rc, $watched = false ) {
|
2005-05-04 20:42:30 +00:00
|
|
|
global $wgTitle, $wgLang, $wgContLang, $wgUser, $wgUseRCPatrol,
|
2005-01-13 22:58:56 +00:00
|
|
|
$wgOnlySysopsCanPatrol, $wgSysopUserBans;
|
|
|
|
|
|
2004-11-25 13:47:17 +00:00
|
|
|
$fname = 'Skin::recentChangesLineOld';
|
|
|
|
|
wfProfileIn( $fname );
|
|
|
|
|
|
|
|
|
|
static $message;
|
|
|
|
|
if( !isset( $message ) ) {
|
|
|
|
|
foreach( explode(' ', 'diff hist minoreditletter newpageletter blocklink' ) as $msg ) {
|
|
|
|
|
$message[$msg] = wfMsg( $msg );
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-07-01 20:36:04 +00:00
|
|
|
|
2004-11-25 13:47:17 +00:00
|
|
|
# Extract DB fields into local scope
|
|
|
|
|
extract( $rc->mAttribs );
|
|
|
|
|
$curIdEq = 'curid=' . $rc_cur_id;
|
|
|
|
|
|
|
|
|
|
# Should patrol-related stuff be shown?
|
2005-07-01 20:36:04 +00:00
|
|
|
$unpatrolled = $wgUseRCPatrol && $wgUser->isLoggedIn() &&
|
2004-11-25 13:47:17 +00:00
|
|
|
( !$wgOnlySysopsCanPatrol || $wgUser->isAllowed('patrol') ) && $rc_patrolled == 0;
|
2005-07-01 20:36:04 +00:00
|
|
|
|
2004-11-25 13:47:17 +00:00
|
|
|
# Make date header if necessary
|
2005-05-04 20:42:30 +00:00
|
|
|
$date = $wgLang->date( $rc_timestamp, true, true );
|
2004-11-25 13:47:17 +00:00
|
|
|
$s = '';
|
|
|
|
|
if ( $date != $this->lastdate ) {
|
|
|
|
|
if ( '' != $this->lastdate ) { $s .= "</ul>\n"; }
|
|
|
|
|
$s .= "<h4>{$date}</h4>\n<ul class=\"special\">";
|
|
|
|
|
$this->lastdate = $date;
|
|
|
|
|
$this->rclistOpen = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$s .= '<li>';
|
|
|
|
|
|
|
|
|
|
if ( $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
|
|
|
|
|
# Diff
|
|
|
|
|
$s .= '(' . $message['diff'] . ') (';
|
|
|
|
|
# Hist
|
|
|
|
|
$s .= $this->skin->makeKnownLinkObj( $rc->getMovedToTitle(), $message['hist'], 'action=history' ) .
|
|
|
|
|
') . . ';
|
|
|
|
|
|
|
|
|
|
# "[[x]] moved to [[y]]"
|
|
|
|
|
$msg = ( $rc_type == RC_MOVE ) ? '1movedto2' : '1movedto2_redir';
|
|
|
|
|
$s .= wfMsg( $msg, $this->skin->makeKnownLinkObj( $rc->getTitle(), '', 'redirect=no' ),
|
|
|
|
|
$this->skin->makeKnownLinkObj( $rc->getMovedToTitle(), '' ) );
|
|
|
|
|
} elseif( $rc_namespace == NS_SPECIAL && preg_match( '!^Log/(.*)$!', $rc_title, $matches ) ) {
|
|
|
|
|
# Log updates, etc
|
|
|
|
|
$logtype = $matches[1];
|
|
|
|
|
$logname = LogPage::logName( $logtype );
|
|
|
|
|
$s .= '(' . $this->skin->makeKnownLinkObj( $rc->getTitle(), $logname ) . ')';
|
|
|
|
|
} else {
|
|
|
|
|
wfProfileIn("$fname-page");
|
|
|
|
|
# Diff link
|
|
|
|
|
if ( $rc_type == RC_NEW || $rc_type == RC_LOG ) {
|
|
|
|
|
$diffLink = $message['diff'];
|
|
|
|
|
} else {
|
|
|
|
|
if ( $unpatrolled )
|
|
|
|
|
$rcidparam = "&rcid={$rc_id}";
|
|
|
|
|
else
|
|
|
|
|
$rcidparam = "";
|
|
|
|
|
$diffLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $message['diff'],
|
|
|
|
|
"{$curIdEq}&diff={$rc_this_oldid}&oldid={$rc_last_oldid}{$rcidparam}",
|
|
|
|
|
'', '', ' tabindex="'.$rc->counter.'"');
|
|
|
|
|
}
|
|
|
|
|
$s .= '('.$diffLink.') (';
|
|
|
|
|
|
|
|
|
|
# History link
|
|
|
|
|
$s .= $this->skin->makeKnownLinkObj( $rc->getTitle(), $message['hist'], $curIdEq.'&action=history' );
|
|
|
|
|
$s .= ') . . ';
|
|
|
|
|
|
|
|
|
|
# M, N and ! (minor, new and unpatrolled)
|
2005-04-24 15:43:49 +00:00
|
|
|
$s .= ' ' . $this->recentChangesFlags( $rc_type == RC_NEW, $rc_minor, $unpatrolled, '' );
|
2004-11-25 13:47:17 +00:00
|
|
|
|
|
|
|
|
# Article link
|
|
|
|
|
# If it's a new article, there is no diff link, but if it hasn't been
|
|
|
|
|
# patrolled yet, we need to give users a way to do so
|
|
|
|
|
if ( $unpatrolled && $rc_type == RC_NEW )
|
|
|
|
|
$articleLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), '', "rcid={$rc_id}" );
|
|
|
|
|
else
|
|
|
|
|
$articleLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), '' );
|
|
|
|
|
|
|
|
|
|
if ( $watched ) {
|
|
|
|
|
$articleLink = '<strong>'.$articleLink.'</strong>';
|
|
|
|
|
}
|
2004-12-18 03:47:11 +00:00
|
|
|
|
2004-11-25 13:47:17 +00:00
|
|
|
$s .= ' '.$articleLink;
|
|
|
|
|
wfProfileOut("$fname-page");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
wfProfileIn( "$fname-rest" );
|
|
|
|
|
# Timestamp
|
2005-05-04 20:42:30 +00:00
|
|
|
$s .= '; ' . $wgLang->time( $rc_timestamp, true, true ) . ' . . ';
|
2004-11-25 13:47:17 +00:00
|
|
|
|
|
|
|
|
# User link (or contributions for unregistered users)
|
|
|
|
|
if ( 0 == $rc_user ) {
|
|
|
|
|
$contribsPage =& Title::makeTitle( NS_SPECIAL, 'Contributions' );
|
|
|
|
|
$userLink = $this->skin->makeKnownLinkObj( $contribsPage,
|
|
|
|
|
$rc_user_text, 'target=' . $rc_user_text );
|
|
|
|
|
} else {
|
|
|
|
|
$userPage =& Title::makeTitle( NS_USER, $rc_user_text );
|
|
|
|
|
$userLink = $this->skin->makeLinkObj( $userPage, $rc_user_text );
|
|
|
|
|
}
|
|
|
|
|
$s .= $userLink;
|
|
|
|
|
|
|
|
|
|
# User talk link
|
|
|
|
|
$talkname = $wgContLang->getNsText(NS_TALK); # use the shorter name
|
|
|
|
|
global $wgDisableAnonTalk;
|
|
|
|
|
if( 0 == $rc_user && $wgDisableAnonTalk ) {
|
|
|
|
|
$userTalkLink = '';
|
|
|
|
|
} else {
|
|
|
|
|
$userTalkPage =& Title::makeTitle( NS_USER_TALK, $rc_user_text );
|
|
|
|
|
$userTalkLink= $this->skin->makeLinkObj( $userTalkPage, $talkname );
|
|
|
|
|
}
|
|
|
|
|
# Block link
|
|
|
|
|
$blockLink='';
|
2005-01-13 22:58:56 +00:00
|
|
|
if ( ( $wgSysopUserBans || 0 == $rc_user ) && $wgUser->isAllowed('block') ) {
|
2004-11-25 13:47:17 +00:00
|
|
|
$blockLinkPage = Title::makeTitle( NS_SPECIAL, 'Blockip' );
|
2004-12-04 05:55:02 +00:00
|
|
|
$blockLink = $this->skin->makeKnownLinkObj( $blockLinkPage,
|
2004-11-25 13:47:17 +00:00
|
|
|
$message['blocklink'], 'ip='.$rc_user_text );
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if($blockLink) {
|
|
|
|
|
if($userTalkLink) $userTalkLink .= ' | ';
|
|
|
|
|
$userTalkLink .= $blockLink;
|
|
|
|
|
}
|
|
|
|
|
if($userTalkLink) $s.=' ('.$userTalkLink.')';
|
|
|
|
|
|
|
|
|
|
# Add comment
|
2005-02-22 06:04:03 +00:00
|
|
|
if ( $rc_type != RC_MOVE && $rc_type != RC_MOVE_OVER_REDIRECT ) {
|
|
|
|
|
$s .= $this->skin->commentBlock( $rc_comment, $rc->getTitle() );
|
2004-11-25 13:47:17 +00:00
|
|
|
}
|
2004-12-18 03:47:11 +00:00
|
|
|
|
|
|
|
|
if ($rc->numberofWatchingusers > 0) {
|
|
|
|
|
$s .= ' ' . wfMsg('number_of_watching_users_RCview', $wgContLang->formatNum($rc->numberofWatchingusers));
|
|
|
|
|
}
|
|
|
|
|
|
2004-11-25 13:47:17 +00:00
|
|
|
$s .= "</li>\n";
|
|
|
|
|
|
|
|
|
|
wfProfileOut( "$fname-rest" );
|
|
|
|
|
wfProfileOut( $fname );
|
|
|
|
|
return $s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function recentChangesLineNew( &$baseRC, $watched = false ) {
|
2005-05-04 20:42:30 +00:00
|
|
|
global $wgTitle, $wgLang, $wgContLang, $wgUser,
|
2005-01-13 22:58:56 +00:00
|
|
|
$wgUseRCPatrol, $wgOnlySysopsCanPatrol, $wgSysopUserBans;
|
2005-07-01 20:36:04 +00:00
|
|
|
|
2004-11-25 13:47:17 +00:00
|
|
|
static $message;
|
|
|
|
|
if( !isset( $message ) ) {
|
|
|
|
|
foreach( explode(' ', 'cur diff hist minoreditletter newpageletter last blocklink' ) as $msg ) {
|
|
|
|
|
$message[$msg] = wfMsg( $msg );
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-07-01 20:36:04 +00:00
|
|
|
|
2004-11-25 13:47:17 +00:00
|
|
|
# Create a specialised object
|
|
|
|
|
$rc = RCCacheEntry::newFromParent( $baseRC ) ;
|
|
|
|
|
|
|
|
|
|
# Extract fields from DB into the function scope (rc_xxxx variables)
|
|
|
|
|
extract( $rc->mAttribs );
|
|
|
|
|
$curIdEq = 'curid=' . $rc_cur_id;
|
|
|
|
|
|
|
|
|
|
# If it's a new day, add the headline and flush the cache
|
|
|
|
|
$date = $wgLang->date( $rc_timestamp, true);
|
|
|
|
|
$ret = '';
|
|
|
|
|
if ( $date != $this->lastdate ) {
|
|
|
|
|
# Process current cache
|
|
|
|
|
$ret = $this->recentChangesBlock () ;
|
|
|
|
|
$this->rc_cache = array() ;
|
|
|
|
|
$ret .= "<h4>{$date}</h4>\n";
|
|
|
|
|
$this->lastdate = $date;
|
|
|
|
|
}
|
2005-07-01 20:36:04 +00:00
|
|
|
|
2004-11-25 13:47:17 +00:00
|
|
|
# Should patrol-related stuff be shown?
|
2005-07-01 20:36:04 +00:00
|
|
|
if ( $wgUseRCPatrol && $wgUser->isLoggedIn() &&
|
2004-11-25 13:47:17 +00:00
|
|
|
( !$wgOnlySysopsCanPatrol || $wgUser->isAllowed('patrol') )) {
|
|
|
|
|
$rc->unpatrolled = !$rc_patrolled;
|
|
|
|
|
} else {
|
|
|
|
|
$rc->unpatrolled = false;
|
|
|
|
|
}
|
2005-07-01 20:36:04 +00:00
|
|
|
|
2004-11-25 13:47:17 +00:00
|
|
|
# Make article link
|
|
|
|
|
if ( $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
|
|
|
|
|
$msg = ( $rc_type == RC_MOVE ) ? "1movedto2" : "1movedto2_redir";
|
|
|
|
|
$clink = wfMsg( $msg, $this->skin->makeKnownLinkObj( $rc->getTitle(), '', 'redirect=no' ),
|
|
|
|
|
$this->skin->makeKnownLinkObj( $rc->getMovedToTitle(), '' ) );
|
|
|
|
|
} elseif( $rc_namespace == NS_SPECIAL && preg_match( '!^Log/(.*)$!', $rc_title, $matches ) ) {
|
|
|
|
|
# Log updates, etc
|
|
|
|
|
$logtype = $matches[1];
|
|
|
|
|
$logname = LogPage::logName( $logtype );
|
|
|
|
|
$clink = '(' . $this->skin->makeKnownLinkObj( $rc->getTitle(), $logname ) . ')';
|
|
|
|
|
} elseif ( $rc->unpatrolled && $rc_type == RC_NEW ) {
|
|
|
|
|
# Unpatrolled new page, give rc_id in query
|
|
|
|
|
$clink = $this->skin->makeKnownLinkObj( $rc->getTitle(), '', "rcid={$rc_id}" );
|
|
|
|
|
} else {
|
|
|
|
|
$clink = $this->skin->makeKnownLinkObj( $rc->getTitle(), '' ) ;
|
|
|
|
|
}
|
|
|
|
|
|
2005-05-04 20:42:30 +00:00
|
|
|
$time = $wgContLang->time( $rc_timestamp, true, true );
|
2004-11-25 13:47:17 +00:00
|
|
|
$rc->watched = $watched ;
|
|
|
|
|
$rc->link = $clink ;
|
|
|
|
|
$rc->timestamp = $time;
|
2004-12-18 03:47:11 +00:00
|
|
|
$rc->numberofWatchingusers = $baseRC->numberofWatchingusers;
|
2004-11-25 13:47:17 +00:00
|
|
|
|
|
|
|
|
# Make "cur" and "diff" links
|
2004-11-29 04:00:05 +00:00
|
|
|
$titleObj = $rc->getTitle();
|
|
|
|
|
if ( $rc->unpatrolled ) {
|
|
|
|
|
$rcIdQuery = "&rcid={$rc_id}";
|
|
|
|
|
} else {
|
|
|
|
|
$rcIdQuery = '';
|
|
|
|
|
}
|
2005-07-24 00:38:44 +00:00
|
|
|
$query = $curIdEq."&diff=$rc_this_oldid&oldid=$rc_last_oldid";
|
|
|
|
|
$aprops = ' tabindex="'.$baseRC->counter.'"';
|
|
|
|
|
$curLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $message['cur'], $query, '' ,'' , $aprops );
|
|
|
|
|
if( $rc_type == RC_NEW || $rc_type == RC_LOG || $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
|
|
|
|
|
if( $rc_type != RC_NEW ) {
|
|
|
|
|
$curLink = $message['cur'];
|
|
|
|
|
}
|
2004-11-25 13:47:17 +00:00
|
|
|
$diffLink = $message['diff'];
|
|
|
|
|
} else {
|
2004-11-29 04:00:05 +00:00
|
|
|
$diffLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $message['diff'], $query . $rcIdQuery, '' ,'' , $aprops );
|
2004-11-25 13:47:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Make "last" link
|
|
|
|
|
if ( $rc_last_oldid == 0 || $rc_type == RC_LOG || $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
|
|
|
|
|
$lastLink = $message['last'];
|
|
|
|
|
} else {
|
|
|
|
|
$lastLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $message['last'],
|
|
|
|
|
$curIdEq.'&diff='.$rc_this_oldid.'&oldid='.$rc_last_oldid . $rcIdQuery );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Make user link (or user contributions for unregistered users)
|
|
|
|
|
if ( $rc_user == 0 ) {
|
|
|
|
|
$contribsPage =& Title::makeTitle( NS_SPECIAL, 'Contributions' );
|
|
|
|
|
$userLink = $this->skin->makeKnownLinkObj( $contribsPage,
|
|
|
|
|
$rc_user_text, 'target=' . $rc_user_text );
|
|
|
|
|
} else {
|
|
|
|
|
$userPage =& Title::makeTitle( NS_USER, $rc_user_text );
|
|
|
|
|
$userLink = $this->skin->makeLinkObj( $userPage, $rc_user_text );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$rc->userlink = $userLink;
|
|
|
|
|
$rc->lastlink = $lastLink;
|
|
|
|
|
$rc->curlink = $curLink;
|
|
|
|
|
$rc->difflink = $diffLink;
|
|
|
|
|
|
|
|
|
|
# Make user talk link
|
|
|
|
|
$talkname = $wgContLang->getNsText( NS_TALK ); # use the shorter name
|
|
|
|
|
$userTalkPage =& Title::makeTitle( NS_USER_TALK, $rc_user_text );
|
|
|
|
|
$userTalkLink = $this->skin->makeLinkObj( $userTalkPage, $talkname );
|
|
|
|
|
|
|
|
|
|
global $wgDisableAnonTalk;
|
2005-01-13 22:58:56 +00:00
|
|
|
if ( ( $wgSysopUserBans || 0 == $rc_user ) && $wgUser->isAllowed('block') ) {
|
2004-11-25 13:47:17 +00:00
|
|
|
$blockPage =& Title::makeTitle( NS_SPECIAL, 'Blockip' );
|
|
|
|
|
$blockLink = $this->skin->makeKnownLinkObj( $blockPage,
|
|
|
|
|
$message['blocklink'], 'ip='.$rc_user_text );
|
|
|
|
|
if( $wgDisableAnonTalk )
|
|
|
|
|
$rc->usertalklink = ' ('.$blockLink.')';
|
|
|
|
|
else
|
|
|
|
|
$rc->usertalklink = ' ('.$userTalkLink.' | '.$blockLink.')';
|
|
|
|
|
} else {
|
|
|
|
|
if( $wgDisableAnonTalk && ($rc_user == 0) )
|
|
|
|
|
$rc->usertalklink = '';
|
|
|
|
|
else
|
|
|
|
|
$rc->usertalklink = ' ('.$userTalkLink.')';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Put accumulated information into the cache, for later display
|
|
|
|
|
# Page moves go on their own line
|
|
|
|
|
$title = $rc->getTitle();
|
|
|
|
|
$secureName = $title->getPrefixedDBkey();
|
2004-12-10 05:02:23 +00:00
|
|
|
if ( $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
|
2004-11-25 13:47:17 +00:00
|
|
|
# Use an @ character to prevent collision with page names
|
|
|
|
|
$this->rc_cache['@@' . ($this->rcMoveIndex++)] = array($rc);
|
|
|
|
|
} else {
|
|
|
|
|
if ( !isset ( $this->rc_cache[$secureName] ) ) $this->rc_cache[$secureName] = array() ;
|
|
|
|
|
array_push ( $this->rc_cache[$secureName] , $rc ) ;
|
|
|
|
|
}
|
|
|
|
|
return $ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2005-05-04 20:42:30 +00:00
|
|
|
?>
|