X-Git-Url: https://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2FSpecialNewpages.php;h=b388533d419be7fa77683427e2298e432d711cff;hb=f10d65f0a3b716b7cc90f4aacec388e21f8ef644;hp=f142a20f8df0cb00e5106c07013a6187018c9947;hpb=014093acc4e0c277d0d92fdc54fb620210d6ec8a;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/SpecialNewpages.php b/includes/SpecialNewpages.php index f142a20f8d..b388533d41 100644 --- a/includes/SpecialNewpages.php +++ b/includes/SpecialNewpages.php @@ -1,62 +1,147 @@ namespace = $namespace; + } function getName() { - return "Newpages"; + return 'Newpages'; } - + function isExpensive() { - return parent::isExpensive(); + # Indexed on RC, and will *not* work with querycache yet. + return false; } - function getSQL( $offset, $limit ) { - return "SELECT rc_namespace AS cur_namespace, 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->isLoggedIn() && + ( $wgUser->isAllowed('patrol') || !$wgOnlySysopsCanPatrol ) ) ? 1 : 0; + $dbr =& wfGetDB( DB_SLAVE ); + extract( $dbr->tableNames( 'recentchanges', 'page', 'text' ) ); + + # FIXME: text will break with compression + return + "SELECT 'Newpages' as type, + rc_namespace AS namespace, + rc_title AS title, + rc_cur_id AS cur_id, + rc_user AS user, + rc_user_text AS user_text, + rc_comment as comment, + rc_timestamp AS timestamp, + rc_timestamp AS value, + '{$usepatrol}' as usepatrol, + rc_patrolled AS patrolled, + rc_id AS rcid, + page_len as length, + page_latest as rev_id + FROM $recentchanges,$page + WHERE rc_cur_id=page_id AND rc_new=1 + AND rc_namespace=" . $this->namespace . " AND page_is_redirect=0"; } function formatResult( $skin, $result ) { - global $wgLang; + global $wgLang, $wgContLang, $wgUser, $wgOnlySysopsCanPatrol, $wgUseRCPatrol; + $u = $result->user; + $ut = $result->user_text; - $u = $result->cur_user; - $ut = $result->cur_user_text; + $length = wfMsg( 'nbytes', $wgLang->formatNum( $result->length ) ); - $length = wfmsg( "nbytes", $wgLang->formatNum( $result->cur_length ) ); - $c = wfEscapeHTML( $result->cur_comment ); - - if ( 0 == $u ) { # not by a logged-in user - $ul = $ut; - } - else { - $ul = $skin->makeLink( $wgLang->getNsText(2) . ":{$ut}", $ut ); + if ( $u == 0 ) { # not by a logged-in user + $userPage = Title::makeTitle( NS_SPECIAL, 'Contributions' ); + $linkParams = 'target=' . urlencode( $ut ); + } else { + $userPage = Title::makeTitle( NS_USER, $ut ); + $linkParams = ''; } + $ul = $skin->makeLinkObj( $userPage, htmlspecialchars( $ut ), $linkParams ); + + $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 + $ns = $wgContLang->getNsText( $result->namespace ); + if ( $wgUseRCPatrol && !is_null ( $result->usepatrol ) && $result->usepatrol && + $result->patrolled == 0 && $wgUser->isLoggedIn() && + ( $wgUser->isAllowed('patrol') || !$wgOnlySysopsCanPatrol ) ) + $link = $skin->makeKnownLink( $ns . ':' . $result->title, '', "rcid={$result->rcid}" ); + else + $link = $skin->makeKnownLink( $ns . ':' . $result->title, '' ); - $d = $wgLang->timeanddate( $result->cur_timestamp, true ); - $link = $skin->makeKnownLink( $result->cur_title, "" ); $s = "{$d} {$link} ({$length}) . . {$ul}"; - if ( "" != $c && "*" != $c ) { - $s .= " ({$c})"; - } + $s .= $skin->commentBlock( $result->comment ); return $s; } + + function feedItemDesc( $row ) { + if( isset( $row->rev_id ) ) { + $revision = Revision::newFromId( $row->rev_id ); + if( $revision ) { + return '

' . htmlspecialchars( wfMsg( 'summary' ) ) . ': ' . $text . "

\n
\n
" . + nl2br( htmlspecialchars( $revision->getText() ) ) . "
"; + } + } + return parent::feedItemDesc( $row ); + } } -function wfSpecialNewpages() -{ - global $wgRequest; - list( $limit, $offset ) = wfCheckLimits(); - - $npp = new NewPagesPage(); +/** + * constructor + */ +function wfSpecialNewpages($par, $specialPage) { + global $wgRequest, $wgContLang; + + list( $limit, $offset ) = wfCheckLimits(); + $namespace = NS_MAIN; + + if ( $par ) { + $bits = preg_split( '/\s*,\s*/', trim( $par ) ); + foreach ( $bits as $bit ) { + if ( 'shownav' == $bit ) + $shownavigation = true; + if ( is_numeric( $bit ) ) + $limit = $bit; - if( !$npp->doFeed( $wgRequest->getVal( 'feed' ) ) ) { - $npp->doQuery( $offset, $limit ); + if ( preg_match( '/^limit=(\d+)$/', $bit, $m ) ) + $limit = intval($m[1]); + if ( preg_match( '/^offset=(\d+)$/', $bit, $m ) ) + $offset = intval($m[1]); + if ( preg_match( '/^namespace=(.*)$/', $bit, $m ) ) { + $ns = $wgContLang->getNsIndex( $m[1] ); + if( $ns !== false ) { + $namespace = $ns; + } + } + } } + if ( ! isset( $shownavigation ) ) + $shownavigation = ! $specialPage->including(); + + $npp = new NewPagesPage( $namespace ); + + if ( ! $npp->doFeed( $wgRequest->getVal( 'feed' ) ) ) + $npp->doQuery( $offset, $limit, $shownavigation ); } ?>