mathematical 0.3.1 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (239) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +12 -0
  3. data/ext/mathematical/extconf.rb +12 -2
  4. data/ext/mathematical/{itex2MML.h → itexToMML/itex2MML.h} +0 -0
  5. data/ext/mathematical/{lex.yy.c → itexToMML/lex.yy.c} +0 -0
  6. data/ext/mathematical/{y.tab.c → itexToMML/y.tab.c} +0 -0
  7. data/ext/mathematical/{y.tab.h → itexToMML/y.tab.h} +0 -0
  8. data/ext/mathematical/lasem/itex2mml/itex2MML.h +63 -0
  9. data/ext/mathematical/{lasemrender.c → lasem/src/lasemrender.c} +27 -21
  10. data/ext/mathematical/{lsm.c → lasem/src/lsm.c} +0 -0
  11. data/ext/mathematical/{lsm.h → lasem/src/lsm.h} +0 -0
  12. data/ext/mathematical/{lsmattributes.c → lasem/src/lsmattributes.c} +0 -0
  13. data/ext/mathematical/{lsmattributes.h → lasem/src/lsmattributes.h} +0 -0
  14. data/ext/mathematical/{lsmcairo.c → lasem/src/lsmcairo.c} +0 -0
  15. data/ext/mathematical/{lsmcairo.h → lasem/src/lsmcairo.h} +0 -0
  16. data/ext/mathematical/{lsmdebug.c → lasem/src/lsmdebug.c} +2 -0
  17. data/ext/mathematical/{lsmdebug.h → lasem/src/lsmdebug.h} +3 -3
  18. data/ext/mathematical/{lsmdom.h → lasem/src/lsmdom.h} +0 -0
  19. data/ext/mathematical/{lsmdomcharacterdata.c → lasem/src/lsmdomcharacterdata.c} +0 -0
  20. data/ext/mathematical/{lsmdomcharacterdata.h → lasem/src/lsmdomcharacterdata.h} +0 -0
  21. data/ext/mathematical/{lsmdomdocument.c → lasem/src/lsmdomdocument.c} +0 -0
  22. data/ext/mathematical/{lsmdomdocument.h → lasem/src/lsmdomdocument.h} +0 -0
  23. data/ext/mathematical/{lsmdomdocumentfragment.c → lasem/src/lsmdomdocumentfragment.c} +0 -0
  24. data/ext/mathematical/{lsmdomdocumentfragment.h → lasem/src/lsmdomdocumentfragment.h} +0 -0
  25. data/ext/mathematical/{lsmdomelement.c → lasem/src/lsmdomelement.c} +0 -0
  26. data/ext/mathematical/{lsmdomelement.h → lasem/src/lsmdomelement.h} +0 -0
  27. data/ext/mathematical/{lsmdomentities.c → lasem/src/lsmdomentities.c} +0 -0
  28. data/ext/mathematical/{lsmdomentities.h → lasem/src/lsmdomentities.h} +0 -0
  29. data/ext/mathematical/{lsmdomimplementation.c → lasem/src/lsmdomimplementation.c} +0 -0
  30. data/ext/mathematical/{lsmdomimplementation.h → lasem/src/lsmdomimplementation.h} +0 -0
  31. data/ext/mathematical/{lsmdomnamednodemap.c → lasem/src/lsmdomnamednodemap.c} +0 -0
  32. data/ext/mathematical/{lsmdomnamednodemap.h → lasem/src/lsmdomnamednodemap.h} +0 -0
  33. data/ext/mathematical/{lsmdomnode.c → lasem/src/lsmdomnode.c} +0 -0
  34. data/ext/mathematical/{lsmdomnode.h → lasem/src/lsmdomnode.h} +0 -0
  35. data/ext/mathematical/{lsmdomnodelist.c → lasem/src/lsmdomnodelist.c} +0 -0
  36. data/ext/mathematical/{lsmdomnodelist.h → lasem/src/lsmdomnodelist.h} +0 -0
  37. data/ext/mathematical/{lsmdomparser.c → lasem/src/lsmdomparser.c} +78 -16
  38. data/ext/mathematical/{lsmdomparser.h → lasem/src/lsmdomparser.h} +7 -7
  39. data/ext/mathematical/{lsmdomtext.c → lasem/src/lsmdomtext.c} +0 -0
  40. data/ext/mathematical/{lsmdomtext.h → lasem/src/lsmdomtext.h} +0 -0
  41. data/ext/mathematical/{lsmdomtypes.h → lasem/src/lsmdomtypes.h} +0 -0
  42. data/ext/mathematical/{lsmdomview.c → lasem/src/lsmdomview.c} +1 -0
  43. data/ext/mathematical/{lsmdomview.h → lasem/src/lsmdomview.h} +0 -0
  44. data/ext/mathematical/{lsmitex.c → lasem/src/lsmitex.c} +4 -4
  45. data/ext/mathematical/{lsmitex.h → lasem/src/lsmitex.h} +1 -1
  46. data/ext/mathematical/{lsmmathml.h → lasem/src/lsmmathml.h} +0 -0
  47. data/ext/mathematical/{lsmmathmlactionelement.c → lasem/src/lsmmathmlactionelement.c} +0 -0
  48. data/ext/mathematical/{lsmmathmlactionelement.h → lasem/src/lsmmathmlactionelement.h} +0 -0
  49. data/ext/mathematical/{lsmmathmlaligngroupelement.c → lasem/src/lsmmathmlaligngroupelement.c} +0 -0
  50. data/ext/mathematical/{lsmmathmlaligngroupelement.h → lasem/src/lsmmathmlaligngroupelement.h} +0 -0
  51. data/ext/mathematical/{lsmmathmlalignmarkelement.c → lasem/src/lsmmathmlalignmarkelement.c} +0 -0
  52. data/ext/mathematical/{lsmmathmlalignmarkelement.h → lasem/src/lsmmathmlalignmarkelement.h} +0 -0
  53. data/ext/mathematical/{lsmmathmlattributes.c → lasem/src/lsmmathmlattributes.c} +0 -0
  54. data/ext/mathematical/{lsmmathmlattributes.h → lasem/src/lsmmathmlattributes.h} +0 -0
  55. data/ext/mathematical/{lsmmathmldocument.c → lasem/src/lsmmathmldocument.c} +2 -2
  56. data/ext/mathematical/{lsmmathmldocument.h → lasem/src/lsmmathmldocument.h} +1 -1
  57. data/ext/mathematical/{lsmmathmlelement.c → lasem/src/lsmmathmlelement.c} +0 -0
  58. data/ext/mathematical/{lsmmathmlelement.h → lasem/src/lsmmathmlelement.h} +0 -0
  59. data/ext/mathematical/{lsmmathmlenums.c → lasem/src/lsmmathmlenums.c} +0 -0
  60. data/ext/mathematical/{lsmmathmlenums.h → lasem/src/lsmmathmlenums.h} +0 -0
  61. data/ext/mathematical/{lsmmathmlerrorelement.c → lasem/src/lsmmathmlerrorelement.c} +0 -0
  62. data/ext/mathematical/{lsmmathmlerrorelement.h → lasem/src/lsmmathmlerrorelement.h} +0 -0
  63. data/ext/mathematical/{lsmmathmlfencedelement.c → lasem/src/lsmmathmlfencedelement.c} +0 -0
  64. data/ext/mathematical/{lsmmathmlfencedelement.h → lasem/src/lsmmathmlfencedelement.h} +0 -0
  65. data/ext/mathematical/{lsmmathmlfractionelement.c → lasem/src/lsmmathmlfractionelement.c} +0 -0
  66. data/ext/mathematical/{lsmmathmlfractionelement.h → lasem/src/lsmmathmlfractionelement.h} +0 -0
  67. data/ext/mathematical/{lsmmathmlglyphtableams.c → lasem/src/lsmmathmlglyphtableams.c} +0 -0
  68. data/ext/mathematical/{lsmmathmlglyphtableams.h → lasem/src/lsmmathmlglyphtableams.h} +0 -0
  69. data/ext/mathematical/{lsmmathmlitexelement.c → lasem/src/lsmmathmlitexelement.c} +0 -0
  70. data/ext/mathematical/{lsmmathmlitexelement.h → lasem/src/lsmmathmlitexelement.h} +0 -0
  71. data/ext/mathematical/{lsmmathmllayoututils.c → lasem/src/lsmmathmllayoututils.c} +0 -0
  72. data/ext/mathematical/{lsmmathmllayoututils.h → lasem/src/lsmmathmllayoututils.h} +0 -0
  73. data/ext/mathematical/{lsmmathmlmathelement.c → lasem/src/lsmmathmlmathelement.c} +0 -0
  74. data/ext/mathematical/{lsmmathmlmathelement.h → lasem/src/lsmmathmlmathelement.h} +0 -0
  75. data/ext/mathematical/{lsmmathmloperatordictionary.c → lasem/src/lsmmathmloperatordictionary.c} +0 -0
  76. data/ext/mathematical/{lsmmathmloperatordictionary.h → lasem/src/lsmmathmloperatordictionary.h} +0 -0
  77. data/ext/mathematical/{lsmmathmloperatorelement.c → lasem/src/lsmmathmloperatorelement.c} +0 -0
  78. data/ext/mathematical/{lsmmathmloperatorelement.h → lasem/src/lsmmathmloperatorelement.h} +0 -0
  79. data/ext/mathematical/{lsmmathmlpaddedelement.c → lasem/src/lsmmathmlpaddedelement.c} +0 -0
  80. data/ext/mathematical/{lsmmathmlpaddedelement.h → lasem/src/lsmmathmlpaddedelement.h} +0 -0
  81. data/ext/mathematical/{lsmmathmlphantomelement.c → lasem/src/lsmmathmlphantomelement.c} +0 -0
  82. data/ext/mathematical/{lsmmathmlphantomelement.h → lasem/src/lsmmathmlphantomelement.h} +0 -0
  83. data/ext/mathematical/{lsmmathmlpresentationcontainer.c → lasem/src/lsmmathmlpresentationcontainer.c} +0 -0
  84. data/ext/mathematical/{lsmmathmlpresentationcontainer.h → lasem/src/lsmmathmlpresentationcontainer.h} +0 -0
  85. data/ext/mathematical/{lsmmathmlpresentationtoken.c → lasem/src/lsmmathmlpresentationtoken.c} +0 -0
  86. data/ext/mathematical/{lsmmathmlpresentationtoken.h → lasem/src/lsmmathmlpresentationtoken.h} +0 -0
  87. data/ext/mathematical/{lsmmathmlradicalelement.c → lasem/src/lsmmathmlradicalelement.c} +0 -0
  88. data/ext/mathematical/{lsmmathmlradicalelement.h → lasem/src/lsmmathmlradicalelement.h} +0 -0
  89. data/ext/mathematical/{lsmmathmlrowelement.c → lasem/src/lsmmathmlrowelement.c} +0 -0
  90. data/ext/mathematical/{lsmmathmlrowelement.h → lasem/src/lsmmathmlrowelement.h} +0 -0
  91. data/ext/mathematical/{lsmmathmlscriptelement.c → lasem/src/lsmmathmlscriptelement.c} +0 -0
  92. data/ext/mathematical/{lsmmathmlscriptelement.h → lasem/src/lsmmathmlscriptelement.h} +0 -0
  93. data/ext/mathematical/{lsmmathmlsemanticselement.c → lasem/src/lsmmathmlsemanticselement.c} +0 -0
  94. data/ext/mathematical/{lsmmathmlsemanticselement.h → lasem/src/lsmmathmlsemanticselement.h} +0 -0
  95. data/ext/mathematical/{lsmmathmlspaceelement.c → lasem/src/lsmmathmlspaceelement.c} +0 -0
  96. data/ext/mathematical/{lsmmathmlspaceelement.h → lasem/src/lsmmathmlspaceelement.h} +0 -0
  97. data/ext/mathematical/{lsmmathmlstringelement.c → lasem/src/lsmmathmlstringelement.c} +0 -0
  98. data/ext/mathematical/{lsmmathmlstringelement.h → lasem/src/lsmmathmlstringelement.h} +0 -0
  99. data/ext/mathematical/{lsmmathmlstyle.c → lasem/src/lsmmathmlstyle.c} +0 -0
  100. data/ext/mathematical/{lsmmathmlstyle.h → lasem/src/lsmmathmlstyle.h} +0 -0
  101. data/ext/mathematical/{lsmmathmlstyleelement.c → lasem/src/lsmmathmlstyleelement.c} +0 -0
  102. data/ext/mathematical/{lsmmathmlstyleelement.h → lasem/src/lsmmathmlstyleelement.h} +0 -0
  103. data/ext/mathematical/{lsmmathmltablecellelement.c → lasem/src/lsmmathmltablecellelement.c} +0 -0
  104. data/ext/mathematical/{lsmmathmltablecellelement.h → lasem/src/lsmmathmltablecellelement.h} +0 -0
  105. data/ext/mathematical/{lsmmathmltableelement.c → lasem/src/lsmmathmltableelement.c} +0 -0
  106. data/ext/mathematical/{lsmmathmltableelement.h → lasem/src/lsmmathmltableelement.h} +0 -0
  107. data/ext/mathematical/{lsmmathmltablerowelement.c → lasem/src/lsmmathmltablerowelement.c} +0 -0
  108. data/ext/mathematical/{lsmmathmltablerowelement.h → lasem/src/lsmmathmltablerowelement.h} +0 -0
  109. data/ext/mathematical/{lsmmathmltraits.c → lasem/src/lsmmathmltraits.c} +0 -0
  110. data/ext/mathematical/{lsmmathmltraits.h → lasem/src/lsmmathmltraits.h} +0 -0
  111. data/ext/mathematical/{lsmmathmltypes.h → lasem/src/lsmmathmltypes.h} +0 -0
  112. data/ext/mathematical/{lsmmathmlunderoverelement.c → lasem/src/lsmmathmlunderoverelement.c} +0 -0
  113. data/ext/mathematical/{lsmmathmlunderoverelement.h → lasem/src/lsmmathmlunderoverelement.h} +0 -0
  114. data/ext/mathematical/{lsmmathmlutils.c → lasem/src/lsmmathmlutils.c} +0 -0
  115. data/ext/mathematical/{lsmmathmlutils.h → lasem/src/lsmmathmlutils.h} +0 -0
  116. data/ext/mathematical/{lsmmathmlview.c → lasem/src/lsmmathmlview.c} +0 -0
  117. data/ext/mathematical/{lsmmathmlview.h → lasem/src/lsmmathmlview.h} +0 -0
  118. data/ext/mathematical/{lsmproperties.c → lasem/src/lsmproperties.c} +0 -0
  119. data/ext/mathematical/{lsmproperties.h → lasem/src/lsmproperties.h} +0 -0
  120. data/ext/mathematical/{lsmstr.c → lasem/src/lsmstr.c} +0 -0
  121. data/ext/mathematical/{lsmstr.h → lasem/src/lsmstr.h} +0 -0
  122. data/ext/mathematical/{lsmsvg.h → lasem/src/lsmsvg.h} +0 -0
  123. data/ext/mathematical/{lsmsvgaelement.c → lasem/src/lsmsvgaelement.c} +0 -0
  124. data/ext/mathematical/{lsmsvgaelement.h → lasem/src/lsmsvgaelement.h} +0 -0
  125. data/ext/mathematical/{lsmsvgattributes.h → lasem/src/lsmsvgattributes.h} +0 -0
  126. data/ext/mathematical/{lsmsvgcircleelement.c → lasem/src/lsmsvgcircleelement.c} +0 -0
  127. data/ext/mathematical/{lsmsvgcircleelement.h → lasem/src/lsmsvgcircleelement.h} +0 -0
  128. data/ext/mathematical/{lsmsvgclippathelement.c → lasem/src/lsmsvgclippathelement.c} +0 -0
  129. data/ext/mathematical/{lsmsvgclippathelement.h → lasem/src/lsmsvgclippathelement.h} +0 -0
  130. data/ext/mathematical/{lsmsvgcolors.c → lasem/src/lsmsvgcolors.c} +0 -0
  131. data/ext/mathematical/{lsmsvgcolors.h → lasem/src/lsmsvgcolors.h} +0 -0
  132. data/ext/mathematical/{lsmsvgdefselement.c → lasem/src/lsmsvgdefselement.c} +0 -0
  133. data/ext/mathematical/{lsmsvgdefselement.h → lasem/src/lsmsvgdefselement.h} +0 -0
  134. data/ext/mathematical/{lsmsvgdocument.c → lasem/src/lsmsvgdocument.c} +0 -0
  135. data/ext/mathematical/{lsmsvgdocument.h → lasem/src/lsmsvgdocument.h} +0 -0
  136. data/ext/mathematical/{lsmsvgelement.c → lasem/src/lsmsvgelement.c} +0 -0
  137. data/ext/mathematical/{lsmsvgelement.h → lasem/src/lsmsvgelement.h} +0 -0
  138. data/ext/mathematical/{lsmsvgellipseelement.c → lasem/src/lsmsvgellipseelement.c} +0 -0
  139. data/ext/mathematical/{lsmsvgellipseelement.h → lasem/src/lsmsvgellipseelement.h} +0 -0
  140. data/ext/mathematical/{lsmsvgenums.c → lasem/src/lsmsvgenums.c} +0 -0
  141. data/ext/mathematical/{lsmsvgenums.h → lasem/src/lsmsvgenums.h} +0 -0
  142. data/ext/mathematical/{lsmsvgfilterblend.c → lasem/src/lsmsvgfilterblend.c} +0 -0
  143. data/ext/mathematical/{lsmsvgfilterblend.h → lasem/src/lsmsvgfilterblend.h} +0 -0
  144. data/ext/mathematical/{lsmsvgfiltercomposite.c → lasem/src/lsmsvgfiltercomposite.c} +0 -0
  145. data/ext/mathematical/{lsmsvgfiltercomposite.h → lasem/src/lsmsvgfiltercomposite.h} +0 -0
  146. data/ext/mathematical/{lsmsvgfilterelement.c → lasem/src/lsmsvgfilterelement.c} +0 -0
  147. data/ext/mathematical/{lsmsvgfilterelement.h → lasem/src/lsmsvgfilterelement.h} +0 -0
  148. data/ext/mathematical/{lsmsvgfilterflood.c → lasem/src/lsmsvgfilterflood.c} +0 -0
  149. data/ext/mathematical/{lsmsvgfilterflood.h → lasem/src/lsmsvgfilterflood.h} +0 -0
  150. data/ext/mathematical/{lsmsvgfiltergaussianblur.c → lasem/src/lsmsvgfiltergaussianblur.c} +0 -0
  151. data/ext/mathematical/{lsmsvgfiltergaussianblur.h → lasem/src/lsmsvgfiltergaussianblur.h} +0 -0
  152. data/ext/mathematical/{lsmsvgfiltermerge.c → lasem/src/lsmsvgfiltermerge.c} +0 -0
  153. data/ext/mathematical/{lsmsvgfiltermerge.h → lasem/src/lsmsvgfiltermerge.h} +0 -0
  154. data/ext/mathematical/{lsmsvgfiltermergenode.c → lasem/src/lsmsvgfiltermergenode.c} +0 -0
  155. data/ext/mathematical/{lsmsvgfiltermergenode.h → lasem/src/lsmsvgfiltermergenode.h} +0 -0
  156. data/ext/mathematical/{lsmsvgfilteroffset.c → lasem/src/lsmsvgfilteroffset.c} +0 -0
  157. data/ext/mathematical/{lsmsvgfilteroffset.h → lasem/src/lsmsvgfilteroffset.h} +0 -0
  158. data/ext/mathematical/{lsmsvgfilterprimitive.c → lasem/src/lsmsvgfilterprimitive.c} +0 -0
  159. data/ext/mathematical/{lsmsvgfilterprimitive.h → lasem/src/lsmsvgfilterprimitive.h} +0 -0
  160. data/ext/mathematical/{lsmsvgfilterspecularlighting.c → lasem/src/lsmsvgfilterspecularlighting.c} +0 -0
  161. data/ext/mathematical/{lsmsvgfilterspecularlighting.h → lasem/src/lsmsvgfilterspecularlighting.h} +0 -0
  162. data/ext/mathematical/{lsmsvgfiltersurface.c → lasem/src/lsmsvgfiltersurface.c} +0 -0
  163. data/ext/mathematical/{lsmsvgfiltersurface.h → lasem/src/lsmsvgfiltersurface.h} +0 -0
  164. data/ext/mathematical/{lsmsvgfiltertile.c → lasem/src/lsmsvgfiltertile.c} +0 -0
  165. data/ext/mathematical/{lsmsvgfiltertile.h → lasem/src/lsmsvgfiltertile.h} +0 -0
  166. data/ext/mathematical/{lsmsvggelement.c → lasem/src/lsmsvggelement.c} +0 -0
  167. data/ext/mathematical/{lsmsvggelement.h → lasem/src/lsmsvggelement.h} +0 -0
  168. data/ext/mathematical/{lsmsvggradientelement.c → lasem/src/lsmsvggradientelement.c} +0 -0
  169. data/ext/mathematical/{lsmsvggradientelement.h → lasem/src/lsmsvggradientelement.h} +0 -0
  170. data/ext/mathematical/{lsmsvgimageelement.c → lasem/src/lsmsvgimageelement.c} +0 -0
  171. data/ext/mathematical/{lsmsvgimageelement.h → lasem/src/lsmsvgimageelement.h} +0 -0
  172. data/ext/mathematical/{lsmsvglength.c → lasem/src/lsmsvglength.c} +0 -0
  173. data/ext/mathematical/{lsmsvglength.h → lasem/src/lsmsvglength.h} +0 -0
  174. data/ext/mathematical/{lsmsvglineargradientelement.c → lasem/src/lsmsvglineargradientelement.c} +0 -0
  175. data/ext/mathematical/{lsmsvglineargradientelement.h → lasem/src/lsmsvglineargradientelement.h} +0 -0
  176. data/ext/mathematical/{lsmsvglineelement.c → lasem/src/lsmsvglineelement.c} +0 -0
  177. data/ext/mathematical/{lsmsvglineelement.h → lasem/src/lsmsvglineelement.h} +0 -0
  178. data/ext/mathematical/{lsmsvgmarkerelement.c → lasem/src/lsmsvgmarkerelement.c} +0 -0
  179. data/ext/mathematical/{lsmsvgmarkerelement.h → lasem/src/lsmsvgmarkerelement.h} +0 -0
  180. data/ext/mathematical/{lsmsvgmaskelement.c → lasem/src/lsmsvgmaskelement.c} +0 -0
  181. data/ext/mathematical/{lsmsvgmaskelement.h → lasem/src/lsmsvgmaskelement.h} +0 -0
  182. data/ext/mathematical/{lsmsvgmatrix.c → lasem/src/lsmsvgmatrix.c} +0 -0
  183. data/ext/mathematical/{lsmsvgmatrix.h → lasem/src/lsmsvgmatrix.h} +0 -0
  184. data/ext/mathematical/{lsmsvgpathelement.c → lasem/src/lsmsvgpathelement.c} +0 -0
  185. data/ext/mathematical/{lsmsvgpathelement.h → lasem/src/lsmsvgpathelement.h} +0 -0
  186. data/ext/mathematical/{lsmsvgpatternelement.c → lasem/src/lsmsvgpatternelement.c} +0 -0
  187. data/ext/mathematical/{lsmsvgpatternelement.h → lasem/src/lsmsvgpatternelement.h} +0 -0
  188. data/ext/mathematical/{lsmsvgpolygonelement.c → lasem/src/lsmsvgpolygonelement.c} +0 -0
  189. data/ext/mathematical/{lsmsvgpolygonelement.h → lasem/src/lsmsvgpolygonelement.h} +0 -0
  190. data/ext/mathematical/{lsmsvgpolylineelement.c → lasem/src/lsmsvgpolylineelement.c} +0 -0
  191. data/ext/mathematical/{lsmsvgpolylineelement.h → lasem/src/lsmsvgpolylineelement.h} +0 -0
  192. data/ext/mathematical/{lsmsvgradialgradientelement.c → lasem/src/lsmsvgradialgradientelement.c} +0 -0
  193. data/ext/mathematical/{lsmsvgradialgradientelement.h → lasem/src/lsmsvgradialgradientelement.h} +0 -0
  194. data/ext/mathematical/{lsmsvgrectelement.c → lasem/src/lsmsvgrectelement.c} +0 -0
  195. data/ext/mathematical/{lsmsvgrectelement.h → lasem/src/lsmsvgrectelement.h} +0 -0
  196. data/ext/mathematical/{lsmsvgstopelement.c → lasem/src/lsmsvgstopelement.c} +0 -0
  197. data/ext/mathematical/{lsmsvgstopelement.h → lasem/src/lsmsvgstopelement.h} +0 -0
  198. data/ext/mathematical/{lsmsvgstyle.c → lasem/src/lsmsvgstyle.c} +0 -14
  199. data/ext/mathematical/{lsmsvgstyle.h → lasem/src/lsmsvgstyle.h} +0 -0
  200. data/ext/mathematical/{lsmsvgsvgelement.c → lasem/src/lsmsvgsvgelement.c} +0 -0
  201. data/ext/mathematical/{lsmsvgsvgelement.h → lasem/src/lsmsvgsvgelement.h} +0 -0
  202. data/ext/mathematical/{lsmsvgswitchelement.c → lasem/src/lsmsvgswitchelement.c} +0 -0
  203. data/ext/mathematical/{lsmsvgswitchelement.h → lasem/src/lsmsvgswitchelement.h} +0 -0
  204. data/ext/mathematical/{lsmsvgsymbolelement.c → lasem/src/lsmsvgsymbolelement.c} +0 -0
  205. data/ext/mathematical/{lsmsvgsymbolelement.h → lasem/src/lsmsvgsymbolelement.h} +0 -0
  206. data/ext/mathematical/{lsmsvgtextelement.c → lasem/src/lsmsvgtextelement.c} +0 -0
  207. data/ext/mathematical/{lsmsvgtextelement.h → lasem/src/lsmsvgtextelement.h} +0 -0
  208. data/ext/mathematical/{lsmsvgtraits.c → lasem/src/lsmsvgtraits.c} +0 -0
  209. data/ext/mathematical/{lsmsvgtraits.h → lasem/src/lsmsvgtraits.h} +0 -0
  210. data/ext/mathematical/{lsmsvgtransformable.c → lasem/src/lsmsvgtransformable.c} +0 -0
  211. data/ext/mathematical/{lsmsvgtransformable.h → lasem/src/lsmsvgtransformable.h} +0 -0
  212. data/ext/mathematical/{lsmsvgtspanelement.c → lasem/src/lsmsvgtspanelement.c} +0 -0
  213. data/ext/mathematical/{lsmsvgtspanelement.h → lasem/src/lsmsvgtspanelement.h} +0 -0
  214. data/ext/mathematical/{lsmsvgtypes.h → lasem/src/lsmsvgtypes.h} +0 -0
  215. data/ext/mathematical/{lsmsvguseelement.c → lasem/src/lsmsvguseelement.c} +0 -0
  216. data/ext/mathematical/{lsmsvguseelement.h → lasem/src/lsmsvguseelement.h} +0 -0
  217. data/ext/mathematical/{lsmsvgview.c → lasem/src/lsmsvgview.c} +2 -1
  218. data/ext/mathematical/{lsmsvgview.h → lasem/src/lsmsvgview.h} +0 -0
  219. data/ext/mathematical/{lsmtraits.c → lasem/src/lsmtraits.c} +0 -0
  220. data/ext/mathematical/{lsmtraits.h → lasem/src/lsmtraits.h} +0 -0
  221. data/ext/mathematical/{lsmtypes.h → lasem/src/lsmtypes.h} +0 -0
  222. data/ext/mathematical/{lsmutils.c → lasem/src/lsmutils.c} +0 -0
  223. data/ext/mathematical/{lsmutils.h → lasem/src/lsmutils.h} +0 -0
  224. data/ext/mathematical/lasem/tests/dom.c +272 -0
  225. data/ext/mathematical/lasem/tests/lsmtest.c +597 -0
  226. data/ext/mathematical/lasem/tests/str.c +48 -0
  227. data/ext/mathematical/lasem/tests/suite.c +125 -0
  228. data/ext/mathematical/lasem/tools/generate-entity-array.c +2136 -0
  229. data/ext/mathematical/mathematical.c +38 -34
  230. data/lib/mathematical/render.rb +5 -4
  231. data/lib/mathematical/version.rb +1 -1
  232. data/test/mathematical/maliciousness_test.rb +27 -1
  233. metadata +242 -242
  234. data/ext/mathematical/lsmdomenumtypes.c +0 -99
  235. data/ext/mathematical/lsmdomenumtypes.h +0 -26
  236. data/ext/mathematical/lsmmathmlenumtypes.c +0 -666
  237. data/ext/mathematical/lsmmathmlenumtypes.h +0 -90
  238. data/ext/mathematical/lsmsvgenumtypes.c +0 -1083
  239. data/ext/mathematical/lsmsvgenumtypes.h +0 -111
