* Add a nice fieldset around the input form
[lhc/web/wiklou.git] / includes / ChangesList.php
1 <?php
2
3 /**
4 * @todo document
5 */
6 class RCCacheEntry extends RecentChange
7 {
8 var $secureName, $link;
9 var $curlink , $difflink, $lastlink , $usertalklink , $versionlink ;
10 var $userlink, $timestamp, $watched;
11
12 static function newFromParent( $rc ) {
13 $rc2 = new RCCacheEntry;
14 $rc2->mAttribs = $rc->mAttribs;
15 $rc2->mExtra = $rc->mExtra;
16 return $rc2;
17 }
18 } ;
19
20 /**
21 * Class to show various lists of changes:
22 * - what links here
23 * - related changes
24 * - recent changes
25 */
26 class ChangesList {
27 # Called by history lists and recent changes
28 #
29
30 /** @todo document */
31 function __construct( &$skin ) {
32 $this->skin =& $skin;
33 $this->preCacheMessages();
34 }
35
36 /**
37 * Fetch an appropriate changes list class for the specified user
38 * Some users might want to use an enhanced list format, for instance
39 *
40 * @param $user User to fetch the list class for
41 * @return ChangesList derivative
42 */
43 public static function newFromUser( &$user ) {
44 $sk = $user->getSkin();
45 $list = NULL;
46 if( wfRunHooks( 'FetchChangesList', array( &$user, &$sk, &$list ) ) ) {
47 return $user->getOption( 'usenewrc' ) ? new EnhancedChangesList( $sk ) : new OldChangesList( $sk );
48 } else {
49 return $list;
50 }
51 }
52
53 /**
54 * As we use the same small set of messages in various methods and that
55 * they are called often, we call them once and save them in $this->message
56 */
57 function preCacheMessages() {
58 // Precache various messages
59 if( !isset( $this->message ) ) {
60 foreach( explode(' ', 'cur diff hist minoreditletter newpageletter last '.
61 'blocklink history boteditletter semicolon-separator' ) as $msg ) {
62 $this->message[$msg] = wfMsgExt( $msg, array( 'escape') );
63 }
64 }
65 }
66
67
68 /**
69 * Returns the appropriate flags for new page, minor change and patrolling
70 */
71 function recentChangesFlags( $new, $minor, $patrolled, $nothing = '&nbsp;', $bot = false ) {
72 $f = $new ? '<span class="newpage">' . $this->message['newpageletter'] . '</span>'
73 : $nothing;
74 $f .= $minor ? '<span class="minor">' . $this->message['minoreditletter'] . '</span>'
75 : $nothing;
76 $f .= $bot ? '<span class="bot">' . $this->message['boteditletter'] . '</span>' : $nothing;
77 $f .= $patrolled ? '<span class="unpatrolled">!</span>' : $nothing;
78 return "<tt>$f</tt>";
79 }
80
81 /**
82 * Returns text for the start of the tabular part of RC
83 */
84 function beginRecentChangesList() {
85 $this->rc_cache = array();
86 $this->rcMoveIndex = 0;
87 $this->rcCacheIndex = 0;
88 $this->lastdate = '';
89 $this->rclistOpen = false;
90 return '';
91 }
92
93 /**
94 * Returns text for the end of RC
95 */
96 function endRecentChangesList() {
97 if( $this->rclistOpen ) {
98 return "</ul>\n";
99 } else {
100 return '';
101 }
102 }
103
104 /**
105 * int $field one of DELETED_* bitfield constants
106 * @return bool
107 */
108 function isDeleted( $rc, $field ) {
109 return ($rc->mAttribs['rc_deleted'] & $field) == $field;
110 }
111
112 /**
113 * Determine if the current user is allowed to view a particular
114 * field of this revision, if it's marked as deleted.
115 * @param int $field
116 * @return bool
117 */
118 function userCan( $rc, $field ) {
119 if( ( $rc->mAttribs['rc_deleted'] & $field ) == $field ) {
120 global $wgUser;
121 $permission = ( $rc->mAttribs['rc_deleted'] & Revision::DELETED_RESTRICTED ) == Revision::DELETED_RESTRICTED
122 ? 'hiderevision'
123 : 'deleterevision';
124 wfDebug( "Checking for $permission due to $field match on $rc->mAttribs['rc_deleted']\n" );
125 return $wgUser->isAllowed( $permission );
126 } else {
127 return true;
128 }
129 }
130
131 function insertMove( &$s, $rc ) {
132 # Diff
133 $s .= '(' . $this->message['diff'] . ') (';
134 # Hist
135 $s .= $this->skin->makeKnownLinkObj( $rc->getMovedToTitle(), $this->message['hist'], 'action=history' ) .
136 ') . . ';
137
138 # "[[x]] moved to [[y]]"
139 $msg = ( $rc->mAttribs['rc_type'] == RC_MOVE ) ? '1movedto2' : '1movedto2_redir';
140 $s .= wfMsg( $msg, $this->skin->makeKnownLinkObj( $rc->getTitle(), '', 'redirect=no' ),
141 $this->skin->makeKnownLinkObj( $rc->getMovedToTitle(), '' ) );
142 }
143
144 function insertDateHeader(&$s, $rc_timestamp) {
145 global $wgLang;
146
147 # Make date header if necessary
148 $date = $wgLang->date( $rc_timestamp, true, true );
149 $s = '';
150 if( $date != $this->lastdate ) {
151 if( '' != $this->lastdate ) {
152 $s .= "</ul>\n";
153 }
154 $s .= '<h4>'.$date."</h4>\n<ul class=\"special\">";
155 $this->lastdate = $date;
156 $this->rclistOpen = true;
157 }
158 }
159
160 function insertLog(&$s, $title, $logtype) {
161 $logname = LogPage::logName( $logtype );
162 $s .= '(' . $this->skin->makeKnownLinkObj($title, $logname ) . ')';
163 }
164
165 function insertDiffHist(&$s, &$rc, $unpatrolled) {
166 # Diff link
167 if( !$this->userCan($rc,Revision::DELETED_TEXT) ) {
168 $diffLink = $this->message['diff'];
169 } else if( $rc->mAttribs['rc_type'] == RC_NEW || $rc->mAttribs['rc_type'] == RC_LOG ) {
170 $diffLink = $this->message['diff'];
171 } else {
172 $rcidparam = $unpatrolled
173 ? array( 'rcid' => $rc->mAttribs['rc_id'] )
174 : array();
175 $diffLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['diff'],
176 wfArrayToCGI( array(
177 'curid' => $rc->mAttribs['rc_cur_id'],
178 'diff' => $rc->mAttribs['rc_this_oldid'],
179 'oldid' => $rc->mAttribs['rc_last_oldid'] ),
180 $rcidparam ),
181 '', '', ' tabindex="'.$rc->counter.'"');
182 }
183 $s .= '('.$diffLink.') (';
184
185 # History link
186 $s .= $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['hist'],
187 wfArrayToCGI( array(
188 'curid' => $rc->mAttribs['rc_cur_id'],
189 'action' => 'history' ) ) );
190 $s .= ') . . ';
191 }
192
193 function insertArticleLink(&$s, &$rc, $unpatrolled, $watched) {
194 # Article link
195 # If it's a new article, there is no diff link, but if it hasn't been
196 # patrolled yet, we need to give users a way to do so
197 $params = ( $unpatrolled && $rc->mAttribs['rc_type'] == RC_NEW )
198 ? 'rcid='.$rc->mAttribs['rc_id']
199 : '';
200 if( $this->isDeleted($rc,Revision::DELETED_TEXT) ) {
201 $articlelink = $this->skin->makeKnownLinkObj( $rc->getTitle(), '', $params );
202 $articlelink = '<span class="history-deleted">'.$articlelink.'</span>';
203 } else {
204 $articlelink = ' '. $this->skin->makeKnownLinkObj( $rc->getTitle(), '', $params );
205 }
206 if( $watched )
207 $articlelink = "<strong class=\"mw-watched\">{$articlelink}</strong>";
208 global $wgContLang;
209 $articlelink .= $wgContLang->getDirMark();
210
211 wfRunHooks('ChangesListInsertArticleLink',
212 array(&$this, &$articlelink, &$s, &$rc, $unpatrolled, $watched));
213
214 $s .= ' '.$articlelink;
215 }
216
217 function insertTimestamp(&$s, $rc) {
218 global $wgLang;
219 # Timestamp
220 $s .= $this->message['semicolon-separator'] . ' ' . $wgLang->time( $rc->mAttribs['rc_timestamp'], true, true ) . ' . . ';
221 }
222
223 /** Insert links to user page, user talk page and eventually a blocking link */
224 function insertUserRelatedLinks(&$s, &$rc) {
225 if ( $this->isDeleted($rc,Revision::DELETED_USER) ) {
226 $s .= ' <span class="history-deleted">' . wfMsgHtml('rev-deleted-user') . '</span>';
227 } else {
228 $s .= $this->skin->userLink( $rc->mAttribs['rc_user'], $rc->mAttribs['rc_user_text'] );
229 $s .= $this->skin->userToolLinks( $rc->mAttribs['rc_user'], $rc->mAttribs['rc_user_text'] );
230 }
231 }
232
233 /** insert a formatted action */
234 function insertAction(&$s, &$rc) {
235 # Add action
236 if( $rc->mAttribs['rc_type'] == RC_LOG ) {
237 // log action
238 if ( $this->isDeleted($rc,LogPage::DELETED_ACTION) ) {
239 $s .= ' <span class="history-deleted">' . wfMsgHtml('rev-deleted-event') . '</span>';
240 } else {
241 $s .= ' ' . LogPage::actionText( $rc->mAttribs['rc_log_type'], $rc->mAttribs['rc_log_action'],
242 $rc->getTitle(), $this->skin, LogPage::extractParams($rc->mAttribs['rc_params']), true, true );
243 }
244 }
245 }
246
247 /** insert a formatted comment */
248 function insertComment(&$s, &$rc) {
249 # Add comment
250 if( $rc->mAttribs['rc_type'] != RC_MOVE && $rc->mAttribs['rc_type'] != RC_MOVE_OVER_REDIRECT ) {
251 // log comment
252 if ( $this->isDeleted($rc,Revision::DELETED_COMMENT) ) {
253 $s .= ' <span class="history-deleted">' . wfMsgHtml('rev-deleted-comment') . '</span>';
254 } else {
255 $s .= $this->skin->commentBlock( $rc->mAttribs['rc_comment'], $rc->getTitle() );
256 }
257 }
258 }
259
260 /**
261 * Check whether to enable recent changes patrol features
262 * @return bool
263 */
264 function usePatrol() {
265 global $wgUseRCPatrol, $wgUser;
266 return( $wgUseRCPatrol && ($wgUser->isAllowed('patrol') || $wgUser->isAllowed('patrolmarks')) );
267 }
268
269 /**
270 * Returns the string which indicates the number of watching users
271 */
272 function numberofWatchingusers( $count ) {
273 global $wgLang;
274 static $cache = array();
275 if ( $count > 0 ) {
276 if ( !isset( $cache[$count] ) ) {
277 $cache[$count] = wfMsgExt('number_of_watching_users_RCview',
278 array('parsemag', 'escape'), $wgLang->formatNum($count));
279 }
280 return $cache[$count];
281 } else {
282 return '';
283 }
284 }
285 }
286
287
288 /**
289 * Generate a list of changes using the good old system (no javascript)
290 */
291 class OldChangesList extends ChangesList {
292 /**
293 * Format a line using the old system (aka without any javascript).
294 */
295 function recentChangesLine( &$rc, $watched = false ) {
296 global $wgContLang, $wgRCShowChangedSize;
297
298 $fname = 'ChangesList::recentChangesLineOld';
299 wfProfileIn( $fname );
300
301 # Extract DB fields into local scope
302 // FIXME: Would be good to replace this extract() call with something that explicitly initializes local variables.
303 extract( $rc->mAttribs );
304
305 # Should patrol-related stuff be shown?
306 $unpatrolled = $this->usePatrol() && $rc_patrolled == 0;
307
308 $this->insertDateHeader($s,$rc_timestamp);
309
310 $s .= '<li>';
311
312 // Moved pages
313 if( $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
314 $this->insertMove( $s, $rc );
315 // Log entries
316 } elseif( $rc_log_type !='' ) {
317 $logtitle = Title::newFromText( "Log/$rc_log_type", NS_SPECIAL );
318 $this->insertLog( $s, $logtitle, $rc_log_type );
319 // Log entries (old format) or log targets, and special pages
320 } elseif( $rc_namespace == NS_SPECIAL ) {
321 list( $specialName, $specialSubpage ) = SpecialPage::resolveAliasWithSubpage( $rc_title );
322 if ( $specialName == 'Log' ) {
323 $this->insertLog( $s, $rc->getTitle(), $specialSubpage );
324 } else {
325 wfDebug( "Unexpected special page in recentchanges\n" );
326 }
327 // Log entries
328 } else {
329 wfProfileIn($fname.'-page');
330
331 $this->insertDiffHist($s, $rc, $unpatrolled);
332
333 # M, N, b and ! (minor, new, bot and unpatrolled)
334 $s .= ' ' . $this->recentChangesFlags( $rc_type == RC_NEW, $rc_minor, $unpatrolled, '', $rc_bot );
335 $this->insertArticleLink($s, $rc, $unpatrolled, $watched);
336
337 wfProfileOut($fname.'-page');
338 }
339
340 wfProfileIn( $fname.'-rest' );
341
342 $this->insertTimestamp($s,$rc);
343
344 if( $wgRCShowChangedSize ) {
345 $s .= ( $rc->getCharacterDifference() == '' ? '' : $rc->getCharacterDifference() . ' . . ' );
346 }
347
348 $this->insertUserRelatedLinks($s,$rc);
349 $this->insertAction($s, $rc);
350 $this->insertComment($s, $rc);
351
352 # Mark revision as deleted
353 if ( !$rc_log_type && $this->isDeleted($rc,Revision::DELETED_TEXT) )
354 $s .= ' <tt>' . wfMsgHtml( 'deletedrev' ) . '</tt>';
355 if($rc->numberofWatchingusers > 0) {
356 $s .= ' ' . wfMsg('number_of_watching_users_RCview', $wgContLang->formatNum($rc->numberofWatchingusers));
357 }
358
359 $s .= "</li>\n";
360
361 wfProfileOut( $fname.'-rest' );
362
363 wfProfileOut( $fname );
364 return $s;
365 }
366 }
367
368
369 /**
370 * Generate a list of changes using an Enhanced system (use javascript).
371 */
372 class EnhancedChangesList extends ChangesList {
373 /**
374 * Format a line for enhanced recentchange (aka with javascript and block of lines).
375 */
376 function recentChangesLine( &$baseRC, $watched = false ) {
377 global $wgLang, $wgContLang;
378
379 # Create a specialised object
380 $rc = RCCacheEntry::newFromParent( $baseRC );
381
382 # Extract fields from DB into the function scope (rc_xxxx variables)
383 // FIXME: Would be good to replace this extract() call with something that explicitly initializes local variables.
384 extract( $rc->mAttribs );
385 $curIdEq = 'curid=' . $rc_cur_id;
386
387 # If it's a new day, add the headline and flush the cache
388 $date = $wgLang->date( $rc_timestamp, true);
389 $ret = '';
390 if( $date != $this->lastdate ) {
391 # Process current cache
392 $ret = $this->recentChangesBlock();
393 $this->rc_cache = array();
394 $ret .= "<h4>{$date}</h4>\n";
395 $this->lastdate = $date;
396 }
397
398 # Should patrol-related stuff be shown?
399 if( $this->usePatrol() ) {
400 $rc->unpatrolled = !$rc_patrolled;
401 } else {
402 $rc->unpatrolled = false;
403 }
404
405 $showdifflinks = true;
406 # Make article link
407 if( $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
408 $msg = ( $rc_type == RC_MOVE ) ? "1movedto2" : "1movedto2_redir";
409 $clink = wfMsg( $msg, $this->skin->makeKnownLinkObj( $rc->getTitle(), '', 'redirect=no' ),
410 $this->skin->makeKnownLinkObj( $rc->getMovedToTitle(), '' ) );
411 } elseif( $rc_namespace == NS_SPECIAL ) {
412 // Log entries (old format) and special pages
413 list( $specialName, $logtype ) = SpecialPage::resolveAliasWithSubpage( $rc_title );
414 if ( $specialName == 'Log' ) {
415 # Log updates, etc
416 $logname = LogPage::logName( $logtype );
417 $clink = '(' . $this->skin->makeKnownLinkObj( $rc->getTitle(), $logname ) . ')';
418 } else {
419 wfDebug( "Unexpected special page in recentchanges\n" );
420 $clink = '';
421 }
422 } elseif( $rc_log_type !='' ) {
423 // Log entries
424 $logtitle = Title::newFromText( "Log/$rc_log_type", NS_SPECIAL );
425 $logname = LogPage::logName( $rc_log_type );
426 $clink = '(' . $this->skin->makeKnownLinkObj($logtitle, $logname ) . ')';
427 } if( $this->isDeleted($rc,Revision::DELETED_TEXT) ) {
428 $clink = '<span class="history-deleted">' . $this->skin->makeKnownLinkObj( $rc->getTitle(), '' ) . '</span>';
429 if ( !ChangesList::userCan($rc,Revision::DELETED_TEXT) )
430 $showdifflinks = false;
431 } else if( $rc->unpatrolled && $rc_type == RC_NEW ) {
432 # Unpatrolled new page, give rc_id in query
433 $clink = $this->skin->makeKnownLinkObj( $rc->getTitle(), '', "rcid={$rc_id}" );
434 } else {
435 $clink = $this->skin->makeKnownLinkObj( $rc->getTitle(), '' );
436 }
437
438 $time = $wgContLang->time( $rc_timestamp, true, true );
439 $rc->watched = $watched;
440 $rc->link = $clink;
441 $rc->timestamp = $time;
442 $rc->numberofWatchingusers = $baseRC->numberofWatchingusers;
443
444 # Make "cur" and "diff" links
445 if( $rc->unpatrolled ) {
446 $rcIdQuery = "&rcid={$rc_id}";
447 } else {
448 $rcIdQuery = '';
449 }
450 $querycur = $curIdEq."&diff=0&oldid=$rc_this_oldid";
451 $querydiff = $curIdEq."&diff=$rc_this_oldid&oldid=$rc_last_oldid$rcIdQuery";
452 $aprops = ' tabindex="'.$baseRC->counter.'"';
453 $curLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['cur'], $querycur, '' ,'', $aprops );
454
455 # Make "diff" an "cur" links
456 if ( !$showdifflinks ) {
457 $curLink = $this->message['cur'];
458 $diffLink = $this->message['diff'];
459 } else if( $rc_type == RC_NEW || $rc_type == RC_LOG || $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
460 if( $rc_type != RC_NEW ) {
461 $curLink = $this->message['cur'];
462 }
463 $diffLink = $this->message['diff'];
464 } else {
465 $diffLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['diff'], $querydiff, '' ,'', $aprops );
466 }
467
468 # Make "last" link
469 if( !$showdifflinks ) {
470 $lastLink = $this->message['last'];
471 } else if( $rc_last_oldid == 0 || $rc_type == RC_LOG || $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
472 $lastLink = $this->message['last'];
473 } else {
474 $lastLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['last'],
475 $curIdEq.'&diff='.$rc_this_oldid.'&oldid='.$rc_last_oldid . $rcIdQuery );
476 }
477
478 # Make user links
479 if ( $this->isDeleted($rc,Revision::DELETED_USER) ) {
480 $rc->userlink = ' <span class="history-deleted">' . wfMsgHtml('rev-deleted-user') . '</span>';
481 } else {
482 $rc->userlink = $this->skin->userLink( $rc_user, $rc_user_text );
483 $rc->usertalklink = $this->skin->userToolLinks( $rc_user, $rc_user_text );
484 }
485
486 $rc->lastlink = $lastLink;
487 $rc->curlink = $curLink;
488 $rc->difflink = $diffLink;
489
490 # Put accumulated information into the cache, for later display
491 # Page moves go on their own line
492 $title = $rc->getTitle();
493 $secureName = $title->getPrefixedDBkey();
494 if( $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
495 # Use an @ character to prevent collision with page names
496 $this->rc_cache['@@' . ($this->rcMoveIndex++)] = array($rc);
497 } else {
498 if( !isset ( $this->rc_cache[$secureName] ) ) {
499 $this->rc_cache[$secureName] = array();
500 }
501 array_push( $this->rc_cache[$secureName], $rc );
502 }
503 return $ret;
504 }
505
506 /**
507 * Enhanced RC group
508 */
509 function recentChangesBlockGroup( $block ) {
510 global $wgLang, $wgContLang, $wgRCShowChangedSize;
511 $r = '<table cellpadding="0" cellspacing="0"><tr>';
512
513 # Collate list of users
514 $isnew = false;
515 $namehidden = true;
516 $unpatrolled = false;
517 $userlinks = array();
518 foreach( $block as $rcObj ) {
519 $oldid = $rcObj->mAttribs['rc_last_oldid'];
520 if( $rcObj->mAttribs['rc_new'] ) {
521 $isnew = true;
522 }
523 // If all log actions to this page were hidden, then don't
524 // give the name of the affected page for this block!
525 if( !($rcObj->mAttribs['rc_deleted'] & LogPage::DELETED_ACTION) ) {
526 $namehidden = false;
527 }
528 $u = $rcObj->userlink;
529 if( !isset( $userlinks[$u] ) ) {
530 $userlinks[$u] = 0;
531 }
532 if( $rcObj->unpatrolled ) {
533 $unpatrolled = true;
534 }
535 $bot = $rcObj->mAttribs['rc_bot'];
536 $userlinks[$u]++;
537 }
538
539 # Sort the list and convert to text
540 krsort( $userlinks );
541 asort( $userlinks );
542 $users = array();
543 foreach( $userlinks as $userlink => $count) {
544 $text = $userlink;
545 $text .= $wgContLang->getDirMark();
546 if( $count > 1 ) {
547 $text .= ' ('.$count.'&times;)';
548 }
549 array_push( $users, $text );
550 }
551
552 $users = ' <span class="changedby">[' . implode( $this->message['semicolon-separator'] . ' ', $users ) . ']</span>';
553
554 # Arrow
555 $rci = 'RCI'.$this->rcCacheIndex;
556 $rcl = 'RCL'.$this->rcCacheIndex;
557 $rcm = 'RCM'.$this->rcCacheIndex;
558 $toggleLink = "javascript:toggleVisibility('$rci','$rcm','$rcl')";
559 $tl = '<span id="'.$rcm.'"><a href="'.$toggleLink.'">' . $this->sideArrow() . '</a></span>';
560 $tl .= '<span id="'.$rcl.'" style="display:none"><a href="'.$toggleLink.'">' . $this->downArrow() . '</a></span>';
561 $r .= '<td valign="top">'.$tl;
562
563 # Main line
564 $r .= ' '.$this->recentChangesFlags( $isnew, false, $unpatrolled, '&nbsp;', $bot );
565
566 # Timestamp
567 $r .= '&nbsp;<tt>'.$block[0]->timestamp.'&nbsp;</tt></td><td>';
568
569 # Article link
570 if ( $namehidden )
571 $r .= ' <span class="history-deleted">' . wfMsgHtml('rev-deleted-event') . '</span>';
572 else
573 $r .= $this->maybeWatchedLink( $block[0]->link, $block[0]->watched );
574 $r .= $wgContLang->getDirMark();
575
576 $curIdEq = 'curid=' . $block[0]->mAttribs['rc_cur_id'];
577 $currentRevision = $block[0]->mAttribs['rc_this_oldid'];
578 if( $block[0]->mAttribs['rc_type'] != RC_LOG ) {
579 # Changes
580 $n = count($block);
581 static $nchanges = array();
582 if ( !isset( $nchanges[$n] ) ) {
583 $nchanges[$n] = wfMsgExt( 'nchanges', array( 'parsemag', 'escape'),
584 $wgLang->formatNum( $n ) );
585 }
586
587 $r .= ' (';
588
589 if( !ChangesList::userCan($rcObj,Revision::DELETED_TEXT) ) {
590 $r .= $nchanges[$n];
591 } else if( $isnew ) {
592 $r .= $nchanges[$n];
593 } else {
594 $r .= $this->skin->makeKnownLinkObj( $block[0]->getTitle(),
595 $nchanges[$n], $curIdEq."&diff=$currentRevision&oldid=$oldid" );
596 }
597
598 if( $wgRCShowChangedSize ) {
599 # Character difference
600 $chardiff = $rcObj->getCharacterDifference( $block[ count( $block ) - 1 ]->mAttribs['rc_old_len'],
601 $block[0]->mAttribs['rc_new_len'] );
602 if( $chardiff == '' ) {
603 $r .= ') ';
604 } else {
605 $r .= ' ' . $chardiff. ' . . ';
606 }
607 }
608
609 # History
610 $r .= '(' . $this->skin->makeKnownLinkObj( $block[0]->getTitle(),
611 $this->message['history'], $curIdEq.'&action=history' );
612 $r .= ')';
613 }
614
615 $r .= $users;
616 $r .=$this->numberofWatchingusers($block[0]->numberofWatchingusers);
617
618 $r .= "</td></tr></table>\n";
619
620 # Sub-entries
621 $r .= '<div id="'.$rci.'" style="display:none; font-size:95%;"><table cellpadding="0" cellspacing="0">';
622 foreach( $block as $rcObj ) {
623 # Get rc_xxxx variables
624 // FIXME: Would be good to replace this extract() call with something that explicitly initializes local variables.
625 extract( $rcObj->mAttribs );
626
627 #$r .= '<tr><td valign="top">'.$this->spacerArrow();
628 $r .= '<tr><td valign="top">'.$this->spacerIndent();
629 $r .= '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
630 $r .= $this->recentChangesFlags( $rc_new, $rc_minor, $rcObj->unpatrolled, '&nbsp;', $rc_bot );
631 $r .= '&nbsp;&nbsp;</td><td valign="top">';
632
633 $o = '';
634 if( $rc_this_oldid != 0 ) {
635 $o = 'oldid='.$rc_this_oldid;
636 }
637 # Revision link
638 if( $rc_type == RC_LOG ) {
639 $link = '<tt>'.$rcObj->timestamp.'</tt> ';
640 } else if( !ChangesList::userCan($rcObj,Revision::DELETED_TEXT) ) {
641 $link = '<span class="history-deleted"><tt>'.$rcObj->timestamp.'</tt></span> ';
642 } else {
643 $link = '<tt>'.$this->skin->makeKnownLinkObj( $rcObj->getTitle(), $rcObj->timestamp, $curIdEq.'&'.$o ).'</tt>';
644 if( $this->isDeleted($rcObj,Revision::DELETED_TEXT) )
645 $link = '<span class="history-deleted">'.$link.'</span> ';
646 }
647 $r .= $link;
648
649 if ( !$rc_log_type ) {
650 $r .= ' (';
651 $r .= $rcObj->curlink;
652 $r .= $this->message['semicolon-separator'] . ' ';
653 $r .= $rcObj->lastlink;
654 $r .= ')';
655 } else {
656 $logname = LogPage::logName( $rc_log_type );
657 $logtitle = Title::newFromText( "Log/$rc_log_type", NS_SPECIAL );
658 $r .= '(' . $this->skin->makeKnownLinkObj($logtitle, $logname ) . ')';
659 }
660 $r .= ' . . ';
661
662 # Character diff
663 if( $wgRCShowChangedSize ) {
664 $r .= ( $rcObj->getCharacterDifference() == '' ? '' : $rcObj->getCharacterDifference() . ' . . ' ) ;
665 }
666 # User links
667 $r .= $rcObj->userlink;
668 $r .= $rcObj->usertalklink;
669 // log action
670 parent::insertAction($r, $rcObj);
671 // log comment
672 parent::insertComment($r, $rcObj);
673 # Mark revision as deleted
674 if ( !$rc_log_type && $this->isDeleted($rcObj,Revision::DELETED_TEXT) )
675 $r .= ' <tt>' . wfMsgHtml( 'deletedrev' ) . '</tt>';
676
677 $r .= "</td></tr>\n";
678 }
679 $r .= "</table></div>\n";
680
681 $this->rcCacheIndex++;
682 return $r;
683 }
684
685 function maybeWatchedLink( $link, $watched=false ) {
686 if( $watched ) {
687 // FIXME: css style might be more appropriate
688 return '<strong class="mw-watched">' . $link . '</strong>';
689 } else {
690 return $link;
691 }
692 }
693
694 /**
695 * Generate HTML for an arrow or placeholder graphic
696 * @param string $dir one of '', 'd', 'l', 'r'
697 * @param string $alt text
698 * @return string HTML <img> tag
699 * @access private
700 */
701 function arrow( $dir, $alt='' ) {
702 global $wgStylePath;
703 $encUrl = htmlspecialchars( $wgStylePath . '/common/images/Arr_' . $dir . '.png' );
704 $encAlt = htmlspecialchars( $alt );
705 return "<img src=\"$encUrl\" width=\"12\" height=\"12\" alt=\"$encAlt\" />";
706 }
707
708 /**
709 * Generate HTML for a right- or left-facing arrow,
710 * depending on language direction.
711 * @return string HTML <img> tag
712 * @access private
713 */
714 function sideArrow() {
715 global $wgContLang;
716 $dir = $wgContLang->isRTL() ? 'l' : 'r';
717 return $this->arrow( $dir, '+' );
718 }
719
720 /**
721 * Generate HTML for a down-facing arrow
722 * depending on language direction.
723 * @return string HTML <img> tag
724 * @access private
725 */
726 function downArrow() {
727 return $this->arrow( 'd', '-' );
728 }
729
730 /**
731 * Generate HTML for a spacer image
732 * @return string HTML <img> tag
733 * @access private
734 */
735 function spacerArrow() {
736 return $this->arrow( '', ' ' );
737 }
738
739 /**
740 * Generate HTML for the equivalent of a spacer image for tables
741 * @return string HTML <td> tag
742 * @access private
743 */
744 function spacerColumn() {
745 return '<td width="12"></td>';
746 }
747
748 // Adds a few spaces
749 function spacerIndent() {
750 return '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
751 }
752
753 /**
754 * Enhanced RC ungrouped line.
755 * @return string a HTML formated line (generated using $r)
756 */
757 function recentChangesBlockLine( $rcObj ) {
758 global $wgContLang, $wgRCShowChangedSize;
759
760 # Get rc_xxxx variables
761 // FIXME: Would be good to replace this extract() call with something that explicitly initializes local variables.
762 extract( $rcObj->mAttribs );
763 $curIdEq = 'curid='.$rc_cur_id;
764
765 $r = '<table cellspacing="0" cellpadding="0"><tr>';
766
767 # spacerArrow() causes issues in FF
768 $r .= $this->spacerColumn();
769 $r .= '<td valign="top">';
770
771 # Flag and Timestamp
772 if( $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
773 $r .= '&nbsp;&nbsp;&nbsp;&nbsp;';
774 } else {
775 $r .= '&nbsp;'.$this->recentChangesFlags( $rc_type == RC_NEW, $rc_minor, $rcObj->unpatrolled, '&nbsp;', $rc_bot );
776 }
777 $r .= '&nbsp;<tt>'.$rcObj->timestamp.'</tt>&nbsp;&nbsp;</td><td>';
778
779 # Article link
780 if ( $rc_log_type !='' ) {
781 $logtitle = Title::newFromText( "Log/$rc_log_type", NS_SPECIAL );
782 $logname = LogPage::logName( $rc_log_type );
783 $r .= '(' . $this->skin->makeKnownLinkObj($logtitle, $logname ) . ')';
784 // All other stuff
785 } else {
786 $r .= $this->maybeWatchedLink( $rcObj->link, $rcObj->watched );
787 }
788 if ( $rc_type != RC_LOG ) {
789 # Diff
790 $r .= ' ('. $rcObj->difflink . $this->message['semicolon-separator'] . ' ';
791 # Hist
792 $r .= $this->skin->makeKnownLinkObj( $rcObj->getTitle(), wfMsg( 'hist' ), $curIdEq.'&action=history' ) . ')';
793 }
794 $r .= ' . . ';
795
796 # Character diff
797 if( $wgRCShowChangedSize ) {
798 $r .= ( $rcObj->getCharacterDifference() == '' ? '' : '&nbsp;' . $rcObj->getCharacterDifference() . ' . . ' ) ;
799 }
800
801 # User/talk
802 $r .= ' '.$rcObj->userlink . $rcObj->usertalklink;
803
804 # Comment
805 if( $rc_type != RC_MOVE && $rc_type != RC_MOVE_OVER_REDIRECT ) {
806 // log action
807 if ( $this->isDeleted($rcObj,LogPage::DELETED_ACTION) ) {
808 $r .= ' <span class="history-deleted">' . wfMsgHtml('rev-deleted-event') . '</span>';
809 } else {
810 $r .= ' ' . LogPage::actionText( $rc_log_type, $rc_log_action, $rcObj->getTitle(), $this->skin, LogPage::extractParams($rc_params), true, true );
811 }
812 // log comment
813 if ( $this->isDeleted($rcObj,LogPage::DELETED_COMMENT) ) {
814 $r .= ' <span class="history-deleted">' . wfMsg('rev-deleted-comment') . '</span>';
815 } else {
816 $r .= $this->skin->commentBlock( $rc_comment, $rcObj->getTitle() );
817 }
818 }
819
820 $r .= $this->numberofWatchingusers($rcObj->numberofWatchingusers);
821
822 $r .= "</td></tr></table>\n";
823 return $r;
824 }
825
826 /**
827 * If enhanced RC is in use, this function takes the previously cached
828 * RC lines, arranges them, and outputs the HTML
829 */
830 function recentChangesBlock() {
831 if( count ( $this->rc_cache ) == 0 ) {
832 return '';
833 }
834 $blockOut = '';
835 foreach( $this->rc_cache as $block ) {
836 if( count( $block ) < 2 ) {
837 $blockOut .= $this->recentChangesBlockLine( array_shift( $block ) );
838 } else {
839 $blockOut .= $this->recentChangesBlockGroup( $block );
840 }
841 }
842
843 return '<div>'.$blockOut.'</div>';
844 }
845
846 /**
847 * Returns text for the end of RC
848 * If enhanced RC is in use, returns pretty much all the text
849 */
850 function endRecentChangesList() {
851 return $this->recentChangesBlock() . parent::endRecentChangesList();
852 }
853
854 }