mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-24 07:34:22 +00:00
c4d9349786
* (bug 14202) $wgUseTeX has been superseded by the Math extension. To re-enable math conversion after upgrading, obtain the Math extension from SVN or from http://www.mediawiki.org/wiki/Extension:Math and add to LocalSettings.php: require_once "$IP/extensions/Math/Math.php"; This is an initial stab, and a few things remain to be cleaned up: * messages need to be moved from core to extension * MW_MATH_* constants should be moved to the extension from core * old back-compat math names interfaces using those constants should be removed from message files * classic edit toolbar's math button should be added from the extension (or else dropped) -- currently there's not a clean hook, but could do it by JS * couple of things like the 'armourMath' function on Language & LanguageConverter may want to be redone just as an unconditional, if that's simpler. Setting $wgUseTeX alone will no longer have any affect. The var's still there for the moment as a few bits still need to be fully moved out from core.
45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* MediaWiki math extension
|
|
*
|
|
* (c) 2002-2011 various MediaWiki contributors
|
|
* GPLv2 license; info in main package.
|
|
*/
|
|
|
|
class MathHooks {
|
|
static function setup() {
|
|
global $wgMathPath, $wgMathDirectory;
|
|
global $wgUploadPath, $wgUploadDirectory;
|
|
if ( $wgMathPath === false ) $wgMathPath = "{$wgUploadPath}/math";
|
|
if ( $wgMathDirectory === false ) $wgMathDirectory = "{$wgUploadDirectory}/math";
|
|
}
|
|
|
|
static function onParserFirstCallInit($parser)
|
|
{
|
|
$parser->setHook( 'math', array( 'MathHooks', 'mathTagHook' ) );
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @param $content
|
|
* @param $attributes
|
|
* @param $parser Parser
|
|
* @return
|
|
*/
|
|
static function mathTagHook( $content, $attributes, $parser ) {
|
|
global $wgContLang;
|
|
return $wgContLang->armourMath( MathRenderer::renderMath( $content, $attributes, $parser->getOptions() ) );
|
|
}
|
|
|
|
static function onGetPreferences( $user, &$defaultPreferences ) {
|
|
global $wgLang;
|
|
$defaultPreferences['math'] = array(
|
|
'type' => 'radio',
|
|
'options' => array_flip( array_map( 'wfMsgHtml', $wgLang->getMathNames() ) ),
|
|
'label' => ' ',
|
|
'section' => 'rendering/math',
|
|
);
|
|
return true;
|
|
}
|
|
}
|