mml 2.3.0 → 2.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (336) hide show
  1. checksums.yaml +4 -4
  2. data/.gitmodules +9 -0
  3. data/.rubocop.yml +4 -0
  4. data/.rubocop_todo.yml +83 -18
  5. data/Gemfile +0 -2
  6. data/README.adoc +176 -47
  7. data/Rakefile +16 -1
  8. data/lib/mml/base/common_attributes.rb +44 -0
  9. data/lib/mml/base/content/annotation.rb +28 -0
  10. data/lib/mml/base/content/annotation_xml.rb +31 -0
  11. data/lib/mml/base/content/apply.rb +27 -0
  12. data/lib/mml/base/content/arith.rb +243 -0
  13. data/lib/mml/base/content/bind.rb +27 -0
  14. data/lib/mml/base/content/bvar.rb +20 -0
  15. data/lib/mml/base/content/calculus.rb +103 -0
  16. data/lib/mml/base/content/cbytes.rb +24 -0
  17. data/lib/mml/base/content/cerror.rb +24 -0
  18. data/lib/mml/base/content/ci.rb +77 -0
  19. data/lib/mml/base/content/cn.rb +33 -0
  20. data/lib/mml/base/content/condition.rb +20 -0
  21. data/lib/mml/base/content/constants.rb +173 -0
  22. data/lib/mml/base/content/cs.rb +22 -0
  23. data/lib/mml/base/content/csymbol.rb +79 -0
  24. data/lib/mml/base/content/declare.rb +34 -0
  25. data/lib/mml/base/content/degree.rb +20 -0
  26. data/lib/mml/base/content/elementary_functions.rb +309 -0
  27. data/lib/mml/base/content/fn.rb +25 -0
  28. data/lib/mml/base/content/functions.rb +85 -0
  29. data/lib/mml/base/content/interval.rb +24 -0
  30. data/lib/mml/base/content/inverse.rb +25 -0
  31. data/lib/mml/base/content/lambda.rb +20 -0
  32. data/lib/mml/base/content/linear_algebra.rb +122 -0
  33. data/lib/mml/base/content/logic.rb +93 -0
  34. data/lib/mml/base/content/otherwise.rb +20 -0
  35. data/lib/mml/base/content/piece.rb +20 -0
  36. data/lib/mml/base/content/piecewise.rb +20 -0
  37. data/lib/mml/base/content/relations.rb +113 -0
  38. data/lib/mml/base/content/reln.rb +19 -0
  39. data/lib/mml/base/content/semantics.rb +27 -0
  40. data/lib/mml/base/content/sep.rb +19 -0
  41. data/lib/mml/base/content/sets.rb +163 -0
  42. data/lib/mml/base/content/share.rb +22 -0
  43. data/lib/mml/base/content/statistics.rb +95 -0
  44. data/lib/mml/base/content/vector_calculus.rb +63 -0
  45. data/lib/mml/base/content_loader.rb +195 -0
  46. data/lib/mml/base/maction.rb +1 -0
  47. data/lib/mml/base/math.rb +47 -0
  48. data/lib/mml/base/menclose.rb +1 -1
  49. data/lib/mml/base/mfenced.rb +2 -2
  50. data/lib/mml/base/mglyph.rb +2 -2
  51. data/lib/mml/base/mi.rb +9 -6
  52. data/lib/mml/base/mlabeledtr.rb +2 -6
  53. data/lib/mml/base/mn.rb +3 -2
  54. data/lib/mml/base/mo.rb +3 -3
  55. data/lib/mml/base/mrow.rb +0 -2
  56. data/lib/mml/base/ms.rb +4 -6
  57. data/lib/mml/base/mscarries.rb +1 -1
  58. data/lib/mml/base/mspace.rb +0 -2
  59. data/lib/mml/base/mstyle.rb +4 -8
  60. data/lib/mml/base/mtable.rb +8 -0
  61. data/lib/mml/base/mtd.rb +6 -0
  62. data/lib/mml/base/mtext.rb +0 -2
  63. data/lib/mml/base/semantics.rb +4 -2
  64. data/lib/mml/base/universal_presentation_attributes.rb +46 -0
  65. data/lib/mml/base/v3_common.rb +16 -0
  66. data/lib/mml/base/v3_presentation_attributes.rb +15 -0
  67. data/lib/mml/base/v4_attributes.rb +4 -18
  68. data/lib/mml/base.rb +11 -0
  69. data/lib/mml/common_elements.rb +336 -0
  70. data/lib/mml/context_configuration.rb +29 -0
  71. data/lib/mml/v2/annotation.rb +9 -0
  72. data/lib/mml/v2/annotation_xml.rb +9 -0
  73. data/lib/mml/v2/apply.rb +9 -0
  74. data/lib/mml/v2/arith.rb +93 -0
  75. data/lib/mml/v2/bind.rb +9 -0
  76. data/lib/mml/v2/bvar.rb +9 -0
  77. data/lib/mml/v2/calculus.rb +33 -0
  78. data/lib/mml/v2/ci.rb +9 -0
  79. data/lib/mml/v2/cn.rb +9 -0
  80. data/lib/mml/v2/common_elements.rb +34 -0
  81. data/lib/mml/v2/condition.rb +9 -0
  82. data/lib/mml/v2/configuration.rb +13 -0
  83. data/lib/mml/v2/constants.rb +65 -0
  84. data/lib/mml/v2/csymbol.rb +9 -0
  85. data/lib/mml/v2/degree.rb +9 -0
  86. data/lib/mml/v2/elementary_functions.rb +121 -0
  87. data/lib/mml/v2/fn.rb +9 -0
  88. data/lib/mml/v2/functions.rb +29 -0
  89. data/lib/mml/v2/interval.rb +9 -0
  90. data/lib/mml/v2/inverse.rb +9 -0
  91. data/lib/mml/v2/lambda.rb +9 -0
  92. data/lib/mml/v2/linear_algebra.rb +41 -0
  93. data/lib/mml/v2/logic.rb +33 -0
  94. data/lib/mml/v2/maction.rb +9 -0
  95. data/lib/mml/v2/maligngroup.rb +9 -0
  96. data/lib/mml/v2/malignmark.rb +9 -0
  97. data/lib/mml/v2/math.rb +11 -0
  98. data/lib/mml/v2/menclose.rb +9 -0
  99. data/lib/mml/v2/merror.rb +9 -0
  100. data/lib/mml/v2/mfenced.rb +9 -0
  101. data/lib/mml/v2/mfrac.rb +9 -0
  102. data/lib/mml/v2/mfraction.rb +9 -0
  103. data/lib/mml/v2/mglyph.rb +9 -0
  104. data/lib/mml/v2/mi.rb +9 -0
  105. data/lib/mml/v2/mlabeledtr.rb +9 -0
  106. data/lib/mml/v2/mlongdiv.rb +9 -0
  107. data/lib/mml/v2/mmultiscripts.rb +9 -0
  108. data/lib/mml/v2/mn.rb +9 -0
  109. data/lib/mml/v2/mo.rb +10 -0
  110. data/lib/mml/v2/mover.rb +9 -0
  111. data/lib/mml/v2/mpadded.rb +9 -0
  112. data/lib/mml/v2/mphantom.rb +9 -0
  113. data/lib/mml/v2/mprescripts.rb +9 -0
  114. data/lib/mml/v2/mroot.rb +9 -0
  115. data/lib/mml/v2/mrow.rb +9 -0
  116. data/lib/mml/v2/ms.rb +9 -0
  117. data/lib/mml/v2/mscarries.rb +9 -0
  118. data/lib/mml/v2/mscarry.rb +9 -0
  119. data/lib/mml/v2/msgroup.rb +9 -0
  120. data/lib/mml/v2/msline.rb +9 -0
  121. data/lib/mml/v2/mspace.rb +9 -0
  122. data/lib/mml/v2/msqrt.rb +9 -0
  123. data/lib/mml/v2/msrow.rb +9 -0
  124. data/lib/mml/v2/mstack.rb +9 -0
  125. data/lib/mml/v2/mstyle.rb +10 -0
  126. data/lib/mml/v2/msub.rb +9 -0
  127. data/lib/mml/v2/msubsup.rb +9 -0
  128. data/lib/mml/v2/msup.rb +9 -0
  129. data/lib/mml/v2/mtable.rb +9 -0
  130. data/lib/mml/v2/mtd.rb +9 -0
  131. data/lib/mml/v2/mtext.rb +9 -0
  132. data/lib/mml/v2/mtr.rb +9 -0
  133. data/lib/mml/v2/munder.rb +9 -0
  134. data/lib/mml/v2/munderover.rb +9 -0
  135. data/lib/mml/v2/namespace.rb +7 -0
  136. data/lib/mml/v2/none.rb +9 -0
  137. data/lib/mml/v2/otherwise.rb +9 -0
  138. data/lib/mml/v2/piece.rb +9 -0
  139. data/lib/mml/v2/piecewise.rb +9 -0
  140. data/lib/mml/v2/relations.rb +41 -0
  141. data/lib/mml/v2/reln.rb +13 -0
  142. data/lib/mml/v2/semantics.rb +9 -0
  143. data/lib/mml/v2/sep.rb +9 -0
  144. data/lib/mml/v2/sets.rb +57 -0
  145. data/lib/mml/v2/statistics.rb +33 -0
  146. data/lib/mml/v2/vector_calculus.rb +21 -0
  147. data/lib/mml/v2.rb +311 -0
  148. data/lib/mml/v3/annotation.rb +10 -0
  149. data/lib/mml/v3/annotation_xml.rb +10 -0
  150. data/lib/mml/v3/apply.rb +10 -0
  151. data/lib/mml/v3/arith.rb +115 -0
  152. data/lib/mml/v3/bind.rb +10 -0
  153. data/lib/mml/v3/calculus.rb +40 -0
  154. data/lib/mml/v3/cbytes.rb +10 -0
  155. data/lib/mml/v3/cerror.rb +10 -0
  156. data/lib/mml/v3/ci.rb +10 -0
  157. data/lib/mml/v3/cn.rb +10 -0
  158. data/lib/mml/v3/common_elements.rb +34 -0
  159. data/lib/mml/v3/constants.rb +80 -0
  160. data/lib/mml/v3/constructs.rb +55 -0
  161. data/lib/mml/v3/cs.rb +10 -0
  162. data/lib/mml/v3/csymbol.rb +10 -0
  163. data/lib/mml/v3/deprecated_content.rb +29 -0
  164. data/lib/mml/v3/elementary_functions.rb +145 -0
  165. data/lib/mml/v3/functions.rb +35 -0
  166. data/lib/mml/v3/linear_algebra.rb +50 -0
  167. data/lib/mml/v3/logic.rb +40 -0
  168. data/lib/mml/v3/maction.rb +1 -1
  169. data/lib/mml/v3/math.rb +7 -1
  170. data/lib/mml/v3/mi.rb +1 -0
  171. data/lib/mml/v3/mn.rb +1 -0
  172. data/lib/mml/v3/mo.rb +1 -0
  173. data/lib/mml/v3/mrow.rb +1 -0
  174. data/lib/mml/v3/ms.rb +1 -0
  175. data/lib/mml/v3/mstyle.rb +1 -0
  176. data/lib/mml/v3/mtext.rb +1 -0
  177. data/lib/mml/v3/relations.rb +50 -0
  178. data/lib/mml/v3/sets.rb +70 -0
  179. data/lib/mml/v3/statistics.rb +40 -0
  180. data/lib/mml/v3/vector_calculus.rb +25 -0
  181. data/lib/mml/v3.rb +25 -0
  182. data/lib/mml/v4/a.rb +4 -3
  183. data/lib/mml/v4/annotation.rb +10 -0
  184. data/lib/mml/v4/annotation_xml.rb +14 -0
  185. data/lib/mml/v4/apply.rb +9 -0
  186. data/lib/mml/v4/arith.rb +93 -0
  187. data/lib/mml/v4/calculus.rb +25 -0
  188. data/lib/mml/v4/cbytes.rb +9 -0
  189. data/lib/mml/v4/cerror.rb +9 -0
  190. data/lib/mml/v4/ci.rb +9 -0
  191. data/lib/mml/v4/cn.rb +9 -0
  192. data/lib/mml/v4/common_elements.rb +33 -0
  193. data/lib/mml/v4/constants.rb +65 -0
  194. data/lib/mml/v4/constructs.rb +49 -0
  195. data/lib/mml/v4/cs.rb +9 -0
  196. data/lib/mml/v4/csymbol.rb +9 -0
  197. data/lib/mml/v4/deprecated_content.rb +25 -0
  198. data/lib/mml/v4/elementary_functions.rb +118 -0
  199. data/lib/mml/v4/factorof.rb +9 -0
  200. data/lib/mml/v4/functions.rb +30 -0
  201. data/lib/mml/v4/limit.rb +9 -0
  202. data/lib/mml/v4/linear_algebra.rb +41 -0
  203. data/lib/mml/v4/logic.rb +33 -0
  204. data/lib/mml/v4/maction.rb +1 -2
  205. data/lib/mml/v4/maligngroup.rb +0 -1
  206. data/lib/mml/v4/malignmark.rb +0 -1
  207. data/lib/mml/v4/math.rb +1 -1
  208. data/lib/mml/v4/menclose.rb +0 -1
  209. data/lib/mml/v4/merror.rb +0 -1
  210. data/lib/mml/v4/mfenced.rb +0 -1
  211. data/lib/mml/v4/mfrac.rb +0 -1
  212. data/lib/mml/v4/mfraction.rb +0 -1
  213. data/lib/mml/v4/mglyph.rb +0 -1
  214. data/lib/mml/v4/mi.rb +1 -1
  215. data/lib/mml/v4/mlabeledtr.rb +0 -1
  216. data/lib/mml/v4/mlongdiv.rb +0 -1
  217. data/lib/mml/v4/mmultiscripts.rb +0 -1
  218. data/lib/mml/v4/mn.rb +1 -1
  219. data/lib/mml/v4/mo.rb +1 -1
  220. data/lib/mml/v4/mover.rb +0 -1
  221. data/lib/mml/v4/mpadded.rb +0 -1
  222. data/lib/mml/v4/mphantom.rb +0 -1
  223. data/lib/mml/v4/mprescripts.rb +0 -1
  224. data/lib/mml/v4/mroot.rb +0 -1
  225. data/lib/mml/v4/mrow.rb +1 -1
  226. data/lib/mml/v4/ms.rb +1 -1
  227. data/lib/mml/v4/mscarries.rb +0 -1
  228. data/lib/mml/v4/mscarry.rb +0 -1
  229. data/lib/mml/v4/msgroup.rb +0 -1
  230. data/lib/mml/v4/msline.rb +0 -1
  231. data/lib/mml/v4/mspace.rb +0 -1
  232. data/lib/mml/v4/msqrt.rb +0 -1
  233. data/lib/mml/v4/msrow.rb +0 -1
  234. data/lib/mml/v4/mstack.rb +0 -1
  235. data/lib/mml/v4/mstyle.rb +1 -1
  236. data/lib/mml/v4/msub.rb +0 -1
  237. data/lib/mml/v4/msubsup.rb +0 -1
  238. data/lib/mml/v4/msup.rb +0 -1
  239. data/lib/mml/v4/mtable.rb +0 -1
  240. data/lib/mml/v4/mtd.rb +0 -1
  241. data/lib/mml/v4/mtext.rb +1 -1
  242. data/lib/mml/v4/mtr.rb +0 -1
  243. data/lib/mml/v4/munder.rb +0 -1
  244. data/lib/mml/v4/munderover.rb +0 -1
  245. data/lib/mml/v4/none.rb +0 -1
  246. data/lib/mml/v4/relations.rb +37 -0
  247. data/lib/mml/v4/semantics.rb +0 -1
  248. data/lib/mml/v4/sets.rb +57 -0
  249. data/lib/mml/v4/statistics.rb +33 -0
  250. data/lib/mml/v4/tendsto.rb +9 -0
  251. data/lib/mml/v4/vector_calculus.rb +21 -0
  252. data/lib/mml/v4.rb +421 -44
  253. data/lib/mml/version.rb +1 -1
  254. data/lib/mml/versioned_parser.rb +1 -1
  255. data/lib/mml.rb +3 -1
  256. data/reference-docs/mathml-source/pubtext/mathmlspec.dtd +150 -0
  257. data/reference-docs/mathml-source/pubtext/xmlspec.dtd +2649 -0
  258. data/reference-docs/mathml-source/readme.txt +40 -0
  259. data/reference-docs/mathml-source/run +296 -0
  260. data/reference-docs/mathml-source/style/html/html2xhtml.xsl +216 -0
  261. data/reference-docs/mathml-source/style/html/images.xsl +98 -0
  262. data/reference-docs/mathml-source/style/html/mml6.xsl +1156 -0
  263. data/reference-docs/mathml-source/style/html/mmldiff.xsl +566 -0
  264. data/reference-docs/mathml-source/style/html/mmlspec.xsl +2531 -0
  265. data/reference-docs/mathml-source/style/html/slices-common.xsl +312 -0
  266. data/reference-docs/mathml-source/style/html/slices.xsl +48 -0
  267. data/reference-docs/mathml-source/style/html/xmlspec.xsl +2542 -0
  268. data/reference-docs/mathml-source/style/pdf/mathmlspec.xsl +2510 -0
  269. data/reference-docs/mathml-source/xml/changes.xml +773 -0
  270. data/reference-docs/mathml-source/xml/character-set.xml +1011 -0
  271. data/reference-docs/mathml-source/xml/content-element-def.xml +6143 -0
  272. data/reference-docs/mathml-source/xml/content-markup.xml +8178 -0
  273. data/reference-docs/mathml-source/xml/contributors.xml +425 -0
  274. data/reference-docs/mathml-source/xml/dom-bindings.xml +20 -0
  275. data/reference-docs/mathml-source/xml/dom-intro.xml +114 -0
  276. data/reference-docs/mathml-source/xml/fundamentals.xml +1646 -0
  277. data/reference-docs/mathml-source/xml/glossary.xml +519 -0
  278. data/reference-docs/mathml-source/xml/interface.xml +1096 -0
  279. data/reference-docs/mathml-source/xml/introduction.xml +724 -0
  280. data/reference-docs/mathml-source/xml/mathml-css-sample.xml +304 -0
  281. data/reference-docs/mathml-source/xml/mathml-dom.xml +3813 -0
  282. data/reference-docs/mathml-source/xml/mathml-spec.xml +356 -0
  283. data/reference-docs/mathml-source/xml/mixing.xml +982 -0
  284. data/reference-docs/mathml-source/xml/operator-dict.xml +551 -0
  285. data/reference-docs/mathml-source/xml/parsing.xml +2565 -0
  286. data/reference-docs/mathml-source/xml/presentation-markup.xml +6834 -0
  287. data/reference-docs/mathml-source/xml/references.xml +323 -0
  288. data/reference-docs/mathml-source/xml/validation-grammar.xml +877 -0
  289. data/schemas/README.adoc +17 -0
  290. data/schemas/mathml2/common/common-attribs.xsd +41 -0
  291. data/schemas/mathml2/common/math.xsd +126 -0
  292. data/schemas/mathml2/common/xlink-href.xsd +20 -0
  293. data/schemas/mathml2/content/CVS/Entries +16 -0
  294. data/schemas/mathml2/content/CVS/Repository +1 -0
  295. data/schemas/mathml2/content/CVS/Root +1 -0
  296. data/schemas/mathml2/content/arith.xsd +90 -0
  297. data/schemas/mathml2/content/calculus.xsd +146 -0
  298. data/schemas/mathml2/content/common-attrib.xsd +30 -0
  299. data/schemas/mathml2/content/constants.xsd +83 -0
  300. data/schemas/mathml2/content/constructs.xsd +260 -0
  301. data/schemas/mathml2/content/elementary-functions.xsd +117 -0
  302. data/schemas/mathml2/content/functions.xsd +73 -0
  303. data/schemas/mathml2/content/linear-algebra.xsd +173 -0
  304. data/schemas/mathml2/content/logic.xsd +53 -0
  305. data/schemas/mathml2/content/relations.xsd +55 -0
  306. data/schemas/mathml2/content/semantics.xsd +85 -0
  307. data/schemas/mathml2/content/sets.xsd +236 -0
  308. data/schemas/mathml2/content/statistics.xsd +136 -0
  309. data/schemas/mathml2/content/tokens.xsd +120 -0
  310. data/schemas/mathml2/content/tokens.xsd.~1.3.~ +119 -0
  311. data/schemas/mathml2/content/vector-calculus.xsd +88 -0
  312. data/schemas/mathml2/mathml2.xsd +59 -0
  313. data/schemas/mathml2/presentation/action.xsd +44 -0
  314. data/schemas/mathml2/presentation/characters.xsd +37 -0
  315. data/schemas/mathml2/presentation/common-attribs.xsd +113 -0
  316. data/schemas/mathml2/presentation/common-types.xsd +103 -0
  317. data/schemas/mathml2/presentation/error.xsd +40 -0
  318. data/schemas/mathml2/presentation/layout.xsd +195 -0
  319. data/schemas/mathml2/presentation/scripts.xsd +186 -0
  320. data/schemas/mathml2/presentation/space.xsd +52 -0
  321. data/schemas/mathml2/presentation/style.xsd +69 -0
  322. data/schemas/mathml2/presentation/table.xsd +216 -0
  323. data/schemas/mathml2/presentation/tokens.xsd +124 -0
  324. data/schemas/mathml3/mathml3-common.xsd +99 -0
  325. data/schemas/mathml3/mathml3-content.xsd +684 -0
  326. data/schemas/mathml3/mathml3-presentation.xsd +2151 -0
  327. data/schemas/mathml3/mathml3-strict-content.xsd +186 -0
  328. data/schemas/mathml3/mathml3.xsd +9 -0
  329. data/schemas/mathml4/mathml4-content.rnc +382 -0
  330. data/schemas/mathml4/mathml4-core.rnc +361 -0
  331. data/schemas/mathml4/mathml4-presentation.rnc +358 -0
  332. data/schemas/mathml4/mathml4-strict-content.rnc +86 -0
  333. data/schemas/mathml4/mathml4.rnc +21 -0
  334. data/schemas/mathml4/mathml4.rnc.1 +21 -0
  335. data/schemas/mathml4/mathml4.rng +37 -0
  336. metadata +249 -2
