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,245 +0,0 @@
|
|
1
|
-
<SECTION>
|
2
|
-
<FILE>lsmdomcharacterdata</FILE>
|
3
|
-
<TITLE>LsmDomCharacterData</TITLE>
|
4
|
-
lsm_dom_character_data_get_data
|
5
|
-
lsm_dom_character_data_set_data
|
6
|
-
<SUBSECTION Standard>
|
7
|
-
LSM_DOM_CHARACTER_DATA
|
8
|
-
LSM_DOM_CHARACTER_DATA_CLASS
|
9
|
-
LSM_DOM_CHARACTER_DATA_GET_CLASS
|
10
|
-
LSM_IS_DOM_CHARACTER_DATA
|
11
|
-
LSM_IS_DOM_CHARACTER_DATA_CLASS
|
12
|
-
LSM_TYPE_DOM_CHARACTER_DATA
|
13
|
-
LsmDomCharacterData
|
14
|
-
LsmDomCharacterDataClass
|
15
|
-
lsm_dom_character_data_get_type
|
16
|
-
</SECTION>
|
17
|
-
|
18
|
-
<SECTION>
|
19
|
-
<FILE>lsmdomdocument</FILE>
|
20
|
-
<TITLE>LsmDomDocument</TITLE>
|
21
|
-
lsm_dom_document_get_document_element
|
22
|
-
lsm_dom_document_create_element
|
23
|
-
lsm_dom_document_create_text_node
|
24
|
-
lsm_dom_document_create_view
|
25
|
-
lsm_dom_document_get_url
|
26
|
-
lsm_dom_document_set_url
|
27
|
-
lsm_dom_document_set_path
|
28
|
-
lsm_dom_document_get_href_data
|
29
|
-
<SUBSECTION Standard>
|
30
|
-
LSM_DOM_DOCUMENT
|
31
|
-
LSM_DOM_DOCUMENT_CLASS
|
32
|
-
LSM_DOM_DOCUMENT_GET_CLASS
|
33
|
-
LSM_IS_DOM_DOCUMENT
|
34
|
-
LSM_IS_DOM_DOCUMENT_CLASS
|
35
|
-
LSM_TYPE_DOM_DOCUMENT
|
36
|
-
LsmDomDocument
|
37
|
-
LsmDomDocumentClass
|
38
|
-
lsm_dom_document_get_type
|
39
|
-
</SECTION>
|
40
|
-
|
41
|
-
<SECTION>
|
42
|
-
<FILE>lsmdomdocumentfragment</FILE>
|
43
|
-
<TITLE>LsmDomDocumentFragment</TITLE>
|
44
|
-
lsm_dom_document_fragment_new
|
45
|
-
<SUBSECTION Standard>
|
46
|
-
LSM_DOM_DOCUMENT_FRAGMENT
|
47
|
-
LSM_DOM_DOCUMENT_FRAGMENT_CLASS
|
48
|
-
LSM_DOM_DOCUMENT_FRAGMENT_GET_CLASS
|
49
|
-
LSM_IS_DOM_DOCUMENT_FRAGMENT
|
50
|
-
LSM_IS_DOM_DOCUMENT_FRAGMENT_CLASS
|
51
|
-
LSM_TYPE_DOM_DOCUMENT_FRAGMENT
|
52
|
-
LsmDomDocumentFragment
|
53
|
-
LsmDomDocumentFragmentClass
|
54
|
-
lsm_dom_document_fragment_get_type
|
55
|
-
</SECTION>
|
56
|
-
|
57
|
-
<SECTION>
|
58
|
-
<FILE>lsmdomelement</FILE>
|
59
|
-
<TITLE>LsmDomElement</TITLE>
|
60
|
-
lsm_dom_element_get_tag_name
|
61
|
-
lsm_dom_element_get_attribute
|
62
|
-
lsm_dom_element_set_attribute
|
63
|
-
<SUBSECTION Standard>
|
64
|
-
LSM_DOM_ELEMENT
|
65
|
-
LSM_DOM_ELEMENT_CLASS
|
66
|
-
LSM_DOM_ELEMENT_GET_CLASS
|
67
|
-
LSM_IS_DOM_ELEMENT
|
68
|
-
LSM_IS_DOM_ELEMENT_CLASS
|
69
|
-
LSM_TYPE_DOM_ELEMENT
|
70
|
-
LsmDomElement
|
71
|
-
LsmDomElementClass
|
72
|
-
lsm_dom_element_get_type
|
73
|
-
</SECTION>
|
74
|
-
|
75
|
-
<SECTION>
|
76
|
-
<FILE>lsmdomentities</FILE>
|
77
|
-
lsm_dom_get_entity
|
78
|
-
</SECTION>
|
79
|
-
|
80
|
-
<SECTION>
|
81
|
-
<FILE>lsmdomimplementation</FILE>
|
82
|
-
LsmDomDocumentCreateFunction
|
83
|
-
lsm_dom_implementation_create_document
|
84
|
-
lsm_dom_implementation_cleanup
|
85
|
-
</SECTION>
|
86
|
-
|
87
|
-
<SECTION>
|
88
|
-
<FILE>lsmdomnamednodemap</FILE>
|
89
|
-
<TITLE>LsmDomNamedNodeMap</TITLE>
|
90
|
-
lsm_dom_named_node_map_get_named_item
|
91
|
-
lsm_dom_named_node_map_set_named_item
|
92
|
-
lsm_dom_named_node_map_remove_named_item
|
93
|
-
lsm_dom_named_node_map_get_item
|
94
|
-
lsm_dom_named_node_map_get_length
|
95
|
-
<SUBSECTION Standard>
|
96
|
-
LSM_DOM_NAMED_NODE_MAP
|
97
|
-
LSM_DOM_NAMED_NODE_MAP_CLASS
|
98
|
-
LSM_DOM_NAMED_NODE_MAP_GET_CLASS
|
99
|
-
LSM_IS_DOM_NAMED_NODE_MAP
|
100
|
-
LSM_IS_DOM_NAMED_NODE_MAP_CLASS
|
101
|
-
LSM_TYPE_DOM_NAMED_NODE_MAP
|
102
|
-
LsmDomNamedNodeMap
|
103
|
-
LsmDomNamedNodeMapClass
|
104
|
-
lsm_dom_named_node_map_get_type
|
105
|
-
</SECTION>
|
106
|
-
|
107
|
-
<SECTION>
|
108
|
-
<FILE>lsmdomnode</FILE>
|
109
|
-
<TITLE>LsmDomNode</TITLE>
|
110
|
-
LsmDomNodeType
|
111
|
-
lsm_dom_node_get_node_name
|
112
|
-
lsm_dom_node_get_node_value
|
113
|
-
lsm_dom_node_set_node_value
|
114
|
-
lsm_dom_node_get_node_type
|
115
|
-
lsm_dom_node_get_parent_node
|
116
|
-
lsm_dom_node_get_child_nodes
|
117
|
-
lsm_dom_node_get_first_child
|
118
|
-
lsm_dom_node_get_last_child
|
119
|
-
lsm_dom_node_get_previous_sibling
|
120
|
-
lsm_dom_node_get_next_sibling
|
121
|
-
lsm_dom_node_get_attributes
|
122
|
-
lsm_dom_node_insert_before
|
123
|
-
lsm_dom_node_replace_child
|
124
|
-
lsm_dom_node_append_child
|
125
|
-
lsm_dom_node_remove_child
|
126
|
-
lsm_dom_node_has_child_nodes
|
127
|
-
lsm_dom_node_changed
|
128
|
-
lsm_dom_node_get_owner_document
|
129
|
-
lsm_dom_node_write_to_stream
|
130
|
-
<SUBSECTION Standard>
|
131
|
-
LSM_DOM_NODE
|
132
|
-
LSM_DOM_NODE_CLASS
|
133
|
-
LSM_DOM_NODE_GET_CLASS
|
134
|
-
LSM_IS_DOM_NODE
|
135
|
-
LSM_IS_DOM_NODE_CLASS
|
136
|
-
LSM_TYPE_DOM_NODE
|
137
|
-
LsmDomNode
|
138
|
-
LsmDomNodeClass
|
139
|
-
lsm_dom_node_get_type
|
140
|
-
</SECTION>
|
141
|
-
|
142
|
-
<SECTION>
|
143
|
-
<FILE>lsmdomnodelist</FILE>
|
144
|
-
<TITLE>LsmDomNodeList</TITLE>
|
145
|
-
lsm_dom_node_list_get_item
|
146
|
-
lsm_dom_node_list_get_length
|
147
|
-
<SUBSECTION Standard>
|
148
|
-
LSM_DOM_NODE_LIST
|
149
|
-
LSM_DOM_NODE_LIST_CLASS
|
150
|
-
LSM_DOM_NODE_LIST_GET_CLASS
|
151
|
-
LSM_IS_DOM_NODE_LIST
|
152
|
-
LSM_IS_DOM_NODE_LIST_CLASS
|
153
|
-
LSM_TYPE_DOM_NODE_LIST
|
154
|
-
LsmDomNodeList
|
155
|
-
LsmDomNodeListClass
|
156
|
-
lsm_dom_node_list_get_type
|
157
|
-
</SECTION>
|
158
|
-
|
159
|
-
<SECTION>
|
160
|
-
<FILE>lsmdomparser</FILE>
|
161
|
-
lsm_dom_document_append_from_memory
|
162
|
-
lsm_dom_document_new_from_memory
|
163
|
-
lsm_dom_document_new_from_path
|
164
|
-
lsm_dom_document_new_from_url
|
165
|
-
lsm_dom_document_save_to_stream
|
166
|
-
lsm_dom_document_save_to_memory
|
167
|
-
lsm_dom_document_save_to_path
|
168
|
-
lsm_dom_document_save_to_url
|
169
|
-
</SECTION>
|
170
|
-
|
171
|
-
<SECTION>
|
172
|
-
<FILE>lsmdomtext</FILE>
|
173
|
-
<TITLE>LsmDomText</TITLE>
|
174
|
-
lsm_dom_text_new
|
175
|
-
<SUBSECTION Standard>
|
176
|
-
LSM_DOM_TEXT
|
177
|
-
LSM_DOM_TEXT_CLASS
|
178
|
-
LSM_DOM_TEXT_GET_CLASS
|
179
|
-
LSM_IS_DOM_TEXT
|
180
|
-
LSM_IS_DOM_TEXT_CLASS
|
181
|
-
LSM_TYPE_DOM_TEXT
|
182
|
-
LsmDomText
|
183
|
-
LsmDomTextClass
|
184
|
-
lsm_dom_text_get_type
|
185
|
-
</SECTION>
|
186
|
-
|
187
|
-
<SECTION>
|
188
|
-
<FILE>lsmdomtypes</FILE>
|
189
|
-
LsmDomNamedNodeMap
|
190
|
-
LsmDomElement
|
191
|
-
LsmDomNode
|
192
|
-
LsmDomDocument
|
193
|
-
LsmDomNodeList
|
194
|
-
LsmDomView
|
195
|
-
LsmDomCharacterData
|
196
|
-
LsmDomText
|
197
|
-
LsmDomDocumentFragment
|
198
|
-
</SECTION>
|
199
|
-
|
200
|
-
<SECTION>
|
201
|
-
<FILE>lsmdomview</FILE>
|
202
|
-
<TITLE>LsmDomView</TITLE>
|
203
|
-
LSM_DOM_VIEW_DEFAULT_RESOLUTION
|
204
|
-
LSM_DOM_VIEW_DEFAULT_VIEWBOX_WIDTH
|
205
|
-
LSM_DOM_VIEW_DEFAULT_VIEWBOX_HEIGHT
|
206
|
-
lsm_dom_view_get_resolution
|
207
|
-
lsm_dom_view_set_resolution
|
208
|
-
lsm_dom_view_set_viewport
|
209
|
-
lsm_dom_view_set_viewport_pixels
|
210
|
-
lsm_dom_view_get_viewport
|
211
|
-
lsm_dom_view_get_viewport_pixels
|
212
|
-
lsm_dom_view_render
|
213
|
-
lsm_dom_view_get_size
|
214
|
-
lsm_dom_view_get_size_pixels
|
215
|
-
lsm_dom_view_set_debug
|
216
|
-
lsm_dom_view_set_document
|
217
|
-
<SUBSECTION Standard>
|
218
|
-
LSM_DOM_VIEW
|
219
|
-
LSM_DOM_VIEW_CLASS
|
220
|
-
LSM_DOM_VIEW_GET_CLASS
|
221
|
-
LSM_IS_DOM_VIEW
|
222
|
-
LSM_IS_DOM_VIEW_CLASS
|
223
|
-
LSM_TYPE_DOM_VIEW
|
224
|
-
LsmDomView
|
225
|
-
LsmDomViewClass
|
226
|
-
lsm_dom_view_get_type
|
227
|
-
</SECTION>
|
228
|
-
|
229
|
-
<SECTION>
|
230
|
-
<FILE>lsmtypes</FILE>
|
231
|
-
LsmExtents
|
232
|
-
LsmBox
|
233
|
-
</SECTION>
|
234
|
-
|
235
|
-
<SECTION>
|
236
|
-
<FILE>lsmutils</FILE>
|
237
|
-
<SUBSECTION Standard>
|
238
|
-
LSM_TYPE_BOX
|
239
|
-
LSM_TYPE_EXTENTS
|
240
|
-
LsmBox
|
241
|
-
LsmExtents
|
242
|
-
lsm_box_get_type
|
243
|
-
lsm_extents_get_type
|
244
|
-
</SECTION>
|
245
|
-
|
@@ -1,856 +0,0 @@
|
|
1
|
-
<MACRO>
|
2
|
-
<NAME>LSM_TYPE_DOM_CHARACTER_DATA</NAME>
|
3
|
-
#define LSM_TYPE_DOM_CHARACTER_DATA (lsm_dom_character_data_get_type ())
|
4
|
-
</MACRO>
|
5
|
-
<MACRO>
|
6
|
-
<NAME>LSM_DOM_CHARACTER_DATA</NAME>
|
7
|
-
#define LSM_DOM_CHARACTER_DATA(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), LSM_TYPE_DOM_CHARACTER_DATA, LsmDomCharacterData))
|
8
|
-
</MACRO>
|
9
|
-
<MACRO>
|
10
|
-
<NAME>LSM_DOM_CHARACTER_DATA_CLASS</NAME>
|
11
|
-
#define LSM_DOM_CHARACTER_DATA_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), LSM_TYPE_DOM_CHARACTER_DATA, LsmDomNodeClass))
|
12
|
-
</MACRO>
|
13
|
-
<MACRO>
|
14
|
-
<NAME>LSM_IS_DOM_CHARACTER_DATA</NAME>
|
15
|
-
#define LSM_IS_DOM_CHARACTER_DATA(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LSM_TYPE_DOM_CHARACTER_DATA))
|
16
|
-
</MACRO>
|
17
|
-
<MACRO>
|
18
|
-
<NAME>LSM_IS_DOM_CHARACTER_DATA_CLASS</NAME>
|
19
|
-
#define LSM_IS_DOM_CHARACTER_DATA_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), LSM_TYPE_DOM_CHARACTER_DATA))
|
20
|
-
</MACRO>
|
21
|
-
<MACRO>
|
22
|
-
<NAME>LSM_DOM_CHARACTER_DATA_GET_CLASS</NAME>
|
23
|
-
#define LSM_DOM_CHARACTER_DATA_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), LSM_TYPE_DOM_CHARACTER_DATA, LsmDomCharacterDataClass))
|
24
|
-
</MACRO>
|
25
|
-
<STRUCT>
|
26
|
-
<NAME>LsmDomCharacterData</NAME>
|
27
|
-
struct _LsmDomCharacterData
|
28
|
-
{
|
29
|
-
LsmDomNode node;
|
30
|
-
|
31
|
-
char *data;
|
32
|
-
};
|
33
|
-
</STRUCT>
|
34
|
-
<STRUCT>
|
35
|
-
<NAME>LsmDomCharacterDataClass</NAME>
|
36
|
-
struct _LsmDomCharacterDataClass {
|
37
|
-
LsmDomNodeClass parent_class;
|
38
|
-
};
|
39
|
-
</STRUCT>
|
40
|
-
<FUNCTION>
|
41
|
-
<NAME>lsm_dom_character_data_get_type</NAME>
|
42
|
-
<RETURNS>GType </RETURNS>
|
43
|
-
void
|
44
|
-
</FUNCTION>
|
45
|
-
<FUNCTION>
|
46
|
-
<NAME>lsm_dom_character_data_get_data</NAME>
|
47
|
-
<RETURNS>const char * </RETURNS>
|
48
|
-
LsmDomCharacterData* self
|
49
|
-
</FUNCTION>
|
50
|
-
<FUNCTION>
|
51
|
-
<NAME>lsm_dom_character_data_set_data</NAME>
|
52
|
-
<RETURNS>void </RETURNS>
|
53
|
-
LsmDomCharacterData* self, const char* value
|
54
|
-
</FUNCTION>
|
55
|
-
<MACRO>
|
56
|
-
<NAME>LSM_TYPE_DOM_DOCUMENT</NAME>
|
57
|
-
#define LSM_TYPE_DOM_DOCUMENT (lsm_dom_document_get_type ())
|
58
|
-
</MACRO>
|
59
|
-
<MACRO>
|
60
|
-
<NAME>LSM_DOM_DOCUMENT</NAME>
|
61
|
-
#define LSM_DOM_DOCUMENT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), LSM_TYPE_DOM_DOCUMENT, LsmDomDocument))
|
62
|
-
</MACRO>
|
63
|
-
<MACRO>
|
64
|
-
<NAME>LSM_DOM_DOCUMENT_CLASS</NAME>
|
65
|
-
#define LSM_DOM_DOCUMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), LSM_TYPE_DOM_DOCUMENT, LsmDomDocumentClass))
|
66
|
-
</MACRO>
|
67
|
-
<MACRO>
|
68
|
-
<NAME>LSM_IS_DOM_DOCUMENT</NAME>
|
69
|
-
#define LSM_IS_DOM_DOCUMENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LSM_TYPE_DOM_DOCUMENT))
|
70
|
-
</MACRO>
|
71
|
-
<MACRO>
|
72
|
-
<NAME>LSM_IS_DOM_DOCUMENT_CLASS</NAME>
|
73
|
-
#define LSM_IS_DOM_DOCUMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), LSM_TYPE_DOM_DOCUMENT))
|
74
|
-
</MACRO>
|
75
|
-
<MACRO>
|
76
|
-
<NAME>LSM_DOM_DOCUMENT_GET_CLASS</NAME>
|
77
|
-
#define LSM_DOM_DOCUMENT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), LSM_TYPE_DOM_DOCUMENT, LsmDomDocumentClass))
|
78
|
-
</MACRO>
|
79
|
-
<STRUCT>
|
80
|
-
<NAME>LsmDomDocument</NAME>
|
81
|
-
struct _LsmDomDocument {
|
82
|
-
LsmDomNode node;
|
83
|
-
|
84
|
-
char * url;
|
85
|
-
};
|
86
|
-
</STRUCT>
|
87
|
-
<STRUCT>
|
88
|
-
<NAME>LsmDomDocumentClass</NAME>
|
89
|
-
struct _LsmDomDocumentClass {
|
90
|
-
LsmDomNodeClass parent_class;
|
91
|
-
|
92
|
-
LsmDomElement * (*get_document_element) (LsmDomDocument* self);
|
93
|
-
LsmDomElement * (*create_element) (LsmDomDocument* self, const char *tag_name);
|
94
|
-
LsmDomText * (*create_text_node) (LsmDomDocument* self, const char *data);
|
95
|
-
|
96
|
-
LsmDomView* (*create_view) (LsmDomDocument *self);
|
97
|
-
};
|
98
|
-
</STRUCT>
|
99
|
-
<FUNCTION>
|
100
|
-
<NAME>lsm_dom_document_get_type</NAME>
|
101
|
-
<RETURNS>GType </RETURNS>
|
102
|
-
void
|
103
|
-
</FUNCTION>
|
104
|
-
<FUNCTION>
|
105
|
-
<NAME>lsm_dom_document_get_document_element</NAME>
|
106
|
-
<RETURNS>LsmDomElement * </RETURNS>
|
107
|
-
LsmDomDocument* self
|
108
|
-
</FUNCTION>
|
109
|
-
<FUNCTION>
|
110
|
-
<NAME>lsm_dom_document_create_element</NAME>
|
111
|
-
<RETURNS>LsmDomElement * </RETURNS>
|
112
|
-
LsmDomDocument* self, const char *tag_name
|
113
|
-
</FUNCTION>
|
114
|
-
<FUNCTION>
|
115
|
-
<NAME>lsm_dom_document_create_text_node</NAME>
|
116
|
-
<RETURNS>LsmDomText * </RETURNS>
|
117
|
-
LsmDomDocument* self, const char *data
|
118
|
-
</FUNCTION>
|
119
|
-
<FUNCTION>
|
120
|
-
<NAME>lsm_dom_document_create_view</NAME>
|
121
|
-
<RETURNS>LsmDomView * </RETURNS>
|
122
|
-
LsmDomDocument *self
|
123
|
-
</FUNCTION>
|
124
|
-
<FUNCTION>
|
125
|
-
<NAME>lsm_dom_document_get_url</NAME>
|
126
|
-
<RETURNS>const char * </RETURNS>
|
127
|
-
LsmDomDocument *self
|
128
|
-
</FUNCTION>
|
129
|
-
<FUNCTION>
|
130
|
-
<NAME>lsm_dom_document_set_url</NAME>
|
131
|
-
<RETURNS>void </RETURNS>
|
132
|
-
LsmDomDocument *self, const char *url
|
133
|
-
</FUNCTION>
|
134
|
-
<FUNCTION>
|
135
|
-
<NAME>lsm_dom_document_set_path</NAME>
|
136
|
-
<RETURNS>void </RETURNS>
|
137
|
-
LsmDomDocument *self, const char *path
|
138
|
-
</FUNCTION>
|
139
|
-
<FUNCTION>
|
140
|
-
<NAME>lsm_dom_document_get_href_data</NAME>
|
141
|
-
<RETURNS>void * </RETURNS>
|
142
|
-
LsmDomDocument *self, const char *href, gsize *size
|
143
|
-
</FUNCTION>
|
144
|
-
<MACRO>
|
145
|
-
<NAME>LSM_TYPE_DOM_DOCUMENT_FRAGMENT</NAME>
|
146
|
-
#define LSM_TYPE_DOM_DOCUMENT_FRAGMENT (lsm_dom_document_fragment_get_type ())
|
147
|
-
</MACRO>
|
148
|
-
<MACRO>
|
149
|
-
<NAME>LSM_DOM_DOCUMENT_FRAGMENT</NAME>
|
150
|
-
#define LSM_DOM_DOCUMENT_FRAGMENT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), LSM_TYPE_DOM_DOCUMENT_FRAGMENT, LsmDomDocumentFragment))
|
151
|
-
</MACRO>
|
152
|
-
<MACRO>
|
153
|
-
<NAME>LSM_DOM_DOCUMENT_FRAGMENT_CLASS</NAME>
|
154
|
-
#define LSM_DOM_DOCUMENT_FRAGMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), LSM_TYPE_DOM_DOCUMENT_FRAGMENT, LsmDomDocumentFragmentClass))
|
155
|
-
</MACRO>
|
156
|
-
<MACRO>
|
157
|
-
<NAME>LSM_IS_DOM_DOCUMENT_FRAGMENT</NAME>
|
158
|
-
#define LSM_IS_DOM_DOCUMENT_FRAGMENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LSM_TYPE_DOM_DOCUMENT_FRAGMENT))
|
159
|
-
</MACRO>
|
160
|
-
<MACRO>
|
161
|
-
<NAME>LSM_IS_DOM_DOCUMENT_FRAGMENT_CLASS</NAME>
|
162
|
-
#define LSM_IS_DOM_DOCUMENT_FRAGMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), LSM_TYPE_DOM_DOCUMENT_FRAGMENT))
|
163
|
-
</MACRO>
|
164
|
-
<MACRO>
|
165
|
-
<NAME>LSM_DOM_DOCUMENT_FRAGMENT_GET_CLASS</NAME>
|
166
|
-
#define LSM_DOM_DOCUMENT_FRAGMENT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), LSM_TYPE_DOM_DOCUMENT_FRAGMENT, LsmDomDocumentFragmentClass))
|
167
|
-
</MACRO>
|
168
|
-
<STRUCT>
|
169
|
-
<NAME>LsmDomDocumentFragment</NAME>
|
170
|
-
struct _LsmDomDocumentFragment {
|
171
|
-
LsmDomNode node;
|
172
|
-
};
|
173
|
-
</STRUCT>
|
174
|
-
<STRUCT>
|
175
|
-
<NAME>LsmDomDocumentFragmentClass</NAME>
|
176
|
-
struct _LsmDomDocumentFragmentClass {
|
177
|
-
LsmDomNodeClass parent_class;
|
178
|
-
};
|
179
|
-
</STRUCT>
|
180
|
-
<FUNCTION>
|
181
|
-
<NAME>lsm_dom_document_fragment_get_type</NAME>
|
182
|
-
<RETURNS>GType </RETURNS>
|
183
|
-
void
|
184
|
-
</FUNCTION>
|
185
|
-
<FUNCTION>
|
186
|
-
<NAME>lsm_dom_document_fragment_new</NAME>
|
187
|
-
<RETURNS>LsmDomDocumentFragment * </RETURNS>
|
188
|
-
void
|
189
|
-
</FUNCTION>
|
190
|
-
<MACRO>
|
191
|
-
<NAME>LSM_TYPE_DOM_ELEMENT</NAME>
|
192
|
-
#define LSM_TYPE_DOM_ELEMENT (lsm_dom_element_get_type ())
|
193
|
-
</MACRO>
|
194
|
-
<MACRO>
|
195
|
-
<NAME>LSM_DOM_ELEMENT</NAME>
|
196
|
-
#define LSM_DOM_ELEMENT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), LSM_TYPE_DOM_ELEMENT, LsmDomElement))
|
197
|
-
</MACRO>
|
198
|
-
<MACRO>
|
199
|
-
<NAME>LSM_DOM_ELEMENT_CLASS</NAME>
|
200
|
-
#define LSM_DOM_ELEMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), LSM_TYPE_DOM_ELEMENT, LsmDomElementClass))
|
201
|
-
</MACRO>
|
202
|
-
<MACRO>
|
203
|
-
<NAME>LSM_IS_DOM_ELEMENT</NAME>
|
204
|
-
#define LSM_IS_DOM_ELEMENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LSM_TYPE_DOM_ELEMENT))
|
205
|
-
</MACRO>
|
206
|
-
<MACRO>
|
207
|
-
<NAME>LSM_IS_DOM_ELEMENT_CLASS</NAME>
|
208
|
-
#define LSM_IS_DOM_ELEMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), LSM_TYPE_DOM_ELEMENT))
|
209
|
-
</MACRO>
|
210
|
-
<MACRO>
|
211
|
-
<NAME>LSM_DOM_ELEMENT_GET_CLASS</NAME>
|
212
|
-
#define LSM_DOM_ELEMENT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), LSM_TYPE_DOM_ELEMENT, LsmDomElementClass))
|
213
|
-
</MACRO>
|
214
|
-
<STRUCT>
|
215
|
-
<NAME>LsmDomElement</NAME>
|
216
|
-
struct _LsmDomElement {
|
217
|
-
LsmDomNode node;
|
218
|
-
};
|
219
|
-
</STRUCT>
|
220
|
-
<STRUCT>
|
221
|
-
<NAME>LsmDomElementClass</NAME>
|
222
|
-
struct _LsmDomElementClass {
|
223
|
-
LsmDomNodeClass parent_class;
|
224
|
-
|
225
|
-
const char* (*get_attribute) (LsmDomElement *self, const char *name);
|
226
|
-
void (*set_attribute) (LsmDomElement *self, const char *name, const char *attribute_value);
|
227
|
-
char * (*get_serialized_attributes) (LsmDomElement *self);
|
228
|
-
};
|
229
|
-
</STRUCT>
|
230
|
-
<FUNCTION>
|
231
|
-
<NAME>lsm_dom_element_get_type</NAME>
|
232
|
-
<RETURNS>GType </RETURNS>
|
233
|
-
void
|
234
|
-
</FUNCTION>
|
235
|
-
<FUNCTION>
|
236
|
-
<NAME>lsm_dom_element_get_tag_name</NAME>
|
237
|
-
<RETURNS>const char * </RETURNS>
|
238
|
-
LsmDomElement *self
|
239
|
-
</FUNCTION>
|
240
|
-
<FUNCTION>
|
241
|
-
<NAME>lsm_dom_element_get_attribute</NAME>
|
242
|
-
<RETURNS>const char * </RETURNS>
|
243
|
-
LsmDomElement* self, const char* name
|
244
|
-
</FUNCTION>
|
245
|
-
<FUNCTION>
|
246
|
-
<NAME>lsm_dom_element_set_attribute</NAME>
|
247
|
-
<RETURNS>void </RETURNS>
|
248
|
-
LsmDomElement* self, const char* name, const char* attribute_value
|
249
|
-
</FUNCTION>
|
250
|
-
<FUNCTION>
|
251
|
-
<NAME>lsm_dom_get_entity</NAME>
|
252
|
-
<RETURNS>const char *</RETURNS>
|
253
|
-
const char *name
|
254
|
-
</FUNCTION>
|
255
|
-
<USER_FUNCTION>
|
256
|
-
<NAME>LsmDomDocumentCreateFunction</NAME>
|
257
|
-
<RETURNS>LsmDomDocument *</RETURNS>
|
258
|
-
void
|
259
|
-
</USER_FUNCTION>
|
260
|
-
<FUNCTION>
|
261
|
-
<NAME>lsm_dom_implementation_create_document</NAME>
|
262
|
-
<RETURNS>LsmDomDocument * </RETURNS>
|
263
|
-
const char *namespace_uri, const char *qualified_name
|
264
|
-
</FUNCTION>
|
265
|
-
<FUNCTION>
|
266
|
-
<NAME>lsm_dom_implementation_cleanup</NAME>
|
267
|
-
<RETURNS>void </RETURNS>
|
268
|
-
void
|
269
|
-
</FUNCTION>
|
270
|
-
<MACRO>
|
271
|
-
<NAME>LSM_TYPE_DOM_NAMED_NODE_MAP</NAME>
|
272
|
-
#define LSM_TYPE_DOM_NAMED_NODE_MAP (lsm_dom_named_node_map_get_type ())
|
273
|
-
</MACRO>
|
274
|
-
<MACRO>
|
275
|
-
<NAME>LSM_DOM_NAMED_NODE_MAP</NAME>
|
276
|
-
#define LSM_DOM_NAMED_NODE_MAP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), LSM_TYPE_DOM_NAMED_NODE_MAP, LsmDomNamedNodeMap))
|
277
|
-
</MACRO>
|
278
|
-
<MACRO>
|
279
|
-
<NAME>LSM_DOM_NAMED_NODE_MAP_CLASS</NAME>
|
280
|
-
#define LSM_DOM_NAMED_NODE_MAP_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), LSM_TYPE_DOM_NAMED_NODE_MAP, LsmDomNamedNodeMapClass))
|
281
|
-
</MACRO>
|
282
|
-
<MACRO>
|
283
|
-
<NAME>LSM_IS_DOM_NAMED_NODE_MAP</NAME>
|
284
|
-
#define LSM_IS_DOM_NAMED_NODE_MAP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LSM_TYPE_DOM_NAMED_NODE_MAP))
|
285
|
-
</MACRO>
|
286
|
-
<MACRO>
|
287
|
-
<NAME>LSM_IS_DOM_NAMED_NODE_MAP_CLASS</NAME>
|
288
|
-
#define LSM_IS_DOM_NAMED_NODE_MAP_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), LSM_TYPE_DOM_NAMED_NODE_MAP))
|
289
|
-
</MACRO>
|
290
|
-
<MACRO>
|
291
|
-
<NAME>LSM_DOM_NAMED_NODE_MAP_GET_CLASS</NAME>
|
292
|
-
#define LSM_DOM_NAMED_NODE_MAP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), LSM_TYPE_DOM_NAMED_NODE_MAP, LsmDomNamedNodeMapClass))
|
293
|
-
</MACRO>
|
294
|
-
<STRUCT>
|
295
|
-
<NAME>LsmDomNamedNodeMap</NAME>
|
296
|
-
struct _LsmDomNamedNodeMap {
|
297
|
-
GObject object;
|
298
|
-
};
|
299
|
-
</STRUCT>
|
300
|
-
<STRUCT>
|
301
|
-
<NAME>LsmDomNamedNodeMapClass</NAME>
|
302
|
-
struct _LsmDomNamedNodeMapClass {
|
303
|
-
GObjectClass parent_class;
|
304
|
-
|
305
|
-
LsmDomNode * (*get) (LsmDomNamedNodeMap *map, const char *name);
|
306
|
-
LsmDomNode * (*set) (LsmDomNamedNodeMap *map, LsmDomNode *node);
|
307
|
-
LsmDomNode * (*remove) (LsmDomNamedNodeMap *map, const char *name);
|
308
|
-
LsmDomNode * (*get_item) (LsmDomNamedNodeMap *map, unsigned int index);
|
309
|
-
unsigned int (*get_length) (LsmDomNamedNodeMap *map);
|
310
|
-
};
|
311
|
-
</STRUCT>
|
312
|
-
<FUNCTION>
|
313
|
-
<NAME>lsm_dom_named_node_map_get_type</NAME>
|
314
|
-
<RETURNS>GType </RETURNS>
|
315
|
-
void
|
316
|
-
</FUNCTION>
|
317
|
-
<FUNCTION>
|
318
|
-
<NAME>lsm_dom_named_node_map_get_named_item</NAME>
|
319
|
-
<RETURNS>LsmDomNode * </RETURNS>
|
320
|
-
LsmDomNamedNodeMap *map, const char *name
|
321
|
-
</FUNCTION>
|
322
|
-
<FUNCTION>
|
323
|
-
<NAME>lsm_dom_named_node_map_set_named_item</NAME>
|
324
|
-
<RETURNS>LsmDomNode * </RETURNS>
|
325
|
-
LsmDomNamedNodeMap *map, LsmDomNode *node
|
326
|
-
</FUNCTION>
|
327
|
-
<FUNCTION>
|
328
|
-
<NAME>lsm_dom_named_node_map_remove_named_item</NAME>
|
329
|
-
<RETURNS>LsmDomNode * </RETURNS>
|
330
|
-
LsmDomNamedNodeMap *map, const char *name
|
331
|
-
</FUNCTION>
|
332
|
-
<FUNCTION>
|
333
|
-
<NAME>lsm_dom_named_node_map_get_item</NAME>
|
334
|
-
<RETURNS>LsmDomNode * </RETURNS>
|
335
|
-
LsmDomNamedNodeMap *map, unsigned int index
|
336
|
-
</FUNCTION>
|
337
|
-
<FUNCTION>
|
338
|
-
<NAME>lsm_dom_named_node_map_get_length</NAME>
|
339
|
-
<RETURNS>unsigned int </RETURNS>
|
340
|
-
LsmDomNamedNodeMap *map
|
341
|
-
</FUNCTION>
|
342
|
-
<ENUM>
|
343
|
-
<NAME>LsmDomNodeType</NAME>
|
344
|
-
typedef enum {
|
345
|
-
LSM_DOM_NODE_TYPE_ELEMENT_NODE = 1,
|
346
|
-
LSM_DOM_NODE_TYPE_ATTRIBUTE_NODE,
|
347
|
-
LSM_DOM_NODE_TYPE_TEXT_NODE,
|
348
|
-
LSM_DOM_NODE_TYPE_CDATA_SECTION_NODE,
|
349
|
-
LSM_DOM_NODE_TYPE_ENTITY_REFERENCE_NODE,
|
350
|
-
LSM_DOM_NODE_TYPE_ENTITY_NODE,
|
351
|
-
LSM_DOM_NODE_TYPE_PROCESSING_INSTRUCTION_NODE,
|
352
|
-
LSM_DOM_NODE_TYPE_COMMENT_NODE,
|
353
|
-
LSM_DOM_NODE_TYPE_DOCUMENT_NODE,
|
354
|
-
LSM_DOM_NODE_TYPE_DOCUMENT_TYPE_NODE,
|
355
|
-
LSM_DOM_NODE_TYPE_DOCUMENT_FRAGMENT_NODE,
|
356
|
-
LSM_DOM_NODE_TYPE_NOTATION_NODE
|
357
|
-
} LsmDomNodeType;
|
358
|
-
</ENUM>
|
359
|
-
<MACRO>
|
360
|
-
<NAME>LSM_TYPE_DOM_NODE</NAME>
|
361
|
-
#define LSM_TYPE_DOM_NODE (lsm_dom_node_get_type ())
|
362
|
-
</MACRO>
|
363
|
-
<MACRO>
|
364
|
-
<NAME>LSM_DOM_NODE</NAME>
|
365
|
-
#define LSM_DOM_NODE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), LSM_TYPE_DOM_NODE, LsmDomNode))
|
366
|
-
</MACRO>
|
367
|
-
<MACRO>
|
368
|
-
<NAME>LSM_DOM_NODE_CLASS</NAME>
|
369
|
-
#define LSM_DOM_NODE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), LSM_TYPE_DOM_NODE, LsmDomNodeClass))
|
370
|
-
</MACRO>
|
371
|
-
<MACRO>
|
372
|
-
<NAME>LSM_IS_DOM_NODE</NAME>
|
373
|
-
#define LSM_IS_DOM_NODE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LSM_TYPE_DOM_NODE))
|
374
|
-
</MACRO>
|
375
|
-
<MACRO>
|
376
|
-
<NAME>LSM_IS_DOM_NODE_CLASS</NAME>
|
377
|
-
#define LSM_IS_DOM_NODE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), LSM_TYPE_DOM_NODE))
|
378
|
-
</MACRO>
|
379
|
-
<MACRO>
|
380
|
-
<NAME>LSM_DOM_NODE_GET_CLASS</NAME>
|
381
|
-
#define LSM_DOM_NODE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), LSM_TYPE_DOM_NODE, LsmDomNodeClass))
|
382
|
-
</MACRO>
|
383
|
-
<STRUCT>
|
384
|
-
<NAME>LsmDomNode</NAME>
|
385
|
-
struct _LsmDomNode {
|
386
|
-
GObject object;
|
387
|
-
|
388
|
-
LsmDomDocument *owner_document;
|
389
|
-
|
390
|
-
LsmDomNode *next_sibling;
|
391
|
-
LsmDomNode *previous_sibling;
|
392
|
-
LsmDomNode *parent_node;
|
393
|
-
LsmDomNode *first_child;
|
394
|
-
LsmDomNode *last_child;
|
395
|
-
};
|
396
|
-
</STRUCT>
|
397
|
-
<STRUCT>
|
398
|
-
<NAME>LsmDomNodeClass</NAME>
|
399
|
-
struct _LsmDomNodeClass {
|
400
|
-
GObjectClass parent_class;
|
401
|
-
|
402
|
-
/* DOM node virtuals */
|
403
|
-
|
404
|
-
const char* (*get_node_name) (LsmDomNode* self);
|
405
|
-
const char* (*get_node_value) (LsmDomNode* self);
|
406
|
-
void (*set_node_value) (LsmDomNode* self, const char* new_value);
|
407
|
-
LsmDomNodeType (*get_node_type) (LsmDomNode* self);
|
408
|
-
|
409
|
-
/* Validation virtuals */
|
410
|
-
|
411
|
-
gboolean (*can_append_child) (LsmDomNode *self, LsmDomNode *new_child);
|
412
|
-
|
413
|
-
/* Implementation virtuals */
|
414
|
-
|
415
|
-
void (*post_new_child) (LsmDomNode *parent, LsmDomNode *child);
|
416
|
-
void (*pre_remove_child) (LsmDomNode *parent, LsmDomNode *child);
|
417
|
-
void (*changed) (LsmDomNode *self);
|
418
|
-
gboolean (*child_changed) (LsmDomNode *self, LsmDomNode *child);
|
419
|
-
|
420
|
-
void (*write_to_stream) (LsmDomNode *self, GOutputStream *stream, GError **error);
|
421
|
-
};
|
422
|
-
</STRUCT>
|
423
|
-
<FUNCTION>
|
424
|
-
<NAME>lsm_dom_node_get_type</NAME>
|
425
|
-
<RETURNS>GType </RETURNS>
|
426
|
-
void
|
427
|
-
</FUNCTION>
|
428
|
-
<FUNCTION>
|
429
|
-
<NAME>lsm_dom_node_get_node_name</NAME>
|
430
|
-
<RETURNS>const char * </RETURNS>
|
431
|
-
LsmDomNode* self
|
432
|
-
</FUNCTION>
|
433
|
-
<FUNCTION>
|
434
|
-
<NAME>lsm_dom_node_get_node_value</NAME>
|
435
|
-
<RETURNS>const char * </RETURNS>
|
436
|
-
LsmDomNode* self
|
437
|
-
</FUNCTION>
|
438
|
-
<FUNCTION>
|
439
|
-
<NAME>lsm_dom_node_set_node_value</NAME>
|
440
|
-
<RETURNS>void </RETURNS>
|
441
|
-
LsmDomNode* self, const char* new_value
|
442
|
-
</FUNCTION>
|
443
|
-
<FUNCTION>
|
444
|
-
<NAME>lsm_dom_node_get_node_type</NAME>
|
445
|
-
<RETURNS>LsmDomNodeType </RETURNS>
|
446
|
-
LsmDomNode* self
|
447
|
-
</FUNCTION>
|
448
|
-
<FUNCTION>
|
449
|
-
<NAME>lsm_dom_node_get_parent_node</NAME>
|
450
|
-
<RETURNS>LsmDomNode * </RETURNS>
|
451
|
-
LsmDomNode* self
|
452
|
-
</FUNCTION>
|
453
|
-
<FUNCTION>
|
454
|
-
<NAME>lsm_dom_node_get_child_nodes</NAME>
|
455
|
-
<RETURNS>LsmDomNodeList * </RETURNS>
|
456
|
-
LsmDomNode* self
|
457
|
-
</FUNCTION>
|
458
|
-
<FUNCTION>
|
459
|
-
<NAME>lsm_dom_node_get_first_child</NAME>
|
460
|
-
<RETURNS>LsmDomNode * </RETURNS>
|
461
|
-
LsmDomNode* self
|
462
|
-
</FUNCTION>
|
463
|
-
<FUNCTION>
|
464
|
-
<NAME>lsm_dom_node_get_last_child</NAME>
|
465
|
-
<RETURNS>LsmDomNode * </RETURNS>
|
466
|
-
LsmDomNode* self
|
467
|
-
</FUNCTION>
|
468
|
-
<FUNCTION>
|
469
|
-
<NAME>lsm_dom_node_get_previous_sibling</NAME>
|
470
|
-
<RETURNS>LsmDomNode * </RETURNS>
|
471
|
-
LsmDomNode* self
|
472
|
-
</FUNCTION>
|
473
|
-
<FUNCTION>
|
474
|
-
<NAME>lsm_dom_node_get_next_sibling</NAME>
|
475
|
-
<RETURNS>LsmDomNode * </RETURNS>
|
476
|
-
LsmDomNode* self
|
477
|
-
</FUNCTION>
|
478
|
-
<FUNCTION>
|
479
|
-
<NAME>lsm_dom_node_get_attributes</NAME>
|
480
|
-
<RETURNS>LsmDomNamedNodeMap * </RETURNS>
|
481
|
-
LsmDomNode* self
|
482
|
-
</FUNCTION>
|
483
|
-
<FUNCTION>
|
484
|
-
<NAME>lsm_dom_node_insert_before</NAME>
|
485
|
-
<RETURNS>LsmDomNode * </RETURNS>
|
486
|
-
LsmDomNode* self, LsmDomNode* new_child, LsmDomNode* ref_child
|
487
|
-
</FUNCTION>
|
488
|
-
<FUNCTION>
|
489
|
-
<NAME>lsm_dom_node_replace_child</NAME>
|
490
|
-
<RETURNS>LsmDomNode * </RETURNS>
|
491
|
-
LsmDomNode* self, LsmDomNode* new_child, LsmDomNode* old_child
|
492
|
-
</FUNCTION>
|
493
|
-
<FUNCTION>
|
494
|
-
<NAME>lsm_dom_node_append_child</NAME>
|
495
|
-
<RETURNS>LsmDomNode * </RETURNS>
|
496
|
-
LsmDomNode* self, LsmDomNode* new_child
|
497
|
-
</FUNCTION>
|
498
|
-
<FUNCTION>
|
499
|
-
<NAME>lsm_dom_node_remove_child</NAME>
|
500
|
-
<RETURNS>LsmDomNode * </RETURNS>
|
501
|
-
LsmDomNode* self, LsmDomNode* old_child
|
502
|
-
</FUNCTION>
|
503
|
-
<FUNCTION>
|
504
|
-
<NAME>lsm_dom_node_has_child_nodes</NAME>
|
505
|
-
<RETURNS>gboolean </RETURNS>
|
506
|
-
LsmDomNode* self
|
507
|
-
</FUNCTION>
|
508
|
-
<FUNCTION>
|
509
|
-
<NAME>lsm_dom_node_changed</NAME>
|
510
|
-
<RETURNS>void </RETURNS>
|
511
|
-
LsmDomNode *self
|
512
|
-
</FUNCTION>
|
513
|
-
<FUNCTION>
|
514
|
-
<NAME>lsm_dom_node_get_owner_document</NAME>
|
515
|
-
<RETURNS>LsmDomDocument * </RETURNS>
|
516
|
-
LsmDomNode* self
|
517
|
-
</FUNCTION>
|
518
|
-
<FUNCTION>
|
519
|
-
<NAME>lsm_dom_node_write_to_stream</NAME>
|
520
|
-
<RETURNS>void </RETURNS>
|
521
|
-
LsmDomNode *self, GOutputStream *stream, GError **error
|
522
|
-
</FUNCTION>
|
523
|
-
<MACRO>
|
524
|
-
<NAME>LSM_TYPE_DOM_NODE_LIST</NAME>
|
525
|
-
#define LSM_TYPE_DOM_NODE_LIST (lsm_dom_node_list_get_type ())
|
526
|
-
</MACRO>
|
527
|
-
<MACRO>
|
528
|
-
<NAME>LSM_DOM_NODE_LIST</NAME>
|
529
|
-
#define LSM_DOM_NODE_LIST(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), LSM_TYPE_DOM_NODE_LIST, LsmDomNodeList))
|
530
|
-
</MACRO>
|
531
|
-
<MACRO>
|
532
|
-
<NAME>LSM_DOM_NODE_LIST_CLASS</NAME>
|
533
|
-
#define LSM_DOM_NODE_LIST_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), LSM_TYPE_DOM_NODE_LIST, LsmDomNodeListClass))
|
534
|
-
</MACRO>
|
535
|
-
<MACRO>
|
536
|
-
<NAME>LSM_IS_DOM_NODE_LIST</NAME>
|
537
|
-
#define LSM_IS_DOM_NODE_LIST(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LSM_TYPE_DOM_NODE_LIST))
|
538
|
-
</MACRO>
|
539
|
-
<MACRO>
|
540
|
-
<NAME>LSM_IS_DOM_NODE_LIST_CLASS</NAME>
|
541
|
-
#define LSM_IS_DOM_NODE_LIST_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), LSM_TYPE_DOM_NODE_LIST))
|
542
|
-
</MACRO>
|
543
|
-
<MACRO>
|
544
|
-
<NAME>LSM_DOM_NODE_LIST_GET_CLASS</NAME>
|
545
|
-
#define LSM_DOM_NODE_LIST_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), LSM_TYPE_DOM_NODE_LIST, LsmDomNodeListClass))
|
546
|
-
</MACRO>
|
547
|
-
<STRUCT>
|
548
|
-
<NAME>LsmDomNodeList</NAME>
|
549
|
-
struct _LsmDomNodeList {
|
550
|
-
GObject object;
|
551
|
-
};
|
552
|
-
</STRUCT>
|
553
|
-
<STRUCT>
|
554
|
-
<NAME>LsmDomNodeListClass</NAME>
|
555
|
-
struct _LsmDomNodeListClass {
|
556
|
-
GObjectClass parent_class;
|
557
|
-
|
558
|
-
LsmDomNode * (*get_item) (LsmDomNodeList *list, unsigned int index);
|
559
|
-
unsigned int (*get_length) (LsmDomNodeList *list);
|
560
|
-
};
|
561
|
-
</STRUCT>
|
562
|
-
<FUNCTION>
|
563
|
-
<NAME>lsm_dom_node_list_get_type</NAME>
|
564
|
-
<RETURNS>GType </RETURNS>
|
565
|
-
void
|
566
|
-
</FUNCTION>
|
567
|
-
<FUNCTION>
|
568
|
-
<NAME>lsm_dom_node_list_get_item</NAME>
|
569
|
-
<RETURNS>LsmDomNode * </RETURNS>
|
570
|
-
LsmDomNodeList *list, unsigned int index
|
571
|
-
</FUNCTION>
|
572
|
-
<FUNCTION>
|
573
|
-
<NAME>lsm_dom_node_list_get_length</NAME>
|
574
|
-
<RETURNS>unsigned int </RETURNS>
|
575
|
-
LsmDomNodeList *list
|
576
|
-
</FUNCTION>
|
577
|
-
<FUNCTION>
|
578
|
-
<NAME>lsm_dom_document_append_from_memory</NAME>
|
579
|
-
<RETURNS>void </RETURNS>
|
580
|
-
LsmDomDocument *document, LsmDomNode *node, const void *buffer, gssize size, GError **error
|
581
|
-
</FUNCTION>
|
582
|
-
<FUNCTION>
|
583
|
-
<NAME>lsm_dom_document_new_from_memory</NAME>
|
584
|
-
<RETURNS>LsmDomDocument * </RETURNS>
|
585
|
-
const void *buffer, gssize size, GError **error
|
586
|
-
</FUNCTION>
|
587
|
-
<FUNCTION>
|
588
|
-
<NAME>lsm_dom_document_new_from_path</NAME>
|
589
|
-
<RETURNS>LsmDomDocument * </RETURNS>
|
590
|
-
const char *path, GError **error
|
591
|
-
</FUNCTION>
|
592
|
-
<FUNCTION>
|
593
|
-
<NAME>lsm_dom_document_new_from_url</NAME>
|
594
|
-
<RETURNS>LsmDomDocument * </RETURNS>
|
595
|
-
const char *url, GError **error
|
596
|
-
</FUNCTION>
|
597
|
-
<FUNCTION>
|
598
|
-
<NAME>lsm_dom_document_save_to_stream</NAME>
|
599
|
-
<RETURNS>void </RETURNS>
|
600
|
-
LsmDomDocument *document, GOutputStream *stream, GError **error
|
601
|
-
</FUNCTION>
|
602
|
-
<FUNCTION>
|
603
|
-
<NAME>lsm_dom_document_save_to_memory</NAME>
|
604
|
-
<RETURNS>void </RETURNS>
|
605
|
-
LsmDomDocument *document, void **buffer, gsize *size, GError **error
|
606
|
-
</FUNCTION>
|
607
|
-
<FUNCTION>
|
608
|
-
<NAME>lsm_dom_document_save_to_path</NAME>
|
609
|
-
<RETURNS>void </RETURNS>
|
610
|
-
LsmDomDocument *document, const char *path, GError **error
|
611
|
-
</FUNCTION>
|
612
|
-
<FUNCTION>
|
613
|
-
<NAME>lsm_dom_document_save_to_url</NAME>
|
614
|
-
<RETURNS>void </RETURNS>
|
615
|
-
LsmDomDocument *document, const char *url, GError **error
|
616
|
-
</FUNCTION>
|
617
|
-
<MACRO>
|
618
|
-
<NAME>LSM_TYPE_DOM_TEXT</NAME>
|
619
|
-
#define LSM_TYPE_DOM_TEXT (lsm_dom_text_get_type ())
|
620
|
-
</MACRO>
|
621
|
-
<MACRO>
|
622
|
-
<NAME>LSM_DOM_TEXT</NAME>
|
623
|
-
#define LSM_DOM_TEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), LSM_TYPE_DOM_TEXT, LsmDomText))
|
624
|
-
</MACRO>
|
625
|
-
<MACRO>
|
626
|
-
<NAME>LSM_DOM_TEXT_CLASS</NAME>
|
627
|
-
#define LSM_DOM_TEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), LSM_TYPE_DOM_TEXT, LsmDomTextClass))
|
628
|
-
</MACRO>
|
629
|
-
<MACRO>
|
630
|
-
<NAME>LSM_IS_DOM_TEXT</NAME>
|
631
|
-
#define LSM_IS_DOM_TEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LSM_TYPE_DOM_TEXT))
|
632
|
-
</MACRO>
|
633
|
-
<MACRO>
|
634
|
-
<NAME>LSM_IS_DOM_TEXT_CLASS</NAME>
|
635
|
-
#define LSM_IS_DOM_TEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), LSM_TYPE_DOM_TEXT))
|
636
|
-
</MACRO>
|
637
|
-
<MACRO>
|
638
|
-
<NAME>LSM_DOM_TEXT_GET_CLASS</NAME>
|
639
|
-
#define LSM_DOM_TEXT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), LSM_TYPE_DOM_TEXT, LsmDomTextClass))
|
640
|
-
</MACRO>
|
641
|
-
<STRUCT>
|
642
|
-
<NAME>LsmDomText</NAME>
|
643
|
-
struct _LsmDomText {
|
644
|
-
LsmDomCharacterData character_data;
|
645
|
-
};
|
646
|
-
</STRUCT>
|
647
|
-
<STRUCT>
|
648
|
-
<NAME>LsmDomTextClass</NAME>
|
649
|
-
struct _LsmDomTextClass {
|
650
|
-
LsmDomCharacterDataClass parent_class;
|
651
|
-
};
|
652
|
-
</STRUCT>
|
653
|
-
<FUNCTION>
|
654
|
-
<NAME>lsm_dom_text_get_type</NAME>
|
655
|
-
<RETURNS>GType </RETURNS>
|
656
|
-
void
|
657
|
-
</FUNCTION>
|
658
|
-
<FUNCTION>
|
659
|
-
<NAME>lsm_dom_text_new</NAME>
|
660
|
-
<RETURNS>LsmDomNode *</RETURNS>
|
661
|
-
const char *data
|
662
|
-
</FUNCTION>
|
663
|
-
<STRUCT>
|
664
|
-
<NAME>LsmDomNamedNodeMap</NAME>
|
665
|
-
</STRUCT>
|
666
|
-
<STRUCT>
|
667
|
-
<NAME>LsmDomElement</NAME>
|
668
|
-
</STRUCT>
|
669
|
-
<STRUCT>
|
670
|
-
<NAME>LsmDomNode</NAME>
|
671
|
-
</STRUCT>
|
672
|
-
<STRUCT>
|
673
|
-
<NAME>LsmDomDocument</NAME>
|
674
|
-
</STRUCT>
|
675
|
-
<STRUCT>
|
676
|
-
<NAME>LsmDomNodeList</NAME>
|
677
|
-
</STRUCT>
|
678
|
-
<STRUCT>
|
679
|
-
<NAME>LsmDomView</NAME>
|
680
|
-
</STRUCT>
|
681
|
-
<STRUCT>
|
682
|
-
<NAME>LsmDomCharacterData</NAME>
|
683
|
-
</STRUCT>
|
684
|
-
<STRUCT>
|
685
|
-
<NAME>LsmDomText</NAME>
|
686
|
-
</STRUCT>
|
687
|
-
<STRUCT>
|
688
|
-
<NAME>LsmDomDocumentFragment</NAME>
|
689
|
-
</STRUCT>
|
690
|
-
<MACRO>
|
691
|
-
<NAME>LSM_DOM_VIEW_DEFAULT_RESOLUTION</NAME>
|
692
|
-
#define LSM_DOM_VIEW_DEFAULT_RESOLUTION 72.0
|
693
|
-
</MACRO>
|
694
|
-
<MACRO>
|
695
|
-
<NAME>LSM_DOM_VIEW_DEFAULT_VIEWBOX_WIDTH</NAME>
|
696
|
-
#define LSM_DOM_VIEW_DEFAULT_VIEWBOX_WIDTH 320.0
|
697
|
-
</MACRO>
|
698
|
-
<MACRO>
|
699
|
-
<NAME>LSM_DOM_VIEW_DEFAULT_VIEWBOX_HEIGHT</NAME>
|
700
|
-
#define LSM_DOM_VIEW_DEFAULT_VIEWBOX_HEIGHT 200.0
|
701
|
-
</MACRO>
|
702
|
-
<MACRO>
|
703
|
-
<NAME>LSM_TYPE_DOM_VIEW</NAME>
|
704
|
-
#define LSM_TYPE_DOM_VIEW (lsm_dom_view_get_type ())
|
705
|
-
</MACRO>
|
706
|
-
<MACRO>
|
707
|
-
<NAME>LSM_DOM_VIEW</NAME>
|
708
|
-
#define LSM_DOM_VIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), LSM_TYPE_DOM_VIEW, LsmDomView))
|
709
|
-
</MACRO>
|
710
|
-
<MACRO>
|
711
|
-
<NAME>LSM_DOM_VIEW_CLASS</NAME>
|
712
|
-
#define LSM_DOM_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), LSM_TYPE_DOM_VIEW, LsmDomViewClass))
|
713
|
-
</MACRO>
|
714
|
-
<MACRO>
|
715
|
-
<NAME>LSM_IS_DOM_VIEW</NAME>
|
716
|
-
#define LSM_IS_DOM_VIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LSM_TYPE_DOM_VIEW))
|
717
|
-
</MACRO>
|
718
|
-
<MACRO>
|
719
|
-
<NAME>LSM_IS_DOM_VIEW_CLASS</NAME>
|
720
|
-
#define LSM_IS_DOM_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), LSM_TYPE_DOM_VIEW))
|
721
|
-
</MACRO>
|
722
|
-
<MACRO>
|
723
|
-
<NAME>LSM_DOM_VIEW_GET_CLASS</NAME>
|
724
|
-
#define LSM_DOM_VIEW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), LSM_TYPE_DOM_VIEW, LsmDomViewClass))
|
725
|
-
</MACRO>
|
726
|
-
<STRUCT>
|
727
|
-
<NAME>LsmDomView</NAME>
|
728
|
-
struct _LsmDomView {
|
729
|
-
GObject object;
|
730
|
-
|
731
|
-
LsmDomDocument * document;
|
732
|
-
|
733
|
-
PangoFontDescription * font_description;
|
734
|
-
PangoLayout * pango_layout;
|
735
|
-
PangoLayout * measure_pango_layout;
|
736
|
-
cairo_t * cairo;
|
737
|
-
gboolean is_vector;
|
738
|
-
|
739
|
-
double resolution_ppi;
|
740
|
-
LsmBox viewport_pt;
|
741
|
-
};
|
742
|
-
</STRUCT>
|
743
|
-
<STRUCT>
|
744
|
-
<NAME>LsmDomViewClass</NAME>
|
745
|
-
struct _LsmDomViewClass {
|
746
|
-
GObjectClass parent_class;
|
747
|
-
|
748
|
-
GType document_type;
|
749
|
-
|
750
|
-
void (*measure) (LsmDomView *view, double *width, double *height, double *baseline);
|
751
|
-
void (*render) (LsmDomView *view);
|
752
|
-
void (*set_debug) (LsmDomView *view, const char *feature, gboolean enable);
|
753
|
-
};
|
754
|
-
</STRUCT>
|
755
|
-
<FUNCTION>
|
756
|
-
<NAME>lsm_dom_view_get_type</NAME>
|
757
|
-
<RETURNS>GType </RETURNS>
|
758
|
-
void
|
759
|
-
</FUNCTION>
|
760
|
-
<FUNCTION>
|
761
|
-
<NAME>lsm_dom_view_get_resolution</NAME>
|
762
|
-
<RETURNS>double </RETURNS>
|
763
|
-
LsmDomView *self
|
764
|
-
</FUNCTION>
|
765
|
-
<FUNCTION>
|
766
|
-
<NAME>lsm_dom_view_set_resolution</NAME>
|
767
|
-
<RETURNS>void </RETURNS>
|
768
|
-
LsmDomView *self, double ppi
|
769
|
-
</FUNCTION>
|
770
|
-
<FUNCTION>
|
771
|
-
<NAME>lsm_dom_view_set_viewport</NAME>
|
772
|
-
<RETURNS>void </RETURNS>
|
773
|
-
LsmDomView *self, const LsmBox *viewport_pt
|
774
|
-
</FUNCTION>
|
775
|
-
<FUNCTION>
|
776
|
-
<NAME>lsm_dom_view_set_viewport_pixels</NAME>
|
777
|
-
<RETURNS>void </RETURNS>
|
778
|
-
LsmDomView *self, const LsmBox *viewport
|
779
|
-
</FUNCTION>
|
780
|
-
<FUNCTION>
|
781
|
-
<NAME>lsm_dom_view_get_viewport</NAME>
|
782
|
-
<RETURNS>LsmBox </RETURNS>
|
783
|
-
LsmDomView *self
|
784
|
-
</FUNCTION>
|
785
|
-
<FUNCTION>
|
786
|
-
<NAME>lsm_dom_view_get_viewport_pixels</NAME>
|
787
|
-
<RETURNS>LsmBox </RETURNS>
|
788
|
-
LsmDomView *self
|
789
|
-
</FUNCTION>
|
790
|
-
<FUNCTION>
|
791
|
-
<NAME>lsm_dom_view_render</NAME>
|
792
|
-
<RETURNS>void </RETURNS>
|
793
|
-
LsmDomView *view, cairo_t *cairo, double x, double y
|
794
|
-
</FUNCTION>
|
795
|
-
<FUNCTION>
|
796
|
-
<NAME>lsm_dom_view_get_size</NAME>
|
797
|
-
<RETURNS>void </RETURNS>
|
798
|
-
LsmDomView *view, double *width, double *height, double *baseline
|
799
|
-
</FUNCTION>
|
800
|
-
<FUNCTION>
|
801
|
-
<NAME>lsm_dom_view_get_size_pixels</NAME>
|
802
|
-
<RETURNS>void </RETURNS>
|
803
|
-
LsmDomView *view, unsigned int *width, unsigned int *height, unsigned int *baseline
|
804
|
-
</FUNCTION>
|
805
|
-
<FUNCTION>
|
806
|
-
<NAME>lsm_dom_view_set_debug</NAME>
|
807
|
-
<RETURNS>void </RETURNS>
|
808
|
-
LsmDomView *view, const char *feature, gboolean enable
|
809
|
-
</FUNCTION>
|
810
|
-
<FUNCTION>
|
811
|
-
<NAME>lsm_dom_view_set_document</NAME>
|
812
|
-
<RETURNS>void </RETURNS>
|
813
|
-
LsmDomView *view, LsmDomDocument *document
|
814
|
-
</FUNCTION>
|
815
|
-
<STRUCT>
|
816
|
-
<NAME>LsmExtents</NAME>
|
817
|
-
</STRUCT>
|
818
|
-
<STRUCT>
|
819
|
-
<NAME>LsmBox</NAME>
|
820
|
-
</STRUCT>
|
821
|
-
<STRUCT>
|
822
|
-
<NAME>LsmExtents</NAME>
|
823
|
-
struct _LsmExtents {
|
824
|
-
double x1;
|
825
|
-
double y1;
|
826
|
-
double x2;
|
827
|
-
double y2;
|
828
|
-
};
|
829
|
-
</STRUCT>
|
830
|
-
<MACRO>
|
831
|
-
<NAME>LSM_TYPE_EXTENTS</NAME>
|
832
|
-
#define LSM_TYPE_EXTENTS (lsm_extents_get_type())
|
833
|
-
</MACRO>
|
834
|
-
<FUNCTION>
|
835
|
-
<NAME>lsm_extents_get_type</NAME>
|
836
|
-
<RETURNS>GType </RETURNS>
|
837
|
-
void
|
838
|
-
</FUNCTION>
|
839
|
-
<STRUCT>
|
840
|
-
<NAME>LsmBox</NAME>
|
841
|
-
struct _LsmBox {
|
842
|
-
double x;
|
843
|
-
double y;
|
844
|
-
double width;
|
845
|
-
double height;
|
846
|
-
};
|
847
|
-
</STRUCT>
|
848
|
-
<MACRO>
|
849
|
-
<NAME>LSM_TYPE_BOX</NAME>
|
850
|
-
#define LSM_TYPE_BOX (lsm_box_get_type())
|
851
|
-
</MACRO>
|
852
|
-
<FUNCTION>
|
853
|
-
<NAME>lsm_box_get_type</NAME>
|
854
|
-
<RETURNS>GType </RETURNS>
|
855
|
-
void
|
856
|
-
</FUNCTION>
|