mathematical 1.6.14 → 1.6.18

Sign up to get free protection for your applications and to get access to all the features.
Files changed (318) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -1
  3. data/Rakefile +31 -21
  4. data/ext/mathematical/extconf.rb +71 -69
  5. data/ext/mathematical/lasem/COPYING +118 -99
  6. data/ext/mathematical/lasem/{NEWS → NEWS.md} +10 -0
  7. data/ext/mathematical/lasem/README.md +65 -0
  8. data/ext/mathematical/lasem/docs/lasem-render-0.6.1 +2 -2
  9. data/ext/mathematical/lasem/docs/meson.build +3 -0
  10. data/ext/mathematical/lasem/docs/reference/lasem/building.md +32 -0
  11. data/ext/mathematical/lasem/docs/reference/lasem/lasem.toml.in +47 -0
  12. data/ext/mathematical/lasem/docs/reference/lasem/meson.build +44 -0
  13. data/ext/mathematical/lasem/docs/reference/lasem/overview.md +24 -0
  14. data/ext/mathematical/lasem/docs/reference/lasem/urlmap.js +5 -0
  15. data/ext/mathematical/lasem/itex2mml/README.itex2MML +5 -2
  16. data/ext/mathematical/lasem/itex2mml/itex2MML.h +10 -10
  17. data/ext/mathematical/lasem/itex2mml/itex2MML.l +126 -27
  18. data/ext/mathematical/lasem/itex2mml/itex2MML.y +262 -99
  19. data/ext/mathematical/lasem/itex2mml/meson.build +17 -0
  20. data/ext/mathematical/lasem/lasem.doap +7 -7
  21. data/ext/mathematical/lasem/meson.build +46 -0
  22. data/ext/mathematical/lasem/meson_options.txt +5 -0
  23. data/ext/mathematical/lasem/org.lasem.Viewer.json +41 -0
  24. data/ext/mathematical/lasem/po/LINGUAS +0 -2
  25. data/ext/mathematical/lasem/po/eu.po +30 -66
  26. data/ext/mathematical/lasem/po/meson.build +4 -0
  27. data/ext/mathematical/lasem/src/lasemrender.c +1 -6
  28. data/ext/mathematical/lasem/src/lsm.c +2 -0
  29. data/ext/mathematical/lasem/src/lsmattributes.c +2 -5
  30. data/ext/mathematical/lasem/src/lsmmathmlglyphtableams.c +71 -7
  31. data/ext/mathematical/lasem/src/lsmmathmlitexelement.c +7 -5
  32. data/ext/mathematical/lasem/src/lsmmathmloperatordictionary.c +11 -1
  33. data/ext/mathematical/lasem/src/lsmmathmloperatordictionary.h +2 -1
  34. data/ext/mathematical/lasem/src/lsmmathmloperatorelement.c +6 -1
  35. data/ext/mathematical/lasem/src/lsmmathmlview.c +21 -3
  36. data/ext/mathematical/lasem/src/lsmmathmlview.h +2 -2
  37. data/ext/mathematical/lasem/src/lsmmisc.c +15 -0
  38. data/ext/mathematical/lasem/src/lsmmisc.h +32 -0
  39. data/ext/mathematical/lasem/src/lsmproperties.c +2 -5
  40. data/ext/mathematical/lasem/src/lsmsvgfiltersurface.c +6 -3
  41. data/ext/mathematical/lasem/src/lsmsvgtraits.c +10 -1
  42. data/ext/mathematical/lasem/src/meson.build +321 -0
  43. data/ext/mathematical/lasem/subprojects/gi-docgen.wrap +6 -0
  44. data/ext/mathematical/lasem/tests/data/mathml/tex/misc/array.tex +3 -0
  45. data/ext/mathematical/lasem/tests/dom.c +0 -6
  46. data/ext/mathematical/lasem/tests/filter.c +8 -7
  47. data/ext/mathematical/lasem/tests/lasem.supp +185 -0
  48. data/ext/mathematical/lasem/tests/lsmtest.c +2 -9
  49. data/ext/mathematical/lasem/tests/meson.build +39 -0
  50. data/ext/mathematical/lasem/tests/str.c +0 -4
  51. data/ext/mathematical/lasem/tests/suite.c +0 -4
  52. data/ext/mathematical/lasem/viewer/meson.build +17 -0
  53. data/ext/mathematical/lasem/viewer/viewer.c +248 -0
  54. data/ext/mathematical/mtex2MML/script/tag +15 -14
  55. data/ext/mathematical/mtex2MML/src/lexer.l +4 -4
  56. data/ext/mathematical/mtex2MML/src/mtex2MML.h +7 -7
  57. data/ext/mathematical/mtex2MML/src/parser.y +5 -5
  58. data/ext/mathematical/mtex2MML/tests/clar.c +2 -2
  59. data/ext/mathematical/mtex2MML/tests/deps/trim/package.json +2 -2
  60. data/lib/mathematical/configuration.rb +8 -4
  61. data/lib/mathematical/corrections.rb +3 -1
  62. data/lib/mathematical/validator.rb +11 -8
  63. data/lib/mathematical/version.rb +3 -1
  64. data/lib/mathematical.rb +21 -19
  65. data/mathematical.gemspec +21 -22
  66. metadata +36 -336
  67. data/ext/mathematical/lasem/AUTHORS +0 -1
  68. data/ext/mathematical/lasem/ChangeLog +0 -0
  69. data/ext/mathematical/lasem/MAINTAINERS +0 -3
  70. data/ext/mathematical/lasem/Makefile.am +0 -34
  71. data/ext/mathematical/lasem/Makefile.decl +0 -57
  72. data/ext/mathematical/lasem/README +0 -28
  73. data/ext/mathematical/lasem/RELEASING +0 -85
  74. data/ext/mathematical/lasem/autogen.sh +0 -180
  75. data/ext/mathematical/lasem/configure.ac +0 -139
  76. data/ext/mathematical/lasem/docs/Makefile.am +0 -14
  77. data/ext/mathematical/lasem/docs/reference/Makefile.am +0 -3
  78. data/ext/mathematical/lasem/docs/reference/lasem/Makefile.am +0 -205
  79. data/ext/mathematical/lasem/docs/reference/lasem/lasem-docs.xml +0 -75
  80. data/ext/mathematical/lasem/docs/reference/lasem/lasem-overview.xml +0 -64
  81. data/ext/mathematical/lasem/docs/reference/lasem/lasem-sections.txt +0 -213
  82. data/ext/mathematical/lasem/docs/reference/lasem/lasem.types +0 -110
  83. data/ext/mathematical/lasem/itex2mml/Makefile.am +0 -37
  84. data/ext/mathematical/lasem/lasem.pc.in +0 -11
  85. data/ext/mathematical/lasem/m4/introspection.m4 +0 -96
  86. data/ext/mathematical/lasem/po/ChangeLog +0 -0
  87. data/ext/mathematical/lasem/po/ro.po +0 -64
  88. data/ext/mathematical/lasem/src/Makefile.am +0 -349
  89. data/ext/mathematical/lasem/src/lsmdomenumtypes.c.template +0 -39
  90. data/ext/mathematical/lasem/src/lsmdomenumtypes.h.template +0 -26
  91. data/ext/mathematical/lasem/src/lsmmathmlenumtypes.c.template +0 -39
  92. data/ext/mathematical/lasem/src/lsmmathmlenumtypes.h.template +0 -26
  93. data/ext/mathematical/lasem/src/lsmsvgenumtypes.c.template +0 -39
  94. data/ext/mathematical/lasem/src/lsmsvgenumtypes.h.template +0 -26
  95. data/ext/mathematical/lasem/tests/Makefile.am +0 -34
  96. data/ext/mathematical/lib/liblasem.dylib +0 -0
  97. data/ext/mathematical/lib/libmtex2MML.a +0 -0
  98. data/ext/mathematical/mtex2MML/build/CMakeCache.txt +0 -512
  99. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeCCompiler.cmake +0 -76
  100. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeCXXCompiler.cmake +0 -88
  101. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeDetermineCompilerABI_C.bin +0 -0
  102. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeDetermineCompilerABI_CXX.bin +0 -0
  103. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeSystem.cmake +0 -15
  104. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CompilerIdC/CMakeCCompilerId.c +0 -671
  105. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -660
  106. data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeDirectoryInformation.cmake +0 -16
  107. data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeError.log +0 -22
  108. data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeOutput.log +0 -351
  109. data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeRuleHashes.txt +0 -34
  110. data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/DependInfo.cmake +0 -11
  111. data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/build.make +0 -76
  112. data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/cmake_clean.cmake +0 -8
  113. data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/progress.make +0 -1
  114. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/DependInfo.cmake +0 -11
  115. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/build.make +0 -76
  116. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/cmake_clean.cmake +0 -8
  117. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/progress.make +0 -1
  118. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/DependInfo.cmake +0 -11
  119. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/build.make +0 -76
  120. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/cmake_clean.cmake +0 -8
  121. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/progress.make +0 -1
  122. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/DependInfo.cmake +0 -11
  123. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/build.make +0 -76
  124. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/cmake_clean.cmake +0 -8
  125. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/progress.make +0 -1
  126. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/DependInfo.cmake +0 -11
  127. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/build.make +0 -76
  128. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/cmake_clean.cmake +0 -8
  129. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/progress.make +0 -1
  130. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/DependInfo.cmake +0 -11
  131. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/build.make +0 -76
  132. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/cmake_clean.cmake +0 -8
  133. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/progress.make +0 -1
  134. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/DependInfo.cmake +0 -11
  135. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/build.make +0 -76
  136. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/cmake_clean.cmake +0 -8
  137. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/progress.make +0 -1
  138. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/DependInfo.cmake +0 -11
  139. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/build.make +0 -76
  140. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/cmake_clean.cmake +0 -8
  141. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/progress.make +0 -1
  142. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/DependInfo.cmake +0 -11
  143. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/build.make +0 -76
  144. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/cmake_clean.cmake +0 -8
  145. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/progress.make +0 -1
  146. data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/DependInfo.cmake +0 -11
  147. data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/build.make +0 -76
  148. data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/cmake_clean.cmake +0 -8
  149. data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/progress.make +0 -1
  150. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/DependInfo.cmake +0 -11
  151. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/build.make +0 -76
  152. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/cmake_clean.cmake +0 -8
  153. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/progress.make +0 -1
  154. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/DependInfo.cmake +0 -11
  155. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/build.make +0 -76
  156. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/cmake_clean.cmake +0 -8
  157. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/progress.make +0 -1
  158. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/DependInfo.cmake +0 -11
  159. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/build.make +0 -76
  160. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/cmake_clean.cmake +0 -8
  161. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/progress.make +0 -1
  162. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/DependInfo.cmake +0 -11
  163. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/build.make +0 -76
  164. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/cmake_clean.cmake +0 -8
  165. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/progress.make +0 -1
  166. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/DependInfo.cmake +0 -11
  167. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/build.make +0 -76
  168. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/cmake_clean.cmake +0 -8
  169. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/progress.make +0 -1
  170. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/DependInfo.cmake +0 -11
  171. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/build.make +0 -76
  172. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/cmake_clean.cmake +0 -8
  173. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/progress.make +0 -1
  174. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/DependInfo.cmake +0 -11
  175. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/build.make +0 -76
  176. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/cmake_clean.cmake +0 -8
  177. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/progress.make +0 -1
  178. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/DependInfo.cmake +0 -11
  179. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/build.make +0 -76
  180. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/cmake_clean.cmake +0 -8
  181. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/progress.make +0 -1
  182. data/ext/mathematical/mtex2MML/build/CMakeFiles/Makefile.cmake +0 -177
  183. data/ext/mathematical/mtex2MML/build/CMakeFiles/Makefile2 +0 -1033
  184. data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/DependInfo.cmake +0 -11
  185. data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/build.make +0 -76
  186. data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/cmake_clean.cmake +0 -8
  187. data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/progress.make +0 -1
  188. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/DependInfo.cmake +0 -11
  189. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/build.make +0 -76
  190. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/cmake_clean.cmake +0 -8
  191. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/progress.make +0 -1
  192. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/DependInfo.cmake +0 -11
  193. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/build.make +0 -76
  194. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/cmake_clean.cmake +0 -8
  195. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/progress.make +0 -1
  196. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/DependInfo.cmake +0 -11
  197. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/build.make +0 -76
  198. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/cmake_clean.cmake +0 -8
  199. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/progress.make +0 -1
  200. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/DependInfo.cmake +0 -11
  201. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/build.make +0 -76
  202. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/cmake_clean.cmake +0 -8
  203. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/progress.make +0 -1
  204. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/DependInfo.cmake +0 -11
  205. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/build.make +0 -76
  206. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/cmake_clean.cmake +0 -8
  207. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/progress.make +0 -1
  208. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/DependInfo.cmake +0 -11
  209. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/build.make +0 -76
  210. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/cmake_clean.cmake +0 -8
  211. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/progress.make +0 -1
  212. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/DependInfo.cmake +0 -11
  213. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/build.make +0 -76
  214. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/cmake_clean.cmake +0 -8
  215. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/progress.make +0 -1
  216. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/DependInfo.cmake +0 -11
  217. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/build.make +0 -76
  218. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/cmake_clean.cmake +0 -8
  219. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/progress.make +0 -1
  220. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/DependInfo.cmake +0 -11
  221. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/build.make +0 -76
  222. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/cmake_clean.cmake +0 -8
  223. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/progress.make +0 -1
  224. data/ext/mathematical/mtex2MML/build/CMakeFiles/TargetDirectories.txt +0 -41
  225. data/ext/mathematical/mtex2MML/build/CMakeFiles/cmake.check_cache +0 -1
  226. data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/DependInfo.cmake +0 -11
  227. data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/build.make +0 -76
  228. data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/cmake_clean.cmake +0 -8
  229. data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/progress.make +0 -1
  230. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/DependInfo.cmake +0 -44
  231. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/build.make +0 -206
  232. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/cmake_clean.cmake +0 -20
  233. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/depend.make +0 -2
  234. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/flags.make +0 -10
  235. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/link.txt +0 -1
  236. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/progress.make +0 -11
  237. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/C.includecache +0 -244
  238. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/DependInfo.cmake +0 -42
  239. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/build.make +0 -203
  240. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/cmake_clean.cmake +0 -19
  241. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/cmake_clean_target.cmake +0 -3
  242. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.internal +0 -49
  243. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.make +0 -49
  244. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/flags.make +0 -10
  245. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/link.txt +0 -2
  246. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/progress.make +0 -11
  247. data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/DependInfo.cmake +0 -11
  248. data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/build.make +0 -76
  249. data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/cmake_clean.cmake +0 -8
  250. data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/progress.make +0 -1
  251. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/DependInfo.cmake +0 -43
  252. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/build.make +0 -217
  253. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/cmake_clean.cmake +0 -20
  254. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/depend.make +0 -2
  255. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/flags.make +0 -10
  256. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/link.txt +0 -1
  257. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/progress.make +0 -12
  258. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/DependInfo.cmake +0 -59
  259. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/build.make +0 -473
  260. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/cmake_clean.cmake +0 -37
  261. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/depend.make +0 -2
  262. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/flags.make +0 -10
  263. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/link.txt +0 -1
  264. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/progress.make +0 -29
  265. data/ext/mathematical/mtex2MML/build/CMakeFiles/progress.marks +0 -1
  266. data/ext/mathematical/mtex2MML/build/CTestTestfile.cmake +0 -8
  267. data/ext/mathematical/mtex2MML/build/DartConfiguration.tcl +0 -105
  268. data/ext/mathematical/mtex2MML/build/Makefile +0 -1485
  269. data/ext/mathematical/mtex2MML/build/cmake_install.cmake +0 -102
  270. data/ext/mathematical/mtex2MML/build/lexer.c +0 -8903
  271. data/ext/mathematical/mtex2MML/build/libmtex2MML.a +0 -0
  272. data/ext/mathematical/mtex2MML/build/libmtex2MML.pc +0 -10
  273. data/ext/mathematical/mtex2MML/build/mtex2mml_export.h +0 -42
  274. data/ext/mathematical/mtex2MML/build/parser.c +0 -10334
  275. data/ext/mathematical/mtex2MML/build/parser.h +0 -625
  276. data/ext/mathematical/mtex2MML/build/parser.output +0 -120719
  277. data/test/mathematical/basic_test.rb +0 -89
  278. data/test/mathematical/corrections_test.rb +0 -16
  279. data/test/mathematical/delimiters_test.rb +0 -69
  280. data/test/mathematical/fixtures/after/backslashes.html +0 -5
  281. data/test/mathematical/fixtures/after/brackets_display.html +0 -1
  282. data/test/mathematical/fixtures/after/compliance_accents.html +0 -17
  283. data/test/mathematical/fixtures/after/compliance_arrows.html +0 -71
  284. data/test/mathematical/fixtures/after/compliance_colors.html +0 -4
  285. data/test/mathematical/fixtures/after/compliance_greek_letters.html +0 -42
  286. data/test/mathematical/fixtures/after/compliance_large_math.html +0 -19
  287. data/test/mathematical/fixtures/after/compliance_log_symbols.html +0 -34
  288. data/test/mathematical/fixtures/after/compliance_operators.html +0 -262
  289. data/test/mathematical/fixtures/after/dollar_sign_inline.html +0 -1
  290. data/test/mathematical/fixtures/after/equation_display.html +0 -1
  291. data/test/mathematical/fixtures/after/multiple_dollar_inline.html +0 -1
  292. data/test/mathematical/fixtures/after/parens_inline.html +0 -1
  293. data/test/mathematical/fixtures/before/backslashes.text +0 -17
  294. data/test/mathematical/fixtures/before/brackets_display.text +0 -1
  295. data/test/mathematical/fixtures/before/compliance_accents.text +0 -17
  296. data/test/mathematical/fixtures/before/compliance_arrows.text +0 -71
  297. data/test/mathematical/fixtures/before/compliance_colors.text +0 -4
  298. data/test/mathematical/fixtures/before/compliance_greek_letters.text +0 -42
  299. data/test/mathematical/fixtures/before/compliance_large_math.text +0 -19
  300. data/test/mathematical/fixtures/before/compliance_log_symbols.text +0 -34
  301. data/test/mathematical/fixtures/before/compliance_operators.text +0 -262
  302. data/test/mathematical/fixtures/before/dollar_sign_inline.text +0 -1
  303. data/test/mathematical/fixtures/before/equation_display.text +0 -1
  304. data/test/mathematical/fixtures/before/multiple_dollar_inline.text +0 -1
  305. data/test/mathematical/fixtures/before/parens_inline.text +0 -1
  306. data/test/mathematical/fixtures/performance/big_file.text +0 -1755
  307. data/test/mathematical/fixtures/png/numeric_test_1.png +0 -0
  308. data/test/mathematical/fixtures/png/numeric_test_2.png +0 -0
  309. data/test/mathematical/fixtures/png/numeric_test_3.png +0 -0
  310. data/test/mathematical/fixtures/png/pmatrix.png +0 -0
  311. data/test/mathematical/fixtures_test.rb +0 -51
  312. data/test/mathematical/maliciousness_test.rb +0 -152
  313. data/test/mathematical/mathjax_test.rb +0 -26
  314. data/test/mathematical/mathml_test.rb +0 -21
  315. data/test/mathematical/multiples_test.rb +0 -71
  316. data/test/mathematical/performance_test.rb +0 -15
  317. data/test/mathematical/png_test.rb +0 -30
  318. data/test/test_helper.rb +0 -72
