mathematical 1.5.0 → 1.5.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +27 -0
- data/Rakefile +5 -9
- data/ext/README.md +21 -0
- data/ext/mathematical/CMakeLists.txt +76 -0
- data/ext/mathematical/FindNewerRubies.cmake +292 -0
- data/ext/mathematical/FindPackageHandleStandardArgs.cmake +58 -0
- data/ext/mathematical/extconf.rb +38 -18
- data/ext/mathematical/lasem/AUTHORS +1 -0
- data/ext/mathematical/lasem/COPYING +482 -0
- data/ext/mathematical/lasem/{docs/reference/lasem/lasem-overrides.txt → ChangeLog} +0 -0
- data/ext/mathematical/lasem/MAINTAINERS +3 -0
- data/ext/mathematical/lasem/Makefile.am +34 -0
- data/ext/mathematical/lasem/Makefile.decl +57 -0
- data/ext/mathematical/lasem/NEWS +117 -0
- data/ext/mathematical/lasem/README +28 -0
- data/ext/mathematical/lasem/RELEASING +85 -0
- data/ext/mathematical/lasem/TODO +50 -0
- data/ext/mathematical/lasem/autogen.sh +177 -0
- data/ext/mathematical/lasem/configure.ac +139 -0
- data/ext/mathematical/lasem/docs/Makefile.am +14 -0
- data/ext/mathematical/lasem/docs/lasem-render-0.6.1 +106 -0
- data/ext/mathematical/lasem/docs/reference/Makefile.am +3 -0
- data/ext/mathematical/lasem/docs/reference/lasem/Makefile.am +205 -0
- data/ext/mathematical/lasem/docs/reference/lasem/lasem-docs.xml +75 -0
- data/ext/mathematical/lasem/docs/reference/lasem/lasem-overview.xml +64 -0
- data/ext/mathematical/lasem/docs/reference/lasem/lasem.types +110 -0
- data/ext/mathematical/lasem/itex2mml/COPYING.itex2MML +3 -0
- data/ext/mathematical/lasem/itex2mml/Makefile.am +37 -0
- data/ext/mathematical/lasem/itex2mml/README.itex2MML +13 -0
- data/ext/mathematical/lasem/lasem.doap +21 -0
- data/ext/mathematical/lasem/m4/introspection.m4 +96 -0
- data/ext/mathematical/lasem/po/ChangeLog +0 -0
- data/ext/mathematical/lasem/po/LINGUAS +28 -0
- data/ext/mathematical/lasem/po/POTFILES.in +195 -0
- data/ext/mathematical/lasem/po/POTFILES.skip +1 -0
- data/ext/mathematical/lasem/po/bs.po +65 -0
- data/ext/mathematical/lasem/po/cs.po +70 -0
- data/ext/mathematical/lasem/po/de.po +68 -0
- data/ext/mathematical/lasem/po/el.po +73 -0
- data/ext/mathematical/lasem/po/es.po +78 -0
- data/ext/mathematical/lasem/po/eu.po +66 -0
- data/ext/mathematical/lasem/po/fr.po +65 -0
- data/ext/mathematical/lasem/po/gl.po +64 -0
- data/ext/mathematical/lasem/po/hu.po +76 -0
- data/ext/mathematical/lasem/po/id.po +69 -0
- data/ext/mathematical/lasem/po/it.po +64 -0
- data/ext/mathematical/lasem/po/lt.po +77 -0
- data/ext/mathematical/lasem/po/lv.po +66 -0
- data/ext/mathematical/lasem/po/nb.po +62 -0
- data/ext/mathematical/lasem/po/oc.po +65 -0
- data/ext/mathematical/lasem/po/pl.po +73 -0
- data/ext/mathematical/lasem/po/pt.po +77 -0
- data/ext/mathematical/lasem/po/pt_BR.po +64 -0
- data/ext/mathematical/lasem/po/ru.po +66 -0
- data/ext/mathematical/lasem/po/sl.po +68 -0
- data/ext/mathematical/lasem/po/sr.po +65 -0
- data/ext/mathematical/lasem/po/sr@latin.po +65 -0
- data/ext/mathematical/lasem/po/sv.po +72 -0
- data/ext/mathematical/lasem/po/tg.po +64 -0
- data/ext/mathematical/lasem/po/tr.po +65 -0
- data/ext/mathematical/lasem/po/zh_CN.po +63 -0
- data/ext/mathematical/lasem/src/Makefile.am +349 -0
- data/ext/mathematical/lasem/src/lsmdomenumtypes.c.template +39 -0
- data/ext/mathematical/lasem/src/lsmdomenumtypes.h.template +26 -0
- data/ext/mathematical/lasem/src/lsmitex.c +0 -1
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.c.template +39 -0
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.h.template +26 -0
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.c.template +39 -0
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.h.template +26 -0
- data/ext/mathematical/lasem/tests/Makefile.am +34 -0
- data/ext/mathematical/lasem/tests/data/mathml/gtkmathview/README +5 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction-02.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction-03-inline.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction-03.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/integrals/closed.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/integrals/multiples.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/integrals/standard.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/matrices/matrix-01.tex +5 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/cases-cr.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/cases-space.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/cases.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/color.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/complex-2.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/complex-inline.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/complex.tex +7 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/quadratic-inline.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/misc/quadratic.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/radicals/radical-01.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/radicals/radical-02.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/accents.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/script.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/stack.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/subscript.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/sums-inline.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/sums.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/superscript-inline.tex +1 -0
- data/ext/mathematical/lasem/tests/data/mathml/tex/scripts/superscript.tex +1 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/bmpCursor.bmp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/brushedMetal.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/jpeg.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/jpegCursor.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/operaBridge.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/operaSteps.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/operaWalk.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors_pb.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors_pb_tile.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/sm_colors_tile.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/tde.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/batik/resources/images/tiffCursor.tif +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.1/images/image1.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.1/images/struct-image-01.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.1/images/struct-image-02.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/CNN.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/SVG-1.1-monolithic-fixed.dtd +1622 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/TraitAccess.common.es +672 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/advice.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/beep.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/boing_x.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/clock.mp4 +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud-ps411q4app.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q25s.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q65float.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q75o.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q75p.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud411q75s.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloud444q65o.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloudgsq75s.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloudoddq65o.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/cloudqllo.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/copyright-documents-19990405.html +89 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/disco.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/dogandball.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/dogandball.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/dogandball.mov +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/duckfeeding.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/duckfeeding.mov +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/excuse_me.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/externalscript.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton1.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton2.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton3.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/greentopbutton4.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/heroesLanding.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/image1.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/image2_b.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/myimage.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pacman.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/plant.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image0.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image1.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image2.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image3.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image4.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image5.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image6.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image7.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image8.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/pref_image9.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script1.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script10.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script2.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script3.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script4.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script5.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script6.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script7.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script8.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/script9.js +1 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/skier.3gp +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/skier.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/struct-image-01.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/struct-image-02.jpg +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/svgRef4.css +4 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/welcome.wav +0 -0
- data/ext/mathematical/lasem/tests/data/svg/svg1.2/images/xmltree.xml +4 -0
- data/ext/mathematical/lasem/tests/fuzztest.sh +12 -0
- data/ext/mathematical/lasem/tests/suite.ini +27 -0
- data/ext/mathematical/lasem/tools/change-license +3 -0
- data/ext/mathematical/lasem/tools/charlist.dtd +73 -0
- data/ext/mathematical/lasem/tools/entities-to-c.xsl +1067 -0
- data/ext/mathematical/lasem/tools/fuzzxml +243 -0
- data/ext/mathematical/lasem/tools/unicode.xml +44303 -0
- data/ext/mathematical/lasem_overrides.c +25 -4
- data/ext/mathematical/lasem_overrides.h +5 -0
- data/ext/mathematical/lib/liblasem.dylib +0 -0
- data/ext/mathematical/mtex2MML/CONTRIBUTING.md +22 -0
- data/ext/mathematical/mtex2MML/README.md +143 -0
- data/ext/mathematical/mtex2MML/SUPPORTED.md +1214 -0
- data/ext/mathematical/mtex2MML/appveyor.yml +25 -0
- data/ext/mathematical/mtex2MML/build.ps1 +2 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CMakeDetermineCompilerABI_C.bin +0 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CMakeDetermineCompilerABI_CXX.bin +0 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CompilerIdC/a.out +0 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CompilerIdCXX/CMakeCXXCompilerId.cpp +375 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/2.8.10.1/CompilerIdCXX/a.out +0 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeOutput.log +208 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Makefile2 +1137 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/cmake.check_cache +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/build.make +253 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/depend.make +2 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/flags.make +8 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/progress.make +9 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/C.includecache +148 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/build.make +251 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.internal +48 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.make +48 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/flags.make +8 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/progress.make +9 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/build.make +69 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/progress.make +1 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/build.make +276 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/depend.make +2 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/flags.make +8 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/progress.make +10 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/build.make +683 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/depend.make +2 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/flags.make +8 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/progress.make +26 -0
- data/ext/mathematical/mtex2MML/build/CMakeFiles/progress.marks +1 -0
- data/ext/mathematical/mtex2MML/build/DartConfiguration.tcl +94 -0
- data/ext/mathematical/mtex2MML/build/libmtex2MML.pc +10 -0
- data/ext/mathematical/mtex2MML/build/parser.output +117661 -0
- data/ext/mathematical/mtex2MML/deps/strdup/package.json +12 -0
- data/ext/mathematical/mtex2MML/deps/uthash/package.json +26 -0
- data/ext/mathematical/mtex2MML/script/bootstrap +30 -0
- data/ext/mathematical/mtex2MML/script/cibuild +11 -0
- data/ext/mathematical/mtex2MML/script/release +27 -0
- data/ext/mathematical/mtex2MML/src/y.output +117655 -0
- data/ext/mathematical/mtex2MML/tests/debug/mtex2MML_debug.cc +21 -0
- data/ext/mathematical/mtex2MML/tests/deps/file2str/package.json +9 -0
- data/ext/mathematical/mtex2MML/tests/deps/trim/package.json +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/amscd-1.html +86 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/amscd-2.html +148 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/amscd-3.html +188 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/arrows-2.html +156 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/min-1.html +45 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/AMScd/min-2.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/accents-1.html +16 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/accents-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/accents-3.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/buildrel-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/issue490.html +0 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/issue877.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/issue937.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/overbrace-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/overbracket-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/overset-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/sideset-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/stackrel-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/subarray-1.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/substack-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/underbrace-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/underbracket-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/above-below/underset-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/action/mathtip-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/action/texttip-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/action/toggle-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/Newextarrow-1.html +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-1.html +34 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-2.html +30 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-3.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-4.html +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/arrows/arrows-5.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathbin-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathinner-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathop-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathop-1b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathop-2.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathopenclose-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathord-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathpunct-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/atoms/mathrel-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/backslashed-1.html +16 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/basic-operators-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/basic-operators-2.html +25 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/basic-operators/remap-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/color-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/colorbox-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/definecolor-1.html +37 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/definecolor-2.html +79 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/fcolorbox-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/issue446.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/colors/namedcolors-1.html +70 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/big-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/big-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/big-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/delimiters-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/delimiters-2.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue775.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-1a.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-1b.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-2.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-3.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-4.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/issue776-5.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/delimiters/left-right-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/align-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/align-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/alignat-1a.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/alignat-1b.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/aligned-1.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/aligned-2.html +14 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/alignedat-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqalign-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqalignno-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqnarray-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqnarray-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/eqnarray-2.html +64 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/equation-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/equation-2.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gather-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gather-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gathered-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/gathered-2.html +12 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-1a.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-1b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-2a.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-2b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-3a.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/issue982-3b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/leqalignno-1.html +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/multline-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/multline-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/environments/split-1.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/errors/noErrors-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/errors/noUndefined-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/above-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/abovewithdelims-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/atop-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/atopwithdelims-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/binom-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/brace-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/brack-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/cfrac-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/choose-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/dbinom-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/dfrac-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/frac-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/frac-1b.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/genfrac-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/issue969.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/overwithdelims-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/tbinom-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/frac/tfrac-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue1152-1.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue1152-2.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue375.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue856.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1a.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1b.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1c.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/issues/issue901-1d.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/boxes-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/kern-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/kern-1b.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/llap-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/lower-1.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/mathstrut-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/moveleft-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/moveright-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/newline-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/phantom-1.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/raise-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/rlap-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/shove-1.html +19 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/skip-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/skip-1b.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/smash-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/spaces-1.html +18 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/strut-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/layout/vcenter-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-1.html +32 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-2.html +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-3.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/greek-4.html +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/letters/hebrew-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/begingroup-1.html +15 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/def-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/let-1.html +14 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-2.html +25 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-3.html +50 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-5.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-6.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/macro/macro-7.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/Bbb-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/bf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/boldsymbol-1.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/cal-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/frak-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/it-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbb-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbf-1a.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbf-1b.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathbf-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathcal-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathfrak-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathit-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathrm-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathscr-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathsf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mathtt-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/mit-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/pmb-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/rm-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/scr-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/sf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/text-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textbf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textit-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textrm-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/textsf-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/texttt-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mathvariant/tt-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-1a.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-1b.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/array-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/bmatrix-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/bmatrix-2.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/matrix-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/matrix-2.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/pmatrix-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/pmatrix-2.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/smallmatrix-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/vmatrix-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/matrices/vmatrix-2.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/advanced-1.html +120 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/advanced-2.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/advanced-3.html +138 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/amounts-1.html +46 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/arrows-1.html +235 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/arrows-2.html +159 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/basics-1.html +139 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/bonds-1.html +256 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/environments-1.html +81 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/isotopes-1.html +30 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/math-1.html +101 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/mhchem/special_symbols-1.html +176 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/Rule-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/Tiny-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/class-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/cssId-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/href-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/href-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/require-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/style-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/non-standard/unicode-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/LaTeX-1.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/bbox-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/boxed-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/cancel-1.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/cases-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/displaylines-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/enclose-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/functions-1.html +34 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/limits-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/limits-2.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/limits-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/mathsize-1.html +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/mod-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/not-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/pod-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/primes-1.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/primes-2.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/primes-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/style-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/style-2.html +0 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/verb-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/verb-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/eqref-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/label-1.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/label-2.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/notag-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/ref-1.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/ref-2.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/references/ref-3.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/root-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/root-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/root-3.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/sqrt-1.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/roots/sqrt-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/binaryops-1.html +32 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/dots-1.html +26 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/largeops-1.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/largeops-2.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/relations-1.html +39 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-1.html +25 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-2.html +31 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-3.html +40 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-4.html +39 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-5.html +56 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/symbols-6.html +49 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/amscd-1.no_tex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/amscd-2.no_tex +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/amscd-3.no_tex +23 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/arrows-1.no_tex +23 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/arrows-2.no_tex +26 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/min-1.no_tex +14 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/AMScd/min-2.no_tex +14 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/above-below/issue490.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/action/mathtip-1.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/action/texttip-1.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/action/toggle-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/arrows/Newextarrow-1.xtex +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/atoms/mathbin-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/atoms/mathop-2.xtex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/basic-operators/basic-operators-2.xtex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-1a.xtex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-1b.xtex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-1c.xtex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/definecolor-2.xtex +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/fcolorbox-1.xtex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/colors/issue446.xtex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/eqnarray-1c.no_tex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/eqnarray-2a.no_tex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/environments/leqalignno-1.xtex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/errors/noErrors-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/errors/noUndefined-1.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue1151.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue1152-1.xtex +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue903-1.xtex +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/issues/issue903-2.xtex +16 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/layout/shove-1.xtex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/begingroup-1.no_tex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/def-1.no_tex +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/let-1.no_tex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-1a.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-1b.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-2.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-3.no_tex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-5.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-6.no_tex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/macro/macro-7.no_tex +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/advanced-1.no_tex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/advanced-2.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/advanced-3.no_tex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/amounts-1.no_tex +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/arrows-1.no_tex +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/arrows-2.no_tex +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/basics-1.no_tex +13 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/bonds-1.no_tex +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/environments-1.no_tex +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/isotopes-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/math-1.no_tex +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/mhchem/special_symbols-1.no_tex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/Rule-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/class-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/cssId-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/href-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/href-2.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/require-1.no_tex +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/style-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/non-standard/unicode-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/displaylines-1.xtex +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/other/style-2.no_tex +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/eqref-1.no_tex +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/label-1.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/label-2.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-1a.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-1b.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-2.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/ref-3.no_tex +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-1.no_tex +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-2.no_tex +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-3.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-tex/references/tag-4.no_tex +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/TODO.md +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_nesting.html +32 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_pos_alignment.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_pos_alignment_with_hline.html +12 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_vertical_column.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_vertical_column_with_align.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_with_hline.html +9 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_with_hline_and_hdashline.html +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/array_with_vertical_and_horizontal_dashes.html +10 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/augmented_matrix.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/basic_array.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/array/strip_excess_whitespace_in_array_attributes.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/block.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/comments.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/filter.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/inline.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/strict_filter.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/basic/text_filter.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/cornercases/broken_up_inline_env.html +3 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/cornercases/some_crazy_alignment.html +24 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/brackets.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/dollar_spacings_filter.html +2 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/dollar_spacings_text_filter.html +27 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/double_dollar.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/escaping_with_brackets.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/escaping_with_dollars.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/escaping_with_parens.html +35 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/mixed.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/parens.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/delimiters/single_dollar.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/aligned_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/aligned_no_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/aligned_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bbmatrix_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bbmatrix_no_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bbmatrix_no_lines.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bmatrix_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bmatrix_no_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/bmatrix_no_lines.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/cases_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/cases_no_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/cases_no_lines.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/gathered_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/gathered_no_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/gathered_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/matrix_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/matrix_no_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/matrix_no_lines.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/pmatrix_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/pmatrix_no_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/pmatrix_no_lines.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/smallmatrix_ex_spacing.html +8 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/smallmatrix_no_ex_spacing.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/smallmatrix_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/spaces_after_rowsep.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/split_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/split_no_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/split_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vmatrix_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vmatrix_no_ex_spacing.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vmatrix_no_lines.html +4 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vvmatrix_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vvmatrix_no_ex_spacing.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/env/vvmatrix_no_lines.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/functions/max_limits.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/functions/min_limits.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/maliciousness/just_enough_parsing.html +1 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/multiple_equations.html +11 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/multiple_notag_nonumber.html +7 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/single_equation.html +5 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/single_nonumber.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/numbered_equations/single_notag.html +6 -0
- data/ext/mathematical/mtex2MML/tests/fixtures/performance/big_file.html +12 -0
- data/ext/mathematical/mtex2MML/tests/generate.py +244 -0
- data/ext/mathematical/mtex2MML/tests/mathjax_generate.py +72 -0
- data/lib/mathematical/version.rb +1 -1
- data/mathematical.gemspec +1 -3
- metadata +699 -23
- data/ext/mathematical/lasem/Makefile +0 -1037
- data/ext/mathematical/lasem/config.h +0 -87
- data/ext/mathematical/lasem/docs/Makefile +0 -793
- data/ext/mathematical/lasem/docs/reference/Makefile +0 -735
- data/ext/mathematical/lasem/docs/reference/lasem/Makefile +0 -1029
- data/ext/mathematical/lasem/docs/reference/lasem/lasem-decl-list.txt +0 -245
- data/ext/mathematical/lasem/docs/reference/lasem/lasem-decl.txt +0 -856
- data/ext/mathematical/lasem/itex2mml/Makefile +0 -742
- data/ext/mathematical/lasem/itex2mml/lex.yy.c +0 -6294
- data/ext/mathematical/lasem/itex2mml/y.tab.c +0 -5796
- data/ext/mathematical/lasem/itex2mml/y.tab.h +0 -378
- data/ext/mathematical/lasem/po/Makefile +0 -413
- data/ext/mathematical/lasem/src/Makefile +0 -1343
- data/ext/mathematical/lasem/src/lsmdomenumtypes.c +0 -99
- data/ext/mathematical/lasem/src/lsmdomenumtypes.h +0 -26
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.c +0 -793
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.h +0 -96
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.c +0 -1254
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.h +0 -129
- data/ext/mathematical/lasem/tests/Makefile +0 -776
@@ -1,96 +0,0 @@
|
|
1
|
-
|
2
|
-
/* Generated data (by glib-mkenums) */
|
3
|
-
|
4
|
-
#ifndef LSM_MATHML_ENUM_TYPES_H
|
5
|
-
#define LSM_MATHML_ENUM_TYPES_H
|
6
|
-
|
7
|
-
#include <glib-object.h>
|
8
|
-
|
9
|
-
G_BEGIN_DECLS
|
10
|
-
|
11
|
-
/* Enumerations from "lsmmathmlenums.h" */
|
12
|
-
|
13
|
-
#define LSM_TYPE_MATHML_CSS_TYPE (lsm_mathml_css_type_get_type())
|
14
|
-
GType lsm_mathml_css_type_get_type (void) G_GNUC_CONST;
|
15
|
-
|
16
|
-
#define LSM_TYPE_MATHML_MODE (lsm_mathml_mode_get_type())
|
17
|
-
GType lsm_mathml_mode_get_type (void) G_GNUC_CONST;
|
18
|
-
|
19
|
-
#define LSM_TYPE_MATHML_DISPLAY (lsm_mathml_display_get_type())
|
20
|
-
GType lsm_mathml_display_get_type (void) G_GNUC_CONST;
|
21
|
-
|
22
|
-
#define LSM_TYPE_MATHML_SPACE_NAME (lsm_mathml_space_name_get_type())
|
23
|
-
GType lsm_mathml_space_name_get_type (void) G_GNUC_CONST;
|
24
|
-
|
25
|
-
#define LSM_TYPE_MATHML_UNIT (lsm_mathml_unit_get_type())
|
26
|
-
GType lsm_mathml_unit_get_type (void) G_GNUC_CONST;
|
27
|
-
|
28
|
-
#define LSM_TYPE_MATHML_FONT_STYLE (lsm_mathml_font_style_get_type())
|
29
|
-
GType lsm_mathml_font_style_get_type (void) G_GNUC_CONST;
|
30
|
-
|
31
|
-
#define LSM_TYPE_MATHML_FONT_WEIGHT (lsm_mathml_font_weight_get_type())
|
32
|
-
GType lsm_mathml_font_weight_get_type (void) G_GNUC_CONST;
|
33
|
-
|
34
|
-
#define LSM_TYPE_MATHML_VARIANT (lsm_mathml_variant_get_type())
|
35
|
-
GType lsm_mathml_variant_get_type (void) G_GNUC_CONST;
|
36
|
-
|
37
|
-
#define LSM_TYPE_MATHML_FORM (lsm_mathml_form_get_type())
|
38
|
-
GType lsm_mathml_form_get_type (void) G_GNUC_CONST;
|
39
|
-
|
40
|
-
#define LSM_TYPE_MATHML_ROW_ALIGN (lsm_mathml_row_align_get_type())
|
41
|
-
GType lsm_mathml_row_align_get_type (void) G_GNUC_CONST;
|
42
|
-
|
43
|
-
#define LSM_TYPE_MATHML_COLUMN_ALIGN (lsm_mathml_column_align_get_type())
|
44
|
-
GType lsm_mathml_column_align_get_type (void) G_GNUC_CONST;
|
45
|
-
|
46
|
-
#define LSM_TYPE_MATHML_LINE (lsm_mathml_line_get_type())
|
47
|
-
GType lsm_mathml_line_get_type (void) G_GNUC_CONST;
|
48
|
-
|
49
|
-
#define LSM_TYPE_MATHML_SCRIPT_LEVEL_SIGN (lsm_mathml_script_level_sign_get_type())
|
50
|
-
GType lsm_mathml_script_level_sign_get_type (void) G_GNUC_CONST;
|
51
|
-
|
52
|
-
#define LSM_TYPE_MATHML_NOTATION (lsm_mathml_notation_get_type())
|
53
|
-
GType lsm_mathml_notation_get_type (void) G_GNUC_CONST;
|
54
|
-
|
55
|
-
#define LSM_TYPE_MATHML_LINEBREAK (lsm_mathml_linebreak_get_type())
|
56
|
-
GType lsm_mathml_linebreak_get_type (void) G_GNUC_CONST;
|
57
|
-
|
58
|
-
/* Enumerations from "lsmmathmltablerowelement.h" */
|
59
|
-
|
60
|
-
#define LSM_TYPE_MATHML_TABLE_ROW_ELEMENT_TYPE (lsm_mathml_table_row_element_type_get_type())
|
61
|
-
GType lsm_mathml_table_row_element_type_get_type (void) G_GNUC_CONST;
|
62
|
-
|
63
|
-
/* Enumerations from "lsmmathmlradicalelement.h" */
|
64
|
-
|
65
|
-
#define LSM_TYPE_MATHML_RADICAL_ELEMENT_TYPE (lsm_mathml_radical_element_type_get_type())
|
66
|
-
GType lsm_mathml_radical_element_type_get_type (void) G_GNUC_CONST;
|
67
|
-
|
68
|
-
/* Enumerations from "lsmmathmlscriptelement.h" */
|
69
|
-
|
70
|
-
#define LSM_TYPE_MATHML_SCRIPT_ELEMENT_TYPE (lsm_mathml_script_element_type_get_type())
|
71
|
-
GType lsm_mathml_script_element_type_get_type (void) G_GNUC_CONST;
|
72
|
-
|
73
|
-
/* Enumerations from "lsmmathmlunderoverelement.h" */
|
74
|
-
|
75
|
-
#define LSM_TYPE_MATHML_UNDER_OVER_ELEMENT_TYPE (lsm_mathml_under_over_element_type_get_type())
|
76
|
-
GType lsm_mathml_under_over_element_type_get_type (void) G_GNUC_CONST;
|
77
|
-
|
78
|
-
/* Enumerations from "lsmmathmlpresentationtoken.h" */
|
79
|
-
|
80
|
-
#define LSM_TYPE_MATHML_PRESENTATION_TOKEN_TYPE (lsm_mathml_presentation_token_type_get_type())
|
81
|
-
GType lsm_mathml_presentation_token_type_get_type (void) G_GNUC_CONST;
|
82
|
-
|
83
|
-
/* Enumerations from "lsmmathmlview.h" */
|
84
|
-
|
85
|
-
#define LSM_TYPE_MATHML_GLYPH_FLAGS (lsm_mathml_glyph_flags_get_type())
|
86
|
-
GType lsm_mathml_glyph_flags_get_type (void) G_GNUC_CONST;
|
87
|
-
|
88
|
-
#define LSM_TYPE_MATHML_FONT (lsm_mathml_font_get_type())
|
89
|
-
GType lsm_mathml_font_get_type (void) G_GNUC_CONST;
|
90
|
-
|
91
|
-
G_END_DECLS
|
92
|
-
|
93
|
-
#endif /* LSM_MATHML_ENUM_TYPES_H */
|
94
|
-
|
95
|
-
/* Generated data ends here */
|
96
|
-
|
@@ -1,1254 +0,0 @@
|
|
1
|
-
|
2
|
-
/* Generated data (by glib-mkenums) */
|
3
|
-
|
4
|
-
#include "lsmsvgenumtypes.h"
|
5
|
-
|
6
|
-
/* enumerations from "lsmsvgenums.h" */
|
7
|
-
#include "lsmsvgenums.h"
|
8
|
-
|
9
|
-
GType
|
10
|
-
lsm_svg_angle_type_get_type (void)
|
11
|
-
{
|
12
|
-
static GType the_type = 0;
|
13
|
-
|
14
|
-
if (the_type == 0)
|
15
|
-
{
|
16
|
-
static const GEnumValue values[] = {
|
17
|
-
{ LSM_SVG_ANGLE_TYPE_ERROR,
|
18
|
-
"LSM_SVG_ANGLE_TYPE_ERROR",
|
19
|
-
"error" },
|
20
|
-
{ LSM_SVG_ANGLE_TYPE_AUTO,
|
21
|
-
"LSM_SVG_ANGLE_TYPE_AUTO",
|
22
|
-
"auto" },
|
23
|
-
{ LSM_SVG_ANGLE_TYPE_FIXED,
|
24
|
-
"LSM_SVG_ANGLE_TYPE_FIXED",
|
25
|
-
"fixed" },
|
26
|
-
{ 0, NULL, NULL }
|
27
|
-
};
|
28
|
-
the_type = g_enum_register_static (
|
29
|
-
g_intern_static_string ("LsmSvgAngleType"),
|
30
|
-
values);
|
31
|
-
}
|
32
|
-
return the_type;
|
33
|
-
}
|
34
|
-
|
35
|
-
GType
|
36
|
-
lsm_svg_blending_mode_get_type (void)
|
37
|
-
{
|
38
|
-
static GType the_type = 0;
|
39
|
-
|
40
|
-
if (the_type == 0)
|
41
|
-
{
|
42
|
-
static const GEnumValue values[] = {
|
43
|
-
{ LSM_SVG_BLENDING_MODE_ERROR,
|
44
|
-
"LSM_SVG_BLENDING_MODE_ERROR",
|
45
|
-
"error" },
|
46
|
-
{ LSM_SVG_BLENDING_MODE_NORMAL,
|
47
|
-
"LSM_SVG_BLENDING_MODE_NORMAL",
|
48
|
-
"normal" },
|
49
|
-
{ LSM_SVG_BLENDING_MODE_MULTIPLY,
|
50
|
-
"LSM_SVG_BLENDING_MODE_MULTIPLY",
|
51
|
-
"multiply" },
|
52
|
-
{ LSM_SVG_BLENDING_MODE_SCREEN,
|
53
|
-
"LSM_SVG_BLENDING_MODE_SCREEN",
|
54
|
-
"screen" },
|
55
|
-
{ LSM_SVG_BLENDING_MODE_DARKEN,
|
56
|
-
"LSM_SVG_BLENDING_MODE_DARKEN",
|
57
|
-
"darken" },
|
58
|
-
{ LSM_SVG_BLENDING_MODE_LIGHTEN,
|
59
|
-
"LSM_SVG_BLENDING_MODE_LIGHTEN",
|
60
|
-
"lighten" },
|
61
|
-
{ LSM_SVG_BLENDING_MODE_OVER,
|
62
|
-
"LSM_SVG_BLENDING_MODE_OVER",
|
63
|
-
"over" },
|
64
|
-
{ LSM_SVG_BLENDING_MODE_IN,
|
65
|
-
"LSM_SVG_BLENDING_MODE_IN",
|
66
|
-
"in" },
|
67
|
-
{ LSM_SVG_BLENDING_MODE_OUT,
|
68
|
-
"LSM_SVG_BLENDING_MODE_OUT",
|
69
|
-
"out" },
|
70
|
-
{ LSM_SVG_BLENDING_MODE_ATOP,
|
71
|
-
"LSM_SVG_BLENDING_MODE_ATOP",
|
72
|
-
"atop" },
|
73
|
-
{ LSM_SVG_BLENDING_MODE_XOR,
|
74
|
-
"LSM_SVG_BLENDING_MODE_XOR",
|
75
|
-
"xor" },
|
76
|
-
{ 0, NULL, NULL }
|
77
|
-
};
|
78
|
-
the_type = g_enum_register_static (
|
79
|
-
g_intern_static_string ("LsmSvgBlendingMode"),
|
80
|
-
values);
|
81
|
-
}
|
82
|
-
return the_type;
|
83
|
-
}
|
84
|
-
|
85
|
-
GType
|
86
|
-
lsm_svg_enable_background_get_type (void)
|
87
|
-
{
|
88
|
-
static GType the_type = 0;
|
89
|
-
|
90
|
-
if (the_type == 0)
|
91
|
-
{
|
92
|
-
static const GEnumValue values[] = {
|
93
|
-
{ LSM_SVG_ENABLE_BACKGROUND_ERROR,
|
94
|
-
"LSM_SVG_ENABLE_BACKGROUND_ERROR",
|
95
|
-
"error" },
|
96
|
-
{ LSM_SVG_ENABLE_BACKGROUND_ACCUMULATE,
|
97
|
-
"LSM_SVG_ENABLE_BACKGROUND_ACCUMULATE",
|
98
|
-
"accumulate" },
|
99
|
-
{ LSM_SVG_ENABLE_BACKGROUND_NEW,
|
100
|
-
"LSM_SVG_ENABLE_BACKGROUND_NEW",
|
101
|
-
"new" },
|
102
|
-
{ 0, NULL, NULL }
|
103
|
-
};
|
104
|
-
the_type = g_enum_register_static (
|
105
|
-
g_intern_static_string ("LsmSvgEnableBackground"),
|
106
|
-
values);
|
107
|
-
}
|
108
|
-
return the_type;
|
109
|
-
}
|
110
|
-
|
111
|
-
GType
|
112
|
-
lsm_svg_paint_type_get_type (void)
|
113
|
-
{
|
114
|
-
static GType the_type = 0;
|
115
|
-
|
116
|
-
if (the_type == 0)
|
117
|
-
{
|
118
|
-
static const GEnumValue values[] = {
|
119
|
-
{ LSM_SVG_PAINT_TYPE_ERROR,
|
120
|
-
"LSM_SVG_PAINT_TYPE_ERROR",
|
121
|
-
"error" },
|
122
|
-
{ LSM_SVG_PAINT_TYPE_UNKNOWN,
|
123
|
-
"LSM_SVG_PAINT_TYPE_UNKNOWN",
|
124
|
-
"unknown" },
|
125
|
-
{ LSM_SVG_PAINT_TYPE_RGB_COLOR,
|
126
|
-
"LSM_SVG_PAINT_TYPE_RGB_COLOR",
|
127
|
-
"rgb-color" },
|
128
|
-
{ LSM_SVG_PAINT_TYPE_RGB_COLOR_ICC_COLOR,
|
129
|
-
"LSM_SVG_PAINT_TYPE_RGB_COLOR_ICC_COLOR",
|
130
|
-
"rgb-color-icc-color" },
|
131
|
-
{ LSM_SVG_PAINT_TYPE_NONE,
|
132
|
-
"LSM_SVG_PAINT_TYPE_NONE",
|
133
|
-
"none" },
|
134
|
-
{ LSM_SVG_PAINT_TYPE_CURRENT_COLOR,
|
135
|
-
"LSM_SVG_PAINT_TYPE_CURRENT_COLOR",
|
136
|
-
"current-color" },
|
137
|
-
{ LSM_SVG_PAINT_TYPE_URI_NONE,
|
138
|
-
"LSM_SVG_PAINT_TYPE_URI_NONE",
|
139
|
-
"uri-none" },
|
140
|
-
{ LSM_SVG_PAINT_TYPE_URI_CURRENT_COLOR,
|
141
|
-
"LSM_SVG_PAINT_TYPE_URI_CURRENT_COLOR",
|
142
|
-
"uri-current-color" },
|
143
|
-
{ LSM_SVG_PAINT_TYPE_URI_RGB_COLOR,
|
144
|
-
"LSM_SVG_PAINT_TYPE_URI_RGB_COLOR",
|
145
|
-
"uri-rgb-color" },
|
146
|
-
{ LSM_SVG_PAINT_TYPE_URI_RGB_COLOR_ICC_COLOR,
|
147
|
-
"LSM_SVG_PAINT_TYPE_URI_RGB_COLOR_ICC_COLOR",
|
148
|
-
"uri-rgb-color-icc-color" },
|
149
|
-
{ LSM_SVG_PAINT_TYPE_URI,
|
150
|
-
"LSM_SVG_PAINT_TYPE_URI",
|
151
|
-
"uri" },
|
152
|
-
{ 0, NULL, NULL }
|
153
|
-
};
|
154
|
-
the_type = g_enum_register_static (
|
155
|
-
g_intern_static_string ("LsmSvgPaintType"),
|
156
|
-
values);
|
157
|
-
}
|
158
|
-
return the_type;
|
159
|
-
}
|
160
|
-
|
161
|
-
GType
|
162
|
-
lsm_svg_length_direction_get_type (void)
|
163
|
-
{
|
164
|
-
static GType the_type = 0;
|
165
|
-
|
166
|
-
if (the_type == 0)
|
167
|
-
{
|
168
|
-
static const GEnumValue values[] = {
|
169
|
-
{ LSM_SVG_LENGTH_DIRECTION_ERROR,
|
170
|
-
"LSM_SVG_LENGTH_DIRECTION_ERROR",
|
171
|
-
"error" },
|
172
|
-
{ LSM_SVG_LENGTH_DIRECTION_HORIZONTAL,
|
173
|
-
"LSM_SVG_LENGTH_DIRECTION_HORIZONTAL",
|
174
|
-
"horizontal" },
|
175
|
-
{ LSM_SVG_LENGTH_DIRECTION_VERTICAL,
|
176
|
-
"LSM_SVG_LENGTH_DIRECTION_VERTICAL",
|
177
|
-
"vertical" },
|
178
|
-
{ LSM_SVG_LENGTH_DIRECTION_DIAGONAL,
|
179
|
-
"LSM_SVG_LENGTH_DIRECTION_DIAGONAL",
|
180
|
-
"diagonal" },
|
181
|
-
{ 0, NULL, NULL }
|
182
|
-
};
|
183
|
-
the_type = g_enum_register_static (
|
184
|
-
g_intern_static_string ("LsmSvgLengthDirection"),
|
185
|
-
values);
|
186
|
-
}
|
187
|
-
return the_type;
|
188
|
-
}
|
189
|
-
|
190
|
-
GType
|
191
|
-
lsm_svg_length_type_get_type (void)
|
192
|
-
{
|
193
|
-
static GType the_type = 0;
|
194
|
-
|
195
|
-
if (the_type == 0)
|
196
|
-
{
|
197
|
-
static const GEnumValue values[] = {
|
198
|
-
{ LSM_SVG_LENGTH_TYPE_ERROR,
|
199
|
-
"LSM_SVG_LENGTH_TYPE_ERROR",
|
200
|
-
"error" },
|
201
|
-
{ LSM_SVG_LENGTH_TYPE_NUMBER,
|
202
|
-
"LSM_SVG_LENGTH_TYPE_NUMBER",
|
203
|
-
"number" },
|
204
|
-
{ LSM_SVG_LENGTH_TYPE_PERCENTAGE,
|
205
|
-
"LSM_SVG_LENGTH_TYPE_PERCENTAGE",
|
206
|
-
"percentage" },
|
207
|
-
{ LSM_SVG_LENGTH_TYPE_EMS,
|
208
|
-
"LSM_SVG_LENGTH_TYPE_EMS",
|
209
|
-
"ems" },
|
210
|
-
{ LSM_SVG_LENGTH_TYPE_EXS,
|
211
|
-
"LSM_SVG_LENGTH_TYPE_EXS",
|
212
|
-
"exs" },
|
213
|
-
{ LSM_SVG_LENGTH_TYPE_PX,
|
214
|
-
"LSM_SVG_LENGTH_TYPE_PX",
|
215
|
-
"px" },
|
216
|
-
{ LSM_SVG_LENGTH_TYPE_CM,
|
217
|
-
"LSM_SVG_LENGTH_TYPE_CM",
|
218
|
-
"cm" },
|
219
|
-
{ LSM_SVG_LENGTH_TYPE_MM,
|
220
|
-
"LSM_SVG_LENGTH_TYPE_MM",
|
221
|
-
"mm" },
|
222
|
-
{ LSM_SVG_LENGTH_TYPE_IN,
|
223
|
-
"LSM_SVG_LENGTH_TYPE_IN",
|
224
|
-
"in" },
|
225
|
-
{ LSM_SVG_LENGTH_TYPE_PT,
|
226
|
-
"LSM_SVG_LENGTH_TYPE_PT",
|
227
|
-
"pt" },
|
228
|
-
{ LSM_SVG_LENGTH_TYPE_PC,
|
229
|
-
"LSM_SVG_LENGTH_TYPE_PC",
|
230
|
-
"pc" },
|
231
|
-
{ 0, NULL, NULL }
|
232
|
-
};
|
233
|
-
the_type = g_enum_register_static (
|
234
|
-
g_intern_static_string ("LsmSvgLengthType"),
|
235
|
-
values);
|
236
|
-
}
|
237
|
-
return the_type;
|
238
|
-
}
|
239
|
-
|
240
|
-
GType
|
241
|
-
lsm_svg_fill_rule_get_type (void)
|
242
|
-
{
|
243
|
-
static GType the_type = 0;
|
244
|
-
|
245
|
-
if (the_type == 0)
|
246
|
-
{
|
247
|
-
static const GEnumValue values[] = {
|
248
|
-
{ LSM_SVG_FILL_RULE_ERROR,
|
249
|
-
"LSM_SVG_FILL_RULE_ERROR",
|
250
|
-
"error" },
|
251
|
-
{ LSM_SVG_FILL_RULE_NON_ZERO,
|
252
|
-
"LSM_SVG_FILL_RULE_NON_ZERO",
|
253
|
-
"non-zero" },
|
254
|
-
{ LSM_SVG_FILL_RULE_EVEN_ODD,
|
255
|
-
"LSM_SVG_FILL_RULE_EVEN_ODD",
|
256
|
-
"even-odd" },
|
257
|
-
{ 0, NULL, NULL }
|
258
|
-
};
|
259
|
-
the_type = g_enum_register_static (
|
260
|
-
g_intern_static_string ("LsmSvgFillRule"),
|
261
|
-
values);
|
262
|
-
}
|
263
|
-
return the_type;
|
264
|
-
}
|
265
|
-
|
266
|
-
GType
|
267
|
-
lsm_svg_line_join_get_type (void)
|
268
|
-
{
|
269
|
-
static GType the_type = 0;
|
270
|
-
|
271
|
-
if (the_type == 0)
|
272
|
-
{
|
273
|
-
static const GEnumValue values[] = {
|
274
|
-
{ LSM_SVG_LINE_JOIN_ERROR,
|
275
|
-
"LSM_SVG_LINE_JOIN_ERROR",
|
276
|
-
"error" },
|
277
|
-
{ LSM_SVG_LINE_JOIN_MITER,
|
278
|
-
"LSM_SVG_LINE_JOIN_MITER",
|
279
|
-
"miter" },
|
280
|
-
{ LSM_SVG_LINE_JOIN_ROUND,
|
281
|
-
"LSM_SVG_LINE_JOIN_ROUND",
|
282
|
-
"round" },
|
283
|
-
{ LSM_SVG_LINE_JOIN_BEVEL,
|
284
|
-
"LSM_SVG_LINE_JOIN_BEVEL",
|
285
|
-
"bevel" },
|
286
|
-
{ 0, NULL, NULL }
|
287
|
-
};
|
288
|
-
the_type = g_enum_register_static (
|
289
|
-
g_intern_static_string ("LsmSvgLineJoin"),
|
290
|
-
values);
|
291
|
-
}
|
292
|
-
return the_type;
|
293
|
-
}
|
294
|
-
|
295
|
-
GType
|
296
|
-
lsm_svg_line_cap_get_type (void)
|
297
|
-
{
|
298
|
-
static GType the_type = 0;
|
299
|
-
|
300
|
-
if (the_type == 0)
|
301
|
-
{
|
302
|
-
static const GEnumValue values[] = {
|
303
|
-
{ LSM_SVG_LINE_CAP_ERROR,
|
304
|
-
"LSM_SVG_LINE_CAP_ERROR",
|
305
|
-
"error" },
|
306
|
-
{ LSM_SVG_LINE_CAP_BUTT,
|
307
|
-
"LSM_SVG_LINE_CAP_BUTT",
|
308
|
-
"butt" },
|
309
|
-
{ LSM_SVG_LINE_CAP_ROUND,
|
310
|
-
"LSM_SVG_LINE_CAP_ROUND",
|
311
|
-
"round" },
|
312
|
-
{ LSM_SVG_LINE_CAP_SQUARE,
|
313
|
-
"LSM_SVG_LINE_CAP_SQUARE",
|
314
|
-
"square" },
|
315
|
-
{ 0, NULL, NULL }
|
316
|
-
};
|
317
|
-
the_type = g_enum_register_static (
|
318
|
-
g_intern_static_string ("LsmSvgLineCap"),
|
319
|
-
values);
|
320
|
-
}
|
321
|
-
return the_type;
|
322
|
-
}
|
323
|
-
|
324
|
-
GType
|
325
|
-
lsm_svg_transform_type_get_type (void)
|
326
|
-
{
|
327
|
-
static GType the_type = 0;
|
328
|
-
|
329
|
-
if (the_type == 0)
|
330
|
-
{
|
331
|
-
static const GEnumValue values[] = {
|
332
|
-
{ LSM_SVG_TRANSFORM_TYPE_ERROR,
|
333
|
-
"LSM_SVG_TRANSFORM_TYPE_ERROR",
|
334
|
-
"error" },
|
335
|
-
{ LSM_SVG_TRANSFORM_TYPE_MATRIX,
|
336
|
-
"LSM_SVG_TRANSFORM_TYPE_MATRIX",
|
337
|
-
"matrix" },
|
338
|
-
{ LSM_SVG_TRANSFORM_TYPE_TRANSLATE,
|
339
|
-
"LSM_SVG_TRANSFORM_TYPE_TRANSLATE",
|
340
|
-
"translate" },
|
341
|
-
{ LSM_SVG_TRANSFORM_TYPE_SCALE,
|
342
|
-
"LSM_SVG_TRANSFORM_TYPE_SCALE",
|
343
|
-
"scale" },
|
344
|
-
{ LSM_SVG_TRANSFORM_TYPE_ROTATE,
|
345
|
-
"LSM_SVG_TRANSFORM_TYPE_ROTATE",
|
346
|
-
"rotate" },
|
347
|
-
{ LSM_SVG_TRANSFORM_TYPE_SKEW_X,
|
348
|
-
"LSM_SVG_TRANSFORM_TYPE_SKEW_X",
|
349
|
-
"skew-x" },
|
350
|
-
{ LSM_SVG_TRANSFORM_TYPE_SKEW_Y,
|
351
|
-
"LSM_SVG_TRANSFORM_TYPE_SKEW_Y",
|
352
|
-
"skew-y" },
|
353
|
-
{ 0, NULL, NULL }
|
354
|
-
};
|
355
|
-
the_type = g_enum_register_static (
|
356
|
-
g_intern_static_string ("LsmSvgTransformType"),
|
357
|
-
values);
|
358
|
-
}
|
359
|
-
return the_type;
|
360
|
-
}
|
361
|
-
|
362
|
-
GType
|
363
|
-
lsm_svg_overflow_get_type (void)
|
364
|
-
{
|
365
|
-
static GType the_type = 0;
|
366
|
-
|
367
|
-
if (the_type == 0)
|
368
|
-
{
|
369
|
-
static const GEnumValue values[] = {
|
370
|
-
{ LSM_SVG_OVERFLOW_ERROR,
|
371
|
-
"LSM_SVG_OVERFLOW_ERROR",
|
372
|
-
"error" },
|
373
|
-
{ LSM_SVG_OVERFLOW_VISIBLE,
|
374
|
-
"LSM_SVG_OVERFLOW_VISIBLE",
|
375
|
-
"visible" },
|
376
|
-
{ LSM_SVG_OVERFLOW_HIDDEN,
|
377
|
-
"LSM_SVG_OVERFLOW_HIDDEN",
|
378
|
-
"hidden" },
|
379
|
-
{ LSM_SVG_OVERFLOW_SCROLL,
|
380
|
-
"LSM_SVG_OVERFLOW_SCROLL",
|
381
|
-
"scroll" },
|
382
|
-
{ LSM_SVG_OVERFLOW_AUTO,
|
383
|
-
"LSM_SVG_OVERFLOW_AUTO",
|
384
|
-
"auto" },
|
385
|
-
{ 0, NULL, NULL }
|
386
|
-
};
|
387
|
-
the_type = g_enum_register_static (
|
388
|
-
g_intern_static_string ("LsmSvgOverflow"),
|
389
|
-
values);
|
390
|
-
}
|
391
|
-
return the_type;
|
392
|
-
}
|
393
|
-
|
394
|
-
GType
|
395
|
-
lsm_svg_pattern_units_get_type (void)
|
396
|
-
{
|
397
|
-
static GType the_type = 0;
|
398
|
-
|
399
|
-
if (the_type == 0)
|
400
|
-
{
|
401
|
-
static const GEnumValue values[] = {
|
402
|
-
{ LSM_SVG_PATTERN_UNITS_ERROR,
|
403
|
-
"LSM_SVG_PATTERN_UNITS_ERROR",
|
404
|
-
"error" },
|
405
|
-
{ LSM_SVG_PATTERN_UNITS_USER_SPACE_ON_USE,
|
406
|
-
"LSM_SVG_PATTERN_UNITS_USER_SPACE_ON_USE",
|
407
|
-
"user-space-on-use" },
|
408
|
-
{ LSM_SVG_PATTERN_UNITS_OBJECT_BOUNDING_BOX,
|
409
|
-
"LSM_SVG_PATTERN_UNITS_OBJECT_BOUNDING_BOX",
|
410
|
-
"object-bounding-box" },
|
411
|
-
{ 0, NULL, NULL }
|
412
|
-
};
|
413
|
-
the_type = g_enum_register_static (
|
414
|
-
g_intern_static_string ("LsmSvgPatternUnits"),
|
415
|
-
values);
|
416
|
-
}
|
417
|
-
return the_type;
|
418
|
-
}
|
419
|
-
|
420
|
-
GType
|
421
|
-
lsm_svg_marker_units_get_type (void)
|
422
|
-
{
|
423
|
-
static GType the_type = 0;
|
424
|
-
|
425
|
-
if (the_type == 0)
|
426
|
-
{
|
427
|
-
static const GEnumValue values[] = {
|
428
|
-
{ LSM_SVG_MARKER_UNITS_ERROR,
|
429
|
-
"LSM_SVG_MARKER_UNITS_ERROR",
|
430
|
-
"error" },
|
431
|
-
{ LSM_SVG_MARKER_UNITS_STROKE_WIDTH,
|
432
|
-
"LSM_SVG_MARKER_UNITS_STROKE_WIDTH",
|
433
|
-
"stroke-width" },
|
434
|
-
{ LSM_SVG_MARKER_UNITS_USER_SPACE_ON_USE,
|
435
|
-
"LSM_SVG_MARKER_UNITS_USER_SPACE_ON_USE",
|
436
|
-
"user-space-on-use" },
|
437
|
-
{ 0, NULL, NULL }
|
438
|
-
};
|
439
|
-
the_type = g_enum_register_static (
|
440
|
-
g_intern_static_string ("LsmSvgMarkerUnits"),
|
441
|
-
values);
|
442
|
-
}
|
443
|
-
return the_type;
|
444
|
-
}
|
445
|
-
|
446
|
-
GType
|
447
|
-
lsm_svg_spread_method_get_type (void)
|
448
|
-
{
|
449
|
-
static GType the_type = 0;
|
450
|
-
|
451
|
-
if (the_type == 0)
|
452
|
-
{
|
453
|
-
static const GEnumValue values[] = {
|
454
|
-
{ LSM_SVG_SPREAD_METHOD_ERROR,
|
455
|
-
"LSM_SVG_SPREAD_METHOD_ERROR",
|
456
|
-
"error" },
|
457
|
-
{ LSM_SVG_SPREAD_METHOD_PAD,
|
458
|
-
"LSM_SVG_SPREAD_METHOD_PAD",
|
459
|
-
"pad" },
|
460
|
-
{ LSM_SVG_SPREAD_METHOD_REFLECT,
|
461
|
-
"LSM_SVG_SPREAD_METHOD_REFLECT",
|
462
|
-
"reflect" },
|
463
|
-
{ LSM_SVG_SPREAD_METHOD_REPEAT,
|
464
|
-
"LSM_SVG_SPREAD_METHOD_REPEAT",
|
465
|
-
"repeat" },
|
466
|
-
{ 0, NULL, NULL }
|
467
|
-
};
|
468
|
-
the_type = g_enum_register_static (
|
469
|
-
g_intern_static_string ("LsmSvgSpreadMethod"),
|
470
|
-
values);
|
471
|
-
}
|
472
|
-
return the_type;
|
473
|
-
}
|
474
|
-
|
475
|
-
GType
|
476
|
-
lsm_svg_align_get_type (void)
|
477
|
-
{
|
478
|
-
static GType the_type = 0;
|
479
|
-
|
480
|
-
if (the_type == 0)
|
481
|
-
{
|
482
|
-
static const GEnumValue values[] = {
|
483
|
-
{ LSM_SVG_ALIGN_ERROR,
|
484
|
-
"LSM_SVG_ALIGN_ERROR",
|
485
|
-
"error" },
|
486
|
-
{ LSM_SVG_ALIGN_NONE,
|
487
|
-
"LSM_SVG_ALIGN_NONE",
|
488
|
-
"none" },
|
489
|
-
{ LSM_SVG_ALIGN_X_MIN_Y_MIN,
|
490
|
-
"LSM_SVG_ALIGN_X_MIN_Y_MIN",
|
491
|
-
"x-min-y-min" },
|
492
|
-
{ LSM_SVG_ALIGN_X_MID_Y_MIN,
|
493
|
-
"LSM_SVG_ALIGN_X_MID_Y_MIN",
|
494
|
-
"x-mid-y-min" },
|
495
|
-
{ LSM_SVG_ALIGN_X_MAX_Y_MIN,
|
496
|
-
"LSM_SVG_ALIGN_X_MAX_Y_MIN",
|
497
|
-
"x-max-y-min" },
|
498
|
-
{ LSM_SVG_ALIGN_X_MIN_Y_MID,
|
499
|
-
"LSM_SVG_ALIGN_X_MIN_Y_MID",
|
500
|
-
"x-min-y-mid" },
|
501
|
-
{ LSM_SVG_ALIGN_X_MID_Y_MID,
|
502
|
-
"LSM_SVG_ALIGN_X_MID_Y_MID",
|
503
|
-
"x-mid-y-mid" },
|
504
|
-
{ LSM_SVG_ALIGN_X_MAX_Y_MID,
|
505
|
-
"LSM_SVG_ALIGN_X_MAX_Y_MID",
|
506
|
-
"x-max-y-mid" },
|
507
|
-
{ LSM_SVG_ALIGN_X_MIN_Y_MAX,
|
508
|
-
"LSM_SVG_ALIGN_X_MIN_Y_MAX",
|
509
|
-
"x-min-y-max" },
|
510
|
-
{ LSM_SVG_ALIGN_X_MID_Y_MAX,
|
511
|
-
"LSM_SVG_ALIGN_X_MID_Y_MAX",
|
512
|
-
"x-mid-y-max" },
|
513
|
-
{ LSM_SVG_ALIGN_X_MAX_Y_MAX,
|
514
|
-
"LSM_SVG_ALIGN_X_MAX_Y_MAX",
|
515
|
-
"x-max-y-max" },
|
516
|
-
{ 0, NULL, NULL }
|
517
|
-
};
|
518
|
-
the_type = g_enum_register_static (
|
519
|
-
g_intern_static_string ("LsmSvgAlign"),
|
520
|
-
values);
|
521
|
-
}
|
522
|
-
return the_type;
|
523
|
-
}
|
524
|
-
|
525
|
-
GType
|
526
|
-
lsm_svg_meet_or_slice_get_type (void)
|
527
|
-
{
|
528
|
-
static GType the_type = 0;
|
529
|
-
|
530
|
-
if (the_type == 0)
|
531
|
-
{
|
532
|
-
static const GEnumValue values[] = {
|
533
|
-
{ LSM_SVG_MEET_OR_SLICE_ERROR,
|
534
|
-
"LSM_SVG_MEET_OR_SLICE_ERROR",
|
535
|
-
"error" },
|
536
|
-
{ LSM_SVG_MEET_OR_SLICE_MEET,
|
537
|
-
"LSM_SVG_MEET_OR_SLICE_MEET",
|
538
|
-
"meet" },
|
539
|
-
{ LSM_SVG_MEET_OR_SLICE_SLICE,
|
540
|
-
"LSM_SVG_MEET_OR_SLICE_SLICE",
|
541
|
-
"slice" },
|
542
|
-
{ 0, NULL, NULL }
|
543
|
-
};
|
544
|
-
the_type = g_enum_register_static (
|
545
|
-
g_intern_static_string ("LsmSvgMeetOrSlice"),
|
546
|
-
values);
|
547
|
-
}
|
548
|
-
return the_type;
|
549
|
-
}
|
550
|
-
|
551
|
-
GType
|
552
|
-
lsm_svg_comp_op_get_type (void)
|
553
|
-
{
|
554
|
-
static GType the_type = 0;
|
555
|
-
|
556
|
-
if (the_type == 0)
|
557
|
-
{
|
558
|
-
static const GEnumValue values[] = {
|
559
|
-
{ LSM_SVG_COMP_OP_ERROR,
|
560
|
-
"LSM_SVG_COMP_OP_ERROR",
|
561
|
-
"error" },
|
562
|
-
{ LSM_SVG_COMP_OP_CLEAR,
|
563
|
-
"LSM_SVG_COMP_OP_CLEAR",
|
564
|
-
"clear" },
|
565
|
-
{ LSM_SVG_COMP_OP_SRC,
|
566
|
-
"LSM_SVG_COMP_OP_SRC",
|
567
|
-
"src" },
|
568
|
-
{ LSM_SVG_COMP_OP_DST,
|
569
|
-
"LSM_SVG_COMP_OP_DST",
|
570
|
-
"dst" },
|
571
|
-
{ LSM_SVG_COMP_OP_SRC_OVER,
|
572
|
-
"LSM_SVG_COMP_OP_SRC_OVER",
|
573
|
-
"src-over" },
|
574
|
-
{ LSM_SVG_COMP_OP_DST_OVER,
|
575
|
-
"LSM_SVG_COMP_OP_DST_OVER",
|
576
|
-
"dst-over" },
|
577
|
-
{ LSM_SVG_COMP_OP_SRC_IN,
|
578
|
-
"LSM_SVG_COMP_OP_SRC_IN",
|
579
|
-
"src-in" },
|
580
|
-
{ LSM_SVG_COMP_OP_DST_IN,
|
581
|
-
"LSM_SVG_COMP_OP_DST_IN",
|
582
|
-
"dst-in" },
|
583
|
-
{ LSM_SVG_COMP_OP_SRC_OUT,
|
584
|
-
"LSM_SVG_COMP_OP_SRC_OUT",
|
585
|
-
"src-out" },
|
586
|
-
{ LSM_SVG_COMP_OP_DST_OUT,
|
587
|
-
"LSM_SVG_COMP_OP_DST_OUT",
|
588
|
-
"dst-out" },
|
589
|
-
{ LSM_SVG_COMP_OP_SRC_ATOP,
|
590
|
-
"LSM_SVG_COMP_OP_SRC_ATOP",
|
591
|
-
"src-atop" },
|
592
|
-
{ LSM_SVG_COMP_OP_DST_ATOP,
|
593
|
-
"LSM_SVG_COMP_OP_DST_ATOP",
|
594
|
-
"dst-atop" },
|
595
|
-
{ LSM_SVG_COMP_OP_XOR,
|
596
|
-
"LSM_SVG_COMP_OP_XOR",
|
597
|
-
"xor" },
|
598
|
-
{ LSM_SVG_COMP_OP_PLUS,
|
599
|
-
"LSM_SVG_COMP_OP_PLUS",
|
600
|
-
"plus" },
|
601
|
-
{ LSM_SVG_COMP_OP_MULTIPLY,
|
602
|
-
"LSM_SVG_COMP_OP_MULTIPLY",
|
603
|
-
"multiply" },
|
604
|
-
{ LSM_SVG_COMP_OP_SCREEN,
|
605
|
-
"LSM_SVG_COMP_OP_SCREEN",
|
606
|
-
"screen" },
|
607
|
-
{ LSM_SVG_COMP_OP_OVERLAY,
|
608
|
-
"LSM_SVG_COMP_OP_OVERLAY",
|
609
|
-
"overlay" },
|
610
|
-
{ LSM_SVG_COMP_OP_DARKEN,
|
611
|
-
"LSM_SVG_COMP_OP_DARKEN",
|
612
|
-
"darken" },
|
613
|
-
{ LSM_SVG_COMP_OP_LIGHTEN,
|
614
|
-
"LSM_SVG_COMP_OP_LIGHTEN",
|
615
|
-
"lighten" },
|
616
|
-
{ LSM_SVG_COMP_OP_COLOR_DODGE,
|
617
|
-
"LSM_SVG_COMP_OP_COLOR_DODGE",
|
618
|
-
"color-dodge" },
|
619
|
-
{ LSM_SVG_COMP_OP_COLOR_BURN,
|
620
|
-
"LSM_SVG_COMP_OP_COLOR_BURN",
|
621
|
-
"color-burn" },
|
622
|
-
{ LSM_SVG_COMP_OP_HARD_LIGHT,
|
623
|
-
"LSM_SVG_COMP_OP_HARD_LIGHT",
|
624
|
-
"hard-light" },
|
625
|
-
{ LSM_SVG_COMP_OP_SOFT_LIGHT,
|
626
|
-
"LSM_SVG_COMP_OP_SOFT_LIGHT",
|
627
|
-
"soft-light" },
|
628
|
-
{ LSM_SVG_COMP_OP_DIFFERENCE,
|
629
|
-
"LSM_SVG_COMP_OP_DIFFERENCE",
|
630
|
-
"difference" },
|
631
|
-
{ LSM_SVG_COMP_OP_EXCLUSION,
|
632
|
-
"LSM_SVG_COMP_OP_EXCLUSION",
|
633
|
-
"exclusion" },
|
634
|
-
{ 0, NULL, NULL }
|
635
|
-
};
|
636
|
-
the_type = g_enum_register_static (
|
637
|
-
g_intern_static_string ("LsmSvgCompOp"),
|
638
|
-
values);
|
639
|
-
}
|
640
|
-
return the_type;
|
641
|
-
}
|
642
|
-
|
643
|
-
GType
|
644
|
-
lsm_svg_font_stretch_get_type (void)
|
645
|
-
{
|
646
|
-
static GType the_type = 0;
|
647
|
-
|
648
|
-
if (the_type == 0)
|
649
|
-
{
|
650
|
-
static const GEnumValue values[] = {
|
651
|
-
{ LSM_SVG_FONT_STRETCH_ERROR,
|
652
|
-
"LSM_SVG_FONT_STRETCH_ERROR",
|
653
|
-
"error" },
|
654
|
-
{ LSM_SVG_FONT_STRETCH_NORMAL,
|
655
|
-
"LSM_SVG_FONT_STRETCH_NORMAL",
|
656
|
-
"normal" },
|
657
|
-
{ LSM_SVG_FONT_STRETCH_ULTRA_CONDENSED,
|
658
|
-
"LSM_SVG_FONT_STRETCH_ULTRA_CONDENSED",
|
659
|
-
"ultra-condensed" },
|
660
|
-
{ LSM_SVG_FONT_STRETCH_EXTRA_CONDENSED,
|
661
|
-
"LSM_SVG_FONT_STRETCH_EXTRA_CONDENSED",
|
662
|
-
"extra-condensed" },
|
663
|
-
{ LSM_SVG_FONT_STRETCH_CONDENSED,
|
664
|
-
"LSM_SVG_FONT_STRETCH_CONDENSED",
|
665
|
-
"condensed" },
|
666
|
-
{ LSM_SVG_FONT_STRETCH_SEMI_CONDENSED,
|
667
|
-
"LSM_SVG_FONT_STRETCH_SEMI_CONDENSED",
|
668
|
-
"semi-condensed" },
|
669
|
-
{ LSM_SVG_FONT_STRETCH_SEMI_EXPANDED,
|
670
|
-
"LSM_SVG_FONT_STRETCH_SEMI_EXPANDED",
|
671
|
-
"semi-expanded" },
|
672
|
-
{ LSM_SVG_FONT_STRETCH_EXPANDED,
|
673
|
-
"LSM_SVG_FONT_STRETCH_EXPANDED",
|
674
|
-
"expanded" },
|
675
|
-
{ LSM_SVG_FONT_STRETCH_EXTRA_EXPANDED,
|
676
|
-
"LSM_SVG_FONT_STRETCH_EXTRA_EXPANDED",
|
677
|
-
"extra-expanded" },
|
678
|
-
{ LSM_SVG_FONT_STRETCH_ULTRA_EXPANDED,
|
679
|
-
"LSM_SVG_FONT_STRETCH_ULTRA_EXPANDED",
|
680
|
-
"ultra-expanded" },
|
681
|
-
{ 0, NULL, NULL }
|
682
|
-
};
|
683
|
-
the_type = g_enum_register_static (
|
684
|
-
g_intern_static_string ("LsmSvgFontStretch"),
|
685
|
-
values);
|
686
|
-
}
|
687
|
-
return the_type;
|
688
|
-
}
|
689
|
-
|
690
|
-
GType
|
691
|
-
lsm_svg_font_style_get_type (void)
|
692
|
-
{
|
693
|
-
static GType the_type = 0;
|
694
|
-
|
695
|
-
if (the_type == 0)
|
696
|
-
{
|
697
|
-
static const GEnumValue values[] = {
|
698
|
-
{ LSM_SVG_FONT_STYLE_ERROR,
|
699
|
-
"LSM_SVG_FONT_STYLE_ERROR",
|
700
|
-
"error" },
|
701
|
-
{ LSM_SVG_FONT_STYLE_NORMAL,
|
702
|
-
"LSM_SVG_FONT_STYLE_NORMAL",
|
703
|
-
"normal" },
|
704
|
-
{ LSM_SVG_FONT_STYLE_OBLIQUE,
|
705
|
-
"LSM_SVG_FONT_STYLE_OBLIQUE",
|
706
|
-
"oblique" },
|
707
|
-
{ LSM_SVG_FONT_STYLE_ITALIC,
|
708
|
-
"LSM_SVG_FONT_STYLE_ITALIC",
|
709
|
-
"italic" },
|
710
|
-
{ 0, NULL, NULL }
|
711
|
-
};
|
712
|
-
the_type = g_enum_register_static (
|
713
|
-
g_intern_static_string ("LsmSvgFontStyle"),
|
714
|
-
values);
|
715
|
-
}
|
716
|
-
return the_type;
|
717
|
-
}
|
718
|
-
|
719
|
-
GType
|
720
|
-
lsm_svg_font_weight_get_type (void)
|
721
|
-
{
|
722
|
-
static GType the_type = 0;
|
723
|
-
|
724
|
-
if (the_type == 0)
|
725
|
-
{
|
726
|
-
static const GEnumValue values[] = {
|
727
|
-
{ LSM_SVG_FONT_WEIGHT_ERROR,
|
728
|
-
"LSM_SVG_FONT_WEIGHT_ERROR",
|
729
|
-
"error" },
|
730
|
-
{ LSM_SVG_FONT_WEIGHT_NORMAL,
|
731
|
-
"LSM_SVG_FONT_WEIGHT_NORMAL",
|
732
|
-
"normal" },
|
733
|
-
{ LSM_SVG_FONT_WEIGHT_BOLD,
|
734
|
-
"LSM_SVG_FONT_WEIGHT_BOLD",
|
735
|
-
"bold" },
|
736
|
-
{ 0, NULL, NULL }
|
737
|
-
};
|
738
|
-
the_type = g_enum_register_static (
|
739
|
-
g_intern_static_string ("LsmSvgFontWeight"),
|
740
|
-
values);
|
741
|
-
}
|
742
|
-
return the_type;
|
743
|
-
}
|
744
|
-
|
745
|
-
GType
|
746
|
-
lsm_svg_text_anchor_get_type (void)
|
747
|
-
{
|
748
|
-
static GType the_type = 0;
|
749
|
-
|
750
|
-
if (the_type == 0)
|
751
|
-
{
|
752
|
-
static const GEnumValue values[] = {
|
753
|
-
{ LSM_SVG_TEXT_ANCHOR_ERROR,
|
754
|
-
"LSM_SVG_TEXT_ANCHOR_ERROR",
|
755
|
-
"error" },
|
756
|
-
{ LSM_SVG_TEXT_ANCHOR_START,
|
757
|
-
"LSM_SVG_TEXT_ANCHOR_START",
|
758
|
-
"start" },
|
759
|
-
{ LSM_SVG_TEXT_ANCHOR_MIDDLE,
|
760
|
-
"LSM_SVG_TEXT_ANCHOR_MIDDLE",
|
761
|
-
"middle" },
|
762
|
-
{ LSM_SVG_TEXT_ANCHOR_END,
|
763
|
-
"LSM_SVG_TEXT_ANCHOR_END",
|
764
|
-
"end" },
|
765
|
-
{ 0, NULL, NULL }
|
766
|
-
};
|
767
|
-
the_type = g_enum_register_static (
|
768
|
-
g_intern_static_string ("LsmSvgTextAnchor"),
|
769
|
-
values);
|
770
|
-
}
|
771
|
-
return the_type;
|
772
|
-
}
|
773
|
-
|
774
|
-
GType
|
775
|
-
lsm_svg_filter_input_get_type (void)
|
776
|
-
{
|
777
|
-
static GType the_type = 0;
|
778
|
-
|
779
|
-
if (the_type == 0)
|
780
|
-
{
|
781
|
-
static const GEnumValue values[] = {
|
782
|
-
{ LSM_SVG_FILTER_INPUT_ERROR,
|
783
|
-
"LSM_SVG_FILTER_INPUT_ERROR",
|
784
|
-
"error" },
|
785
|
-
{ LSM_SVG_FILTER_INPUT_SOURCE_GRAPHIC,
|
786
|
-
"LSM_SVG_FILTER_INPUT_SOURCE_GRAPHIC",
|
787
|
-
"source-graphic" },
|
788
|
-
{ LSM_SVG_FILTER_INPUT_SOURCE_ALPHA,
|
789
|
-
"LSM_SVG_FILTER_INPUT_SOURCE_ALPHA",
|
790
|
-
"source-alpha" },
|
791
|
-
{ LSM_SVG_FILTER_INPUT_BACKGROUND_IMAGE,
|
792
|
-
"LSM_SVG_FILTER_INPUT_BACKGROUND_IMAGE",
|
793
|
-
"background-image" },
|
794
|
-
{ LSM_SVG_FILTER_INPUT_BACKGROUND_ALPHA,
|
795
|
-
"LSM_SVG_FILTER_INPUT_BACKGROUND_ALPHA",
|
796
|
-
"background-alpha" },
|
797
|
-
{ LSM_SVG_FILTER_INPUT_FILL_PAINT,
|
798
|
-
"LSM_SVG_FILTER_INPUT_FILL_PAINT",
|
799
|
-
"fill-paint" },
|
800
|
-
{ LSM_SVG_FILTER_INPUT_STROKE_PAINT,
|
801
|
-
"LSM_SVG_FILTER_INPUT_STROKE_PAINT",
|
802
|
-
"stroke-paint" },
|
803
|
-
{ 0, NULL, NULL }
|
804
|
-
};
|
805
|
-
the_type = g_enum_register_static (
|
806
|
-
g_intern_static_string ("LsmSvgFilterInput"),
|
807
|
-
values);
|
808
|
-
}
|
809
|
-
return the_type;
|
810
|
-
}
|
811
|
-
|
812
|
-
GType
|
813
|
-
lsm_svg_display_get_type (void)
|
814
|
-
{
|
815
|
-
static GType the_type = 0;
|
816
|
-
|
817
|
-
if (the_type == 0)
|
818
|
-
{
|
819
|
-
static const GEnumValue values[] = {
|
820
|
-
{ LSM_SVG_DISPLAY_ERROR,
|
821
|
-
"LSM_SVG_DISPLAY_ERROR",
|
822
|
-
"error" },
|
823
|
-
{ LSM_SVG_DISPLAY_NONE,
|
824
|
-
"LSM_SVG_DISPLAY_NONE",
|
825
|
-
"none" },
|
826
|
-
{ LSM_SVG_DISPLAY_INLINE,
|
827
|
-
"LSM_SVG_DISPLAY_INLINE",
|
828
|
-
"inline" },
|
829
|
-
{ LSM_SVG_DISPLAY_BLOCK,
|
830
|
-
"LSM_SVG_DISPLAY_BLOCK",
|
831
|
-
"block" },
|
832
|
-
{ LSM_SVG_DISPLAY_LIST_ITEM,
|
833
|
-
"LSM_SVG_DISPLAY_LIST_ITEM",
|
834
|
-
"list-item" },
|
835
|
-
{ LSM_SVG_DISPLAY_RUN_IN,
|
836
|
-
"LSM_SVG_DISPLAY_RUN_IN",
|
837
|
-
"run-in" },
|
838
|
-
{ LSM_SVG_DISPLAY_COMPACT,
|
839
|
-
"LSM_SVG_DISPLAY_COMPACT",
|
840
|
-
"compact" },
|
841
|
-
{ LSM_SVG_DISPLAY_MARKER,
|
842
|
-
"LSM_SVG_DISPLAY_MARKER",
|
843
|
-
"marker" },
|
844
|
-
{ LSM_SVG_DISPLAY_TABLE,
|
845
|
-
"LSM_SVG_DISPLAY_TABLE",
|
846
|
-
"table" },
|
847
|
-
{ LSM_SVG_DISPLAY_INLINE_TABLE,
|
848
|
-
"LSM_SVG_DISPLAY_INLINE_TABLE",
|
849
|
-
"inline-table" },
|
850
|
-
{ LSM_SVG_DISPLAY_TABLE_ROW_GROUP,
|
851
|
-
"LSM_SVG_DISPLAY_TABLE_ROW_GROUP",
|
852
|
-
"table-row-group" },
|
853
|
-
{ LSM_SVG_DISPLAY_TABLE_HEADER_GROUP,
|
854
|
-
"LSM_SVG_DISPLAY_TABLE_HEADER_GROUP",
|
855
|
-
"table-header-group" },
|
856
|
-
{ LSM_SVG_DISPLAY_TABLE_FOOTER_GROUP,
|
857
|
-
"LSM_SVG_DISPLAY_TABLE_FOOTER_GROUP",
|
858
|
-
"table-footer-group" },
|
859
|
-
{ LSM_SVG_DISPLAY_TABLE_ROW,
|
860
|
-
"LSM_SVG_DISPLAY_TABLE_ROW",
|
861
|
-
"table-row" },
|
862
|
-
{ LSM_SVG_DISPLAY_TABLE_COLUMN_GROUP,
|
863
|
-
"LSM_SVG_DISPLAY_TABLE_COLUMN_GROUP",
|
864
|
-
"table-column-group" },
|
865
|
-
{ LSM_SVG_DISPLAY_TABLE_COLUMN,
|
866
|
-
"LSM_SVG_DISPLAY_TABLE_COLUMN",
|
867
|
-
"table-column" },
|
868
|
-
{ LSM_SVG_DISPLAY_TABLE_CELL,
|
869
|
-
"LSM_SVG_DISPLAY_TABLE_CELL",
|
870
|
-
"table-cell" },
|
871
|
-
{ LSM_SVG_DISPLAY_TABLE_CAPTION,
|
872
|
-
"LSM_SVG_DISPLAY_TABLE_CAPTION",
|
873
|
-
"table-caption" },
|
874
|
-
{ 0, NULL, NULL }
|
875
|
-
};
|
876
|
-
the_type = g_enum_register_static (
|
877
|
-
g_intern_static_string ("LsmSvgDisplay"),
|
878
|
-
values);
|
879
|
-
}
|
880
|
-
return the_type;
|
881
|
-
}
|
882
|
-
|
883
|
-
GType
|
884
|
-
lsm_svg_visibility_get_type (void)
|
885
|
-
{
|
886
|
-
static GType the_type = 0;
|
887
|
-
|
888
|
-
if (the_type == 0)
|
889
|
-
{
|
890
|
-
static const GEnumValue values[] = {
|
891
|
-
{ LSM_SVG_VISIBILITY_ERROR,
|
892
|
-
"LSM_SVG_VISIBILITY_ERROR",
|
893
|
-
"error" },
|
894
|
-
{ LSM_SVG_VISIBILITY_VISIBLE,
|
895
|
-
"LSM_SVG_VISIBILITY_VISIBLE",
|
896
|
-
"visible" },
|
897
|
-
{ LSM_SVG_VISIBILITY_HIDDEN,
|
898
|
-
"LSM_SVG_VISIBILITY_HIDDEN",
|
899
|
-
"hidden" },
|
900
|
-
{ LSM_SVG_VISIBILITY_COLLAPSE,
|
901
|
-
"LSM_SVG_VISIBILITY_COLLAPSE",
|
902
|
-
"collapse" },
|
903
|
-
{ 0, NULL, NULL }
|
904
|
-
};
|
905
|
-
the_type = g_enum_register_static (
|
906
|
-
g_intern_static_string ("LsmSvgVisibility"),
|
907
|
-
values);
|
908
|
-
}
|
909
|
-
return the_type;
|
910
|
-
}
|
911
|
-
|
912
|
-
GType
|
913
|
-
lsm_svg_element_category_get_type (void)
|
914
|
-
{
|
915
|
-
static GType the_type = 0;
|
916
|
-
|
917
|
-
if (the_type == 0)
|
918
|
-
{
|
919
|
-
static const GFlagsValue values[] = {
|
920
|
-
{ LSM_SVG_ELEMENT_CATEGORY_NONE,
|
921
|
-
"LSM_SVG_ELEMENT_CATEGORY_NONE",
|
922
|
-
"none" },
|
923
|
-
{ LSM_SVG_ELEMENT_CATEGORY_DESCRIPTIVE,
|
924
|
-
"LSM_SVG_ELEMENT_CATEGORY_DESCRIPTIVE",
|
925
|
-
"descriptive" },
|
926
|
-
{ LSM_SVG_ELEMENT_CATEGORY_CONTAINER,
|
927
|
-
"LSM_SVG_ELEMENT_CATEGORY_CONTAINER",
|
928
|
-
"container" },
|
929
|
-
{ LSM_SVG_ELEMENT_CATEGORY_STRUCTURAL,
|
930
|
-
"LSM_SVG_ELEMENT_CATEGORY_STRUCTURAL",
|
931
|
-
"structural" },
|
932
|
-
{ LSM_SVG_ELEMENT_CATEGORY_GRAPHICS_REFERENCING,
|
933
|
-
"LSM_SVG_ELEMENT_CATEGORY_GRAPHICS_REFERENCING",
|
934
|
-
"graphics-referencing" },
|
935
|
-
{ LSM_SVG_ELEMENT_CATEGORY_GRAPHICS,
|
936
|
-
"LSM_SVG_ELEMENT_CATEGORY_GRAPHICS",
|
937
|
-
"graphics" },
|
938
|
-
{ LSM_SVG_ELEMENT_CATEGORY_SHAPE,
|
939
|
-
"LSM_SVG_ELEMENT_CATEGORY_SHAPE",
|
940
|
-
"shape" },
|
941
|
-
{ LSM_SVG_ELEMENT_CATEGORY_BASIC_SHAPE,
|
942
|
-
"LSM_SVG_ELEMENT_CATEGORY_BASIC_SHAPE",
|
943
|
-
"basic-shape" },
|
944
|
-
{ LSM_SVG_ELEMENT_CATEGORY_TEXT_CONTENT,
|
945
|
-
"LSM_SVG_ELEMENT_CATEGORY_TEXT_CONTENT",
|
946
|
-
"text-content" },
|
947
|
-
{ LSM_SVG_ELEMENT_CATEGORY_TEXT_CONTENT_CHILD,
|
948
|
-
"LSM_SVG_ELEMENT_CATEGORY_TEXT_CONTENT_CHILD",
|
949
|
-
"text-content-child" },
|
950
|
-
{ LSM_SVG_ELEMENT_CATEGORY_GRADIENT,
|
951
|
-
"LSM_SVG_ELEMENT_CATEGORY_GRADIENT",
|
952
|
-
"gradient" },
|
953
|
-
{ LSM_SVG_ELEMENT_CATEGORY_FILTER_PRIMITIVE,
|
954
|
-
"LSM_SVG_ELEMENT_CATEGORY_FILTER_PRIMITIVE",
|
955
|
-
"filter-primitive" },
|
956
|
-
{ LSM_SVG_ELEMENT_CATEGORY_ANIMATION,
|
957
|
-
"LSM_SVG_ELEMENT_CATEGORY_ANIMATION",
|
958
|
-
"animation" },
|
959
|
-
{ 0, NULL, NULL }
|
960
|
-
};
|
961
|
-
the_type = g_flags_register_static (
|
962
|
-
g_intern_static_string ("LsmSvgElementCategory"),
|
963
|
-
values);
|
964
|
-
}
|
965
|
-
return the_type;
|
966
|
-
}
|
967
|
-
|
968
|
-
GType
|
969
|
-
lsm_svg_writing_mode_get_type (void)
|
970
|
-
{
|
971
|
-
static GType the_type = 0;
|
972
|
-
|
973
|
-
if (the_type == 0)
|
974
|
-
{
|
975
|
-
static const GEnumValue values[] = {
|
976
|
-
{ LSM_SVG_WRITING_MODE_ERROR,
|
977
|
-
"LSM_SVG_WRITING_MODE_ERROR",
|
978
|
-
"error" },
|
979
|
-
{ LSM_SVG_WRITING_MODE_LR_TB,
|
980
|
-
"LSM_SVG_WRITING_MODE_LR_TB",
|
981
|
-
"lr-tb" },
|
982
|
-
{ LSM_SVG_WRITING_MODE_RL_TB,
|
983
|
-
"LSM_SVG_WRITING_MODE_RL_TB",
|
984
|
-
"rl-tb" },
|
985
|
-
{ LSM_SVG_WRITING_MODE_TB_RL,
|
986
|
-
"LSM_SVG_WRITING_MODE_TB_RL",
|
987
|
-
"tb-rl" },
|
988
|
-
{ LSM_SVG_WRITING_MODE_LR,
|
989
|
-
"LSM_SVG_WRITING_MODE_LR",
|
990
|
-
"lr" },
|
991
|
-
{ LSM_SVG_WRITING_MODE_RL,
|
992
|
-
"LSM_SVG_WRITING_MODE_RL",
|
993
|
-
"rl" },
|
994
|
-
{ LSM_SVG_WRITING_MODE_TB,
|
995
|
-
"LSM_SVG_WRITING_MODE_TB",
|
996
|
-
"tb" },
|
997
|
-
{ 0, NULL, NULL }
|
998
|
-
};
|
999
|
-
the_type = g_enum_register_static (
|
1000
|
-
g_intern_static_string ("LsmSvgWritingMode"),
|
1001
|
-
values);
|
1002
|
-
}
|
1003
|
-
return the_type;
|
1004
|
-
}
|
1005
|
-
|
1006
|
-
GType
|
1007
|
-
lsm_svg_color_filter_type_get_type (void)
|
1008
|
-
{
|
1009
|
-
static GType the_type = 0;
|
1010
|
-
|
1011
|
-
if (the_type == 0)
|
1012
|
-
{
|
1013
|
-
static const GEnumValue values[] = {
|
1014
|
-
{ LSM_SVG_COLOR_FILTER_TYPE_ERROR,
|
1015
|
-
"LSM_SVG_COLOR_FILTER_TYPE_ERROR",
|
1016
|
-
"error" },
|
1017
|
-
{ LSM_SVG_COLOR_FILTER_TYPE_MATRIX,
|
1018
|
-
"LSM_SVG_COLOR_FILTER_TYPE_MATRIX",
|
1019
|
-
"matrix" },
|
1020
|
-
{ LSM_SVG_COLOR_FILTER_TYPE_SATURATE,
|
1021
|
-
"LSM_SVG_COLOR_FILTER_TYPE_SATURATE",
|
1022
|
-
"saturate" },
|
1023
|
-
{ LSM_SVG_COLOR_FILTER_TYPE_HUE_ROTATE,
|
1024
|
-
"LSM_SVG_COLOR_FILTER_TYPE_HUE_ROTATE",
|
1025
|
-
"hue-rotate" },
|
1026
|
-
{ LSM_SVG_COLOR_FILTER_TYPE_LUMINANCE_TO_ALPHA,
|
1027
|
-
"LSM_SVG_COLOR_FILTER_TYPE_LUMINANCE_TO_ALPHA",
|
1028
|
-
"luminance-to-alpha" },
|
1029
|
-
{ 0, NULL, NULL }
|
1030
|
-
};
|
1031
|
-
the_type = g_enum_register_static (
|
1032
|
-
g_intern_static_string ("LsmSvgColorFilterType"),
|
1033
|
-
values);
|
1034
|
-
}
|
1035
|
-
return the_type;
|
1036
|
-
}
|
1037
|
-
|
1038
|
-
GType
|
1039
|
-
lsm_svg_morphology_operator_get_type (void)
|
1040
|
-
{
|
1041
|
-
static GType the_type = 0;
|
1042
|
-
|
1043
|
-
if (the_type == 0)
|
1044
|
-
{
|
1045
|
-
static const GEnumValue values[] = {
|
1046
|
-
{ LSM_SVG_MORPHOLOGY_OPERATOR_ERROR,
|
1047
|
-
"LSM_SVG_MORPHOLOGY_OPERATOR_ERROR",
|
1048
|
-
"error" },
|
1049
|
-
{ LSM_SVG_MORPHOLOGY_OPERATOR_ERODE,
|
1050
|
-
"LSM_SVG_MORPHOLOGY_OPERATOR_ERODE",
|
1051
|
-
"erode" },
|
1052
|
-
{ LSM_SVG_MORPHOLOGY_OPERATOR_DILATE,
|
1053
|
-
"LSM_SVG_MORPHOLOGY_OPERATOR_DILATE",
|
1054
|
-
"dilate" },
|
1055
|
-
{ 0, NULL, NULL }
|
1056
|
-
};
|
1057
|
-
the_type = g_enum_register_static (
|
1058
|
-
g_intern_static_string ("LsmSvgMorphologyOperator"),
|
1059
|
-
values);
|
1060
|
-
}
|
1061
|
-
return the_type;
|
1062
|
-
}
|
1063
|
-
|
1064
|
-
GType
|
1065
|
-
lsm_svg_edge_mode_get_type (void)
|
1066
|
-
{
|
1067
|
-
static GType the_type = 0;
|
1068
|
-
|
1069
|
-
if (the_type == 0)
|
1070
|
-
{
|
1071
|
-
static const GEnumValue values[] = {
|
1072
|
-
{ LSM_SVG_EDGE_MODE_ERROR,
|
1073
|
-
"LSM_SVG_EDGE_MODE_ERROR",
|
1074
|
-
"error" },
|
1075
|
-
{ LSM_SVG_EDGE_MODE_DUPLICATE,
|
1076
|
-
"LSM_SVG_EDGE_MODE_DUPLICATE",
|
1077
|
-
"duplicate" },
|
1078
|
-
{ LSM_SVG_EDGE_MODE_WRAP,
|
1079
|
-
"LSM_SVG_EDGE_MODE_WRAP",
|
1080
|
-
"wrap" },
|
1081
|
-
{ LSM_SVG_EDGE_MODE_NONE,
|
1082
|
-
"LSM_SVG_EDGE_MODE_NONE",
|
1083
|
-
"none" },
|
1084
|
-
{ 0, NULL, NULL }
|
1085
|
-
};
|
1086
|
-
the_type = g_enum_register_static (
|
1087
|
-
g_intern_static_string ("LsmSvgEdgeMode"),
|
1088
|
-
values);
|
1089
|
-
}
|
1090
|
-
return the_type;
|
1091
|
-
}
|
1092
|
-
|
1093
|
-
GType
|
1094
|
-
lsm_svg_stitch_tiles_get_type (void)
|
1095
|
-
{
|
1096
|
-
static GType the_type = 0;
|
1097
|
-
|
1098
|
-
if (the_type == 0)
|
1099
|
-
{
|
1100
|
-
static const GEnumValue values[] = {
|
1101
|
-
{ LSM_SVG_STITCH_TILES_ERROR,
|
1102
|
-
"LSM_SVG_STITCH_TILES_ERROR",
|
1103
|
-
"error" },
|
1104
|
-
{ LSM_SVG_STITCH_TILES_NO_STITCH,
|
1105
|
-
"LSM_SVG_STITCH_TILES_NO_STITCH",
|
1106
|
-
"no-stitch" },
|
1107
|
-
{ LSM_SVG_STITCH_TILES_STITCH,
|
1108
|
-
"LSM_SVG_STITCH_TILES_STITCH",
|
1109
|
-
"stitch" },
|
1110
|
-
{ 0, NULL, NULL }
|
1111
|
-
};
|
1112
|
-
the_type = g_enum_register_static (
|
1113
|
-
g_intern_static_string ("LsmSvgStitchTiles"),
|
1114
|
-
values);
|
1115
|
-
}
|
1116
|
-
return the_type;
|
1117
|
-
}
|
1118
|
-
|
1119
|
-
GType
|
1120
|
-
lsm_svg_turbulence_type_get_type (void)
|
1121
|
-
{
|
1122
|
-
static GType the_type = 0;
|
1123
|
-
|
1124
|
-
if (the_type == 0)
|
1125
|
-
{
|
1126
|
-
static const GEnumValue values[] = {
|
1127
|
-
{ LSM_SVG_TURBULENCE_TYPE_ERROR,
|
1128
|
-
"LSM_SVG_TURBULENCE_TYPE_ERROR",
|
1129
|
-
"error" },
|
1130
|
-
{ LSM_SVG_TURBULENCE_TYPE_TURBULENCE,
|
1131
|
-
"LSM_SVG_TURBULENCE_TYPE_TURBULENCE",
|
1132
|
-
"turbulence" },
|
1133
|
-
{ LSM_SVG_TURBULENCE_TYPE_FRACTAL_NOISE,
|
1134
|
-
"LSM_SVG_TURBULENCE_TYPE_FRACTAL_NOISE",
|
1135
|
-
"fractal-noise" },
|
1136
|
-
{ 0, NULL, NULL }
|
1137
|
-
};
|
1138
|
-
the_type = g_enum_register_static (
|
1139
|
-
g_intern_static_string ("LsmSvgTurbulenceType"),
|
1140
|
-
values);
|
1141
|
-
}
|
1142
|
-
return the_type;
|
1143
|
-
}
|
1144
|
-
|
1145
|
-
GType
|
1146
|
-
lsm_svg_channel_selector_get_type (void)
|
1147
|
-
{
|
1148
|
-
static GType the_type = 0;
|
1149
|
-
|
1150
|
-
if (the_type == 0)
|
1151
|
-
{
|
1152
|
-
static const GEnumValue values[] = {
|
1153
|
-
{ LSM_SVG_CHANNEL_SELECTOR_ERROR,
|
1154
|
-
"LSM_SVG_CHANNEL_SELECTOR_ERROR",
|
1155
|
-
"error" },
|
1156
|
-
{ LSM_SVG_CHANNEL_SELECTOR_RED,
|
1157
|
-
"LSM_SVG_CHANNEL_SELECTOR_RED",
|
1158
|
-
"red" },
|
1159
|
-
{ LSM_SVG_CHANNEL_SELECTOR_GREEN,
|
1160
|
-
"LSM_SVG_CHANNEL_SELECTOR_GREEN",
|
1161
|
-
"green" },
|
1162
|
-
{ LSM_SVG_CHANNEL_SELECTOR_BLUE,
|
1163
|
-
"LSM_SVG_CHANNEL_SELECTOR_BLUE",
|
1164
|
-
"blue" },
|
1165
|
-
{ LSM_SVG_CHANNEL_SELECTOR_ALPHA,
|
1166
|
-
"LSM_SVG_CHANNEL_SELECTOR_ALPHA",
|
1167
|
-
"alpha" },
|
1168
|
-
{ 0, NULL, NULL }
|
1169
|
-
};
|
1170
|
-
the_type = g_enum_register_static (
|
1171
|
-
g_intern_static_string ("LsmSvgChannelSelector"),
|
1172
|
-
values);
|
1173
|
-
}
|
1174
|
-
return the_type;
|
1175
|
-
}
|
1176
|
-
|
1177
|
-
/* enumerations from "lsmsvgview.h" */
|
1178
|
-
#include "lsmsvgview.h"
|
1179
|
-
|
1180
|
-
GType
|
1181
|
-
lsm_svg_view_surface_type_get_type (void)
|
1182
|
-
{
|
1183
|
-
static GType the_type = 0;
|
1184
|
-
|
1185
|
-
if (the_type == 0)
|
1186
|
-
{
|
1187
|
-
static const GEnumValue values[] = {
|
1188
|
-
{ LSM_SVG_VIEW_SURFACE_TYPE_AUTO,
|
1189
|
-
"LSM_SVG_VIEW_SURFACE_TYPE_AUTO",
|
1190
|
-
"auto" },
|
1191
|
-
{ LSM_SVG_VIEW_SURFACE_TYPE_IMAGE,
|
1192
|
-
"LSM_SVG_VIEW_SURFACE_TYPE_IMAGE",
|
1193
|
-
"image" },
|
1194
|
-
{ 0, NULL, NULL }
|
1195
|
-
};
|
1196
|
-
the_type = g_enum_register_static (
|
1197
|
-
g_intern_static_string ("LsmSvgViewSurfaceType"),
|
1198
|
-
values);
|
1199
|
-
}
|
1200
|
-
return the_type;
|
1201
|
-
}
|
1202
|
-
|
1203
|
-
/* enumerations from "lsmsvgmatrix.h" */
|
1204
|
-
#include "lsmsvgmatrix.h"
|
1205
|
-
|
1206
|
-
GType
|
1207
|
-
lsm_svg_matrix_flags_get_type (void)
|
1208
|
-
{
|
1209
|
-
static GType the_type = 0;
|
1210
|
-
|
1211
|
-
if (the_type == 0)
|
1212
|
-
{
|
1213
|
-
static const GFlagsValue values[] = {
|
1214
|
-
{ LSM_SVG_MATRIX_FLAGS_IDENTITY,
|
1215
|
-
"LSM_SVG_MATRIX_FLAGS_IDENTITY",
|
1216
|
-
"identity" },
|
1217
|
-
{ 0, NULL, NULL }
|
1218
|
-
};
|
1219
|
-
the_type = g_flags_register_static (
|
1220
|
-
g_intern_static_string ("LsmSvgMatrixFlags"),
|
1221
|
-
values);
|
1222
|
-
}
|
1223
|
-
return the_type;
|
1224
|
-
}
|
1225
|
-
|
1226
|
-
/* enumerations from "lsmsvguseelement.h" */
|
1227
|
-
#include "lsmsvguseelement.h"
|
1228
|
-
|
1229
|
-
GType
|
1230
|
-
lsm_svg_use_element_flags_get_type (void)
|
1231
|
-
{
|
1232
|
-
static GType the_type = 0;
|
1233
|
-
|
1234
|
-
if (the_type == 0)
|
1235
|
-
{
|
1236
|
-
static const GFlagsValue values[] = {
|
1237
|
-
{ LSM_SVG_USE_ELEMENT_FLAGS_IN_USE_FOR_RENDER,
|
1238
|
-
"LSM_SVG_USE_ELEMENT_FLAGS_IN_USE_FOR_RENDER",
|
1239
|
-
"render" },
|
1240
|
-
{ LSM_SVG_USE_ELEMENT_FLAGS_IN_USE_FOR_GET_EXTENTS,
|
1241
|
-
"LSM_SVG_USE_ELEMENT_FLAGS_IN_USE_FOR_GET_EXTENTS",
|
1242
|
-
"get-extents" },
|
1243
|
-
{ 0, NULL, NULL }
|
1244
|
-
};
|
1245
|
-
the_type = g_flags_register_static (
|
1246
|
-
g_intern_static_string ("LsmSvgUseElementFlags"),
|
1247
|
-
values);
|
1248
|
-
}
|
1249
|
-
return the_type;
|
1250
|
-
}
|
1251
|
-
|
1252
|
-
|
1253
|
-
/* Generated data ends here */
|
1254
|
-
|