r88030 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r88029‎ | r88030 | r88031 >
Date:03:04, 14 May 2011
Author:thenub314
Status:reverted (Comments)
Tags:math 
Comment:
Removed the ⁡ MathML entity. This entity doesn't
survive sanitizing. It can be rendered by the corresponding unicode
character, but this doesn't display correctly without the proper fonts
installed.
Modified paths:
  • /trunk/extensions/Math/math/mathml.ml (modified) (history)

Diff [purge]

Index: trunk/extensions/Math/math/mathml.ml
@@ -18,7 +18,7 @@
1919 TREE_MN s -> "<mn>"^s^"</mn>"
2020 | TREE_MI s -> "<mi>"^s^"</mi>"
2121 | TREE_MO s -> "<mo>"^s^"</mo>"
22 - | TREE_MF s -> "<mi>"^s^"</mi><mo>&ApplyFunction;</mo>"
23 - | TREE_MFB (s,b) -> "<mi>"^s^"</mi><mo>&ApplyFunction;</mo>"^"<mo>"^b^"</mo>"
 22+ | TREE_MF s -> "<mi>"^s^" </mi>"
 23+ | TREE_MFB (s,b) -> "<mi>"^s^"</mi>"^"<mo>"^b^"</mo>"
2424
2525 let render tree = try Some (Util.mapjoin render_mathml_tree (make_mathml_tree ([],tree))) with _ -> None

Sign-offs

UserFlagDate
Thelema314inspected13:06, 29 August 2011

Follow-up revisions

RevisionCommit summaryAuthorDate
r96990Revert changes to texvc that provide no test cases or examples of what they'r...brion19:00, 13 September 2011
r96993MFT r96990: provisional revert of texvc changes that don't come with any test...brion19:07, 13 September 2011

Comments

#Comment by Brion VIBBER (talk | contribs)   19:04, 13 September 2011

Provisionally reverted in r96990 pending test cases.

Status & tagging log