Removed hardcodes for Zh-conversion
[lhc/web/wiklou.git] / includes / SpecialNewpages.php
index baf504d..df77063 100644 (file)
@@ -1,7 +1,20 @@
 <?php
+/**
+ *
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
 
-include_once( "QueryPage.php" );
+/**
+ *
+ */
+require_once( "QueryPage.php" );
 
+/**
+ *
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
 class NewPagesPage extends QueryPage {
 
        function getName() {
@@ -9,35 +22,63 @@ class NewPagesPage extends QueryPage {
        }
 
        function isExpensive() {
-               return parent::isExpensive();
+               # Indexed on RC, and will *not* work with querycache yet.
+               return false;
+               #return parent::isExpensive();
        }
 
-       function getSQL( $offset, $limit ) {
-               return "SELECT rc_title AS cur_title,rc_user AS cur_user,rc_user_text AS cur_user_text,rc_comment as cur_comment," .
-                 "rc_timestamp AS cur_timestamp,length(cur_text) as cur_length FROM recentchanges,cur " .
-                 "WHERE rc_cur_id=cur_id AND rc_new=1 AND rc_namespace=0 AND cur_is_redirect=0 " .
-                 "ORDER BY rc_timestamp DESC LIMIT {$offset}, {$limit}";
+       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;
 
-               global $wgLang;
-
-               $u = $result->cur_user;
-               $ut = $result->cur_user_text;
+               $length = wfMsg( "nbytes", $wgLang->formatNum( $result->length ) );
+               $c = $skin->formatComment($result->comment );
 
-               $length = wfmsg( "nbytes", $result->cur_length );
-               $c = wfEscapeHTML( $result->cur_comment );
-
-               if ( 0 == $u ) { # not by a logged-in user
+               if ( $u == 0 ) { # not by a logged-in user
                        $ul = $ut;
                }
                else {
-                       $ul = $skin->makeLink( $wgLang->getNsText(2) . ":{$ut}", $ut );
+                       $ul = $skin->makeLink( $wgLang->getNsText(NS_USER) . ":{$ut}", $ut );
                }
 
-               $d = $wgLang->timeanddate( $result->cur_timestamp, true );
-               $link = $skin->makeKnownLink( $result->cur_title, "" );
+               $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 ) {
@@ -48,13 +89,19 @@ class NewPagesPage extends QueryPage {
        }
 }
 
+/**
+ * constructor
+ */
 function wfSpecialNewpages()
 {
+       global $wgRequest;
     list( $limit, $offset ) = wfCheckLimits();
-    
+
     $npp = new NewPagesPage();
-    
-    $npp->doQuery( $offset, $limit );
+
+    if( !$npp->doFeed( $wgRequest->getVal( 'feed' ) ) ) {
+           $npp->doQuery( $offset, $limit );
+       }
 }
 
 ?>