Last modified: 2013-09-17 17:12:07 UTC
http://www.mediawiki.org/wiki/Special:Preferences#mw-prefsection-rendering https://test.wikipedia.org/wiki/Special:Preferences#mw-prefsection-rendering running wmf9 Show: <prefs-math> <mw_math_png> <mw_math_source> <mw_math_mathjax> and wikis running wmf8 show it correctly.
Confirming.
Other languages show fine on test.wp, it's just english Math messages And I don't see the problem on my local master
Is there a way to figure out which version of the math extension wmf9 uses... in the math extension there is no tag for that If it's not an error in the .i18 file the error must be somewhere in the Math.hooks.php /** * List of message keys for the various math output settings. * * @return array of strings */ private static function getMathNames() { global $wgUseMathJax, $wgUseLaTeXML; $names = array( MW_MATH_PNG => wfMessage( 'mw_math_png' )->escaped(), MW_MATH_SOURCE => wfMessage( 'mw_math_source' )->escaped(), ); if ( $wgUseMathJax ) { $names[MW_MATH_MATHJAX] = wfMessage( 'mw_math_mathjax' )->escaped(); } if ( $wgUseLaTeXML ) { $names[MW_MATH_LATEXML] = wfMessage( 'mw_math_latexml' )->escaped(); } return $names; } The only thing that changed is that I added $wgUseLaTeXML but this is defined in Math.php as well
Which version is live is tracked with submodules. You can check this at https://git.wikimedia.org/tree/mediawiki%2Fcore.git/wmf%2F1.22wmf9/extensions . Currently, it's at 233d285. Actually, no Math i18n messages seem to be loaded. Even Special:Version displays wrong; see https://www.mediawiki.org/wiki/Special:Version . See also https://www.mediawiki.org/wiki/Special:AllMessages?prefix=math , showing no Math messages are in AllMessages.
I could not reproduce that error. What I did is the following... I used a brand new instance at wikitech there I fetched the latest version from git and checked out remotes/origin/wmf/1.22wmf9 and initialized the sub-modules and enabled the Math extension. That's it. Here the version information are displayed correctly. http://math-test2.instance-proxy.wmflabs.org/wiki/Special:Version and the messages as well http://math-test2.instance-proxy.wmflabs.org/wiki/Special:AllMessages?prefix=math That's all I can do at the moment. Do you have further suggestions how to reproduce the error?
by the way... this http://www.mediawiki.org/wiki/Special:Preferences#mw-prefsection-rendering and this https://www.mediawiki.org/wiki/Special:AllMessages?prefix=math work for me as well now. Has someone fixed that?
Yes, it looks to be fixed. It was probably a deployment issue on the WMF cluster.
This has re-emerged in 1.22wmf14 (310c4ba) on [[wikt:Special:Preferences#mw-prefsection-rendering]]
When I tested just now, it was working. It could be a problem with one of the deployment scripts, but I'm not sure why it would only affect Math.
*** Bug 53916 has been marked as a duplicate of this bug. ***
Reproduced just now (on MediaWiki.org, as in the latest report). This is obviously a recurring issue, so we shouldn't mark it FIXED or WORKSFORME until we understand and have fixed the underlying problem.
CC'ing Reedy to take a look at this, since Matthew seems to think it is an issue in the deploy scripts.
(In reply to comment #12) > CC'ing Reedy to take a look at this, since Matthew seems to think it is an > issue in the deploy scripts. Possibly, though as noted, I'm not sure why it's specific to Math (or if not, just reported for Math?).
scap vs l10nupdate?
*** Bug 54220 has been marked as a duplicate of this bug. ***
Change 84536 had a related patch set uploaded by Reedy: Add Math to extension-list https://gerrit.wikimedia.org/r/84536 ^ Fixed