From: Platonides Date: Tue, 27 Jul 2010 18:33:04 +0000 (+0000) Subject: Use the canonical names for classes. X-Git-Tag: 1.31.0-rc.0~35885 X-Git-Url: https://git.cyclocoop.org/%27.%24link.%27?a=commitdiff_plain;h=1af741ee27bd7dfb2a9cb730b034fc49ebe94d3e;p=lhc%2Fweb%2Fwiklou.git Use the canonical names for classes. --- diff --git a/includes/Article.php b/includes/Article.php index e4f0590e7f..1a9cb296c2 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -3409,7 +3409,7 @@ class Article { if ( $s === false ) { # No one else ever edited this page return array( array( 'cantrollback' ) ); - } else if ( $s->rev_deleted & REVISION::DELETED_TEXT || $s->rev_deleted & REVISION::DELETED_USER ) { + } else if ( $s->rev_deleted & Revision::DELETED_TEXT || $s->rev_deleted & Revision::DELETED_USER ) { # Only admins can see this text return array( array( 'notvisiblerev' ) ); } diff --git a/includes/ConfEditor.php b/includes/ConfEditor.php index 7b180a4596..9a13b45b91 100644 --- a/includes/ConfEditor.php +++ b/includes/ConfEditor.php @@ -427,7 +427,7 @@ class ConfEditor { */ function findValueRegion( $pathName ) { if ( !isset( $this->pathInfo[$pathName] ) ) { - throw new MWEXception( "Can't find path \"$pathName\"" ); + throw new MWException( "Can't find path \"$pathName\"" ); } $path = $this->pathInfo[$pathName]; if ( $path['valueStartByte'] === false || $path['valueEndByte'] === false ) { diff --git a/includes/QueryPage.php b/includes/QueryPage.php index b2a49b6a41..b34768c272 100644 --- a/includes/QueryPage.php +++ b/includes/QueryPage.php @@ -349,7 +349,7 @@ class QueryPage { $this->preprocessResults( $dbr, $res ); - $wgOut->addHTML( XML::openElement( 'div', array('class' => 'mw-spcontent') ) ); + $wgOut->addHTML( Xml::openElement( 'div', array('class' => 'mw-spcontent') ) ); # Top header and navigation if( $shownavigation ) { @@ -364,7 +364,7 @@ class QueryPage { # No results to show, so don't bother with "showing X of Y" etc. # -- just let the user know and give up now $wgOut->addHTML( '

' . wfMsgHtml( 'specialpage-empty' ) . '

' ); - $wgOut->addHTML( XML::closeElement( 'div' ) ); + $wgOut->addHTML( Xml::closeElement( 'div' ) ); return; } } @@ -384,7 +384,7 @@ class QueryPage { $wgOut->addHTML( '

' . $paging . '

