r22478 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r22477‎ | r22478 | r22479 >
Date:21:00, 27 May 2007
Author:jeluf
Status:old
Tags:
Comment:
(bug 7993) support mathematical symbol classes
Modified paths:
  • /trunk/phase3/RELEASE-NOTES (modified) (history)
  • /trunk/phase3/math/texutil.ml (modified) (history)

Diff [purge]

Index: trunk/phase3/math/texutil.ml
@@ -704,7 +704,13 @@
705705 | "\\nLeftrightarrow" -> (tex_use_ams (); LITERAL (TEX_ONLY "\\nLeftrightarrow "))
706706 | "\\mathit" -> (tex_use_ams (); FUN_AR1hf ("\\mathit ", FONTFORCE_IT))
707707 | "\\mathrm" -> (tex_use_ams (); FUN_AR1hf ("\\mathrm ", FONTFORCE_RM))
 708+ | "\\mathord" -> (tex_use_ams (); FUN_AR1 "\\mathord ")
708709 | "\\mathop" -> (tex_use_ams (); FUN_AR1 "\\mathop ")
 710+ | "\\mathbin" -> (tex_use_ams (); FUN_AR1 "\\mathbin ")
 711+ | "\\mathrel" -> (tex_use_ams (); FUN_AR1 "\\mathrel ")
 712+ | "\\mathopen" -> (tex_use_ams (); FUN_AR1 "\\mathopen ")
 713+ | "\\mathclose" -> (tex_use_ams (); FUN_AR1 "\\mathclose ")
 714+ | "\\mathpunct" -> (tex_use_ams (); FUN_AR1 "\\mathpunct ")
709715 | "\\boldsymbol" -> (tex_use_ams (); FUN_AR1 "\\boldsymbol ")
710716 | "\\bold" -> (tex_use_ams (); FUN_AR1 "\\mathbf ")
711717 | "\\Bbb" -> (tex_use_ams (); FUN_AR1 "\\mathbb ")
Index: trunk/phase3/RELEASE-NOTES
@@ -88,6 +88,7 @@
8989 * (bug 7432) Change language name for Aromanian (roa-rup)
9090 * (bug 908) Unexistent special pages now generate a red link.
9191 * (bug 7899) Added \hline and \vline to the list of allowed TeX commands
 92+* (bug 7993) support mathematical symbol classes
9293
9394 == MediaWiki API changes since 1.10 ==
9495

Follow-up revisions

RevisionCommit summaryAuthorDate
r22484Merged revisions 22458-22483 via svnmerge from...david22:52, 27 May 2007