From 222b01f5169f1c7e69762e0e8904c24f78f71882 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Wed, 28 Jul 2010 11:52:48 +0200 Subject: update to MediaWiki 1.16.0 --- includes/specials/SpecialAllmessages.php | 581 ++++++++++++++++++++----------- 1 file changed, 381 insertions(+), 200 deletions(-) (limited to 'includes/specials/SpecialAllmessages.php') diff --git a/includes/specials/SpecialAllmessages.php b/includes/specials/SpecialAllmessages.php index 38181c08..1745bf6c 100644 --- a/includes/specials/SpecialAllmessages.php +++ b/includes/specials/SpecialAllmessages.php @@ -4,233 +4,414 @@ * @file * @ingroup SpecialPage */ +class SpecialAllmessages extends SpecialPage { -/** - * Constructor. - */ -function wfSpecialAllmessages() { - global $wgOut, $wgRequest, $wgMessageCache, $wgTitle; - global $wgUseDatabaseMessages, $wgLang; - - # The page isn't much use if the MediaWiki namespace is not being used - if( !$wgUseDatabaseMessages ) { - $wgOut->addWikiMsg( 'allmessagesnotsupportedDB' ); - return; + /** + * Constructor + */ + public function __construct() { + parent::__construct( 'Allmessages' ); } - wfProfileIn( __METHOD__ ); + /** + * Show the special page + * + * @param $par Mixed: parameter passed to the page or null + */ + public function execute( $par ) { + global $wgOut, $wgRequest; - wfProfileIn( __METHOD__ . '-setup' ); - $ot = $wgRequest->getText( 'ot' ); + $this->setHeaders(); - $navText = wfMsg( 'allmessagestext' ); + global $wgUseDatabaseMessages; + if( !$wgUseDatabaseMessages ) { + $wgOut->addWikiMsg( 'allmessagesnotsupportedDB' ); + return; + } else { + $this->outputHeader( 'allmessagestext' ); + } - # Make sure all extension messages are available + $this->filter = $wgRequest->getVal( 'filter', 'all' ); + $this->prefix = $wgRequest->getVal( 'prefix', '' ); - $wgMessageCache->loadAllMessages(); + $this->table = new AllmessagesTablePager( + $this, + $conds = array(), + wfGetLangObj( $wgRequest->getVal( 'lang', $par ) ) + ); - $sortedArray = array_merge( Language::getMessagesFor( 'en' ), - $wgMessageCache->getExtensionMessagesFor( 'en' ) ); - ksort( $sortedArray ); + $this->langCode = $this->table->lang->getCode(); + + $wgOut->addHTML( $this->buildForm() . + $this->table->getNavigationBar() . + $this->table->getLimitForm() . + $this->table->getBody() . + $this->table->getNavigationBar() ); - $messages = array(); - foreach( $sortedArray as $key => $value ) { - $messages[$key]['enmsg'] = $value; - $messages[$key]['statmsg'] = wfMsgReal( $key, array(), false, false, false ); - $messages[$key]['msg'] = wfMsgNoTrans( $key ); - $sortedArray[$key] = NULL; // trade bytes from $sortedArray to this - } - unset($sortedArray); // trade bytes from $sortedArray to this - - wfProfileOut( __METHOD__ . '-setup' ); - - wfProfileIn( __METHOD__ . '-output' ); - $wgOut->addScriptFile( 'allmessages.js' ); - if ( $ot == 'php' ) { - $navText .= wfAllMessagesMakePhp( $messages ); - $wgOut->addHTML( $wgLang->pipeList( array( - 'PHP', - 'HTML', - 'XML' . - '
' . htmlspecialchars( $navText ) . '
' - ) ) ); - } else if ( $ot == 'xml' ) { - $wgOut->disable(); - header( 'Content-type: text/xml' ); - echo wfAllMessagesMakeXml( $messages ); - } else { - $wgOut->addHTML( $wgLang->pipeList( array( - 'PHP', - 'HTML', - 'XML' - ) ) ); - $wgOut->addWikiText( $navText ); - $wgOut->addHTML( wfAllMessagesMakeHTMLText( $messages ) ); - } - wfProfileOut( __METHOD__ . '-output' ); - - wfProfileOut( __METHOD__ ); -} -function wfAllMessagesMakeXml( &$messages ) { - global $wgLang; - $lang = $wgLang->getCode(); - $txt = "\n"; - $txt .= "\n"; - foreach( $messages as $key => $m ) { - $txt .= "\t" . Xml::element( 'message', array( 'name' => $key ), $m['msg'] ) . "\n"; - $messages[$key] = NULL; // trade bytes - } - $txt .= ""; - return $txt; -} + function buildForm() { + global $wgScript; -/** - * Create the messages array, formatted in PHP to copy to language files. - * @param $messages Messages array. - * @return The PHP messages array. - * @todo Make suitable for language files. - */ -function wfAllMessagesMakePhp( &$messages ) { - global $wgLang; - $txt = "\n\n\$messages = array(\n"; - foreach( $messages as $key => $m ) { - if( $wgLang->getCode() != 'en' && $m['msg'] == $m['enmsg'] ) { - continue; - } else if ( wfEmptyMsg( $key, $m['msg'] ) ) { - $m['msg'] = ''; - $comment = ' #empty'; - } else { - $comment = ''; + $languages = Language::getLanguageNames( false ); + ksort( $languages ); + + $out = Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript, 'id' => 'mw-allmessages-form' ) ) . + Xml::fieldset( wfMsg( 'allmessages-filter-legend' ) ) . + Xml::hidden( 'title', $this->getTitle() ) . + Xml::openElement( 'table', array( 'class' => 'mw-allmessages-table' ) ) . "\n" . + ' + ' . + Xml::label( wfMsg( 'allmessages-prefix' ), 'mw-allmessages-form-prefix' ) . + "\n + " . + Xml::input( 'prefix', 20, str_replace( '_', ' ', $this->prefix ), array( 'id' => 'mw-allmessages-form-prefix' ) ) . + "\n + + \n + " . + wfMsg( 'allmessages-filter' ) . + "\n + " . + Xml::radioLabel( wfMsg( 'allmessages-filter-unmodified' ), + 'filter', + 'unmodified', + 'mw-allmessages-form-filter-unmodified', + ( $this->filter == 'unmodified' ? true : false ) + ) . + Xml::radioLabel( wfMsg( 'allmessages-filter-all' ), + 'filter', + 'all', + 'mw-allmessages-form-filter-all', + ( $this->filter == 'all' ? true : false ) + ) . + Xml::radioLabel( wfMsg( 'allmessages-filter-modified' ), + 'filter', + 'modified', + 'mw-allmessages-form-filter-modified', + ( $this->filter == 'modified' ? true : false ) + ) . + "\n + + \n + " . + Xml::label( wfMsg( 'allmessages-language' ), 'mw-allmessages-form-lang' ) . + "\n + " . + Xml::openElement( 'select', array( 'id' => 'mw-allmessages-form-lang', 'name' => 'lang' ) ); + + foreach( $languages as $lang => $name ) { + $selected = $lang == $this->langCode ? true : false; + $out .= Xml::option( $lang . ' - ' . $name, $lang, $selected ) . "\n"; } - $txt .= "'$key' => '" . preg_replace( '/(?\n + + \n + + " . + Xml::submitButton( wfMsg( 'allmessages-filter-submit' ) ) . + "\n + " . + Xml::closeElement( 'table' ) . + $this->table->getHiddenFields( array( 'title', 'prefix', 'filter', 'lang' ) ) . + Xml::closeElement( 'fieldset' ) . + Xml::closeElement( 'form' ); + return $out; } - $txt .= ');'; - return $txt; } -/** - * Create a list of messages, formatted in HTML as a list of messages and values and showing differences between the default language file message and the message in MediaWiki: namespace. - * @param $messages Messages array. - * @return The HTML list of messages. +/* use TablePager for prettified output. We have to pretend that we're + * getting data from a table when in fact not all of it comes from the database. */ -function wfAllMessagesMakeHTMLText( &$messages ) { - global $wgLang, $wgContLang, $wgUser; - wfProfileIn( __METHOD__ ); - - $sk = $wgUser->getSkin(); - $talk = wfMsg( 'talkpagelinktext' ); - - $input = Xml::element( 'input', array( - 'type' => 'text', - 'id' => 'allmessagesinput', - 'onkeyup' => 'allmessagesfilter()' - ), '' ); - $checkbox = Xml::element( 'input', array( - 'type' => 'button', - 'value' => wfMsgHtml( 'allmessagesmodified' ), - 'id' => 'allmessagescheckbox', - 'onclick' => 'allmessagesmodified()' - ), '' ); - - $txt = ''; - - $txt .= ' - - - - - - - - '; - - wfProfileIn( __METHOD__ . "-check" ); - - # This is a nasty hack to avoid doing independent existence checks - # without sending the links and table through the slow wiki parser. - $pageExists = array( - NS_MEDIAWIKI => array(), - NS_MEDIAWIKI_TALK => array() - ); - $dbr = wfGetDB( DB_SLAVE ); - $res = $dbr->select( 'page', - array( 'page_namespace', 'page_title' ), - array( 'page_namespace' => array(NS_MEDIAWIKI,NS_MEDIAWIKI_TALK) ), - __METHOD__, - array( 'USE INDEX' => 'name_title' ) - ); - while( $s = $dbr->fetchObject( $res ) ) { - $pageExists[$s->page_namespace][$s->page_title] = 1; - } - $dbr->freeResult( $res ); - wfProfileOut( __METHOD__ . "-check" ); - - wfProfileIn( __METHOD__ . "-output" ); - - $i = 0; - - foreach( $messages as $key => $m ) { - $title = $wgLang->ucfirst( $key ); - if( $wgLang->getCode() != $wgContLang->getCode() ) { - $title .= '/' . $wgLang->getCode(); - } +class AllmessagesTablePager extends TablePager { - $titleObj = Title::makeTitle( NS_MEDIAWIKI, $title ); - $talkPage = Title::makeTitle( NS_MEDIAWIKI_TALK, $title ); + public $mLimitsShown; - $changed = ( $m['statmsg'] != $m['msg'] ); - $message = htmlspecialchars( $m['statmsg'] ); - $mw = htmlspecialchars( $m['msg'] ); + function __construct( $page, $conds, $langObj = null ) { + parent::__construct(); + $this->mIndexField = 'am_title'; + $this->mPage = $page; + $this->mConds = $conds; + $this->mDefaultDirection = true; // always sort ascending + // We want to have an option for people to view *all* the messages, + // so they can use Ctrl+F to search them. 5000 is the maximum that + // will get through WebRequest::getLimitOffset(). + $this->mLimitsShown = array( 20, 50, 100, 250, 500, 5000 => wfMsg('limitall') ); - if( array_key_exists( $title, $pageExists[NS_MEDIAWIKI] ) ) { - $pageLink = $sk->makeKnownLinkObj( $titleObj, "" . - htmlspecialchars( $key ) . '' ); + global $wgLang, $wgContLang, $wgRequest; + + $this->talk = htmlspecialchars( wfMsg( 'talkpagelinktext' ) ); + + $this->lang = ( $langObj ? $langObj : $wgContLang ); + $this->langcode = $this->lang->getCode(); + $this->foreign = $this->langcode != $wgContLang->getCode(); + + if( $wgRequest->getVal( 'filter', 'all' ) === 'all' ){ + $this->custom = null; // So won't match in either case } else { - $pageLink = $sk->makeBrokenLinkObj( $titleObj, "" . - htmlspecialchars( $key ) . '' ); + $this->custom = ($wgRequest->getVal( 'filter' ) == 'unmodified'); } - if( array_key_exists( $title, $pageExists[NS_MEDIAWIKI_TALK] ) ) { - $talkLink = $sk->makeKnownLinkObj( $talkPage, htmlspecialchars( $talk ) ); + + $prefix = $wgLang->ucfirst( $wgRequest->getVal( 'prefix', '' ) ); + $prefix = $prefix != '' ? Title::makeTitleSafe( NS_MEDIAWIKI, $wgRequest->getVal( 'prefix', null ) ) : null; + if( $prefix !== null ){ + $this->prefix = '/^' . preg_quote( $prefix->getDBkey() ) . '/i'; } else { - $talkLink = $sk->makeBrokenLinkObj( $talkPage, htmlspecialchars( $talk ) ); + $this->prefix = false; } + $this->getSkin(); - $anchor = 'msg_' . htmlspecialchars( strtolower( $title ) ); - $anchor = ""; - - if( $changed ) { - $txt .= " - - - - - "; + // The suffix that may be needed for message names if we're in a + // different language (eg [[MediaWiki:Foo/fr]]: $suffix = '/fr' + if( $this->foreign ) { + $this->suffix = '/' . $this->langcode; } else { - $txt .= " - - - "; + $this->suffix = ''; } - $messages[$key] = NULL; // trade bytes - $i++; } - $txt .= '
' . wfMsgHtml( 'allmessagesname' ) . '' . wfMsgHtml( 'allmessagesdefault' ) . '
' . wfMsgHtml( 'allmessagescurrent' ) . '
- $anchor$pageLink
$talkLink -
- $message -
- $mw -
- $anchor$pageLink
$talkLink -
- $mw -
'; - wfProfileOut( __METHOD__ . '-output' ); - wfProfileOut( __METHOD__ ); - return $txt; + function getAllMessages( $descending ) { + wfProfileIn( __METHOD__ ); + $messageNames = Language::getLocalisationCache()->getSubitemList( 'en', 'messages' ); + if( $descending ){ + rsort( $messageNames ); + } else { + asort( $messageNames ); + } + + // Normalise message names so they look like page titles + $messageNames = array_map( array( $this->lang, 'ucfirst' ), $messageNames ); + wfProfileIn( __METHOD__ ); + + return $messageNames; + } + + /** + * Determine which of the MediaWiki and MediaWiki_talk namespace pages exist. + * Returns array( 'pages' => ..., 'talks' => ... ), where the subarrays have + * an entry for each existing page, with the key being the message name and + * value arbitrary. + */ + function getCustomisedStatuses( $messageNames ) { + wfProfileIn( __METHOD__ . '-db' ); + + $dbr = wfGetDB( DB_SLAVE ); + $res = $dbr->select( 'page', + array( 'page_namespace', 'page_title' ), + array( 'page_namespace' => array( NS_MEDIAWIKI, NS_MEDIAWIKI_TALK ) ), + __METHOD__, + array( 'USE INDEX' => 'name_title' ) + ); + $xNames = array_flip( $messageNames ); + + $pageFlags = $talkFlags = array(); + + while( $s = $dbr->fetchObject( $res ) ) { + if( $s->page_namespace == NS_MEDIAWIKI ) { + if( $this->foreign ) { + $title = explode( '/', $s->page_title ); + if( count( $title ) === 2 && $this->langcode == $title[1] + && isset( $xNames[$title[0]] ) ) + { + $pageFlags["{$title[0]}"] = true; + } + } elseif( isset( $xNames[$s->page_title] ) ) { + $pageFlags[$s->page_title] = true; + } + } else if( $s->page_namespace == NS_MEDIAWIKI_TALK ){ + $talkFlags[$s->page_title] = true; + } + } + $dbr->freeResult( $res ); + + wfProfileOut( __METHOD__ . '-db' ); + + return array( 'pages' => $pageFlags, 'talks' => $talkFlags ); + } + + /* This function normally does a database query to get the results; we need + * to make a pretend result using a FakeResultWrapper. + */ + function reallyDoQuery( $offset, $limit, $descending ) { + $result = new FakeResultWrapper( array() ); + + $messageNames = $this->getAllMessages( $descending ); + $statuses = $this->getCustomisedStatuses( $messageNames ); + + $count = 0; + foreach( $messageNames as $key ) { + $customised = isset( $statuses['pages'][$key] ); + if( $customised !== $this->custom && + ( $descending && ( $key < $offset || !$offset ) || !$descending && $key > $offset ) && + ( ( $this->prefix && preg_match( $this->prefix, $key ) ) || $this->prefix === false ) + ){ + $result->result[] = array( + 'am_title' => $key, + 'am_actual' => wfMsgGetKey( $key, /*useDB*/true, $this->langcode, false ), + 'am_default' => wfMsgGetKey( $key, /*useDB*/false, $this->langcode, false ), + 'am_customised' => $customised, + 'am_talk_exists' => isset( $statuses['talks'][$key] ) + ); + $count++; + } + if( $count == $limit ) break; + } + return $result; + } + + function getStartBody() { + return Xml::openElement( 'table', array( 'class' => 'TablePager', 'id' => 'mw-allmessagestable' ) ) . "\n" . + " + " . + wfMsg( 'allmessagesname' ) . " + + " . + wfMsg( 'allmessagesdefault' ) . + " + \n + + " . + wfMsg( 'allmessagescurrent' ) . + " + \n"; + } + + function formatValue( $field, $value ){ + global $wgLang; + switch( $field ){ + + case 'am_title' : + + $title = Title::makeTitle( NS_MEDIAWIKI, $value . $this->suffix ); + $talk = Title::makeTitle( NS_MEDIAWIKI_TALK, $value . $this->suffix ); + + if( $this->mCurrentRow->am_customised ){ + $title = $this->mSkin->linkKnown( $title, $wgLang->lcfirst( $value ) ); + } else { + $title = $this->mSkin->link( + $title, + $wgLang->lcfirst( $value ), + array(), + array(), + array( 'broken' ) + ); + } + if ( $this->mCurrentRow->am_talk_exists ) { + $talk = $this->mSkin->linkKnown( $talk , $this->talk ); + } else { + $talk = $this->mSkin->link( + $talk, + $this->talk, + array(), + array(), + array( 'broken' ) + ); + } + return $title . ' (' . $talk . ')'; + + case 'am_default' : + return Sanitizer::escapeHtmlAllowEntities( $value, ENT_QUOTES ); + case 'am_actual' : + return Sanitizer::escapeHtmlAllowEntities( $value, ENT_QUOTES ); + } + return ''; + } + + function formatRow( $row ){ + // Do all the normal stuff + $s = parent::formatRow( $row ); + + // But if there's a customised message, add that too. + if( $row->am_customised ){ + $s .= Xml::openElement( 'tr', $this->getRowAttrs( $row, true ) ); + $formatted = strval( $this->formatValue( 'am_actual', $row->am_actual ) ); + if ( $formatted == '' ) { + $formatted = ' '; + } + $s .= Xml::tags( 'td', $this->getCellAttrs( 'am_actual', $row->am_actual ), $formatted ) + . "\n"; + } + return $s; + } + + function getRowAttrs( $row, $isSecond = false ){ + $arr = array(); + global $wgLang; + if( $row->am_customised ){ + $arr['class'] = 'allmessages-customised'; + } + if( !$isSecond ){ + $arr['id'] = Sanitizer::escapeId( 'msg_' . $wgLang->lcfirst( $row->am_title ) ); + } + return $arr; + } + + function getCellAttrs( $field, $value ){ + if( $this->mCurrentRow->am_customised && $field == 'am_title' ){ + return array( 'rowspan' => '2', 'class' => $field ); + } else { + return array( 'class' => $field ); + } + } + + // This is not actually used, as getStartBody is overridden above + function getFieldNames() { + return array( + 'am_title' => wfMsg( 'allmessagesname' ), + 'am_default' => wfMsg( 'allmessagesdefault' ) + ); + } + function getTitle() { + return SpecialPage::getTitleFor( 'Allmessages', false ); + } + function isFieldSortable( $x ){ + return false; + } + function getDefaultSort(){ + return ''; + } + function getQueryInfo(){ + return ''; + } +} +/* Overloads the relevant methods of the real ResultsWrapper so it + * doesn't go anywhere near an actual database. + */ +class FakeResultWrapper extends ResultWrapper { + + var $result = array(); + var $db = null; // And it's going to stay that way :D + var $pos = 0; + var $currentRow = null; + + function __construct( $array ){ + $this->result = $array; + } + + function numRows() { + return count( $this->result ); + } + + function fetchRow() { + $this->currentRow = $this->result[$this->pos++]; + return $this->currentRow; + } + + function seek( $row ) { + $this->pos = $row; + } + + function free() {} + + // Callers want to be able to access fields with $this->fieldName + function fetchObject(){ + $this->currentRow = $this->result[$this->pos++]; + return (object)$this->currentRow; + } + + function rewind() { + $this->pos = 0; + $this->currentRow = null; + } } -- cgit v1.2.3-54-g00ecf