@@ -1,75 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3
- "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd"
4
- [
5
- <!ENTITY % local.common.attrib "xmlns:xi CDATA #FIXED 'http://www.w3.org/2003/XInclude'">
6
- ]>
7
- <book id="index">
8
- <bookinfo>
9
- <title>Lasem Reference Manual</title>
10
- <releaseinfo>For lasem 0.4.</releaseinfo>
11
- <legalnotice>
12
- <para>
13
- Permission is granted to copy, distribute and/or modify this
14
- document under the terms of the <citetitle>GNU Free
15
- Documentation License</citetitle>, Version 1.1 or any later
16
- version published by the Free Software Foundation with no
17
- Invariant Sections, no Front-Cover Texts, and no Back-Cover
18
- Texts. You may obtain a copy of the <citetitle>GNU Free
19
- Documentation License</citetitle> from the Free Software
20
- Foundation by visiting <ulink type="http"
21
- url="http://www.fsf.org">their Web site</ulink> or by writing
22
- to:
23
-
24
- <address>
25
- The Free Software Foundation, Inc.,
26
- <street>59 Temple Place</street> - Suite 330,
27
- <city>Boston</city>, <state>MA</state> <postcode>02111-1307</postcode>,
28
- <country>USA</country>
29
- </address>
30
- </para>
31
- </legalnotice>
32
- </bookinfo>
33
-
34
- <xi:include href="xml/lasem-overview.xml"/>
35
-
36
- <part id="aravis-reference">
37
- <title>Lasem reference</title>
38
-
39
- <chapter>
40
- <title>DOM</title>
41
- <xi:include href="xml/lsmdomnode.xml"/>
42
- <xi:include href="xml/lsmdomdocument.xml"/>
43
- <xi:include href="xml/lsmdomelement.xml"/>
44
- <xi:include href="xml/lsmdomcharacterdata.xml"/>
45
- <xi:include href="xml/lsmdomtext.xml"/>
46
- <xi:include href="xml/lsmdomview.xml"/>
47
- <xi:include href="xml/lsmdomnodelist.xml"/>
48
- <xi:include href="xml/lsmdomnamednodemap.xml"/>
49
- <xi:include href="xml/lsmdomdocumentfragment.xml"/>
50
- </chapter>
51
-
52
- <chapter id="object-tree">
53
- <title>Object Hierarchy</title>
54
- <xi:include href="xml/tree_index.sgml"/>
55
- </chapter>
56
-
57
- </part>
58
-
59
- <part>
60
- <title>Appendices</title>
61
- <index id="api-index-full">
62
- <title>API Index</title>
63
- <xi:include href="xml/api-index-full.xml"><xi:fallback /></xi:include>
64
- </index>
65
- <index id="api-index-deprecated">
66
- <title>Index of deprecated symbols</title>
67
- <xi:include href="xml/api-index-deprecated.xml"><xi:fallback/></xi:include>
68
- </index>
69
- <index role="0.4">
70
- <title>Index of new symbols in 0.4</title>
71
- <xi:include href="xml/api-index-0.4.xml"><xi:fallback/></xi:include>
72
- </index>
73
- <xi:include href="xml/annotation-glossary.xml"><xi:fallback /></xi:include>
74
- </part>
75
- </book>
@@ -1,64 +0,0 @@
1
- <part id="lasem-overview">
2
-
3
- <title>Overview</title>
4
-
5
- <para>
6
- Lasem is a GObject based library for the rendering and edition of Mathml and
7
- SVG documents. It supports gobject-introspection,
8
- making it usable directly from Python (<ulink type="http"
9
- url="http://live.gnome.org/PyGI">PyGI</ulink>) , Javascript
10
- (<ulink type="http" url="http://live.gnome.org/Gjs/">Gjs</ulink> or
11
- <ulink type="http" url="http://live.gnome.org/Seed">Seed</ulink>) or
12
- <ulink type="http"
13
- url="http://live.gnome.org/Vala">Vala</ulink>.
14
- </para>
15
-
16
- <chapter id="lasem-building">
17
- <title>Building and debugging Lasem</title>
18
-
19
- <para>
20
- On UNIX, Lasem uses the standard GNU build system, using
21
- <application>autoconf</application> for package configuration
22
- and resolving portability issues,
23
- <application>automake</application> for building makefiles that
24
- comply with the GNU Coding Standards, and
25
- <application>libtool</application> for building shared
26
- libraries on multiple platforms. The normal sequence for
27
- compiling and installing the Lasem library is thus:
28
- <literallayout>
29
- <userinput>./configure</userinput>
30
- <userinput>make</userinput>
31
- <userinput>make install</userinput>
32
- </literallayout>
33
- </para>
34
-
35
- <para>
36
- The standard options provided by <application>GNU
37
- autoconf</application> may be passed to the
38
- <command>configure</command> script. Please see the
39
- <application>autoconf</application> documentation or run
40
- <command>./configure --help</command> for information about the
41
- standard options.
42
- </para>
43
-
44
- <para>
45
- The LSM_DEBUG environment variable can be set to a colon
46
- separated list of debugging domains, which will make Lasem
47
- print out different types of debugging informations to the
48
- console. For example, the following command before running an
49
- Lasem based application will make Lasem print out DOM
50
- related informations:
51
- <literallayout>
52
- <userinput>export LSM_DEBUG=dom</userinput>
53
- </literallayout>
54
- </para>
55
-
56
- </chapter>
57
-
58
- <chapter id="lasem-fonts">
59
- <title>Required fonts</title>
60
- For the Mathml rendering, the following ttf fonts should be installed: cmr10, cmmi10, cmex10 and cmsy10.
61
- They are provided by the lyx-fonts package in fedora, and the ttf-lyx package in debian/ubuntu.
62
- </chapter>
63
-
64
- </part>
@@ -1,213 +0,0 @@
1
- <SECTION>
2
- <FILE>lsmdomtext</FILE>
3
- <TITLE>LsmDomText</TITLE>
4
- lsm_dom_text_new
5
- <SUBSECTION Standard>
6
- LsmDomText
7
- LsmDomTextClass
8
- LSM_DOM_TEXT
9
- LSM_IS_DOM_TEXT
10
- LSM_TYPE_DOM_TEXT
11
- lsm_dom_text_get_type
12
- LSM_DOM_TEXT_CLASS
13
- LSM_IS_DOM_TEXT_CLASS
14
- LSM_DOM_TEXT_GET_CLASS
15
- </SECTION>
16
-
17
- <SECTION>
18
- <FILE>lsmdomnode</FILE>
19
- <TITLE>LsmDomNode</TITLE>
20
- lsm_dom_node_get_node_name
21
- lsm_dom_node_get_node_value
22
- lsm_dom_node_set_node_value
23
- lsm_dom_node_get_node_type
24
- lsm_dom_node_get_parent_node
25
- lsm_dom_node_get_child_nodes
26
- lsm_dom_node_get_first_child
27
- lsm_dom_node_get_last_child
28
- lsm_dom_node_get_previous_sibling
29
- lsm_dom_node_get_next_sibling
30
- lsm_dom_node_get_attributes
31
- lsm_dom_node_insert_before
32
- lsm_dom_node_replace_child
33
- lsm_dom_node_append_child
34
- lsm_dom_node_remove_child
35
- lsm_dom_node_has_child_nodes
36
- lsm_dom_node_changed
37
- lsm_dom_node_get_owner_document
38
- <SUBSECTION Standard>
39
- LsmDomNode
40
- LsmDomNodeType
41
- LsmDomNodeClass
42
- LSM_DOM_NODE
43
- LSM_IS_DOM_NODE
44
- LSM_TYPE_DOM_NODE
45
- lsm_dom_node_get_type
46
- LSM_DOM_NODE_CLASS
47
- LSM_IS_DOM_NODE_CLASS
48
- LSM_DOM_NODE_GET_CLASS
49
- <SUBSECTION Private>
50
- lsm_dom_node_write_to_stream
51
- </SECTION>
52
-
53
- <SECTION>
54
- <FILE>lsmdomnodelist</FILE>
55
- <TITLE>LsmDomNodeList</TITLE>
56
- lsm_dom_node_list_get_item
57
- lsm_dom_node_list_get_length
58
- lsm_dom_node_list_get_type
59
- <SUBSECTION Standard>
60
- LsmDomNodeList
61
- LsmDomNodeListClass
62
- LSM_DOM_NODE_LIST
63
- LSM_DOM_NODE_LIST_CLASS
64
- LSM_DOM_NODE_LIST_GET_CLASS
65
- LSM_IS_DOM_NODE_LIST
66
- LSM_IS_DOM_NODE_LIST_CLASS
67
- LSM_TYPE_DOM_NODE_LIST
68
- </SECTION>
69
-
70
- <SECTION>
71
- <FILE>lsmdomnamednodemap</FILE>
72
- <TITLE>LsmDomNamedNodeMap</TITLE>
73
- lsm_dom_named_node_map_get_item
74
- lsm_dom_named_node_map_get_length
75
- lsm_dom_named_node_map_get_named_item
76
- lsm_dom_named_node_map_set_named_item
77
- lsm_dom_named_node_map_remove_named_item
78
- <SUBSECTION Standard>
79
- LSM_DOM_NAMED_NODE_MAP
80
- LSM_DOM_NAMED_NODE_MAP_CLASS
81
- LSM_DOM_NAMED_NODE_MAP_GET_CLASS
82
- LSM_IS_DOM_NAMED_NODE_MAP
83
- LSM_IS_DOM_NAMED_NODE_MAP_CLASS
84
- LSM_TYPE_DOM_NAMED_NODE_MAP
85
- LsmDomNamedNodeMap
86
- LsmDomNamedNodeMapClass
87
- lsm_dom_named_node_map_get_type
88
- </SECTION>
89
-
90
- <SECTION>
91
- <FILE>lsmdomdocument</FILE>
92
- <TITLE>LsmDomDocument</TITLE>
93
- LsmDomDocumentCreateFunction
94
- lsm_dom_implementation_create_document
95
- lsm_dom_implementation_cleanup
96
- lsm_dom_document_append_from_memory
97
- lsm_dom_document_new_from_memory
98
- lsm_dom_document_new_from_path
99
- lsm_dom_document_new_from_url
100
- lsm_dom_document_save_to_stream
101
- lsm_dom_document_save_to_memory
102
- lsm_dom_document_save_to_path
103
- lsm_dom_document_save_to_url
104
- lsm_dom_document_get_document_element
105
- lsm_dom_document_create_element
106
- lsm_dom_document_create_text_node
107
- lsm_dom_document_create_view
108
- lsm_dom_document_get_url
109
- lsm_dom_document_set_url
110
- lsm_dom_document_set_path
111
- lsm_dom_document_get_href_data
112
- lsm_dom_get_entity
113
- <SUBSECTION Standard>
114
- LsmDomDocument
115
- LsmDomDocumentClass
116
- LSM_DOM_DOCUMENT
117
- LSM_IS_DOM_DOCUMENT
118
- LSM_TYPE_DOM_DOCUMENT
119
- lsm_dom_document_get_type
120
- LSM_DOM_DOCUMENT_CLASS
121
- LSM_IS_DOM_DOCUMENT_CLASS
122
- LSM_DOM_DOCUMENT_GET_CLASS
123
- <SUBSECTION Private>
124
- LsmDomDocumentError
125
- </SECTION>
126
-
127
- <SECTION>
128
- <FILE>lsmdomdocumentfragment</FILE>
129
- <TITLE>LsmDomDocumentFragment</TITLE>
130
- lsm_dom_document_fragment_new
131
- <SUBSECTION Standard>
132
- LSM_DOM_DOCUMENT_FRAGMENT
133
- LSM_DOM_DOCUMENT_FRAGMENT_CLASS
134
- LSM_DOM_DOCUMENT_FRAGMENT_GET_CLASS
135
- LSM_IS_DOM_DOCUMENT_FRAGMENT
136
- LSM_IS_DOM_DOCUMENT_FRAGMENT_CLASS
137
- LSM_TYPE_DOM_DOCUMENT_FRAGMENT
138
- LsmDomDocumentFragment
139
- LsmDomDocumentFragmentClass
140
- lsm_dom_document_fragment_get_type
141
- </SECTION>
142
-
143
- <SECTION>
144
- <FILE>lsmdomelement</FILE>
145
- <TITLE>LsmDomElement</TITLE>
146
- lsm_dom_element_get_tag_name
147
- lsm_dom_element_get_attribute
148
- lsm_dom_element_set_attribute
149
- <SUBSECTION Standard>
150
- LsmDomElement
151
- LsmDomElementClass
152
- LSM_DOM_ELEMENT
153
- LSM_IS_DOM_ELEMENT
154
- LSM_TYPE_DOM_ELEMENT
155
- lsm_dom_element_get_type
156
- LSM_DOM_ELEMENT_CLASS
157
- LSM_IS_DOM_ELEMENT_CLASS
158
- LSM_DOM_ELEMENT_GET_CLASS
159
- </SECTION>
160
-
161
- <SECTION>
162
- <FILE>lsmdomview</FILE>
163
- <TITLE>LsmDomView</TITLE>
164
- lsm_dom_view_get_resolution
165
- lsm_dom_view_get_viewport
166
- lsm_dom_view_get_viewport_pixels
167
- lsm_dom_view_set_resolution
168
- lsm_dom_view_set_viewport
169
- lsm_dom_view_set_viewport_pixels
170
- lsm_dom_view_render
171
- lsm_dom_view_get_size
172
- lsm_dom_view_get_size_pixels
173
- lsm_dom_view_set_debug
174
- <SUBSECTION Standard>
175
- LsmDomView
176
- LsmDomViewClass
177
- LSM_DOM_VIEW
178
- LSM_IS_DOM_VIEW
179
- LSM_TYPE_DOM_VIEW
180
- lsm_dom_view_get_type
181
- LSM_DOM_VIEW_CLASS
182
- LSM_IS_DOM_VIEW_CLASS
183
- LSM_DOM_VIEW_GET_CLASS
184
- <SUBSECTION Private>
185
- LSM_DOM_VIEW_DEFAULT_RESOLUTION
186
- LSM_DOM_VIEW_DEFAULT_VIEWBOX_HEIGHT
187
- LSM_DOM_VIEW_DEFAULT_VIEWBOX_WIDTH
188
- lsm_dom_view_set_document
189
- LSM_TYPE_BOX
190
- LSM_TYPE_EXTENTS
191
- LsmBox
192
- LsmExtents
193
- lsm_box_get_type
194
- lsm_extents_get_type
195
- </SECTION>
196
-
197
- <SECTION>
198
- <FILE>lsmdomcharacterdata</FILE>
199
- <TITLE>LsmDomCharacterData</TITLE>
200
- lsm_dom_character_data_get_data
201
- lsm_dom_character_data_set_data
202
- <SUBSECTION Standard>
203
- LsmDomCharacterData
204
- LsmDomCharacterDataClass
205
- LSM_DOM_CHARACTER_DATA
206
- LSM_IS_DOM_CHARACTER_DATA
207
- LSM_TYPE_DOM_CHARACTER_DATA
208
- lsm_dom_character_data_get_type
209
- LSM_DOM_CHARACTER_DATA_CLASS
210
- LSM_IS_DOM_CHARACTER_DATA_CLASS
211
- LSM_DOM_CHARACTER_DATA_GET_CLASS
212
- </SECTION>
213
-
@@ -1,110 +0,0 @@
1
- lsm_dom_character_data_get_type
2
- lsm_dom_document_get_type
3
- lsm_dom_element_get_type
4
- lsm_dom_node_get_type
5
- lsm_dom_node_type_get_type
6
- lsm_dom_text_get_type
7
- lsm_dom_view_get_type
8
- lsm_mathml_action_element_get_type
9
- lsm_mathml_align_group_element_get_type
10
- lsm_mathml_align_mark_element_get_type
11
- lsm_mathml_color_get_type
12
- lsm_mathml_column_align_get_type
13
- lsm_mathml_css_type_get_type
14
- lsm_mathml_display_get_type
15
- lsm_mathml_document_get_type
16
- lsm_mathml_element_get_type
17
- lsm_mathml_error_element_get_type
18
- lsm_mathml_fenced_element_get_type
19
- lsm_mathml_font_get_type
20
- lsm_mathml_font_style_get_type
21
- lsm_mathml_font_weight_get_type
22
- lsm_mathml_form_get_type
23
- lsm_mathml_fraction_element_get_type
24
- lsm_mathml_glyph_flags_get_type
25
- lsm_mathml_itex_element_get_type
26
- lsm_mathml_length_get_type
27
- lsm_mathml_line_get_type
28
- lsm_mathml_math_element_get_type
29
- lsm_mathml_mode_get_type
30
- lsm_mathml_operator_element_get_type
31
- lsm_mathml_padded_element_get_type
32
- lsm_mathml_phantom_element_get_type
33
- lsm_mathml_presentation_container_get_type
34
- lsm_mathml_presentation_token_get_type
35
- lsm_mathml_presentation_token_type_get_type
36
- lsm_mathml_radical_element_get_type
37
- lsm_mathml_radical_element_type_get_type
38
- lsm_mathml_row_align_get_type
39
- lsm_mathml_row_element_get_type
40
- lsm_mathml_script_element_get_type
41
- lsm_mathml_script_element_type_get_type
42
- lsm_mathml_script_level_sign_get_type
43
- lsm_mathml_space_element_get_type
44
- lsm_mathml_space_get_type
45
- lsm_mathml_space_name_get_type
46
- lsm_mathml_string_element_get_type
47
- lsm_mathml_style_element_get_type
48
- lsm_mathml_style_get_type
49
- lsm_mathml_table_cell_element_get_type
50
- lsm_mathml_table_element_get_type
51
- lsm_mathml_table_row_element_get_type
52
- lsm_mathml_table_row_element_type_get_type
53
- lsm_mathml_under_over_element_get_type
54
- lsm_mathml_under_over_element_type_get_type
55
- lsm_mathml_unit_get_type
56
- lsm_mathml_variant_get_type
57
- lsm_mathml_view_get_type
58
- lsm_svg_align_get_type
59
- lsm_svg_angle_type_get_type
60
- lsm_svg_circle_element_get_type
61
- lsm_svg_clip_path_element_get_type
62
- lsm_svg_comp_op_get_type
63
- lsm_svg_defs_element_get_type
64
- lsm_svg_display_get_type
65
- lsm_svg_document_get_type
66
- lsm_svg_element_category_get_type
67
- lsm_svg_element_get_type
68
- lsm_svg_ellipse_element_get_type
69
- lsm_svg_fill_rule_get_type
70
- lsm_svg_filter_element_get_type
71
- lsm_svg_filter_gaussian_blur_get_type
72
- lsm_svg_filter_input_get_type
73
- lsm_svg_filter_primitive_get_type
74
- lsm_svg_font_stretch_get_type
75
- lsm_svg_font_style_get_type
76
- lsm_svg_font_weight_get_type
77
- lsm_svg_g_element_get_type
78
- lsm_svg_gradient_element_get_type
79
- lsm_svg_image_element_get_type
80
- lsm_svg_length_direction_get_type
81
- lsm_svg_length_type_get_type
82
- lsm_svg_line_cap_get_type
83
- lsm_svg_line_element_get_type
84
- lsm_svg_line_join_get_type
85
- lsm_svg_linear_gradient_element_get_type
86
- lsm_svg_marker_element_get_type
87
- lsm_svg_marker_units_get_type
88
- lsm_svg_mask_element_get_type
89
- lsm_svg_matrix_flags_get_type
90
- lsm_svg_meet_or_slice_get_type
91
- lsm_svg_paint_type_get_type
92
- lsm_svg_path_element_get_type
93
- lsm_svg_pattern_element_get_type
94
- lsm_svg_pattern_units_get_type
95
- lsm_svg_polygon_element_get_type
96
- lsm_svg_polyline_element_get_type
97
- lsm_svg_radial_gradient_element_get_type
98
- lsm_svg_rect_element_get_type
99
- lsm_svg_spread_method_get_type
100
- lsm_svg_stop_element_get_type
101
- lsm_svg_svg_element_get_type
102
- lsm_svg_symbol_element_get_type
103
- lsm_svg_text_anchor_get_type
104
- lsm_svg_text_element_get_type
105
- lsm_svg_transform_type_get_type
106
- lsm_svg_tspan_element_get_type
107
- lsm_svg_use_element_get_type
108
- lsm_svg_view_get_type
109
- lsm_svg_view_surface_type_get_type
110
- lsm_svg_visibility_get_type
@@ -1,37 +0,0 @@
1
- include $(top_srcdir)/Makefile.decl
2
-
3
- noinst_LTLIBRARIES = libitex2mml.la
4
-
5
- AM_CPPFLAGS =
6
-
7
- LEX_YY_C = lex.yy.c
8
- Y_TAB_C = y.tab.c
9
- Y_TAB_H = y.tab.h
10
-
11
- libitex2mml_la_SOURCES = \
12
- itex2MML.h \
13
- $(LEX_YY_C) \
14
- $(Y_TAB_C) \
15
- $(Y_TAB_H)
16
-
17
- YYPREFIX=itex2MML_yy
18
-
19
- BUILT_SOURCES = \
20
- $(LEX_YY_C) \
21
- $(Y_TAB_C)
22
-
23
- EXTRA_DIST = \
24
- itex2MML.l \
25
- itex2MML.y \
26
- README.itex2MML \
27
- COPYING.itex2MML
28
-
29
- DISTCLEANFILES = \
30
- $(BUILT_SOURCES) \
31
- $(Y_TAB_H)
32
-
33
- $(Y_TAB_C): itex2MML.y
34
- $(YACC) -v -p $(YYPREFIX) -d $<
35
-
36
- $(LEX_YY_C): itex2MML.l
37
- $(LEX) -P$(YYPREFIX) -o$@ $<
@@ -1,11 +0,0 @@
1
- prefix=@prefix@
2
- exec_prefix=@exec_prefix@
3
- libdir=@libdir@
4
- includedir=@includedir@
5
-
6
- Name: Lasem
7
- Description: SVG and MathML rendering library
8
- Version: @VERSION@
9
- Requires: glib-2.0 gobject-2.0 cairo >= 1.2 pangocairo libxml-2.0 gdk-pixbuf-2.0
10
- Libs: -L${libdir} -llasem-@LASEM_API_VERSION@
11
- Cflags: -I${includedir}/lasem-@LASEM_API_VERSION@
@@ -1,96 +0,0 @@
1
- dnl -*- mode: autoconf -*-
2
- dnl Copyright 2009 Johan Dahlin
3
- dnl
4
- dnl This file is free software; the author(s) gives unlimited
5
- dnl permission to copy and/or distribute it, with or without
6
- dnl modifications, as long as this notice is preserved.
7
- dnl
8
-
9
- # serial 1
10
-
11
- m4_define([_GOBJECT_INTROSPECTION_CHECK_INTERNAL],
12
- [
13
- AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first
14
- AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first
15
- AC_BEFORE([LT_INIT],[$0])dnl setup libtool first
16
-
17
- dnl enable/disable introspection
18
- m4_if([$2], [require],
19
- [dnl
20
- enable_introspection=yes
21
- ],[dnl
22
- AC_ARG_ENABLE(introspection,
23
- AS_HELP_STRING([--enable-introspection[=@<:@no/auto/yes@:>@]],
24
- [Enable introspection for this build]),,
25
- [enable_introspection=auto])
26
- ])dnl
27
-
28
- AC_MSG_CHECKING([for gobject-introspection])
29
-
30
- dnl presence/version checking
31
- AS_CASE([$enable_introspection],
32
- [no], [dnl
33
- found_introspection="no (disabled, use --enable-introspection to enable)"
34
- ],dnl
35
- [yes],[dnl
36
- PKG_CHECK_EXISTS([gobject-introspection-1.0],,
37
- AC_MSG_ERROR([gobject-introspection-1.0 is not installed]))
38
- PKG_CHECK_EXISTS([gobject-introspection-1.0 >= $1],
39
- found_introspection=yes,
40
- AC_MSG_ERROR([You need to have gobject-introspection >= $1 installed to build AC_PACKAGE_NAME]))
41
- ],dnl
42
- [auto],[dnl
43
- PKG_CHECK_EXISTS([gobject-introspection-1.0 >= $1], found_introspection=yes, found_introspection=no)
44
- dnl Canonicalize enable_introspection
45
- enable_introspection=$found_introspection
46
- ],dnl
47
- [dnl
48
- AC_MSG_ERROR([invalid argument passed to --enable-introspection, should be one of @<:@no/auto/yes@:>@])
49
- ])dnl
50
-
51
- AC_MSG_RESULT([$found_introspection])
52
-
53
- INTROSPECTION_SCANNER=
54
- INTROSPECTION_COMPILER=
55
- INTROSPECTION_GENERATE=
56
- INTROSPECTION_GIRDIR=
57
- INTROSPECTION_TYPELIBDIR=
58
- if test "x$found_introspection" = "xyes"; then
59
- INTROSPECTION_SCANNER=`$PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0`
60
- INTROSPECTION_COMPILER=`$PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0`
61
- INTROSPECTION_GENERATE=`$PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0`
62
- INTROSPECTION_GIRDIR=`$PKG_CONFIG --variable=girdir gobject-introspection-1.0`
63
- INTROSPECTION_TYPELIBDIR="$($PKG_CONFIG --variable=typelibdir gobject-introspection-1.0)"
64
- INTROSPECTION_CFLAGS=`$PKG_CONFIG --cflags gobject-introspection-1.0`
65
- INTROSPECTION_LIBS=`$PKG_CONFIG --libs gobject-introspection-1.0`
66
- INTROSPECTION_MAKEFILE=`$PKG_CONFIG --variable=datadir gobject-introspection-1.0`/gobject-introspection-1.0/Makefile.introspection
67
- fi
68
- AC_SUBST(INTROSPECTION_SCANNER)
69
- AC_SUBST(INTROSPECTION_COMPILER)
70
- AC_SUBST(INTROSPECTION_GENERATE)
71
- AC_SUBST(INTROSPECTION_GIRDIR)
72
- AC_SUBST(INTROSPECTION_TYPELIBDIR)
73
- AC_SUBST(INTROSPECTION_CFLAGS)
74
- AC_SUBST(INTROSPECTION_LIBS)
75
- AC_SUBST(INTROSPECTION_MAKEFILE)
76
-
77
- AM_CONDITIONAL(HAVE_INTROSPECTION, test "x$found_introspection" = "xyes")
78
- ])
79
-
80
-
81
- dnl Usage:
82
- dnl GOBJECT_INTROSPECTION_CHECK([minimum-g-i-version])
83
-
84
- AC_DEFUN([GOBJECT_INTROSPECTION_CHECK],
85
- [
86
- _GOBJECT_INTROSPECTION_CHECK_INTERNAL([$1])
87
- ])
88
-
89
- dnl Usage:
90
- dnl GOBJECT_INTROSPECTION_REQUIRE([minimum-g-i-version])
91
-
92
-
93
- AC_DEFUN([GOBJECT_INTROSPECTION_REQUIRE],
94
- [
95
- _GOBJECT_INTROSPECTION_CHECK_INTERNAL([$1], [require])
96
- ])
File without changes
@@ -1,64 +0,0 @@
1
- # Romanian translation for lasem.
2
- # Copyright (C) 2019 lasem's COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the lasem package.
4
- # Florentina Mușat <florentina.musat.28@gmail.com>, 2019.
5
- #
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: lasem lasem-0-4\n"
9
- "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/lasem/issues\n"
10
- "POT-Creation-Date: 2019-05-24 09:20+0000\n"
11
- "PO-Revision-Date: 2019-08-19 12:00+0300\n"
12
- "Language-Team: Romanian <gnomero-list@lists.sourceforge.net>\n"
13
- "Language: ro\n"
14
- "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=UTF-8\n"
16
- "Content-Transfer-Encoding: 8bit\n"
17
- "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n"
18
- "Last-Translator: Florentina Mușat <florentina.musat.28 [at] gmail [dot] com>\n"
19
- "X-Generator: Poedit 2.2.3\n"
20
-
21
- #: ../src/lasemrender.c:67
22
- msgid "Output filename"
23
- msgstr "Nume de fișier de ieșire"
24
-
25
- #: ../src/lasemrender.c:69
26
- msgid "Output format"
27
- msgstr "Format de ieșire"
28
-
29
- #: ../src/lasemrender.c:71
30
- msgid "Pixel per inch"
31
- msgstr "Pixel per inci"
32
-
33
- #: ../src/lasemrender.c:73
34
- msgid "Zoom"
35
- msgstr "Focalizare"
36
-
37
- #: ../src/lasemrender.c:75
38
- msgid "Debug domains"
39
- msgstr "Domenii de depanare"
40
-
41
- #: ../src/lasemrender.c:107
42
- #, c-format
43
- msgid "Option parsing failed: %s\n"
44
- msgstr "Parsarea opțiunilor a eșuat: %s\n"
45
-
46
- #: ../src/lasemrender.c:114
47
- #, c-format
48
- msgid "Invalid zoom value"
49
- msgstr "Valoare de focalizare nevalidă"
50
-
51
- #: ../src/lasemrender.c:121
52
- #, c-format
53
- msgid "One input file name is required\n"
54
- msgstr "Un nume de fișier de intrare este necesar\n"
55
-
56
- #: ../src/lasemrender.c:132
57
- #, c-format
58
- msgid "Unknown format: %s\n"
59
- msgstr "Format necunoscut: %s\n"
60
-
61
- #: ../src/lasemrender.c:257
62
- #, c-format
63
- msgid "Can't load '%s'\n"
64
- msgstr "Nu se poate încărca „%s”\n"