@@ -0,0 +1,425 @@
1
+ <inform-div1 id="contributors" role="appendixi"><head>Working Group Membership and Acknowledgments</head>
2
+ <!-- $Id: contributors.xml,v 1.26 2003/09/15 13:47:27 davidc Exp $ -->
3
+
4
+
5
+ <div2 diff="chg" id="contrib"><head>The Math Working Group Membership</head>
6
+
7
+ <p>The W3C Math Working Group was co-chaired by Patrick Ion of the
8
+ AMS, and Angel Diaz of IBM from June 2001 to May 2002. Presently
9
+ Patrick Ion continues as chair. Contact the chair about membership in
10
+ the Working Group. For the present membership see the
11
+ <loc href="http://www.w3.org/Math/">W3C Math home page</loc>.</p>
12
+
13
+ <p>Participants in the Working Group responsible for MathML 2.0, second
14
+ edition are:
15
+ <orglist>
16
+ <member>
17
+ <name>Ron Ausbrooks</name>
18
+ <affiliation>Mackichan Software, Las Cruces NM, USA</affiliation>
19
+ </member>
20
+
21
+ <member>
22
+ <name>Laurent Bernardin</name>
23
+ <affiliation>Waterloo Maple, Inc., Waterloo ON, CAN</affiliation>
24
+ </member>
25
+
26
+ <member>
27
+ <name>Stephen Buswell</name>
28
+ <affiliation>Stilo Technology Ltd., Bristol, UK</affiliation>
29
+ </member>
30
+
31
+ <member>
32
+ <name>David Carlisle</name>
33
+ <affiliation>NAG Ltd., Oxford, UK</affiliation>
34
+ </member>
35
+
36
+ <member>
37
+ <name>St&eacute;phane Dalmas</name>
38
+ <affiliation>INRIA, Sophia Antipolis, FR</affiliation>
39
+ </member>
40
+
41
+ <member>
42
+ <name>Stan Devitt</name>
43
+ <affiliation>Stratum Technical Services Ltd., Waterloo ON, CAN (earlier with Waterloo Maple, Inc., Waterloo ON, CAN)</affiliation>
44
+ </member>
45
+
46
+ <member>
47
+ <name>Max Froumentin</name>
48
+ <affiliation>W3C, Sophia-Antipolis, FRA</affiliation>
49
+ </member>
50
+
51
+ <member>
52
+ <name>Patrick Ion</name>
53
+ <affiliation>Mathematical Reviews (American Mathematical
54
+ Society), Ann Arbor MI, USA</affiliation>
55
+ </member>
56
+
57
+ <member>
58
+ <name>Michael Kohlhase</name>
59
+ <affiliation>DFKI, GER</affiliation>
60
+ </member>
61
+
62
+ <member>
63
+ <name>Robert Miner</name>
64
+ <affiliation>Design Science Inc., Long Beach CA, USA</affiliation>
65
+ </member>
66
+
67
+ <member>
68
+ <name>Luca Padovani</name>
69
+ <affiliation>University of Bologna, IT</affiliation>
70
+ </member>
71
+
72
+ <member>
73
+ <name>Ivor Philips</name>
74
+ <affiliation>Boeing, Seattle WA, USA</affiliation>
75
+ </member>
76
+
77
+ <member>
78
+ <name>Murray Sargent III</name>
79
+ <affiliation>Microsoft, Redmond WA, USA</affiliation>
80
+ </member>
81
+
82
+ <member>
83
+ <name>Neil Soiffer</name>
84
+ <affiliation>Wolfram Research Inc., Champaign IL, USA</affiliation>
85
+ </member>
86
+
87
+ <member>
88
+ <name>Paul Topping</name>
89
+ <affiliation>Design Science Inc., Long Beach CA, USA</affiliation>
90
+ </member>
91
+
92
+ <member>
93
+ <name>Stephen Watt</name>
94
+ <affiliation>University of Western Ontario, London ON, CAN</affiliation>
95
+ </member>
96
+ </orglist>
97
+ </p>
98
+
99
+ <p>Earlier active participants of the W3C Math Working Group (2001 &ndash; 2003) have
100
+ included:
101
+ <orglist>
102
+
103
+ <member>
104
+ <name>Angel Diaz</name>
105
+ <affiliation>IBM Research Division, Yorktown Heights NY, USA</affiliation>
106
+ </member>
107
+
108
+ <member>
109
+ <name>Sam Dooley</name>
110
+ <affiliation>IBM Research, Yorktown Heights NY, USA</affiliation>
111
+ </member>
112
+
113
+ <member>
114
+ <name>Barry MacKichan</name>
115
+ <affiliation>MacKichan Software, Las Cruces NM, USA</affiliation>
116
+ </member>
117
+ </orglist>
118
+ </p>
119
+
120
+
121
+
122
+ <p>The W3C Math Working Group was co-chaired by Patrick Ion
123
+ of the AMS, and Angel Diaz of IBM from July 1998 to December 2000.</p>
124
+
125
+ <p>Participants in the Working Group responsible for MathML 2.0 were:
126
+ <orglist>
127
+ <member>
128
+ <name>Ron Ausbrooks</name>
129
+ <affiliation>Mackichan Software, Las Cruces NM, USA</affiliation>
130
+ </member>
131
+
132
+ <member>
133
+ <name>Laurent Bernardin</name>
134
+ <affiliation>Maplesoft, Waterloo ON, CAN</affiliation>
135
+ </member>
136
+
137
+ <member>
138
+ <name>Stephen Buswell</name>
139
+ <affiliation>Stilo Technology Ltd., Cardiff, UK</affiliation>
140
+ </member>
141
+
142
+ <member>
143
+ <name>David Carlisle</name>
144
+ <affiliation>NAG Ltd., Oxford, UK</affiliation>
145
+ </member>
146
+
147
+ <member>
148
+ <name>St&eacute;phane Dalmas</name>
149
+ <affiliation>INRIA, Sophia Antipolis, FR</affiliation>
150
+ </member>
151
+
152
+ <member>
153
+ <name>Stan Devitt</name>
154
+ <affiliation>Stratum Technical Services Ltd., Waterloo ON, CAN (earlier with Waterloo Maple, Inc., Waterloo ON, CAN)</affiliation>
155
+ </member>
156
+
157
+ <member>
158
+ <name>Angel Diaz</name>
159
+ <affiliation>IBM Research Division, Yorktown Heights NY, USA</affiliation>
160
+ </member>
161
+
162
+ <member>
163
+ <name>Ben Hinkle</name>
164
+ <affiliation>Waterloo Maple, Inc., Waterloo ON, CAN</affiliation>
165
+ </member>
166
+
167
+ <member>
168
+ <name>Stephen Hunt</name>
169
+ <affiliation>MATH.EDU Inc., Champaign IL, USA</affiliation>
170
+ </member>
171
+
172
+ <member>
173
+ <name>Douglas Lovell</name>
174
+ <affiliation>IBM Hawthorne Research, Yorktown Heights NY, USA</affiliation>
175
+ </member>
176
+
177
+ <member>
178
+ <name>Patrick Ion</name>
179
+ <affiliation>Mathematical Reviews (American Mathematical
180
+ Society), Ann Arbor MI, USA</affiliation>
181
+ </member>
182
+
183
+ <member>
184
+ <name>Robert Miner</name>
185
+ <affiliation>Design Science Inc., Long Beach CA, USA (earlier with Geometry Technologies Inc., Minneapolis MN, USA)</affiliation>
186
+ </member>
187
+
188
+ <member>
189
+ <name>Ivor Philips</name>
190
+ <affiliation>Boeing, Seattle WA, USA</affiliation>
191
+ </member>
192
+
193
+ <member>
194
+ <name>Nico Poppelier</name>
195
+ <affiliation>Penta Scope, Amersfoort, NL (earlier with Salience and Elsevier Science, NL)</affiliation>
196
+ </member>
197
+
198
+ <member>
199
+ <name>Dave Raggett</name>
200
+ <affiliation>W3C (Openwave), Bristol, UK (earlier with Hewlett-Packard)</affiliation>
201
+ </member>
202
+
203
+ <member>
204
+ <name>T.V. Raman</name>
205
+ <affiliation>IBM Almaden, Palo Alto CA, USA (earlier with Adobe Inc., Mountain View CA, USA)</affiliation>
206
+ </member>
207
+
208
+ <member>
209
+ <name>Murray Sargent III</name>
210
+ <affiliation>Microsoft, Redmond WA, USA</affiliation>
211
+ </member>
212
+
213
+ <member>
214
+ <name>Neil Soiffer</name>
215
+ <affiliation>Wolfram Research Inc., Champaign IL, USA</affiliation>
216
+ </member>
217
+
218
+ <member>
219
+ <name>Irene Schena</name>
220
+ <affiliation>Universit&#225; di Bologna, Bologna, IT</affiliation>
221
+ </member>
222
+
223
+ <member>
224
+ <name>Paul Topping</name>
225
+ <affiliation>Design Science Inc., Long Beach CA, USA</affiliation>
226
+ </member>
227
+
228
+ <member>
229
+ <name>Stephen Watt</name>
230
+ <affiliation>University of Western Ontario, London ON, CAN</affiliation>
231
+ </member>
232
+ </orglist>
233
+ </p>
234
+
235
+ <p>Earlier active participants of this second W3C Math Working Group have
236
+ included:
237
+ <orglist>
238
+ <member>
239
+ <name>Sam Dooley</name>
240
+ <affiliation>IBM Research, Yorktown Heights NY, USA</affiliation>
241
+ </member>
242
+
243
+ <member>
244
+ <name>Robert Sutor</name>
245
+ <affiliation>IBM Research, Yorktown Heights NY, USA</affiliation>
246
+ </member>
247
+
248
+ <member>
249
+ <name>Barry MacKichan</name>
250
+ <affiliation>MacKichan Software, Las Cruces NM, USA</affiliation>
251
+ </member>
252
+ </orglist>
253
+ </p>
254
+
255
+ <p>At the time of release of MathML 1.0 <bibref diff="add" ref="MathML1"/> the
256
+ Math Working Group was co-chaired by Patrick Ion and Robert Miner, then of the
257
+ Geometry Center. Since that time several changes in membership have taken
258
+ place. In the course of the update to MathML 1.01, in addition to people listed in
259
+ the original membership below, corrections were offered by David Carlisle, Don
260
+ Gignac, Kostya Serebriany, Ben Hinkle, Sebastian Rahtz, Sam Dooley and others.</p>
261
+
262
+ <p>Participants in the Math Working Group responsible for the finished
263
+ MathML 1.0 specification were:
264
+ <orglist>
265
+ <member>
266
+ <name>Stephen Buswell</name>
267
+ <affiliation>Stilo Technology Ltd., Cardiff, UK</affiliation>
268
+ </member>
269
+
270
+ <member>
271
+ <name>St&eacute;phane Dalmas</name>
272
+ <affiliation>INRIA, Sophia Antipolis, FR</affiliation>
273
+ </member>
274
+
275
+ <member>
276
+ <name>Stan Devitt</name>
277
+ <affiliation>Maplesoft Inc., Waterloo ON, CAN</affiliation>
278
+ </member>
279
+
280
+ <member>
281
+ <name>Angel Diaz</name>
282
+ <affiliation>IBM Research Division, Yorktown Heights NY, USA</affiliation>
283
+ </member>
284
+
285
+ <member>
286
+ <name>Brenda Hunt</name>
287
+ <affiliation>Wolfram Research Inc., Champaign IL, USA</affiliation>
288
+ </member>
289
+
290
+ <member>
291
+ <name>Stephen Hunt</name>
292
+ <affiliation>Wolfram Research Inc., Champaign IL, USA</affiliation>
293
+ </member>
294
+
295
+ <member>
296
+ <name>Patrick Ion</name>
297
+ <affiliation>Mathematical Reviews (American Mathematical
298
+ Society), Ann Arbor MI, USA</affiliation>
299
+ </member>
300
+
301
+ <member>
302
+ <name>Robert Miner</name>
303
+ <affiliation>Geometry Center, University of Minnesota, Minneapolis
304
+ MN, USA</affiliation>
305
+ </member>
306
+
307
+ <member>
308
+ <name>Nico Poppelier</name>
309
+ <affiliation>Elsevier Science, Amsterdam, NL</affiliation>
310
+ </member>
311
+
312
+ <member>
313
+ <name>Dave Raggett</name>
314
+ <affiliation>W3C (Hewlett Packard), Bristol, UK</affiliation>
315
+ </member>
316
+
317
+ <member>
318
+ <name>T.V. Raman</name>
319
+ <affiliation>Adobe Inc., Mountain View CA, USA</affiliation>
320
+ </member>
321
+
322
+ <member>
323
+ <name>Bruce Smith</name>
324
+ <affiliation>Wolfram Research Inc., Champaign IL, USA</affiliation>
325
+ </member>
326
+
327
+ <member>
328
+ <name>Neil Soiffer</name>
329
+ <affiliation>Wolfram Research Inc., Champaign IL, USA</affiliation>
330
+ </member>
331
+
332
+ <member>
333
+ <name>Robert Sutor</name>
334
+ <affiliation>IBM Research, Yorktown Heights NY, USA</affiliation>
335
+ </member>
336
+
337
+ <member>
338
+ <name>Paul Topping</name>
339
+ <affiliation>Design Science Inc., Long Beach CA, USA</affiliation>
340
+ </member>
341
+
342
+ <member>
343
+ <name>Stephen Watt</name>
344
+ <affiliation>University of Western Ontario, London ON, CAN</affiliation>
345
+ </member>
346
+
347
+ <member>
348
+ <name>Ralph Youngen</name>
349
+ <affiliation>American Mathematical Society, Providence RI, USA</affiliation>
350
+ </member>
351
+
352
+ </orglist>
353
+
354
+ Others who had been members of the W3C Math WG for periods at
355
+ earlier stages were:
356
+
357
+ <orglist>
358
+
359
+ <member>
360
+ <name>Stephen Glim</name>
361
+ <affiliation>Mathsoft Inc., Cambridge MA, USA</affiliation>
362
+ </member>
363
+
364
+ <member>
365
+ <name>Arnaud Le Hors</name>
366
+ <affiliation>W3C, Cambridge MA, USA</affiliation>
367
+ </member>
368
+
369
+ <member>
370
+ <name>Ron Whitney</name>
371
+ <affiliation>Texterity Inc., Boston MA, USA</affiliation>
372
+ </member>
373
+
374
+ <member>
375
+ <name>Lauren Wood</name>
376
+ <affiliation>SoftQuad, Surrey BC, CAN</affiliation>
377
+ </member>
378
+
379
+ <member>
380
+ <name>Ka-Ping Yee</name>
381
+ <affiliation>University of Waterloo, Waterloo ON, CAN</affiliation>
382
+ </member>
383
+ </orglist>
384
+ </p>
385
+ </div2>
386
+
387
+ <div2 id="contrib_ack"><head>Acknowledgments</head>
388
+
389
+ <p>The Working Group benefited from the help of many other
390
+ people in developing the specification for MathML 1.0. We
391
+ would like to particularly name Barbara Beeton, Chris Hamlin,
392
+ John Jenkins, Ira Polans, Arthur Smith, Robby Villegas and Joe
393
+ Yurvati for help and information in assembling the character
394
+ tables in <specref ref="chars"/>, as well as Peter Flynn,
395
+ Russell S.S.&nbsp;O'Connor, Andreas Strotmann, and other
396
+ contributors to the <loc
397
+ href="http://lists.w3.org/Archives/Public/www-math/">www-math</loc>
398
+ mailing list for their careful
399
+ proofreading and constructive criticisms.</p>
400
+
401
+ <p>
402
+ As the Math Working Group went on to MathML 2.0, it again was
403
+ helped by many from the W3C family of Working Groups with whom
404
+ we necessarily had a great deal of interaction. Outside the
405
+ W3C, a particularly active relevant front was the interface
406
+ with the Unicode Technical Committee (UTC) and the NTSC WG2
407
+ dealing with ISO 10646. There the STIX project put together a
408
+ proposal for the addition of characters for mathematical
409
+ notation to Unicode, and this work was again <phrase
410
+ diff="chg">spearheaded</phrase>
411
+ by
412
+ Barbara Beeton of the AMS. The whole problem ended split into
413
+ three proposals, two of which were advanced by Murray Sargent
414
+ of Microsoft, a Math WG member and member of the UTC. But the
415
+ mathematical community should be grateful for essential help
416
+ and guidance over a couple of years of refinement of the
417
+ proposals to help mathematics provided by Kenneth Whistler of
418
+ Sybase, and a UTC and WG2 member, and by Asmus Freytag, also
419
+ involved in the UTC and WG2 deliberations, and always a stalwart
420
+ and knowledgeable supporter of the needs of scientific notation.
421
+ </p>
422
+
423
+ </div2>
424
+
425
+ </inform-div1>
@@ -0,0 +1,20 @@
1
+ <inform-div1 id="dom-bindings" role="appendixe" ><head>MathML Document Object Model Bindings</head>
2
+ <!-- $Id: dom-bindings.xml,v 1.6 2002/12/12 16:21:43 davidc Exp $ -->
3
+
4
+ <div2 id="dom-bindings_IDLBinding"><head>MathML Document Object Model IDL Binding</head>
5
+ <p>The IDL binding is also available as an IDL file at
6
+ <loc href="http://www.w3.org/Math/DOM/mathml2/mathml-dom.idl">http://www.w3.org/Math/DOM/mathml2/mathml-dom.idl</loc>.</p>
7
+ <?generate-binding?>
8
+ </div2>
9
+
10
+ <div2 id="dom-bindings_JavaBindings"><head>MathML Document Object Model Java Binding</head>
11
+ <p>The Java bindings are also available in zipped form at
12
+ <loc href="http://www.w3.org/Math/DOM/mathml2/mathml-dom_java.zip">http://www.w3.org/Math/DOM/mathml2/mathml-dom_java.zip</loc>.</p>
13
+ <?generate-binding?>
14
+ </div2>
15
+
16
+ <div2 id="dom-bindings_ECMABinding"><head>MathML Document Object Model ECMAScript Binding</head>
17
+ <?generate-binding?>
18
+ </div2>
19
+
20
+ </inform-div1>
@@ -0,0 +1,114 @@
1
+ <div1 id="dom-intro" role="chapter8"><head>Document Object Model for MathML</head>
2
+ <!-- $Id: dom-intro.xml,v 1.12 2001/02/19 10:18:59 davidc Exp $ -->
3
+
4
+ <div2 id="dom-intro_intro"><head>Introduction</head>
5
+
6
+ <p>This document extends the Core API of the DOM Level 2 to describe
7
+ objects and methods specific to MathML elements in documents. The
8
+ functionality needed to manipulate basic hierarchical document structures,
9
+ elements, and attributes will be found in the core document; functionality
10
+ that depends on the specific elements defined in MathML will be found in
11
+ this document.</p>
12
+ <p>The actual DOM specification appears in <specref ref="mathml-dom"/>.</p>
13
+
14
+ <p>The goals of the MathML-specific DOM API are:</p>
15
+ <ulist>
16
+ <item><p>To specialize and add functionality that relates specifically to
17
+ MathML elements.</p>
18
+ </item>
19
+ <item><p>To provide convenience mechanisms, where appropriate, for common
20
+ and frequent operations on MathML elements.</p>
21
+ </item>
22
+ </ulist>
23
+ <p>This document includes the following specializations for
24
+ MathML:
25
+ <ulist>
26
+ <item><p>A <code>MathMLElement</code> interface derived from the core
27
+ interface <code>Element</code>. MathMLElement specifies the operations and
28
+ queries that can be made on any MathML element. Methods on
29
+ <code>MathMLElement</code> include those for the retrieval and modification
30
+ of attributes that apply to all MathML elements.</p>
31
+ </item>
32
+ <item><p>Various specializations of <code>MathMLElement</code> to encode
33
+ syntactical restrictions imposed by MathML.</p>
34
+ </item>
35
+ <item><p>Specializations of <code>MathMLElement</code> representing all
36
+ MathML elements with attributes extending beyond those specified in the
37
+ <code>MathMLElement</code> interface. For all such attributes, the derived
38
+ interface for the element contains explicit methods for setting and getting
39
+ the values.</p>
40
+ </item>
41
+ <item><p>Special methods for insertion and retrieval of children of MathML
42
+ elements. While the basic methods inherited from the <code>Node</code> and
43
+ <code>Element</code> interfaces must clearly remain available, it is felt
44
+ that in many cases they may be misleading. Thus, for instance, the
45
+ <code>MathMLFractionElement</code> interface provides for access to
46
+ <code>numerator</code> and <code>denominator</code> attributes; a call to
47
+ <code>setDenominator(newNode)</code> is less ambiguous from a calling
48
+ application's perspective than a call to <code>Node::replaceNode(newNode,
49
+ Node::childNodes().item(2))</code>.</p>
50
+ </item>
51
+ </ulist>
52
+ </p>
53
+
54
+ <p>Where no special convenience methods are provided for retrieving attributes or
55
+ child Nodes, the basic functionality of the Core DOM should be used to retrieve them.</p>
56
+
57
+ <p>MathML specifies rules that are invisible to generic XML processors and
58
+ validators. The fact that MathML DOM objects are required to respect these
59
+ rules, and to throw exceptions when those rules are violated, is an
60
+ important reason for providing a MathML-specific DOM extension.</p>
61
+
62
+ <p>There are basically two kinds of additional MathML grammar and syntax
63
+ rules. One kind involves placing additional criteria on attribute
64
+ values. For example, it is not possible in pure XML to require that an
65
+ attribute value be a positive integer. The second kind of rule specifies
66
+ more detailed restrictions on the child elements (for example on ordering)
67
+ than are given in the DTD. For example, it is not possible in XML to
68
+ specify that the first child be interpreted one way, and the second in
69
+ another. The MathML DOM objects are required to provide this
70
+ interpretation.</p>
71
+
72
+ <p>MathML ignores whitespace occurring outside token elements.
73
+ Non-whitespace characters are not allowed there. Whitespace occurring
74
+ within the content of token elements is <quote>trimmed</quote> from the
75
+ ends (i.e. all whitespace at the beginning and end of the content is
76
+ removed), and <quote>collapsed</quote> internally (i.e. each sequence of 1
77
+ or more whitespace characters is replaced with one blank character). The
78
+ MathML DOM elements perform this whitespace trimming as necessary. In
79
+ MathML, as in XML, <quote>whitespace</quote> means blanks, tabs, newlines,
80
+ or carriage returns, i.e. characters with hexadecimal Unicode codes U+0020,
81
+ U+0009, U+000a, or U+000d, respectively.</p>
82
+
83
+ <div3><head>hasFeature String</head>
84
+ <p>Support for the MathML Document Object Model may be queried by calling the
85
+ <kw>DOMImplementation::hasFeature</kw> method with the test string "org.w3c.dom.mathml".</p>
86
+ </div3>
87
+
88
+ <div3><head>MathML DOM Extensions</head>
89
+ <p>It is expected that a future version of the MathML DOM may deal with issues which
90
+ are not resolved here. Some of these are described here.</p>
91
+
92
+ <div4><head>Traversal and Range Interfaces</head>
93
+ <p>It is likely that a need will become obvious for MathML-specific specializations of
94
+ interfaces belonging to the
95
+ <xspecref href="http://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html">
96
+ Traversal</xspecref> and
97
+ <xspecref href="http://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html">Range</xspecref>
98
+ Modules of the Document Object Model Level 2. The order of traversal of bound variables, conditions,
99
+ and declarations - or whether they should be omitted from a given traversal altogether -
100
+ offers an example of a potential utility for such specializations. However, it would be
101
+ premature to specify any such interfaces at this time. Implementation experience will
102
+ be necessary in order to discover the appropriate interfaces which should be specified.</p>
103
+ </div4>
104
+ <div4><head>Embedding Issues</head>
105
+ <p>The interaction between the Document Object Model representing specialized XML markup (such
106
+ as MathML) embedded inside other types of XML markup (such as XHTML) and that representing the host
107
+ document is as yet undefined. If and when such interactions are specified, we hope that implementors
108
+ will be able to use them to enhance the usefulness of the MathML Document Object Model.</p>
109
+ <p>It may be necessary, however, to add some interface definitions to the MathML Document Object
110
+ Model in order to make this possible. If so, we hope to be able to do this at some future time.</p>
111
+ </div4>
112
+ </div3>
113
+ </div2>
114
+ </div1>