3 * Generate a list of changes using the good old system (no javascript).
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
23 class OldChangesList
extends ChangesList
{
25 * Format a line using the old system (aka without any javascript).
27 * @param RecentChange $rc Passed by reference
28 * @param bool $watched (default false)
29 * @param int $linenumber (default null)
33 public function recentChangesLine( &$rc, $watched = false, $linenumber = null ) {
34 global $wgRCShowChangedSize;
35 wfProfileIn( __METHOD__
);
37 # Should patrol-related stuff be shown?
38 $unpatrolled = $this->showAsUnpatrolled( $rc );
42 // use mw-line-even/mw-line-odd class only if linenumber is given (feature from bug 14468)
44 if ( $linenumber & 1 ) {
45 $classes[] = 'mw-line-odd';
47 $classes[] = 'mw-line-even';
51 // Indicate watched status on the line to allow for more
52 // comprehensive styling.
53 $classes[] = $watched && $rc->mAttribs
['rc_timestamp'] >= $watched
54 ?
'mw-changeslist-line-watched' : 'mw-changeslist-line-not-watched';
56 // Moved pages (very very old, not supported anymore)
57 if ( $rc->mAttribs
['rc_type'] == RC_MOVE ||
$rc->mAttribs
['rc_type'] == RC_MOVE_OVER_REDIRECT
) {
59 } elseif ( $rc->mAttribs
['rc_log_type'] ) {
60 $logtitle = SpecialPage
::getTitleFor( 'Log', $rc->mAttribs
['rc_log_type'] );
61 $this->insertLog( $s, $logtitle, $rc->mAttribs
['rc_log_type'] );
62 // Log entries (old format) or log targets, and special pages
63 } elseif ( $rc->mAttribs
['rc_namespace'] == NS_SPECIAL
) {
64 list( $name, $subpage ) = SpecialPageFactory
::resolveAlias( $rc->mAttribs
['rc_title'] );
65 if ( $name == 'Log' ) {
66 $this->insertLog( $s, $rc->getTitle(), $subpage );
70 $this->insertDiffHist( $s, $rc, $unpatrolled );
71 # M, N, b and ! (minor, new, bot and unpatrolled)
72 $s .= $this->recentChangesFlags(
74 'newpage' => $rc->mAttribs
['rc_type'] == RC_NEW
,
75 'minor' => $rc->mAttribs
['rc_minor'],
76 'unpatrolled' => $unpatrolled,
77 'bot' => $rc->mAttribs
['rc_bot']
81 $this->insertArticleLink( $s, $rc, $unpatrolled, $watched );
84 $this->insertTimestamp( $s, $rc );
85 # Bytes added or removed
86 if ( $wgRCShowChangedSize ) {
87 $cd = $this->formatCharacterDifference( $rc );
89 $s .= $cd . ' <span class="mw-changeslist-separator">. .</span> ';
93 if ( $rc->mAttribs
['rc_type'] == RC_LOG
) {
94 $s .= $this->insertLogEntry( $rc );
97 $this->insertUserRelatedLinks( $s, $rc );
98 # LTR/RTL direction mark
99 $s .= $this->getLanguage()->getDirMark();
100 $s .= $this->insertComment( $rc );
104 $this->insertTags( $s, $rc, $classes );
106 $this->insertRollback( $s, $rc );
108 $this->insertExtra( $s, $rc, $classes );
110 # How many users watch this page
111 if ( $rc->numberofWatchingusers
> 0 ) {
112 $s .= ' ' . $this->numberofWatchingusers( $rc->numberofWatchingusers
);
115 if ( $this->watchlist
) {
116 $classes[] = Sanitizer
::escapeClass( 'watchlist-' .
117 $rc->mAttribs
['rc_namespace'] . '-' . $rc->mAttribs
['rc_title'] );
120 if ( !wfRunHooks( 'OldChangesListRecentChangesLine', array( &$this, &$s, $rc, &$classes ) ) ) {
121 wfProfileOut( __METHOD__
);
126 wfProfileOut( __METHOD__
);
128 $dateheader = ''; // $s now contains only <li>...</li>, for hooks' convenience.
129 $this->insertDateHeader( $dateheader, $rc->mAttribs
['rc_timestamp'] );
131 return "$dateheader<li class=\"" . implode( ' ', $classes ) . "\">" . $s . "</li>\n";