Merge "Remove use of strencode() in buildLike()"
[lhc/web/wiklou.git] / includes / changes / OldChangesList.php
1 <?php
2 /**
3 * Generate a list of changes using the good old system (no javascript).
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 */
22
23 class OldChangesList extends ChangesList {
24 /**
25 * Format a line using the old system (aka without any javascript).
26 *
27 * @param RecentChange $rc Passed by reference
28 * @param bool $watched (default false)
29 * @param int $linenumber (default null)
30 *
31 * @return string|bool
32 */
33 public function recentChangesLine( &$rc, $watched = false, $linenumber = null ) {
34 global $wgRCShowChangedSize;
35 wfProfileIn( __METHOD__ );
36
37 # Should patrol-related stuff be shown?
38 $unpatrolled = $this->showAsUnpatrolled( $rc );
39
40 $s = '';
41 $classes = array();
42 // use mw-line-even/mw-line-odd class only if linenumber is given (feature from bug 14468)
43 if ( $linenumber ) {
44 if ( $linenumber & 1 ) {
45 $classes[] = 'mw-line-odd';
46 } else {
47 $classes[] = 'mw-line-even';
48 }
49 }
50
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';
55
56 if ( $rc->mAttribs['rc_log_type'] ) {
57 $logtitle = SpecialPage::getTitleFor( 'Log', $rc->mAttribs['rc_log_type'] );
58 $this->insertLog( $s, $logtitle, $rc->mAttribs['rc_log_type'] );
59 // Log entries (old format) or log targets, and special pages
60 } elseif ( $rc->mAttribs['rc_namespace'] == NS_SPECIAL ) {
61 list( $name, $subpage ) = SpecialPageFactory::resolveAlias( $rc->mAttribs['rc_title'] );
62 if ( $name == 'Log' ) {
63 $this->insertLog( $s, $rc->getTitle(), $subpage );
64 }
65 // Regular entries
66 } else {
67 $this->insertDiffHist( $s, $rc, $unpatrolled );
68 # M, N, b and ! (minor, new, bot and unpatrolled)
69 $s .= $this->recentChangesFlags(
70 array(
71 'newpage' => $rc->mAttribs['rc_type'] == RC_NEW,
72 'minor' => $rc->mAttribs['rc_minor'],
73 'unpatrolled' => $unpatrolled,
74 'bot' => $rc->mAttribs['rc_bot']
75 ),
76 ''
77 );
78 $this->insertArticleLink( $s, $rc, $unpatrolled, $watched );
79 }
80 # Edit/log timestamp
81 $this->insertTimestamp( $s, $rc );
82 # Bytes added or removed
83 if ( $wgRCShowChangedSize ) {
84 $cd = $this->formatCharacterDifference( $rc );
85 if ( $cd !== '' ) {
86 $s .= $cd . ' <span class="mw-changeslist-separator">. .</span> ';
87 }
88 }
89
90 if ( $rc->mAttribs['rc_type'] == RC_LOG ) {
91 $s .= $this->insertLogEntry( $rc );
92 } else {
93 # User tool links
94 $this->insertUserRelatedLinks( $s, $rc );
95 # LTR/RTL direction mark
96 $s .= $this->getLanguage()->getDirMark();
97 $s .= $this->insertComment( $rc );
98 }
99
100 # Tags
101 $this->insertTags( $s, $rc, $classes );
102 # Rollback
103 $this->insertRollback( $s, $rc );
104 # For subclasses
105 $this->insertExtra( $s, $rc, $classes );
106
107 # How many users watch this page
108 if ( $rc->numberofWatchingusers > 0 ) {
109 $s .= ' ' . $this->numberofWatchingusers( $rc->numberofWatchingusers );
110 }
111
112 if ( $this->watchlist ) {
113 $classes[] = Sanitizer::escapeClass( 'watchlist-' .
114 $rc->mAttribs['rc_namespace'] . '-' . $rc->mAttribs['rc_title'] );
115 }
116
117 if ( !wfRunHooks( 'OldChangesListRecentChangesLine', array( &$this, &$s, $rc, &$classes ) ) ) {
118 wfProfileOut( __METHOD__ );
119
120 return false;
121 }
122
123 wfProfileOut( __METHOD__ );
124
125 $dateheader = ''; // $s now contains only <li>...</li>, for hooks' convenience.
126 $this->insertDateHeader( $dateheader, $rc->mAttribs['rc_timestamp'] );
127
128 return "$dateheader<li class=\"" . implode( ' ', $classes ) . "\">" . $s . "</li>\n";
129 }
130 }