Physikerwelt has submitted this change and it was merged. Change subject: Fix encoding to UTF-8 ......................................................................
Fix encoding to UTF-8 While I am at it: * Kill trailing space * Fix formatting * Add some comments to show that these are special pages and therefore do not need a prefix Change-Id: I184e4e71d5c2f8307440dc994981dd241db87782 --- M MathSearch.i18n.php M MathSearch.php 2 files changed, 12 insertions(+), 12 deletions(-) Approvals: Physikerwelt: Verified; Looks good to me, approved diff --git a/MathSearch.i18n.php b/MathSearch.i18n.php index c5f0a32..1f29713 100644 --- a/MathSearch.i18n.php +++ b/MathSearch.i18n.php @@ -11,13 +11,13 @@ * @author Moritz Schubotz */ $messages['en'] = array( - 'mathsearch' => 'Math search', - 'formulainfo' => 'Formula info', - 'specialpages-group-mathsearch' => 'Math search', - 'mathsearch-desc' => 'Integrates the [http://search.mathweb.org/about.html MathWeb Search] engine', - 'getequationsbyquery'=>'Get equations by query', - 'xquerygenerator'=>'X-query generator', - 'mathdebug'=>'Test Renderer', + 'mathsearch' => 'Math search', // Special page + 'formulainfo' => 'Formula info', // Special page + 'specialpages-group-mathsearch' => 'Math search', + 'mathsearch-desc' => 'Integrates the [http://search.mathweb.org/about.html MathWeb Search] engine', + 'getequationsbyquery' => 'Get equations by query', // Special page + 'xquerygenerator' => 'X-query generator', // Special page + 'mathdebug' => 'Test Renderer', // Special page ); /** Message documentation (Message documentation) diff --git a/MathSearch.php b/MathSearch.php index 8343b9f..196b040 100644 --- a/MathSearch.php +++ b/MathSearch.php @@ -7,7 +7,7 @@ * @version 0.1 * @author Moritz Schubotz * @author Brion Vibber - * @copyright � 2002-2012 various MediaWiki contributors + * @copyright © 2002-2012 various MediaWiki contributors * @license GPLv2 license; info in main package. * @link http://www.mediawiki.org/wiki/Extension:MathSearch Documentation */ @@ -31,8 +31,8 @@ $dir = dirname( __FILE__ ) . '/'; $wgAutoloadClasses['MathSearchHooks'] = $dir . 'MathSearch.hooks.php'; -$wgAutoloadClasses['SpecialMathSearch'] = $dir . 'SpecialMathSearch.php'; -$wgAutoloadClasses['FormulaInfo'] = $dir . 'FormulaInfo.php'; +$wgAutoloadClasses['SpecialMathSearch'] = $dir . 'SpecialMathSearch.php'; +$wgAutoloadClasses['FormulaInfo'] = $dir . 'FormulaInfo.php'; $wgAutoloadClasses['MathObject'] = $dir . 'MathObject.php'; $wgAutoloadClasses['XQueryGenerator'] = $dir . 'XQueryGenerator.php'; $wgAutoloadClasses['GetEquationsByQuery'] = $dir . 'GetEquationsByQuery.php'; @@ -40,8 +40,8 @@ $wgAutoloadClasses['SpecialMathIndex'] = $dir . 'SpecialMathIndex.php'; -$wgExtensionMessagesFiles['MathSearch'] = $dir . 'MathSearch.i18n.php'; -$wgExtensionMessagesFiles['MathSearchAlias'] = $dir . 'MathSearch.alias.php'; +$wgExtensionMessagesFiles['MathSearch'] = $dir . 'MathSearch.i18n.php'; +$wgExtensionMessagesFiles['MathSearchAlias'] = $dir . 'MathSearch.alias.php'; $wgSpecialPageGroups['MathSearch'] = 'mathsearch'; $wgSpecialPageGroups['FormulaInfo'] = 'mathsearch'; -- To view, visit https://gerrit.wikimedia.org/r/61785 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I184e4e71d5c2f8307440dc994981dd241db87782 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/MathSearch Gerrit-Branch: master Gerrit-Owner: Raimond Spekking <[email protected]> Gerrit-Reviewer: Physikerwelt <[email protected]> Gerrit-Reviewer: Siebrand <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