' ); } - $wgOut->addHTML( XML::closeElement( 'div' ) ); + $wgOut->addHTML( Xml::closeElement( 'div' ) ); return $num; } diff --git a/includes/api/ApiEmailUser.php b/includes/api/ApiEmailUser.php index 799d7cc9f6..bc3c7a2c75 100644 --- a/includes/api/ApiEmailUser.php +++ b/includes/api/ApiEmailUser.php @@ -50,13 +50,13 @@ class ApiEmailUser extends ApiBase { } // Validate target - $targetUser = SpecialEmailuser::getTarget( $params['target'] ); + $targetUser = SpecialEmailUser::getTarget( $params['target'] ); if ( !( $targetUser instanceof User ) ) { $this->dieUsageMsg( array( $targetUser ) ); } // Check permissions and errors - $error = SpecialEmailuser::getPermissionsError( $wgUser, $params['token'] ); + $error = SpecialEmailUser::getPermissionsError( $wgUser, $params['token'] ); if ( $error ) { $this->dieUsageMsg( array( $error ) ); } @@ -67,7 +67,7 @@ class ApiEmailUser extends ApiBase { 'Subject' => $params['subject'], 'CCMe' => $params['ccme'], ); - $retval = SpecialEmailuser::submit( $data ); + $retval = SpecialEmailUser::submit( $data ); if ( $retval === true ) { $result = array( 'result' => 'Success' ); } else { diff --git a/includes/api/ApiPurge.php b/includes/api/ApiPurge.php index aee27e7a8e..fbcd9c2525 100644 --- a/includes/api/ApiPurge.php +++ b/includes/api/ApiPurge.php @@ -65,7 +65,7 @@ class ApiPurge extends ApiBase { $result[] = $r; continue; } - $article = Mediawiki::articleFromTitle( $title ); + $article = MediaWiki::articleFromTitle( $title ); $article->doPurge(); // Directly purge and skip the UI part of purge(). $r['purged'] = ''; $result[] = $r; diff --git a/includes/api/ApiQueryWatchlist.php b/includes/api/ApiQueryWatchlist.php index 503744dcd5..962b181de7 100644 --- a/includes/api/ApiQueryWatchlist.php +++ b/includes/api/ApiQueryWatchlist.php @@ -311,9 +311,9 @@ class ApiQueryWatchlist extends ApiQueryGeneratorBase { ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2 ), 'prop' => array( - APIBase::PARAM_ISMULTI => true, - APIBase::PARAM_DFLT => 'ids|title|flags', - APIBase::PARAM_TYPE => array( + ApiBase::PARAM_ISMULTI => true, + ApiBase::PARAM_DFLT => 'ids|title|flags', + ApiBase::PARAM_TYPE => array( 'ids', 'title', 'flags', diff --git a/includes/specials/SpecialCategories.php b/includes/specials/SpecialCategories.php index 54c71ff1f3..31092def11 100644 --- a/includes/specials/SpecialCategories.php +++ b/includes/specials/SpecialCategories.php @@ -33,13 +33,13 @@ function wfSpecialCategories( $par=null ) { $cap = new CategoryPager( $from ); $cap->doQuery(); $wgOut->addHTML( - XML::openElement( 'div', array('class' => 'mw-spcontent') ) . + Xml::openElement( 'div', array('class' => 'mw-spcontent') ) . wfMsgExt( 'categoriespagetext', array( 'parse' ), $cap->getNumRows() ) . $cap->getStartForm( $from ) . $cap->getNavigationBar() . '' . $cap->getNavigationBar() . - XML::closeElement( 'div' ) + Xml::closeElement( 'div' ) ); } diff --git a/includes/specials/SpecialListusers.php b/includes/specials/SpecialListusers.php index 8dc1a9dd75..9896c24888 100644 --- a/includes/specials/SpecialListusers.php +++ b/includes/specials/SpecialListusers.php @@ -276,7 +276,7 @@ function wfSpecialListusers( $par = null ) { # getBody() first to check, if empty $usersbody = $up->getBody(); - $s = XML::openElement( 'div', array('class' => 'mw-spcontent') ); + $s = Xml::openElement( 'div', array('class' => 'mw-spcontent') ); $s .= $up->getPageHeader(); if( $usersbody ) { $s .= $up->getNavigationBar(); @@ -285,6 +285,6 @@ function wfSpecialListusers( $par = null ) { } else { $s .= '

' . wfMsgHTML('listusers-noresult') . '

