From ad1d07f34f2a21be1625b727c0b721b801faf73f Mon Sep 17 00:00:00 2001 From: withoutaname Date: Sun, 22 Jun 2014 13:13:46 -0700 Subject: [PATCH] Rename Parser_DiffTest class to ParserDiffTest Change-Id: I5fca44a3fffbc60a66be32fad9ed6d1713056d81 --- RELEASE-NOTES-1.24 | 1 + includes/AutoLoader.php | 2 +- includes/cache/MessageCache.php | 2 +- includes/parser/{Parser_DiffTest.php => ParserDiffTest.php} | 4 ++-- 4 files changed, 5 insertions(+), 4 deletions(-) rename includes/parser/{Parser_DiffTest.php => ParserDiffTest.php} (97%) diff --git a/RELEASE-NOTES-1.24 b/RELEASE-NOTES-1.24 index 4f0ae21d18..60d4ccf236 100644 --- a/RELEASE-NOTES-1.24 +++ b/RELEASE-NOTES-1.24 @@ -181,6 +181,7 @@ changes to languages because of Bugzilla reports. * CLDRPluralRuleEvaluator_Range to CLDRPluralRuleEvaluatorRange * CSSJanus_Tokenizer to CSSJanusTokenizer * MediaWiki_I18N to MediaWikiI18N +* Parser_DiffTest to ParserDiffTest * RevDel_ArchiveItem to RevDelArchiveItem * RevDel_ArchiveList to RevDelArchiveList * RevDel_ArchivedFileItem to RevDelArchivedFileItem diff --git a/includes/AutoLoader.php b/includes/AutoLoader.php index 94264aedde..3ac4722e27 100644 --- a/includes/AutoLoader.php +++ b/includes/AutoLoader.php @@ -830,7 +830,7 @@ $wgAutoloadLocalClasses = array( 'ParserCache' => 'includes/parser/ParserCache.php', 'ParserOptions' => 'includes/parser/ParserOptions.php', 'ParserOutput' => 'includes/parser/ParserOutput.php', - 'Parser_DiffTest' => 'includes/parser/Parser_DiffTest.php', + 'ParserDiffTest' => 'includes/parser/ParserDiffTest.php', 'Preprocessor' => 'includes/parser/Preprocessor.php', 'Preprocessor_DOM' => 'includes/parser/Preprocessor_DOM.php', 'Preprocessor_Hash' => 'includes/parser/Preprocessor_Hash.php', diff --git a/includes/cache/MessageCache.php b/includes/cache/MessageCache.php index a3cf87e943..e5afd21eb5 100644 --- a/includes/cache/MessageCache.php +++ b/includes/cache/MessageCache.php @@ -1025,7 +1025,7 @@ class MessageCache { $wgParser->firstCallInit(); # Clone it and store it $class = $wgParserConf['class']; - if ( $class == 'Parser_DiffTest' ) { + if ( $class == 'ParserDiffTest' ) { # Uncloneable $this->mParser = new $class( $wgParserConf ); } else { diff --git a/includes/parser/Parser_DiffTest.php b/includes/parser/ParserDiffTest.php similarity index 97% rename from includes/parser/Parser_DiffTest.php rename to includes/parser/ParserDiffTest.php index 920b6f6621..2db0597e2b 100644 --- a/includes/parser/Parser_DiffTest.php +++ b/includes/parser/ParserDiffTest.php @@ -24,7 +24,7 @@ /** * @ingroup Parser */ -class Parser_DiffTest +class ParserDiffTest { var $parsers, $conf; var $shortOutput = false; @@ -98,7 +98,7 @@ class Parser_DiffTest } else { $diff = '[too many parsers]'; } - $msg = "Parser_DiffTest: results mismatch on call to $name\n"; + $msg = "ParserDiffTest: results mismatch on call to $name\n"; if ( !$this->shortOutput ) { $msg .= 'Arguments: ' . $this->formatArray( $args ) . "\n"; } -- 2.20.1