@@ -23,6 +23,7 @@
23
23
  #include "ruby.h"
24
24
  #include <string.h>
25
25
  #include <stdlib.h>
26
+ #include <limits.h>
26
27
  #include <lsm.h>
27
28
  #include <lsmmathml.h>
28
29
  #include <glib.h>
@@ -39,6 +40,8 @@
39
40
  static VALUE rb_mMathematical;
40
41
  static VALUE rb_cMathematicalProcess;
41
42
 
43
+ // Raised when the size of the latex string is too large
44
+ static VALUE rb_eMaxsizeError;
42
45
  // Raised when the contents could not be parsed
43
46
  static VALUE rb_eParseError;
44
47
  // Raised when the SVG document could not be created
@@ -46,54 +49,58 @@ static VALUE rb_eDocumentCreationError;
46
49
  // Raised when the SVG document could not be read
47
50
  static VALUE rb_eDocumentReadError;
48
51
 
49
- char* readFile(const char* filename) {
50
- FILE* file = fopen(filename, "r");
51
- if (file == NULL) return NULL;
52
+ cairo_status_t cairoSvgSurfaceCallback (void *closure, const unsigned char *data, unsigned int length) {
53
+ VALUE self = (VALUE) closure;
54
+ if (rb_iv_get(self, "@svg") == Qnil) {
55
+ rb_iv_set(self, "@svg", rb_str_new2(""));
56
+ }
52
57
 
53
- fseek(file, 0, SEEK_END);
54
- long int size = ftell(file);
55
- rewind(file);
58
+ rb_str_cat(rb_iv_get(self, "@svg"), data, length);
56
59
 
57
- char* content = calloc(size + 1, 1);
58
-
59
- fread(content, 1, size, file);
60
-
61
- fclose(file);
62
- unlink(file);
63
-
64
- return content;
60
+ return CAIRO_STATUS_SUCCESS;
65
61
  }
66
62
 
67
63
  static VALUE MATHEMATICAL_init(VALUE self, VALUE rb_Options) {
68
64
  Check_Type (rb_Options, T_HASH);
69
- VALUE ppi, zoom;
65
+ VALUE rb_ppi, rb_zoom, rb_maxsize;
70
66
 
71
- ppi = rb_hash_aref(rb_Options, CSTR2SYM("ppi"));
72
- zoom = rb_hash_aref(rb_Options, CSTR2SYM("zoom"));
67
+ rb_ppi = rb_hash_aref(rb_Options, CSTR2SYM("ppi"));
68
+ rb_zoom = rb_hash_aref(rb_Options, CSTR2SYM("zoom"));
69
+ rb_maxsize = rb_hash_aref(rb_Options, CSTR2SYM("maxsize"));
73
70
 
74
- Check_Type(ppi, T_FLOAT);
75
- Check_Type(zoom, T_FLOAT);
71
+ Check_Type(rb_ppi, T_FLOAT);
72
+ Check_Type(rb_zoom, T_FLOAT);
73
+ Check_Type(rb_maxsize, T_FIXNUM);
76
74
 
77
- rb_iv_set(self, "@ppi", ppi);
78
- rb_iv_set(self, "@zoom", zoom);
75
+ rb_iv_set(self, "@ppi", rb_ppi);
76
+ rb_iv_set(self, "@zoom", rb_zoom);
77
+ rb_iv_set(self, "@maxsize", rb_maxsize);
78
+ rb_iv_set(self, "@svg", Qnil);
79
79
 
80
80
  return self;
81
81
  }
82
82
 
83
- static VALUE MATHEMATICAL_process(VALUE self, VALUE rb_LatexCode, VALUE rb_TempFile) {
83
+ static VALUE MATHEMATICAL_process(VALUE self, VALUE rb_LatexCode) {
84
84
  Check_Type (rb_LatexCode, T_STRING);
85
- Check_Type (rb_TempFile, T_STRING);
85
+
86
+ unsigned long maxsize = (unsigned long) FIX2INT(rb_iv_get(self, "@maxsize"));
86
87
 
87
88
  const char *latex_code = StringValueCStr(rb_LatexCode);
88
- int latex_size = strlen(latex_code);
89
+ unsigned long latex_size = (unsigned long) strlen(latex_code);
89
90
 
90
- const char *tempfile = StringValueCStr(rb_TempFile);
91
+ // make sure that the passed latex string is not larger than the maximum value of a signed long (or the maxsize option)
92
+ if (maxsize == 0)
93
+ maxsize = LONG_MAX;
91
94
 
95
+ if (latex_size > maxsize)
96
+ rb_raise(rb_eMaxsizeError, "Size of latex string (%lu) is greater than the maxsize (%lu)!", latex_size, maxsize);
97
+
98
+ #if !GLIB_CHECK_VERSION(2,36,0)
92
99
  g_type_init ();
100
+ #endif
93
101
 
94
102
  // convert the TeX math to MathML
95
103
  char * mathml = lsm_itex_to_mathml(latex_code, latex_size);
96
-
97
104
  if (mathml == NULL) rb_raise(rb_eParseError, "Failed to parse itex");
98
105
 
99
106
  int mathml_size = strlen(mathml);
@@ -121,13 +128,11 @@ static VALUE MATHEMATICAL_process(VALUE self, VALUE rb_LatexCode, VALUE rb_TempF
121
128
 
122
129
  width_pt *= zoom;
123
130
  height_pt *= zoom;
124
- width *= zoom;
125
- height *= zoom;
126
131
 
127
132
  cairo_t *cairo;
128
133
  cairo_surface_t *surface;
129
134
 
130
- surface = cairo_svg_surface_create (tempfile, width_pt, height_pt);
135
+ surface = cairo_svg_surface_create_for_stream (cairoSvgSurfaceCallback, self, width_pt, height_pt);
131
136
  cairo = cairo_create (surface);
132
137
  cairo_surface_destroy (surface);
133
138
  cairo_scale (cairo, zoom, zoom);
@@ -137,15 +142,13 @@ static VALUE MATHEMATICAL_process(VALUE self, VALUE rb_LatexCode, VALUE rb_TempF
137
142
  g_object_unref (view);
138
143
  g_object_unref (document);
139
144
 
140
- char* svg_contents = readFile(tempfile);
141
-
142
- if (svg_contents == NULL) rb_raise(rb_eDocumentReadError, "Failed to read SVG contents");
145
+ if (rb_iv_get(self, "@svg") == Qnil) rb_raise(rb_eDocumentReadError, "Failed to read SVG contents");
143
146
 
144
147
  VALUE result_hash = rb_hash_new();
145
148
 
146
149
  rb_hash_aset (result_hash, rb_tainted_str_new2 ("width"), INT2FIX(width_pt));
147
150
  rb_hash_aset (result_hash, rb_tainted_str_new2 ("height"), INT2FIX(height_pt));
148
- rb_hash_aset (result_hash, rb_tainted_str_new2 ("svg"), rb_str_new2(svg_contents));
151
+ rb_hash_aset (result_hash, rb_tainted_str_new2 ("svg"), rb_iv_get(self, "@svg"));
149
152
 
150
153
  return result_hash;
151
154
  }
@@ -154,10 +157,11 @@ void Init_mathematical() {
154
157
  rb_mMathematical = rb_define_module("Mathematical");
155
158
 
156
159
  rb_cMathematicalProcess = rb_define_class_under(rb_mMathematical, "Process", rb_cObject);
160
+ rb_eMaxsizeError = rb_define_class_under(rb_mMathematical, "MaxsizeError", rb_eStandardError);
157
161
  rb_eParseError = rb_define_class_under(rb_mMathematical, "ParseError", rb_eStandardError);
158
162
  rb_eDocumentCreationError = rb_define_class_under(rb_mMathematical, "DocumentCreationError", rb_eStandardError);
159
163
  rb_eDocumentReadError = rb_define_class_under(rb_mMathematical, "DocumentReadError", rb_eStandardError);
160
164
 
161
165
  rb_define_method(rb_cMathematicalProcess, "initialize", MATHEMATICAL_init, 1);
162
- rb_define_method(rb_cMathematicalProcess, "process", MATHEMATICAL_process, 2);
166
+ rb_define_method(rb_cMathematicalProcess, "process", MATHEMATICAL_process, 1);
163
167
  }
@@ -7,11 +7,14 @@ module Mathematical
7
7
  DEFAULT_OPTS = {
8
8
  :ppi => 72.0,
9
9
  :zoom => 1.0,
10
- :base64 => false
10
+ :base64 => false,
11
+ :maxsize => 0
11
12
  }
12
13
 
13
14
  def initialize(opts = {})
14
15
  @config = DEFAULT_OPTS.merge(opts)
16
+ raise(TypeError, "maxsize must be an integer!") unless @config[:maxsize].is_a? Fixnum
17
+ raise(TypeError, "maxsize cannot be less than 0!") if @config[:maxsize] < 0
15
18
  @processer = Mathematical::Process.new(@config)
16
19
  end
17
20
 
@@ -19,10 +22,8 @@ module Mathematical
19
22
  raise(TypeError, "text must be a string!") unless maths.is_a? String
20
23
  raise(ArgumentError, "text must be in itex format (`$...$` or `$$...$$`)!") unless maths =~ /\A\${1,2}/
21
24
 
22
- # TODO: figure out how to write SVGs without the tempfile
23
- tempfile = Tempfile.new('mathematical-temp.svg')
24
25
  begin
25
- raise RuntimeError unless svg_hash = @processer.process(maths, tempfile.path)
26
+ raise RuntimeError unless svg_hash = @processer.process(maths)
26
27
  svg_hash["svg"] = svg_hash["svg"][xml_header.length..-1] # remove starting <?xml...> tag
27
28
  svg_hash["svg"] = svg_to_base64(svg_hash["svg"]) if @config[:base64]
28
29
  svg_hash
@@ -1,3 +1,3 @@
1
1
  module Mathematical
2
- VERSION = "0.3.1"
2
+ VERSION = "0.4.0"
3
3
  end
@@ -30,8 +30,34 @@ class Mathematical::MaliciousnessTest < Test::Unit::TestCase
30
30
  assert_raise TypeError do
31
31
  render = Mathematical::Render.new({:zoom => "not a number"})
32
32
  end
33
- end
34
33
 
34
+ assert_raise TypeError do
35
+ render = Mathematical::Render.new({:maxsize => "not a number"})
36
+ end
37
+
38
+ assert_raise TypeError do
39
+ render = Mathematical::Render.new({:maxsize => -23})
40
+ end
41
+
42
+ assert_raise TypeError do
43
+ render = Mathematical::Render.new({:maxsize => 5.3})
44
+ end
45
+
46
+ assert_raise Mathematical::MaxsizeError do
47
+ render = Mathematical::Render.new({:maxsize => 2})
48
+ render.render('$a \ne b$')
49
+ end
50
+
51
+ assert_nothing_raised RangeError do
52
+ render = Mathematical::Render.new({:maxsize => 2147483647}) # signed long max
53
+ render.render('$a \ne b$')
54
+ end
55
+
56
+ assert_raise RangeError do
57
+ render = Mathematical::Render.new({:maxsize => 4294967295}) # unsigned long max
58
+ render.render('$a \ne b$')
59
+ end
60
+ end
35
61
 
36
62
  def test_it_does_not_blow_up_on_bad_input
37
63
  assert_raise TypeError do
metadata CHANGED
@@ -1,69 +1,69 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mathematical
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen Torikian
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-05-21 00:00:00.000000000 Z
11
+ date: 2014-06-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0.9'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0.9'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '1.5'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.5'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: mocha
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ~>
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: '1.0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ~>
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '1.0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: math-to-itex
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ~>
59
+ - - "~>"
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0.1'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ~>
66
+ - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0.1'
69
69
  description: 'A very fast way to turn itex math equations into beautifully rendered
@@ -79,237 +79,237 @@ files:
79
79
  - LICENSE.txt
80
80
  - README.md
81
81
  - Rakefile
82
- - mathematical.gemspec
82
+ - ext/mathematical/extconf.rb
83
+ - ext/mathematical/itexToMML/itex2MML.h
84
+ - ext/mathematical/itexToMML/lex.yy.c
85
+ - ext/mathematical/itexToMML/y.tab.c
86
+ - ext/mathematical/itexToMML/y.tab.h
87
+ - ext/mathematical/lasem/itex2mml/itex2MML.h
88
+ - ext/mathematical/lasem/src/lasemrender.c
89
+ - ext/mathematical/lasem/src/lsm.c
90
+ - ext/mathematical/lasem/src/lsm.h
91
+ - ext/mathematical/lasem/src/lsmattributes.c
92
+ - ext/mathematical/lasem/src/lsmattributes.h
93
+ - ext/mathematical/lasem/src/lsmcairo.c
94
+ - ext/mathematical/lasem/src/lsmcairo.h
95
+ - ext/mathematical/lasem/src/lsmdebug.c
96
+ - ext/mathematical/lasem/src/lsmdebug.h
97
+ - ext/mathematical/lasem/src/lsmdom.h
98
+ - ext/mathematical/lasem/src/lsmdomcharacterdata.c
99
+ - ext/mathematical/lasem/src/lsmdomcharacterdata.h
100
+ - ext/mathematical/lasem/src/lsmdomdocument.c
101
+ - ext/mathematical/lasem/src/lsmdomdocument.h
102
+ - ext/mathematical/lasem/src/lsmdomdocumentfragment.c
103
+ - ext/mathematical/lasem/src/lsmdomdocumentfragment.h
104
+ - ext/mathematical/lasem/src/lsmdomelement.c
105
+ - ext/mathematical/lasem/src/lsmdomelement.h
106
+ - ext/mathematical/lasem/src/lsmdomentities.c
107
+ - ext/mathematical/lasem/src/lsmdomentities.h
108
+ - ext/mathematical/lasem/src/lsmdomimplementation.c
109
+ - ext/mathematical/lasem/src/lsmdomimplementation.h
110
+ - ext/mathematical/lasem/src/lsmdomnamednodemap.c
111
+ - ext/mathematical/lasem/src/lsmdomnamednodemap.h
112
+ - ext/mathematical/lasem/src/lsmdomnode.c
113
+ - ext/mathematical/lasem/src/lsmdomnode.h
114
+ - ext/mathematical/lasem/src/lsmdomnodelist.c
115
+ - ext/mathematical/lasem/src/lsmdomnodelist.h
116
+ - ext/mathematical/lasem/src/lsmdomparser.c
117
+ - ext/mathematical/lasem/src/lsmdomparser.h
118
+ - ext/mathematical/lasem/src/lsmdomtext.c
119
+ - ext/mathematical/lasem/src/lsmdomtext.h
120
+ - ext/mathematical/lasem/src/lsmdomtypes.h
121
+ - ext/mathematical/lasem/src/lsmdomview.c
122
+ - ext/mathematical/lasem/src/lsmdomview.h
123
+ - ext/mathematical/lasem/src/lsmitex.c
124
+ - ext/mathematical/lasem/src/lsmitex.h
125
+ - ext/mathematical/lasem/src/lsmmathml.h
126
+ - ext/mathematical/lasem/src/lsmmathmlactionelement.c
127
+ - ext/mathematical/lasem/src/lsmmathmlactionelement.h
128
+ - ext/mathematical/lasem/src/lsmmathmlaligngroupelement.c
129
+ - ext/mathematical/lasem/src/lsmmathmlaligngroupelement.h
130
+ - ext/mathematical/lasem/src/lsmmathmlalignmarkelement.c
131
+ - ext/mathematical/lasem/src/lsmmathmlalignmarkelement.h
132
+ - ext/mathematical/lasem/src/lsmmathmlattributes.c
133
+ - ext/mathematical/lasem/src/lsmmathmlattributes.h
134
+ - ext/mathematical/lasem/src/lsmmathmldocument.c
135
+ - ext/mathematical/lasem/src/lsmmathmldocument.h
136
+ - ext/mathematical/lasem/src/lsmmathmlelement.c
137
+ - ext/mathematical/lasem/src/lsmmathmlelement.h
138
+ - ext/mathematical/lasem/src/lsmmathmlenums.c
139
+ - ext/mathematical/lasem/src/lsmmathmlenums.h
140
+ - ext/mathematical/lasem/src/lsmmathmlerrorelement.c
141
+ - ext/mathematical/lasem/src/lsmmathmlerrorelement.h
142
+ - ext/mathematical/lasem/src/lsmmathmlfencedelement.c
143
+ - ext/mathematical/lasem/src/lsmmathmlfencedelement.h
144
+ - ext/mathematical/lasem/src/lsmmathmlfractionelement.c
145
+ - ext/mathematical/lasem/src/lsmmathmlfractionelement.h
146
+ - ext/mathematical/lasem/src/lsmmathmlglyphtableams.c
147
+ - ext/mathematical/lasem/src/lsmmathmlglyphtableams.h
148
+ - ext/mathematical/lasem/src/lsmmathmlitexelement.c
149
+ - ext/mathematical/lasem/src/lsmmathmlitexelement.h
150
+ - ext/mathematical/lasem/src/lsmmathmllayoututils.c
151
+ - ext/mathematical/lasem/src/lsmmathmllayoututils.h
152
+ - ext/mathematical/lasem/src/lsmmathmlmathelement.c
153
+ - ext/mathematical/lasem/src/lsmmathmlmathelement.h
154
+ - ext/mathematical/lasem/src/lsmmathmloperatordictionary.c
155
+ - ext/mathematical/lasem/src/lsmmathmloperatordictionary.h
156
+ - ext/mathematical/lasem/src/lsmmathmloperatorelement.c
157
+ - ext/mathematical/lasem/src/lsmmathmloperatorelement.h
158
+ - ext/mathematical/lasem/src/lsmmathmlpaddedelement.c
159
+ - ext/mathematical/lasem/src/lsmmathmlpaddedelement.h
160
+ - ext/mathematical/lasem/src/lsmmathmlphantomelement.c
161
+ - ext/mathematical/lasem/src/lsmmathmlphantomelement.h
162
+ - ext/mathematical/lasem/src/lsmmathmlpresentationcontainer.c
163
+ - ext/mathematical/lasem/src/lsmmathmlpresentationcontainer.h
164
+ - ext/mathematical/lasem/src/lsmmathmlpresentationtoken.c
165
+ - ext/mathematical/lasem/src/lsmmathmlpresentationtoken.h
166
+ - ext/mathematical/lasem/src/lsmmathmlradicalelement.c
167
+ - ext/mathematical/lasem/src/lsmmathmlradicalelement.h
168
+ - ext/mathematical/lasem/src/lsmmathmlrowelement.c
169
+ - ext/mathematical/lasem/src/lsmmathmlrowelement.h
170
+ - ext/mathematical/lasem/src/lsmmathmlscriptelement.c
171
+ - ext/mathematical/lasem/src/lsmmathmlscriptelement.h
172
+ - ext/mathematical/lasem/src/lsmmathmlsemanticselement.c
173
+ - ext/mathematical/lasem/src/lsmmathmlsemanticselement.h
174
+ - ext/mathematical/lasem/src/lsmmathmlspaceelement.c
175
+ - ext/mathematical/lasem/src/lsmmathmlspaceelement.h
176
+ - ext/mathematical/lasem/src/lsmmathmlstringelement.c
177
+ - ext/mathematical/lasem/src/lsmmathmlstringelement.h
178
+ - ext/mathematical/lasem/src/lsmmathmlstyle.c
179
+ - ext/mathematical/lasem/src/lsmmathmlstyle.h
180
+ - ext/mathematical/lasem/src/lsmmathmlstyleelement.c
181
+ - ext/mathematical/lasem/src/lsmmathmlstyleelement.h
182
+ - ext/mathematical/lasem/src/lsmmathmltablecellelement.c
183
+ - ext/mathematical/lasem/src/lsmmathmltablecellelement.h
184
+ - ext/mathematical/lasem/src/lsmmathmltableelement.c
185
+ - ext/mathematical/lasem/src/lsmmathmltableelement.h
186
+ - ext/mathematical/lasem/src/lsmmathmltablerowelement.c
187
+ - ext/mathematical/lasem/src/lsmmathmltablerowelement.h
188
+ - ext/mathematical/lasem/src/lsmmathmltraits.c
189
+ - ext/mathematical/lasem/src/lsmmathmltraits.h
190
+ - ext/mathematical/lasem/src/lsmmathmltypes.h
191
+ - ext/mathematical/lasem/src/lsmmathmlunderoverelement.c
192
+ - ext/mathematical/lasem/src/lsmmathmlunderoverelement.h
193
+ - ext/mathematical/lasem/src/lsmmathmlutils.c
194
+ - ext/mathematical/lasem/src/lsmmathmlutils.h
195
+ - ext/mathematical/lasem/src/lsmmathmlview.c
196
+ - ext/mathematical/lasem/src/lsmmathmlview.h
197
+ - ext/mathematical/lasem/src/lsmproperties.c
198
+ - ext/mathematical/lasem/src/lsmproperties.h
199
+ - ext/mathematical/lasem/src/lsmstr.c
200
+ - ext/mathematical/lasem/src/lsmstr.h
201
+ - ext/mathematical/lasem/src/lsmsvg.h
202
+ - ext/mathematical/lasem/src/lsmsvgaelement.c
203
+ - ext/mathematical/lasem/src/lsmsvgaelement.h
204
+ - ext/mathematical/lasem/src/lsmsvgattributes.h
205
+ - ext/mathematical/lasem/src/lsmsvgcircleelement.c
206
+ - ext/mathematical/lasem/src/lsmsvgcircleelement.h
207
+ - ext/mathematical/lasem/src/lsmsvgclippathelement.c
208
+ - ext/mathematical/lasem/src/lsmsvgclippathelement.h
209
+ - ext/mathematical/lasem/src/lsmsvgcolors.c
210
+ - ext/mathematical/lasem/src/lsmsvgcolors.h
211
+ - ext/mathematical/lasem/src/lsmsvgdefselement.c
212
+ - ext/mathematical/lasem/src/lsmsvgdefselement.h
213
+ - ext/mathematical/lasem/src/lsmsvgdocument.c
214
+ - ext/mathematical/lasem/src/lsmsvgdocument.h
215
+ - ext/mathematical/lasem/src/lsmsvgelement.c
216
+ - ext/mathematical/lasem/src/lsmsvgelement.h
217
+ - ext/mathematical/lasem/src/lsmsvgellipseelement.c
218
+ - ext/mathematical/lasem/src/lsmsvgellipseelement.h
219
+ - ext/mathematical/lasem/src/lsmsvgenums.c
220
+ - ext/mathematical/lasem/src/lsmsvgenums.h
221
+ - ext/mathematical/lasem/src/lsmsvgfilterblend.c
222
+ - ext/mathematical/lasem/src/lsmsvgfilterblend.h
223
+ - ext/mathematical/lasem/src/lsmsvgfiltercomposite.c
224
+ - ext/mathematical/lasem/src/lsmsvgfiltercomposite.h
225
+ - ext/mathematical/lasem/src/lsmsvgfilterelement.c
226
+ - ext/mathematical/lasem/src/lsmsvgfilterelement.h
227
+ - ext/mathematical/lasem/src/lsmsvgfilterflood.c
228
+ - ext/mathematical/lasem/src/lsmsvgfilterflood.h
229
+ - ext/mathematical/lasem/src/lsmsvgfiltergaussianblur.c
230
+ - ext/mathematical/lasem/src/lsmsvgfiltergaussianblur.h
231
+ - ext/mathematical/lasem/src/lsmsvgfiltermerge.c
232
+ - ext/mathematical/lasem/src/lsmsvgfiltermerge.h
233
+ - ext/mathematical/lasem/src/lsmsvgfiltermergenode.c
234
+ - ext/mathematical/lasem/src/lsmsvgfiltermergenode.h
235
+ - ext/mathematical/lasem/src/lsmsvgfilteroffset.c
236
+ - ext/mathematical/lasem/src/lsmsvgfilteroffset.h
237
+ - ext/mathematical/lasem/src/lsmsvgfilterprimitive.c
238
+ - ext/mathematical/lasem/src/lsmsvgfilterprimitive.h
239
+ - ext/mathematical/lasem/src/lsmsvgfilterspecularlighting.c
240
+ - ext/mathematical/lasem/src/lsmsvgfilterspecularlighting.h
241
+ - ext/mathematical/lasem/src/lsmsvgfiltersurface.c
242
+ - ext/mathematical/lasem/src/lsmsvgfiltersurface.h
243
+ - ext/mathematical/lasem/src/lsmsvgfiltertile.c
244
+ - ext/mathematical/lasem/src/lsmsvgfiltertile.h
245
+ - ext/mathematical/lasem/src/lsmsvggelement.c
246
+ - ext/mathematical/lasem/src/lsmsvggelement.h
247
+ - ext/mathematical/lasem/src/lsmsvggradientelement.c
248
+ - ext/mathematical/lasem/src/lsmsvggradientelement.h
249
+ - ext/mathematical/lasem/src/lsmsvgimageelement.c
250
+ - ext/mathematical/lasem/src/lsmsvgimageelement.h
251
+ - ext/mathematical/lasem/src/lsmsvglength.c
252
+ - ext/mathematical/lasem/src/lsmsvglength.h
253
+ - ext/mathematical/lasem/src/lsmsvglineargradientelement.c
254
+ - ext/mathematical/lasem/src/lsmsvglineargradientelement.h
255
+ - ext/mathematical/lasem/src/lsmsvglineelement.c
256
+ - ext/mathematical/lasem/src/lsmsvglineelement.h
257
+ - ext/mathematical/lasem/src/lsmsvgmarkerelement.c
258
+ - ext/mathematical/lasem/src/lsmsvgmarkerelement.h
259
+ - ext/mathematical/lasem/src/lsmsvgmaskelement.c
260
+ - ext/mathematical/lasem/src/lsmsvgmaskelement.h
261
+ - ext/mathematical/lasem/src/lsmsvgmatrix.c
262
+ - ext/mathematical/lasem/src/lsmsvgmatrix.h
263
+ - ext/mathematical/lasem/src/lsmsvgpathelement.c
264
+ - ext/mathematical/lasem/src/lsmsvgpathelement.h
265
+ - ext/mathematical/lasem/src/lsmsvgpatternelement.c
266
+ - ext/mathematical/lasem/src/lsmsvgpatternelement.h
267
+ - ext/mathematical/lasem/src/lsmsvgpolygonelement.c
268
+ - ext/mathematical/lasem/src/lsmsvgpolygonelement.h
269
+ - ext/mathematical/lasem/src/lsmsvgpolylineelement.c
270
+ - ext/mathematical/lasem/src/lsmsvgpolylineelement.h
271
+ - ext/mathematical/lasem/src/lsmsvgradialgradientelement.c
272
+ - ext/mathematical/lasem/src/lsmsvgradialgradientelement.h
273
+ - ext/mathematical/lasem/src/lsmsvgrectelement.c
274
+ - ext/mathematical/lasem/src/lsmsvgrectelement.h
275
+ - ext/mathematical/lasem/src/lsmsvgstopelement.c
276
+ - ext/mathematical/lasem/src/lsmsvgstopelement.h
277
+ - ext/mathematical/lasem/src/lsmsvgstyle.c
278
+ - ext/mathematical/lasem/src/lsmsvgstyle.h
279
+ - ext/mathematical/lasem/src/lsmsvgsvgelement.c
280
+ - ext/mathematical/lasem/src/lsmsvgsvgelement.h
281
+ - ext/mathematical/lasem/src/lsmsvgswitchelement.c
282
+ - ext/mathematical/lasem/src/lsmsvgswitchelement.h
283
+ - ext/mathematical/lasem/src/lsmsvgsymbolelement.c
284
+ - ext/mathematical/lasem/src/lsmsvgsymbolelement.h
285
+ - ext/mathematical/lasem/src/lsmsvgtextelement.c
286
+ - ext/mathematical/lasem/src/lsmsvgtextelement.h
287
+ - ext/mathematical/lasem/src/lsmsvgtraits.c
288
+ - ext/mathematical/lasem/src/lsmsvgtraits.h
289
+ - ext/mathematical/lasem/src/lsmsvgtransformable.c
290
+ - ext/mathematical/lasem/src/lsmsvgtransformable.h
291
+ - ext/mathematical/lasem/src/lsmsvgtspanelement.c
292
+ - ext/mathematical/lasem/src/lsmsvgtspanelement.h
293
+ - ext/mathematical/lasem/src/lsmsvgtypes.h
294
+ - ext/mathematical/lasem/src/lsmsvguseelement.c
295
+ - ext/mathematical/lasem/src/lsmsvguseelement.h
296
+ - ext/mathematical/lasem/src/lsmsvgview.c
297
+ - ext/mathematical/lasem/src/lsmsvgview.h
298
+ - ext/mathematical/lasem/src/lsmtraits.c
299
+ - ext/mathematical/lasem/src/lsmtraits.h
300
+ - ext/mathematical/lasem/src/lsmtypes.h
301
+ - ext/mathematical/lasem/src/lsmutils.c
302
+ - ext/mathematical/lasem/src/lsmutils.h
303
+ - ext/mathematical/lasem/tests/dom.c
304
+ - ext/mathematical/lasem/tests/lsmtest.c
305
+ - ext/mathematical/lasem/tests/str.c
306
+ - ext/mathematical/lasem/tests/suite.c
307
+ - ext/mathematical/lasem/tools/generate-entity-array.c
308
+ - ext/mathematical/mathematical.c
309
+ - lib/mathematical.rb
83
310
  - lib/mathematical/render.rb
84
311
  - lib/mathematical/version.rb
85
- - lib/mathematical.rb
86
- - ext/mathematical/lasemrender.c
87
- - ext/mathematical/lex.yy.c
88
- - ext/mathematical/lsm.c
89
- - ext/mathematical/lsmattributes.c
90
- - ext/mathematical/lsmcairo.c
91
- - ext/mathematical/lsmdebug.c
92
- - ext/mathematical/lsmdomcharacterdata.c
93
- - ext/mathematical/lsmdomdocument.c
94
- - ext/mathematical/lsmdomdocumentfragment.c
95
- - ext/mathematical/lsmdomelement.c
96
- - ext/mathematical/lsmdomentities.c
97
- - ext/mathematical/lsmdomenumtypes.c
98
- - ext/mathematical/lsmdomimplementation.c
99
- - ext/mathematical/lsmdomnamednodemap.c
100
- - ext/mathematical/lsmdomnode.c
101
- - ext/mathematical/lsmdomnodelist.c
102
- - ext/mathematical/lsmdomparser.c
103
- - ext/mathematical/lsmdomtext.c
104
- - ext/mathematical/lsmdomview.c
105
- - ext/mathematical/lsmitex.c
106
- - ext/mathematical/lsmmathmlactionelement.c
107
- - ext/mathematical/lsmmathmlaligngroupelement.c
108
- - ext/mathematical/lsmmathmlalignmarkelement.c
109
- - ext/mathematical/lsmmathmlattributes.c
110
- - ext/mathematical/lsmmathmldocument.c
111
- - ext/mathematical/lsmmathmlelement.c
112
- - ext/mathematical/lsmmathmlenums.c
113
- - ext/mathematical/lsmmathmlenumtypes.c
114
- - ext/mathematical/lsmmathmlerrorelement.c
115
- - ext/mathematical/lsmmathmlfencedelement.c
116
- - ext/mathematical/lsmmathmlfractionelement.c
117
- - ext/mathematical/lsmmathmlglyphtableams.c
118
- - ext/mathematical/lsmmathmlitexelement.c
119
- - ext/mathematical/lsmmathmllayoututils.c
120
- - ext/mathematical/lsmmathmlmathelement.c
121
- - ext/mathematical/lsmmathmloperatordictionary.c
122
- - ext/mathematical/lsmmathmloperatorelement.c
123
- - ext/mathematical/lsmmathmlpaddedelement.c
124
- - ext/mathematical/lsmmathmlphantomelement.c
125
- - ext/mathematical/lsmmathmlpresentationcontainer.c
126
- - ext/mathematical/lsmmathmlpresentationtoken.c
127
- - ext/mathematical/lsmmathmlradicalelement.c
128
- - ext/mathematical/lsmmathmlrowelement.c
129
- - ext/mathematical/lsmmathmlscriptelement.c
130
- - ext/mathematical/lsmmathmlsemanticselement.c
131
- - ext/mathematical/lsmmathmlspaceelement.c
132
- - ext/mathematical/lsmmathmlstringelement.c
133
- - ext/mathematical/lsmmathmlstyle.c
134
- - ext/mathematical/lsmmathmlstyleelement.c
135
- - ext/mathematical/lsmmathmltablecellelement.c
136
- - ext/mathematical/lsmmathmltableelement.c
137
- - ext/mathematical/lsmmathmltablerowelement.c
138
- - ext/mathematical/lsmmathmltraits.c
139
- - ext/mathematical/lsmmathmlunderoverelement.c
140
- - ext/mathematical/lsmmathmlutils.c
141
- - ext/mathematical/lsmmathmlview.c
142
- - ext/mathematical/lsmproperties.c
143
- - ext/mathematical/lsmstr.c
144
- - ext/mathematical/lsmsvgaelement.c
145
- - ext/mathematical/lsmsvgcircleelement.c
146
- - ext/mathematical/lsmsvgclippathelement.c
147
- - ext/mathematical/lsmsvgcolors.c
148
- - ext/mathematical/lsmsvgdefselement.c
149
- - ext/mathematical/lsmsvgdocument.c
150
- - ext/mathematical/lsmsvgelement.c
151
- - ext/mathematical/lsmsvgellipseelement.c
152
- - ext/mathematical/lsmsvgenums.c
153
- - ext/mathematical/lsmsvgenumtypes.c
154
- - ext/mathematical/lsmsvgfilterblend.c
155
- - ext/mathematical/lsmsvgfiltercomposite.c
156
- - ext/mathematical/lsmsvgfilterelement.c
157
- - ext/mathematical/lsmsvgfilterflood.c
158
- - ext/mathematical/lsmsvgfiltergaussianblur.c
159
- - ext/mathematical/lsmsvgfiltermerge.c
160
- - ext/mathematical/lsmsvgfiltermergenode.c
161
- - ext/mathematical/lsmsvgfilteroffset.c
162
- - ext/mathematical/lsmsvgfilterprimitive.c
163
- - ext/mathematical/lsmsvgfilterspecularlighting.c
164
- - ext/mathematical/lsmsvgfiltersurface.c
165
- - ext/mathematical/lsmsvgfiltertile.c
166
- - ext/mathematical/lsmsvggelement.c
167
- - ext/mathematical/lsmsvggradientelement.c
168
- - ext/mathematical/lsmsvgimageelement.c
169
- - ext/mathematical/lsmsvglength.c
170
- - ext/mathematical/lsmsvglineargradientelement.c
171
- - ext/mathematical/lsmsvglineelement.c
172
- - ext/mathematical/lsmsvgmarkerelement.c
173
- - ext/mathematical/lsmsvgmaskelement.c
174
- - ext/mathematical/lsmsvgmatrix.c
175
- - ext/mathematical/lsmsvgpathelement.c
176
- - ext/mathematical/lsmsvgpatternelement.c
177
- - ext/mathematical/lsmsvgpolygonelement.c
178
- - ext/mathematical/lsmsvgpolylineelement.c
179
- - ext/mathematical/lsmsvgradialgradientelement.c
180
- - ext/mathematical/lsmsvgrectelement.c
181
- - ext/mathematical/lsmsvgstopelement.c
182
- - ext/mathematical/lsmsvgstyle.c
183
- - ext/mathematical/lsmsvgsvgelement.c
184
- - ext/mathematical/lsmsvgswitchelement.c
185
- - ext/mathematical/lsmsvgsymbolelement.c
186
- - ext/mathematical/lsmsvgtextelement.c
187
- - ext/mathematical/lsmsvgtraits.c
188
- - ext/mathematical/lsmsvgtransformable.c
189
- - ext/mathematical/lsmsvgtspanelement.c
190
- - ext/mathematical/lsmsvguseelement.c
191
- - ext/mathematical/lsmsvgview.c
192
- - ext/mathematical/lsmtraits.c
193
- - ext/mathematical/lsmutils.c
194
- - ext/mathematical/mathematical.c
195
- - ext/mathematical/y.tab.c
196
- - ext/mathematical/itex2MML.h
197
- - ext/mathematical/lsm.h
198
- - ext/mathematical/lsmattributes.h
199
- - ext/mathematical/lsmcairo.h
200
- - ext/mathematical/lsmdebug.h
201
- - ext/mathematical/lsmdom.h
202
- - ext/mathematical/lsmdomcharacterdata.h
203
- - ext/mathematical/lsmdomdocument.h
204
- - ext/mathematical/lsmdomdocumentfragment.h
205
- - ext/mathematical/lsmdomelement.h
206
- - ext/mathematical/lsmdomentities.h
207
- - ext/mathematical/lsmdomenumtypes.h
208
- - ext/mathematical/lsmdomimplementation.h
209
- - ext/mathematical/lsmdomnamednodemap.h
210
- - ext/mathematical/lsmdomnode.h
211
- - ext/mathematical/lsmdomnodelist.h
212
- - ext/mathematical/lsmdomparser.h
213
- - ext/mathematical/lsmdomtext.h
214
- - ext/mathematical/lsmdomtypes.h
215
- - ext/mathematical/lsmdomview.h
216
- - ext/mathematical/lsmitex.h
217
- - ext/mathematical/lsmmathml.h
218
- - ext/mathematical/lsmmathmlactionelement.h
219
- - ext/mathematical/lsmmathmlaligngroupelement.h
220
- - ext/mathematical/lsmmathmlalignmarkelement.h
221
- - ext/mathematical/lsmmathmlattributes.h
222
- - ext/mathematical/lsmmathmldocument.h
223
- - ext/mathematical/lsmmathmlelement.h
224
- - ext/mathematical/lsmmathmlenums.h
225
- - ext/mathematical/lsmmathmlenumtypes.h
226
- - ext/mathematical/lsmmathmlerrorelement.h
227
- - ext/mathematical/lsmmathmlfencedelement.h
228
- - ext/mathematical/lsmmathmlfractionelement.h
229
- - ext/mathematical/lsmmathmlglyphtableams.h
230
- - ext/mathematical/lsmmathmlitexelement.h
231
- - ext/mathematical/lsmmathmllayoututils.h
232
- - ext/mathematical/lsmmathmlmathelement.h
233
- - ext/mathematical/lsmmathmloperatordictionary.h
234
- - ext/mathematical/lsmmathmloperatorelement.h
235
- - ext/mathematical/lsmmathmlpaddedelement.h
236
- - ext/mathematical/lsmmathmlphantomelement.h
237
- - ext/mathematical/lsmmathmlpresentationcontainer.h
238
- - ext/mathematical/lsmmathmlpresentationtoken.h
239
- - ext/mathematical/lsmmathmlradicalelement.h
240
- - ext/mathematical/lsmmathmlrowelement.h
241
- - ext/mathematical/lsmmathmlscriptelement.h
242
- - ext/mathematical/lsmmathmlsemanticselement.h
243
- - ext/mathematical/lsmmathmlspaceelement.h
244
- - ext/mathematical/lsmmathmlstringelement.h
245
- - ext/mathematical/lsmmathmlstyle.h
246
- - ext/mathematical/lsmmathmlstyleelement.h
247
- - ext/mathematical/lsmmathmltablecellelement.h
248
- - ext/mathematical/lsmmathmltableelement.h
249
- - ext/mathematical/lsmmathmltablerowelement.h
250
- - ext/mathematical/lsmmathmltraits.h
251
- - ext/mathematical/lsmmathmltypes.h
252
- - ext/mathematical/lsmmathmlunderoverelement.h
253
- - ext/mathematical/lsmmathmlutils.h
254
- - ext/mathematical/lsmmathmlview.h
255
- - ext/mathematical/lsmproperties.h
256
- - ext/mathematical/lsmstr.h
257
- - ext/mathematical/lsmsvg.h
258
- - ext/mathematical/lsmsvgaelement.h
259
- - ext/mathematical/lsmsvgattributes.h
260
- - ext/mathematical/lsmsvgcircleelement.h
261
- - ext/mathematical/lsmsvgclippathelement.h
262
- - ext/mathematical/lsmsvgcolors.h
263
- - ext/mathematical/lsmsvgdefselement.h
264
- - ext/mathematical/lsmsvgdocument.h
265
- - ext/mathematical/lsmsvgelement.h
266
- - ext/mathematical/lsmsvgellipseelement.h
267
- - ext/mathematical/lsmsvgenums.h
268
- - ext/mathematical/lsmsvgenumtypes.h
269
- - ext/mathematical/lsmsvgfilterblend.h
270
- - ext/mathematical/lsmsvgfiltercomposite.h
271
- - ext/mathematical/lsmsvgfilterelement.h
272
- - ext/mathematical/lsmsvgfilterflood.h
273
- - ext/mathematical/lsmsvgfiltergaussianblur.h
274
- - ext/mathematical/lsmsvgfiltermerge.h
275
- - ext/mathematical/lsmsvgfiltermergenode.h
276
- - ext/mathematical/lsmsvgfilteroffset.h
277
- - ext/mathematical/lsmsvgfilterprimitive.h
278
- - ext/mathematical/lsmsvgfilterspecularlighting.h
279
- - ext/mathematical/lsmsvgfiltersurface.h
280
- - ext/mathematical/lsmsvgfiltertile.h
281
- - ext/mathematical/lsmsvggelement.h
282
- - ext/mathematical/lsmsvggradientelement.h
283
- - ext/mathematical/lsmsvgimageelement.h
284
- - ext/mathematical/lsmsvglength.h
285
- - ext/mathematical/lsmsvglineargradientelement.h
286
- - ext/mathematical/lsmsvglineelement.h
287
- - ext/mathematical/lsmsvgmarkerelement.h
288
- - ext/mathematical/lsmsvgmaskelement.h
289
- - ext/mathematical/lsmsvgmatrix.h
290
- - ext/mathematical/lsmsvgpathelement.h
291
- - ext/mathematical/lsmsvgpatternelement.h
292
- - ext/mathematical/lsmsvgpolygonelement.h
293
- - ext/mathematical/lsmsvgpolylineelement.h
294
- - ext/mathematical/lsmsvgradialgradientelement.h
295
- - ext/mathematical/lsmsvgrectelement.h
296
- - ext/mathematical/lsmsvgstopelement.h
297
- - ext/mathematical/lsmsvgstyle.h
298
- - ext/mathematical/lsmsvgsvgelement.h
299
- - ext/mathematical/lsmsvgswitchelement.h
300
- - ext/mathematical/lsmsvgsymbolelement.h
301
- - ext/mathematical/lsmsvgtextelement.h
302
- - ext/mathematical/lsmsvgtraits.h
303
- - ext/mathematical/lsmsvgtransformable.h
304
- - ext/mathematical/lsmsvgtspanelement.h
305
- - ext/mathematical/lsmsvgtypes.h
306
- - ext/mathematical/lsmsvguseelement.h
307
- - ext/mathematical/lsmsvgview.h
308
- - ext/mathematical/lsmtraits.h
309
- - ext/mathematical/lsmtypes.h
310
- - ext/mathematical/lsmutils.h
311
- - ext/mathematical/y.tab.h
312
- - ext/mathematical/extconf.rb
312
+ - mathematical.gemspec
313
313
  - test/mathematical/basic_test.rb
314
314
  - test/mathematical/fixtures/after/brackets_display.html
315
315
  - test/mathematical/fixtures/after/compliance_accents.html
@@ -351,17 +351,17 @@ require_paths:
351
351
  - ext
352
352
  required_ruby_version: !ruby/object:Gem::Requirement
353
353
  requirements:
354
- - - '>='
354
+ - - ">="
355
355
  - !ruby/object:Gem::Version
356
356
  version: '0'
357
357
  required_rubygems_version: !ruby/object:Gem::Requirement
358
358
  requirements:
359
- - - '>='
359
+ - - ">="
360
360
  - !ruby/object:Gem::Version
361
361
  version: '0'
362
362
  requirements: []
363
363
  rubyforge_project:
364
- rubygems_version: 2.0.3
364
+ rubygems_version: 2.2.2
365
365
  signing_key:
366
366
  specification_version: 4
367
367
  summary: Quickly convert math equations into beautiful SVGs.