'; }; - $s .= XML::closeElement( 'div' ); + $s .= Xml::closeElement( 'div' ); $wgOut->addHTML( $s ); } diff --git a/includes/specials/SpecialProtectedtitles.php b/includes/specials/SpecialProtectedtitles.php index 9330ac35ec..67f0a7eef4 100644 --- a/includes/specials/SpecialProtectedtitles.php +++ b/includes/specials/SpecialProtectedtitles.php @@ -177,7 +177,7 @@ class ProtectedTitlesForm { * @todo document * @ingroup Pager */ -class ProtectedtitlesPager extends AlphabeticPager { +class ProtectedTitlesPager extends AlphabeticPager { public $mForm, $mConds; function __construct( $form, $conds = array(), $type, $level, $namespace, $sizetype='', $size=0 ) { diff --git a/includes/specials/SpecialUserrights.php b/includes/specials/SpecialUserrights.php index 853e78438c..95dcb644b4 100644 --- a/includes/specials/SpecialUserrights.php +++ b/includes/specials/SpecialUserrights.php @@ -537,7 +537,7 @@ class UserrightsPage extends SpecialPage { foreach( $columns as $name => $column ) { if( $column === array() ) continue; - $ret .= xml::element( 'th', null, wfMsg( 'userrights-' . $name . '-col' ) ); + $ret .= Xml::element( 'th', null, wfMsg( 'userrights-' . $name . '-col' ) ); } $ret.= "\n\n"; foreach( $columns as $column ) { diff --git a/maintenance/fuzz-tester.php b/maintenance/fuzz-tester.php index 835afe7499..31775d796e 100644 --- a/maintenance/fuzz-tester.php +++ b/maintenance/fuzz-tester.php @@ -1612,10 +1612,10 @@ class pageProtectionForm extends pageTest { $this->params = array ( "action" => "protect", 'wpEditToken' => wikiFuzz::chooseInput( array( "20398702394", "", wikiFuzz::makeFuzz( 2 ) ) ), - "mwProtect-level-edit" => wikiFuzz::chooseInput( array( '', 'autoconfirmed', 'sysop', wikifuzz::makeFuzz( 2 ) ) ), - "mwProtect-level-move" => wikiFuzz::chooseInput( array( '', 'autoconfirmed', 'sysop', wikifuzz::makeFuzz( 2 ) ) ), + "mwProtect-level-edit" => wikiFuzz::chooseInput( array( '', 'autoconfirmed', 'sysop', wikiFuzz::makeFuzz( 2 ) ) ), + "mwProtect-level-move" => wikiFuzz::chooseInput( array( '', 'autoconfirmed', 'sysop', wikiFuzz::makeFuzz( 2 ) ) ), "mwProtectUnchained" => wikiFuzz::chooseInput( array( "0", "1", "++--34234", wikiFuzz::makeFuzz( 2 ) ) ), - 'mwProtect-reason' => wikiFuzz::chooseInput( array( "because it was there", wikifuzz::makeFuzz( 2 ) ) ) + 'mwProtect-reason' => wikiFuzz::chooseInput( array( "because it was there", wikiFuzz::makeFuzz( 2 ) ) ) ); @@ -1644,10 +1644,10 @@ class specialBlockip extends pageTest { // something like an IP address, sometimes invalid: ( wikiFuzz::randnum( 300, -20 ) . "." . wikiFuzz::randnum( 300, -20 ) . "." . wikiFuzz::randnum( 300, -20 ) . "." . wikiFuzz::randnum( 300, -20 ) ) ) ), - "wpBlockOther" => wikiFuzz::chooseInput( array( '', 'Nickj2', wikifuzz::makeFuzz( 2 ) ) ), + "wpBlockOther" => wikiFuzz::chooseInput( array( '', 'Nickj2', wikiFuzz::makeFuzz( 2 ) ) ), "wpBlockExpiry" => wikiFuzz::chooseInput( array( "other", "2 hours", "1 day", "3 days", "1 week", "2 weeks", "1 month", "3 months", "6 months", "1 year", "infinite", wikiFuzz::makeFuzz( 2 ) ) ), - "wpBlockReason" => wikiFuzz::chooseInput( array( "because it was there", wikifuzz::makeFuzz( 2 ) ) ), + "wpBlockReason" => wikiFuzz::chooseInput( array( "because it was there", wikiFuzz::makeFuzz( 2 ) ) ), "wpAnonOnly" => wikiFuzz::chooseInput( array( "0", "1", "++--34234", wikiFuzz::makeFuzz( 2 ) ) ), "wpCreateAccount" => wikiFuzz::chooseInput( array( "0", "1", "++--34234", wikiFuzz::makeFuzz( 2 ) ) ), "wpBlock" => wikiFuzz::chooseInput( array( "0", "1", "++--34234", wikiFuzz::makeFuzz( 2 ) ) ) @@ -1673,9 +1673,9 @@ class imagepageTest extends pageTest { $this->pagePath = "index.php?title=Image:Small-email.png"; $this->params = array ( - "image" => wikiFuzz::chooseInput( array( "Small-email.png", wikifuzz::makeFuzz( 2 ) ) ), - "wpReason" => wikifuzz::makeFuzz( 2 ), - "oldimage" => wikiFuzz::chooseInput( array( "Small-email.png", wikifuzz::makeFuzz( 2 ) ) ), + "image" => wikiFuzz::chooseInput( array( "Small-email.png", wikiFuzz::makeFuzz( 2 ) ) ), + "wpReason" => wikiFuzz::makeFuzz( 2 ), + "oldimage" => wikiFuzz::chooseInput( array( "Small-email.png", wikiFuzz::makeFuzz( 2 ) ) ), "wpEditToken" => wikiFuzz::chooseInput( array( "20398702394", "", wikiFuzz::makeFuzz( 2 ) ) ), ); @@ -1718,9 +1718,9 @@ class specialRevisionDelete extends pageTest { $this->pagePath = "index.php?title=Special:Revisiondelete"; $this->params = array ( - "target" => wikiFuzz::chooseInput( array( "Main Page", wikifuzz::makeFuzz( 2 ) ) ), - "oldid" => wikifuzz::makeFuzz( 2 ), - "oldid[]" => wikifuzz::makeFuzz( 2 ), + "target" => wikiFuzz::chooseInput( array( "Main Page", wikiFuzz::makeFuzz( 2 ) ) ), + "oldid" => wikiFuzz::makeFuzz( 2 ), + "oldid[]" => wikiFuzz::makeFuzz( 2 ), "wpReason" => wikiFuzz::chooseInput( array( "0", "1", "++--34234", wikiFuzz::makeFuzz( 2 ) ) ), "revdelete-hide-text" => wikiFuzz::chooseInput( array( "0", "1", "++--34234", wikiFuzz::makeFuzz( 2 ) ) ), "revdelete-hide-comment" => wikiFuzz::chooseInput( array( "0", "1", "++--34234", wikiFuzz::makeFuzz( 2 ) ) ), @@ -1750,8 +1750,8 @@ class specialImport extends pageTest { $this->params = array ( "action" => "submit", - "source" => wikiFuzz::chooseInput( array( "upload", "interwiki", wikifuzz::makeFuzz( 2 ) ) ), - "MAX_FILE_SIZE" => wikiFuzz::chooseInput( array( "0", "1", "++--34234", wikifuzz::makeFuzz( 2 ) ) ), + "source" => wikiFuzz::chooseInput( array( "upload", "interwiki", wikiFuzz::makeFuzz( 2 ) ) ), + "MAX_FILE_SIZE" => wikiFuzz::chooseInput( array( "0", "1", "++--34234", wikiFuzz::makeFuzz( 2 ) ) ), "xmlimport" => wikiFuzz::chooseInput( array( "/var/www/hosts/mediawiki/wiki/AdminSettings.php", "1", "++--34234", wikiFuzz::makeFuzz( 2 ) ) ), "namespace" => wikiFuzz::chooseInput( array( wikiFuzz::randnum( 30, -6 ), wikiFuzz::makeFuzz( 2 ) ) ), "interwiki" => wikiFuzz::makeFuzz( 2 ), @@ -1781,9 +1781,9 @@ class thumbTest extends pageTest { $this->pagePath = "thumb.php"; $this->params = array ( - "f" => wikiFuzz::chooseInput( array( "..", "\\", "small-email.png", wikifuzz::makeFuzz( 2 ) ) ), - "w" => wikiFuzz::chooseInput( array( "80", wikiFuzz::randnum( 6000, -200 ), wikifuzz::makeFuzz( 2 ) ) ), - "r" => wikiFuzz::chooseInput( array( "0", wikifuzz::makeFuzz( 2 ) ) ), + "f" => wikiFuzz::chooseInput( array( "..", "\\", "small-email.png", wikiFuzz::makeFuzz( 2 ) ) ), + "w" => wikiFuzz::chooseInput( array( "80", wikiFuzz::randnum( 6000, -200 ), wikiFuzz::makeFuzz( 2 ) ) ), + "r" => wikiFuzz::chooseInput( array( "0", wikiFuzz::makeFuzz( 2 ) ) ), ); // sometimes we don't want to specify certain parameters. @@ -1802,11 +1802,11 @@ class trackbackTest extends pageTest { $this->pagePath = "trackback.php"; $this->params = array ( - "url" => wikifuzz::makeFuzz( 2 ), - "blog_name" => wikiFuzz::chooseInput( array( "80", wikiFuzz::randnum( 6000, -200 ), wikifuzz::makeFuzz( 2 ) ) ), - "article" => wikiFuzz::chooseInput( array( "Main Page", wikifuzz::makeFuzz( 2 ) ) ), - "title" => wikiFuzz::chooseInput( array( "Main Page", wikifuzz::makeFuzz( 2 ) ) ), - "excerpt" => wikifuzz::makeFuzz( 2 ), + "url" => wikiFuzz::makeFuzz( 2 ), + "blog_name" => wikiFuzz::chooseInput( array( "80", wikiFuzz::randnum( 6000, -200 ), wikiFuzz::makeFuzz( 2 ) ) ), + "article" => wikiFuzz::chooseInput( array( "Main Page", wikiFuzz::makeFuzz( 2 ) ) ), + "title" => wikiFuzz::chooseInput( array( "Main Page", wikiFuzz::makeFuzz( 2 ) ) ), + "excerpt" => wikiFuzz::makeFuzz( 2 ), ); // sometimes we don't want to specify certain parameters. @@ -1827,9 +1827,9 @@ class profileInfo extends pageTest { $this->pagePath = "profileinfo.php"; $this->params = array ( - "expand" => wikifuzz::makeFuzz( 2 ), - "sort" => wikiFuzz::chooseInput( array( "time", "count", "name", wikifuzz::makeFuzz( 2 ) ) ), - "filter" => wikiFuzz::chooseInput( array( "Main Page", wikifuzz::makeFuzz( 2 ) ) ), + "expand" => wikiFuzz::makeFuzz( 2 ), + "sort" => wikiFuzz::chooseInput( array( "time", "count", "name", wikiFuzz::makeFuzz( 2 ) ) ), + "filter" => wikiFuzz::chooseInput( array( "Main Page", wikiFuzz::makeFuzz( 2 ) ) ), ); // sometimes we don't want to specify certain parameters. @@ -1847,7 +1847,7 @@ class specialCite extends pageTest { $this->pagePath = "index.php?title=Special:Cite"; $this->params = array ( - "page" => wikiFuzz::chooseInput( array( "\" onmouseover=\"alert(1);\"", "Main Page", wikifuzz::makeFuzz( 2 ) ) ), + "page" => wikiFuzz::chooseInput( array( "\" onmouseover=\"alert(1);\"", "Main Page", wikiFuzz::makeFuzz( 2 ) ) ), "id" => wikiFuzz::chooseInput( array( "-1", "0", "------'-------0", "+1", "-9823412312312412435", wikiFuzz::makeFuzz( 2 ) ) ), ); @@ -1866,7 +1866,7 @@ class specialFilepath extends pageTest { $this->pagePath = "index.php?title=Special:Filepath"; $this->params = array ( - "file" => wikiFuzz::chooseInput( array( "Small-email.png", "Small-email.png" . wikifuzz::makeFuzz( 1 ), wikiFuzz::makeFuzz( 2 ) ) ), + "file" => wikiFuzz::chooseInput( array( "Small-email.png", "Small-email.png" . wikiFuzz::makeFuzz( 1 ), wikiFuzz::makeFuzz( 2 ) ) ), ); } } @@ -1880,9 +1880,9 @@ class specialMakebot extends pageTest { $this->pagePath = "index.php?title=Special:Makebot"; $this->params = array ( - "username" => wikiFuzz::chooseInput( array( "Nickj2", "192.168.0.2", wikifuzz::makeFuzz( 1 ) ) ), - "dosearch" => wikiFuzz::chooseInput( array( "0", "1", "++--34234", wikifuzz::makeFuzz( 2 ) ) ), - "grant" => wikiFuzz::chooseInput( array( "0", "1", "++--34234", wikifuzz::makeFuzz( 2 ) ) ), + "username" => wikiFuzz::chooseInput( array( "Nickj2", "192.168.0.2", wikiFuzz::makeFuzz( 1 ) ) ), + "dosearch" => wikiFuzz::chooseInput( array( "0", "1", "++--34234", wikiFuzz::makeFuzz( 2 ) ) ), + "grant" => wikiFuzz::chooseInput( array( "0", "1", "++--34234", wikiFuzz::makeFuzz( 2 ) ) ), "comment" => wikiFuzz::chooseInput( array( "20398702394", "", wikiFuzz::makeFuzz( 2 ) ) ), "token" => wikiFuzz::chooseInput( array( "20398702394", "", wikiFuzz::makeFuzz( 2 ) ) ), ); @@ -1903,9 +1903,9 @@ class specialMakesysop extends pageTest { $this->pagePath = "index.php?title=Special:Makesysop"; $this->params = array ( - "wpMakesysopUser" => wikiFuzz::chooseInput( array( "Nickj2", "192.168.0.2", wikifuzz::makeFuzz( 1 ) ) ), - "action" => wikiFuzz::chooseInput( array( "0", "1", "++--34234", wikifuzz::makeFuzz( 2 ) ) ), - "wpMakesysopSubmit" => wikiFuzz::chooseInput( array( "0", "1", "++--34234", wikifuzz::makeFuzz( 2 ) ) ), + "wpMakesysopUser" => wikiFuzz::chooseInput( array( "Nickj2", "192.168.0.2", wikiFuzz::makeFuzz( 1 ) ) ), + "action" => wikiFuzz::chooseInput( array( "0", "1", "++--34234", wikiFuzz::makeFuzz( 2 ) ) ), + "wpMakesysopSubmit" => wikiFuzz::chooseInput( array( "0", "1", "++--34234", wikiFuzz::makeFuzz( 2 ) ) ), "wpEditToken" => wikiFuzz::chooseInput( array( "20398702394", "", wikiFuzz::makeFuzz( 2 ) ) ), "wpSetBureaucrat" => wikiFuzz::chooseInput( array( "20398702394", "", wikiFuzz::makeFuzz( 2 ) ) ), ); @@ -1926,8 +1926,8 @@ class specialRenameuser extends pageTest { $this->pagePath = "index.php?title=Special:Renameuser"; $this->params = array ( - "oldusername" => wikiFuzz::chooseInput( array( "Nickj2", "192.168.0.2", wikifuzz::makeFuzz( 1 ) ) ), - "newusername" => wikiFuzz::chooseInput( array( "Nickj2", "192.168.0.2", wikifuzz::makeFuzz( 1 ) ) ), + "oldusername" => wikiFuzz::chooseInput( array( "Nickj2", "192.168.0.2", wikiFuzz::makeFuzz( 1 ) ) ), + "newusername" => wikiFuzz::chooseInput( array( "Nickj2", "192.168.0.2", wikiFuzz::makeFuzz( 1 ) ) ), "token" => wikiFuzz::chooseInput( array( "20398702394", "", wikiFuzz::makeFuzz( 2 ) ) ), ); } @@ -1942,7 +1942,7 @@ class specialLinksearch extends pageTest { $this->pagePath = "index.php?title=Special%3ALinksearch"; $this->params = array ( - "target" => wikifuzz::makeFuzz( 2 ), + "target" => wikiFuzz::makeFuzz( 2 ), ); // sometimes we don't want to specify certain parameters. @@ -1959,11 +1959,11 @@ class specialCategoryTree extends pageTest { $this->pagePath = "index.php?title=Special:CategoryTree"; $this->params = array ( - "target" => wikifuzz::makeFuzz( 2 ), - "from" => wikifuzz::makeFuzz( 2 ), - "until" => wikifuzz::makeFuzz( 2 ), - "showas" => wikifuzz::makeFuzz( 2 ), - "mode" => wikiFuzz::chooseInput( array( "pages", "categories", "all", wikifuzz::makeFuzz( 2 ) ) ), + "target" => wikiFuzz::makeFuzz( 2 ), + "from" => wikiFuzz::makeFuzz( 2 ), + "until" => wikiFuzz::makeFuzz( 2 ), + "showas" => wikiFuzz::makeFuzz( 2 ), + "mode" => wikiFuzz::chooseInput( array( "pages", "categories", "all", wikiFuzz::makeFuzz( 2 ) ) ), ); // sometimes we do want to specify certain parameters. @@ -2008,7 +2008,7 @@ class specialChemicalsourcesTest extends pageTest { } // and then we append the fuzz input. - $this->params = array ( $format => $value . wikifuzz::makeFuzz( 2 ) ); + $this->params = array ( $format => $value . wikiFuzz::makeFuzz( 2 ) ); } } @@ -2026,8 +2026,8 @@ class api extends pageTest { // API login mode. private static function loginMode() { - $arr = array ( "lgname" => wikifuzz::makeFuzz( 2 ), - "lgpassword" => wikifuzz::makeFuzz( 2 ), + $arr = array ( "lgname" => wikiFuzz::makeFuzz( 2 ), + "lgpassword" => wikiFuzz::makeFuzz( 2 ), ); // sometimes we want to specify the extra "lgdomain" parameter. if ( wikiFuzz::randnum( 3 ) == 0 ) { @@ -2039,18 +2039,18 @@ class api extends pageTest { // API OpenSearch mode. private static function opensearchMode() { - return array ( "search" => wikifuzz::makeFuzz( 2 ) ); + return array ( "search" => wikiFuzz::makeFuzz( 2 ) ); } // API watchlist feed mode. private static function feedwatchlistMode() { - // FIXME: add "wikifuzz::makeFuzz(2)" as possible value below? + // FIXME: add "wikiFuzz::makeFuzz(2)" as possible value below? return array ( "feedformat" => wikiFuzz::chooseInput( array( "rss", "atom" ) ) ); } // API query mode. private static function queryMode() { - // FIXME: add "wikifuzz::makeFuzz(2)" as possible params for the elements below? + // FIXME: add "wikiFuzz::makeFuzz(2)" as possible params for the elements below? // Suspect this will stuff up the tests more, but need to check. $params = array ( // FIXME: More titles. @@ -2103,16 +2103,16 @@ class api extends pageTest { case 'start' : case 'end' : case 'limit' : return wikiFuzz::chooseInput( array( "0", "-1", "---'----------0", "+1", "8134", "320742734234235", "20060230121212", wikiFuzz::randnum( 9000, -100 ), wikiFuzz::makeFuzz( 2 ) ) ); - case 'dir' : return wikiFuzz::chooseInput( array( "newer", "older", wikifuzz::makeFuzz( 2 ) ) ); - case 'user' : return wikiFuzz::chooseInput( array( USER_ON_WIKI, wikifuzz::makeFuzz( 2 ) ) ); - case 'namespace' : return wikiFuzz::chooseInput( array( -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 200000, wikifuzz::makeFuzz( 2 ) ) ); - case 'filterredir': return wikiFuzz::chooseInput( array( "all", "redirects", "nonredirectsallpages", wikifuzz::makeFuzz( 2 ) ) ); + case 'dir' : return wikiFuzz::chooseInput( array( "newer", "older", wikiFuzz::makeFuzz( 2 ) ) ); + case 'user' : return wikiFuzz::chooseInput( array( USER_ON_WIKI, wikiFuzz::makeFuzz( 2 ) ) ); + case 'namespace' : return wikiFuzz::chooseInput( array( -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 200000, wikiFuzz::makeFuzz( 2 ) ) ); + case 'filterredir': return wikiFuzz::chooseInput( array( "all", "redirects", "nonredirectsallpages", wikiFuzz::makeFuzz( 2 ) ) ); case 'allrev' : return wikiFuzz::chooseInput( array( "1", 0, "", wikiFuzz::makeFuzz( 2 ) ) ); - case 'prop' : return wikiFuzz::chooseInput( array( "user", "comment", "timestamp", "patrol", "flags", "user|user|comment|flags", wikifuzz::makeFuzz( 2 ) ) ); - case 'type' : return wikiFuzz::chooseInput( array( "block", "protect", "rights", "delete", "upload", "move", "import", "renameuser", "newusers", "makebot", wikifuzz::makeFuzz( 2 ) ) ); - case 'hide' : return wikiFuzz::chooseInput( array( "minor", "bots", "anons", "liu", "liu|bots|", wikifuzz::makeFuzz( 2 ) ) ); - case 'show' : return wikiFuzz::chooseInput( array( 'minor', '!minor', 'bot', '!bot', 'anon', '!anon', wikifuzz::makeFuzz( 2 ) ) ); - default : return wikifuzz::makeFuzz( 2 ); + case 'prop' : return wikiFuzz::chooseInput( array( "user", "comment", "timestamp", "patrol", "flags", "user|user|comment|flags", wikiFuzz::makeFuzz( 2 ) ) ); + case 'type' : return wikiFuzz::chooseInput( array( "block", "protect", "rights", "delete", "upload", "move", "import", "renameuser", "newusers", "makebot", wikiFuzz::makeFuzz( 2 ) ) ); + case 'hide' : return wikiFuzz::chooseInput( array( "minor", "bots", "anons", "liu", "liu|bots|", wikiFuzz::makeFuzz( 2 ) ) ); + case 'show' : return wikiFuzz::chooseInput( array( 'minor', '!minor', 'bot', '!bot', 'anon', '!anon', wikiFuzz::makeFuzz( 2 ) ) ); + default : return wikiFuzz::makeFuzz( 2 ); } } @@ -2125,7 +2125,7 @@ class api extends pageTest { "opensearch", "feedwatchlist", "query" ); - $action = wikiFuzz::chooseInput( array_merge ( $modes, array( wikifuzz::makeFuzz( 2 ) ) ) ); + $action = wikiFuzz::chooseInput( array_merge ( $modes, array( wikiFuzz::makeFuzz( 2 ) ) ) ); switch ( $action ) { case "login" : $this->params = self::loginMode(); @@ -2156,7 +2156,7 @@ class api extends pageTest { $this->params["format"] = wikiFuzz::chooseInput( array( "json", "jsonfm", "php", "phpfm", "wddx", "wddxfm", "xml", "xmlfm", "yaml", "yamlfm", "raw", "rawfm", - wikifuzz::makeFuzz( 2 ) ) ); + wikiFuzz::makeFuzz( 2 ) ) ); // Page does not produce HTML (sometimes). $this->tidyValidate = false; @@ -2173,7 +2173,7 @@ class GeSHi_Test extends pageTest { return "getLang() . "\" " . ( wikiFuzz::randnum( 2 ) == 0 ? "line " : "" ) . ( wikiFuzz::randnum( 2 ) == 0 ? "strict " : "" ) - . "start=" . wikiFuzz::chooseInput( array( wikiFuzz::randnum( -6000, 6000 ), wikifuzz::makeFuzz( 2 ) ) ) + . "start=" . wikiFuzz::chooseInput( array( wikiFuzz::randnum( -6000, 6000 ), wikiFuzz::makeFuzz( 2 ) ) ) . ">" . wikiFuzz::makeFuzz( 2 ) . ""; @@ -2184,7 +2184,7 @@ class GeSHi_Test extends pageTest { "cfdg", "cfm", "cpp", "cpp-qt", "csharp", "css", "d", "delphi", "diff", "div", "dos", "eiffel", "fortran", "freebasic", "gml", "groovy", "html4strict", "idl", "ini", "inno", "io", "java", "java5", "javascript", "latex", "lisp", "lua", "matlab", "mirc", "mpasm", "mysql", "nsis", "objc", "ocaml", "ocaml-brief", "oobas", "oracle8", "pascal", "perl", "php", "php-brief", "plsql", "python", "qbasic", "rails", "reg", "robots", "ruby", "sas", "scheme", "sdlbasic", "smalltalk", "smarty", - "sql", "tcl", "text", "thinbasic", "tsql", "vb", "vbnet", "vhdl", "visualfoxpro", "winbatch", "xml", "xpp", "z80", wikifuzz::makeFuzz( 1 ) ) ); + "sql", "tcl", "text", "thinbasic", "tsql", "vb", "vbnet", "vhdl", "visualfoxpro", "winbatch", "xml", "xpp", "z80", wikiFuzz::makeFuzz( 1 ) ) ); } function __construct() { diff --git a/maintenance/initEditCount.php b/maintenance/initEditCount.php index 6c8f4e7d06..02eb623bab 100644 --- a/maintenance/initEditCount.php +++ b/maintenance/initEditCount.php @@ -44,7 +44,7 @@ in $wgDBservers, usually indicating a replication environment.' ); // Autodetect mode... $backgroundMode = count( $wgDBservers ) > 1 || - ( $dbw instanceof DatabaseMySql && version_compare( $dbver, '4.1' ) < 0 ); + ( $dbw instanceof DatabaseMysql && version_compare( $dbver, '4.1' ) < 0 ); if ( $this->hasOption( 'background' ) ) { $backgroundMode = true; diff --git a/maintenance/tests/HttpTest.php b/maintenance/tests/HttpTest.php index 1aac096a37..f3df5ab34c 100644 --- a/maintenance/tests/HttpTest.php +++ b/maintenance/tests/HttpTest.php @@ -104,13 +104,13 @@ class HttpTest extends PhpUnit_Framework_TestCase { $timeout = 1; $start_time = time(); - $r = HTTP::get( "http://www.example.com:1/", $timeout ); + $r = Http::get( "http://www.example.com:1/", $timeout ); $end_time = time(); $this->assertLessThan( $timeout + 2, $end_time - $start_time, "Request took less than {$timeout}s via " . Http::$httpEngine ); $this->assertEquals( $r, false, "false -- what we get on error from Http::get()" ); - $r = HTTP::get( "http://www.example.com/this-file-does-not-exist", $timeout ); + $r = Http::get( "http://www.example.com/this-file-does-not-exist", $timeout ); $this->assertFalse( $r, "False on 404s" );