From 183851b06bd6c52f3cae5375f433da720d410447 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Wed, 11 Oct 2006 18:12:39 +0000 Subject: MediaWiki 1.7.1 wiederhergestellt --- includes/SpecialNewpages.php | 198 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 198 insertions(+) create mode 100644 includes/SpecialNewpages.php (limited to 'includes/SpecialNewpages.php') diff --git a/includes/SpecialNewpages.php b/includes/SpecialNewpages.php new file mode 100644 index 00000000..c0c6ba96 --- /dev/null +++ b/includes/SpecialNewpages.php @@ -0,0 +1,198 @@ +namespace = $namespace; + } + + function getName() { + return 'Newpages'; + } + + function isExpensive() { + # Indexed on RC, and will *not* work with querycache yet. + return false; + } + + function getSQL() { + global $wgUser, $wgUseRCPatrol; + $usepatrol = ( $wgUseRCPatrol && $wgUser->isAllowed( 'patrol' ) ) ? 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 preprocessResults( &$dbo, &$res ) { + # Do a batch existence check on the user and talk pages + $linkBatch = new LinkBatch(); + while( $row = $dbo->fetchObject( $res ) ) { + $linkBatch->addObj( Title::makeTitleSafe( NS_USER, $row->user_text ) ); + $linkBatch->addObj( Title::makeTitleSafe( NS_USER_TALK, $row->user_text ) ); + } + $linkBatch->execute(); + # Seek to start + if( $dbo->numRows( $res ) > 0 ) + $dbo->dataSeek( $res, 0 ); + } + + /** + * Format a row, providing the timestamp, links to the page/history, size, user links, and a comment + * + * @param $skin Skin to use + * @param $result Result row + * @return string + */ + function formatResult( $skin, $result ) { + global $wgLang, $wgContLang; + $dm = $wgContLang->getDirMark(); + + $title = Title::makeTitleSafe( $result->namespace, $result->title ); + $time = $wgLang->timeAndDate( $result->timestamp, true ); + $plink = $skin->makeKnownLinkObj( $title, '', $this->patrollable( $result ) ? 'rcid=' . $result->rcid : '' ); + $hist = $skin->makeKnownLinkObj( $title, wfMsgHtml( 'hist' ), 'action=history' ); + $length = wfMsgHtml( 'nbytes', $wgLang->formatNum( htmlspecialchars( $result->length ) ) ); + $ulink = $skin->userLink( $result->user, $result->user_text ) . $skin->userToolLinks( $result->user, $result->user_text ); + $comment = $skin->commentBlock( $result->comment ); + + return "{$time} {$dm}{$plink} ({$hist}) {$dm}[{$length}] {$dm}{$ulink} {$comment}"; + } + + /** + * Should a specific result row provide "patrollable" links? + * + * @param $result Result row + * @return bool + */ + function patrollable( $result ) { + global $wgUser, $wgUseRCPatrol; + return $wgUseRCPatrol && $wgUser->isAllowed( 'patrol' ) && !$result->patrolled; + } + + function feedItemDesc( $row ) { + if( isset( $row->rev_id ) ) { + $revision = Revision::newFromId( $row->rev_id ); + if( $revision ) { + return '

' . htmlspecialchars( wfMsg( 'summary' ) ) . ': ' . + htmlspecialchars( $revision->getComment() ) . "

\n
\n
" . + nl2br( htmlspecialchars( $revision->getText() ) ) . "
"; + } + } + return parent::feedItemDesc( $row ); + } + + /** + * Show a namespace selection form for filtering + * + * @return string + */ + function getPageHeader() { + $thisTitle = Title::makeTitle( NS_SPECIAL, $this->getName() ); + $form = wfOpenElement( 'form', array( + 'method' => 'post', + 'action' => $thisTitle->getLocalUrl() ) ); + $form .= wfElement( 'label', array( 'for' => 'namespace' ), + wfMsg( 'namespace' ) ) . ' '; + $form .= HtmlNamespaceSelector( $this->namespace ); + # Preserve the offset and limit + $form .= wfElement( 'input', array( + 'type' => 'hidden', + 'name' => 'offset', + 'value' => $this->offset ) ); + $form .= wfElement( 'input', array( + 'type' => 'hidden', + 'name' => 'limit', + 'value' => $this->limit ) ); + $form .= wfElement( 'input', array( + 'type' => 'submit', + 'name' => 'submit', + 'id' => 'submit', + 'value' => wfMsg( 'allpagessubmit' ) ) ); + $form .= wfCloseElement( 'form' ); + return( $form ); + } + + /** + * Link parameters + * + * @return array + */ + function linkParameters() { + return( array( 'namespace' => $this->namespace ) ); + } + +} + +/** + * 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 ( 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; + } + } + } + } else { + if( $ns = $wgRequest->getInt( 'namespace', 0 ) ) + $namespace = $ns; + } + + if ( ! isset( $shownavigation ) ) + $shownavigation = ! $specialPage->including(); + + $npp = new NewPagesPage( $namespace ); + + if ( ! $npp->doFeed( $wgRequest->getVal( 'feed' ), $limit ) ) + $npp->doQuery( $offset, $limit, $shownavigation ); +} + +?> -- cgit v1.2.3-54-g00ecf