1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
<?php
/**
*
* @package MediaWiki
* @subpackage SpecialPage
*/
/**
*
*/
require_once( "QueryPage.php" );
/**
*
* @package MediaWiki
* @subpackage SpecialPage
*/
class NewPagesPage extends QueryPage {
function getName() {
return "Newpages";
}
function isExpensive() {
# Indexed on RC, and will *not* work with querycache yet.
return false;
#return parent::isExpensive();
}
function getSQL() {
global $wgUser, $wgOnlySysopsCanPatrol, $wgUseRCPatrol;
$usepatrol = ( $wgUseRCPatrol && $wgUser->getID() != 0 &&
( $wgUser->isSysop() || !$wgOnlySysopsCanPatrol ) ) ? 1 : 0;
$dbr =& wfGetDB( DB_SLAVE );
extract( $dbr->tableNames( 'recentchanges', 'cur' ) );
return
"SELECT 'Newpages' as type,
rc_namespace AS namespace,
rc_title AS title,
rc_cur_id AS value,
rc_user AS user,
rc_user_text AS user_text,
rc_comment as comment,
rc_timestamp AS timestamp,
'{$usepatrol}' as usepatrol,
rc_patrolled AS patrolled,
rc_id AS rcid,
length(cur_text) as length,
cur_text as text
FROM $recentchanges,$cur
WHERE rc_cur_id=cur_id AND rc_new=1
AND rc_namespace=0 AND cur_is_redirect=0";
}
function formatResult( $skin, $result ) {
global $wgLang, $wgUser, $wgOnlySysopsCanPatrol, $wgUseRCPatrol;
$u = $result->user;
$ut = $result->user_text;
$length = wfMsg( "nbytes", $wgLang->formatNum( $result->length ) );
$c = $skin->formatComment($result->comment );
if ( $u == 0 ) { # not by a logged-in user
$ul = $ut;
}
else {
$ul = $skin->makeLink( $wgLang->getNsText(NS_USER) . ":{$ut}", $ut );
}
$d = $wgLang->timeanddate( $result->timestamp, true );
# Since there is no diff link, we need to give users a way to
# mark the article as patrolled if it isn't already
if ( $wgUseRCPatrol && !is_null ( $result->usepatrol ) && $result->usepatrol &&
$result->patrolled == 0 && $wgUser->getID() != 0 &&
( $wgUser->isSysop() || !$wgOnlySysopsCanPatrol ) )
$link = $skin->makeKnownLink( $result->title, '', "rcid={$result->rcid}" );
else
$link = $skin->makeKnownLink( $result->title, '' );
$s = "{$d} {$link} ({$length}) . . {$ul}";
if ( "" != $c && "*" != $c ) {
$s .= " <em>({$c})</em>";
}
return $s;
}
}
/**
* constructor
*/
function wfSpecialNewpages()
{
global $wgRequest;
list( $limit, $offset ) = wfCheckLimits();
$npp = new NewPagesPage();
if( !$npp->doFeed( $wgRequest->getVal( 'feed' ) ) ) {
$npp->doQuery( $offset, $limit );
}
}
?>
|