├── .gitattributes ├── .gitignore ├── AHFormatter.framework ├── ChangeLog.md ├── LICENSE-entities.md ├── LICENSE-mathml3-schema.md ├── LICENSE-svg11-schema.md ├── LICENSE.md ├── README.md ├── add-on-ja.xml ├── add-on.xml ├── add-on.xml.in ├── emacs ├── XSL-FO.fo ├── focheck-format.el ├── focheck-schemas.xml └── focheck.el ├── etc ├── axf-expression.ebnf ├── check.sch ├── fo-processor-preferences.png ├── screenshot-ja.png ├── screenshot.png ├── svg11-flat-20110816.dtd ├── validation-scenarios-en.png └── xslspec.xml ├── focheck-ja.framework ├── iso-schematron-xslt2 ├── ExtractSchFromRNG-2.xsl ├── ExtractSchFromXSD-2.xsl ├── iso_abstract_expand.xsl ├── iso_dsdl_include.xsl ├── iso_schematron_message_xslt2.xsl ├── iso_schematron_skeleton_for_saxon.xsl ├── iso_svrl_for_xslt2.xsl ├── readme.txt ├── sch-messages-cs.xhtml ├── sch-messages-de.xhtml ├── sch-messages-en.xhtml ├── sch-messages-fr.xhtml ├── sch-messages-nl.xhtml └── schematron-skeleton-api.htm ├── omegat ├── .gitignore ├── OmegaT.jar ├── lib │ ├── commons-logging-1.1.1.jar │ ├── htmlparser.jar │ ├── juniversalchardet-1.0.3.jar │ ├── lucene-analyzers-3.6.2.jar │ ├── lucene-core-3.6.2.jar │ ├── lucene-gosen-2.0.2-ipadic.jar │ ├── lucene-kuromoji-3.6.2.jar │ ├── lucene-smartcn-3.6.2.jar │ └── vldocking-3.0.5-SNAPSHOT.jar ├── omegat-level1.tmx ├── omegat-level2.tmx ├── omegat-omegat.tmx ├── omegat.project └── omegat │ ├── .gitignore │ ├── ignored_words.txt │ ├── learned_words.txt │ └── project_save.tmx ├── resources └── formatter-options │ └── formatter-options.xml ├── schema-ja ├── axf-inherited.rnc ├── axf-mathml3-override.rnc ├── axf-mathml3-svg11.rnc ├── axf-svg11-override.rnc ├── axf.rnc ├── axh.rnc ├── axs.rnc ├── catalog.xml ├── fo-inherited.rnc ├── fo.rnc ├── htmlmathml-f.ent ├── mathml3-common.rnc ├── mathml3-content.rnc ├── mathml3-presentation.rnc ├── mathml3-strict-content.rnc ├── mathml3.rnc ├── rng │ ├── axf-inherited.rng │ ├── axf-mathml3-override.rng │ ├── axf-mathml3-svg11.rng │ ├── axf-svg11-override.rng │ ├── axf.rng │ ├── axh.rng │ ├── axs.rng │ ├── fo-inherited.rng │ ├── fo.rng │ ├── mathml3-common.rng │ ├── mathml3-content.rng │ ├── mathml3-presentation.rng │ ├── mathml3-strict-content.rng │ ├── mathml3.rng │ └── svg11-flat-20110816.rng ├── svg11-flat-20110816.rnc └── xsd │ ├── axf-inherited.xsd │ ├── axf.xsd │ ├── axh.xsd │ ├── axs.xsd │ ├── fo-inherited.xsd │ ├── fo.xsd │ └── xml.xsd ├── schema ├── axf-inherited.rnc ├── axf-mathml3-override.rnc ├── axf-mathml3-svg11.rnc ├── axf-svg11-override.rnc ├── axf.rnc ├── axh.rnc ├── axs.rnc ├── catalog.xml ├── fo-inherited.rnc ├── fo.rnc ├── focheck.nvdl ├── htmlmathml-f.ent ├── mathml3-common.rnc ├── mathml3-content.rnc ├── mathml3-presentation.rnc ├── mathml3-strict-content.rnc ├── mathml3.rnc ├── rng │ ├── axf-inherited.rng │ ├── axf-mathml3-override.rng │ ├── axf-mathml3-svg11.rng │ ├── axf-svg11-override.rng │ ├── axf.rng │ ├── axh.rng │ ├── axs.rng │ ├── fo-inherited.rng │ ├── fo.rng │ ├── mathml3-common.rng │ ├── mathml3-content.rng │ ├── mathml3-presentation.rng │ ├── mathml3-strict-content.rng │ ├── mathml3.rng │ └── svg11-flat-20110816.rng ├── svg11-flat-20110816.rnc └── xsd │ ├── axf-inherited.xsd │ ├── axf.xsd │ ├── axh.xsd │ ├── axs.xsd │ ├── fo-inherited.xsd │ ├── fo.xsd │ └── xml.xsd ├── schematron-ja ├── abstract.sch ├── axf-fo.sch ├── axf-property.sch ├── axf.sch ├── fo-fo.sch ├── fo-property.sch ├── focheck.sch └── pdf-ua.sch ├── schematron ├── abstract.sch ├── axf-fo.sch ├── axf-property.sch ├── fo-fo.sch ├── fo-property.sch ├── focheck.sch └── pdf-ua.sch ├── template ├── XSL-FO.fo └── XSL-FO.properties ├── test ├── samples │ ├── logo-antenna.svg │ └── test.fo ├── stf │ └── error │ │ └── column-count.xml └── xspec │ ├── .gitignore │ └── parser-runner.xspec └── xsl ├── axf-expression.xslt ├── axf-inherited.xsl ├── axf-property-schematron-override.xsl ├── common.xsl ├── parser-runner.xsl ├── property-schematron-dump.xsl ├── rncdump.xsl └── rncinherited.xsl /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/.gitignore -------------------------------------------------------------------------------- /AHFormatter.framework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/AHFormatter.framework -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE-entities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/LICENSE-entities.md -------------------------------------------------------------------------------- /LICENSE-mathml3-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/LICENSE-mathml3-schema.md -------------------------------------------------------------------------------- /LICENSE-svg11-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/LICENSE-svg11-schema.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/README.md -------------------------------------------------------------------------------- /add-on-ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/add-on-ja.xml -------------------------------------------------------------------------------- /add-on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/add-on.xml -------------------------------------------------------------------------------- /add-on.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/add-on.xml.in -------------------------------------------------------------------------------- /emacs/XSL-FO.fo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/emacs/XSL-FO.fo -------------------------------------------------------------------------------- /emacs/focheck-format.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/emacs/focheck-format.el -------------------------------------------------------------------------------- /emacs/focheck-schemas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/emacs/focheck-schemas.xml -------------------------------------------------------------------------------- /emacs/focheck.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/emacs/focheck.el -------------------------------------------------------------------------------- /etc/axf-expression.ebnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/etc/axf-expression.ebnf -------------------------------------------------------------------------------- /etc/check.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/etc/check.sch -------------------------------------------------------------------------------- /etc/fo-processor-preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/etc/fo-processor-preferences.png -------------------------------------------------------------------------------- /etc/screenshot-ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/etc/screenshot-ja.png -------------------------------------------------------------------------------- /etc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/etc/screenshot.png -------------------------------------------------------------------------------- /etc/svg11-flat-20110816.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/etc/svg11-flat-20110816.dtd -------------------------------------------------------------------------------- /etc/validation-scenarios-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/etc/validation-scenarios-en.png -------------------------------------------------------------------------------- /etc/xslspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/etc/xslspec.xml -------------------------------------------------------------------------------- /focheck-ja.framework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/focheck-ja.framework -------------------------------------------------------------------------------- /iso-schematron-xslt2/ExtractSchFromRNG-2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/iso-schematron-xslt2/ExtractSchFromRNG-2.xsl -------------------------------------------------------------------------------- /iso-schematron-xslt2/ExtractSchFromXSD-2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/iso-schematron-xslt2/ExtractSchFromXSD-2.xsl -------------------------------------------------------------------------------- /iso-schematron-xslt2/iso_abstract_expand.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/iso-schematron-xslt2/iso_abstract_expand.xsl -------------------------------------------------------------------------------- /iso-schematron-xslt2/iso_dsdl_include.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/iso-schematron-xslt2/iso_dsdl_include.xsl -------------------------------------------------------------------------------- /iso-schematron-xslt2/iso_schematron_message_xslt2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/iso-schematron-xslt2/iso_schematron_message_xslt2.xsl -------------------------------------------------------------------------------- /iso-schematron-xslt2/iso_schematron_skeleton_for_saxon.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/iso-schematron-xslt2/iso_schematron_skeleton_for_saxon.xsl -------------------------------------------------------------------------------- /iso-schematron-xslt2/iso_svrl_for_xslt2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/iso-schematron-xslt2/iso_svrl_for_xslt2.xsl -------------------------------------------------------------------------------- /iso-schematron-xslt2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/iso-schematron-xslt2/readme.txt -------------------------------------------------------------------------------- /iso-schematron-xslt2/sch-messages-cs.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/iso-schematron-xslt2/sch-messages-cs.xhtml -------------------------------------------------------------------------------- /iso-schematron-xslt2/sch-messages-de.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/iso-schematron-xslt2/sch-messages-de.xhtml -------------------------------------------------------------------------------- /iso-schematron-xslt2/sch-messages-en.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/iso-schematron-xslt2/sch-messages-en.xhtml -------------------------------------------------------------------------------- /iso-schematron-xslt2/sch-messages-fr.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/iso-schematron-xslt2/sch-messages-fr.xhtml -------------------------------------------------------------------------------- /iso-schematron-xslt2/sch-messages-nl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/iso-schematron-xslt2/sch-messages-nl.xhtml -------------------------------------------------------------------------------- /iso-schematron-xslt2/schematron-skeleton-api.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/iso-schematron-xslt2/schematron-skeleton-api.htm -------------------------------------------------------------------------------- /omegat/.gitignore: -------------------------------------------------------------------------------- 1 | source 2 | target 3 | -------------------------------------------------------------------------------- /omegat/OmegaT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/omegat/OmegaT.jar -------------------------------------------------------------------------------- /omegat/lib/commons-logging-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/omegat/lib/commons-logging-1.1.1.jar -------------------------------------------------------------------------------- /omegat/lib/htmlparser.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/omegat/lib/htmlparser.jar -------------------------------------------------------------------------------- /omegat/lib/juniversalchardet-1.0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/omegat/lib/juniversalchardet-1.0.3.jar -------------------------------------------------------------------------------- /omegat/lib/lucene-analyzers-3.6.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/omegat/lib/lucene-analyzers-3.6.2.jar -------------------------------------------------------------------------------- /omegat/lib/lucene-core-3.6.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/omegat/lib/lucene-core-3.6.2.jar -------------------------------------------------------------------------------- /omegat/lib/lucene-gosen-2.0.2-ipadic.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/omegat/lib/lucene-gosen-2.0.2-ipadic.jar -------------------------------------------------------------------------------- /omegat/lib/lucene-kuromoji-3.6.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/omegat/lib/lucene-kuromoji-3.6.2.jar -------------------------------------------------------------------------------- /omegat/lib/lucene-smartcn-3.6.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/omegat/lib/lucene-smartcn-3.6.2.jar -------------------------------------------------------------------------------- /omegat/lib/vldocking-3.0.5-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/omegat/lib/vldocking-3.0.5-SNAPSHOT.jar -------------------------------------------------------------------------------- /omegat/omegat-level1.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/omegat/omegat-level1.tmx -------------------------------------------------------------------------------- /omegat/omegat-level2.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/omegat/omegat-level2.tmx -------------------------------------------------------------------------------- /omegat/omegat-omegat.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/omegat/omegat-omegat.tmx -------------------------------------------------------------------------------- /omegat/omegat.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/omegat/omegat.project -------------------------------------------------------------------------------- /omegat/omegat/.gitignore: -------------------------------------------------------------------------------- 1 | *.bak 2 | last_entry.properties 3 | project_stats.txt 4 | -------------------------------------------------------------------------------- /omegat/omegat/ignored_words.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omegat/omegat/learned_words.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omegat/omegat/project_save.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/omegat/omegat/project_save.tmx -------------------------------------------------------------------------------- /resources/formatter-options/formatter-options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/resources/formatter-options/formatter-options.xml -------------------------------------------------------------------------------- /schema-ja/axf-inherited.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/axf-inherited.rnc -------------------------------------------------------------------------------- /schema-ja/axf-mathml3-override.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/axf-mathml3-override.rnc -------------------------------------------------------------------------------- /schema-ja/axf-mathml3-svg11.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/axf-mathml3-svg11.rnc -------------------------------------------------------------------------------- /schema-ja/axf-svg11-override.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/axf-svg11-override.rnc -------------------------------------------------------------------------------- /schema-ja/axf.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/axf.rnc -------------------------------------------------------------------------------- /schema-ja/axh.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/axh.rnc -------------------------------------------------------------------------------- /schema-ja/axs.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/axs.rnc -------------------------------------------------------------------------------- /schema-ja/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/catalog.xml -------------------------------------------------------------------------------- /schema-ja/fo-inherited.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/fo-inherited.rnc -------------------------------------------------------------------------------- /schema-ja/fo.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/fo.rnc -------------------------------------------------------------------------------- /schema-ja/htmlmathml-f.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/htmlmathml-f.ent -------------------------------------------------------------------------------- /schema-ja/mathml3-common.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/mathml3-common.rnc -------------------------------------------------------------------------------- /schema-ja/mathml3-content.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/mathml3-content.rnc -------------------------------------------------------------------------------- /schema-ja/mathml3-presentation.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/mathml3-presentation.rnc -------------------------------------------------------------------------------- /schema-ja/mathml3-strict-content.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/mathml3-strict-content.rnc -------------------------------------------------------------------------------- /schema-ja/mathml3.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/mathml3.rnc -------------------------------------------------------------------------------- /schema-ja/rng/axf-inherited.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/rng/axf-inherited.rng -------------------------------------------------------------------------------- /schema-ja/rng/axf-mathml3-override.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/rng/axf-mathml3-override.rng -------------------------------------------------------------------------------- /schema-ja/rng/axf-mathml3-svg11.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/rng/axf-mathml3-svg11.rng -------------------------------------------------------------------------------- /schema-ja/rng/axf-svg11-override.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/rng/axf-svg11-override.rng -------------------------------------------------------------------------------- /schema-ja/rng/axf.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/rng/axf.rng -------------------------------------------------------------------------------- /schema-ja/rng/axh.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/rng/axh.rng -------------------------------------------------------------------------------- /schema-ja/rng/axs.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/rng/axs.rng -------------------------------------------------------------------------------- /schema-ja/rng/fo-inherited.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/rng/fo-inherited.rng -------------------------------------------------------------------------------- /schema-ja/rng/fo.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/rng/fo.rng -------------------------------------------------------------------------------- /schema-ja/rng/mathml3-common.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/rng/mathml3-common.rng -------------------------------------------------------------------------------- /schema-ja/rng/mathml3-content.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/rng/mathml3-content.rng -------------------------------------------------------------------------------- /schema-ja/rng/mathml3-presentation.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/rng/mathml3-presentation.rng -------------------------------------------------------------------------------- /schema-ja/rng/mathml3-strict-content.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/rng/mathml3-strict-content.rng -------------------------------------------------------------------------------- /schema-ja/rng/mathml3.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/rng/mathml3.rng -------------------------------------------------------------------------------- /schema-ja/rng/svg11-flat-20110816.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/rng/svg11-flat-20110816.rng -------------------------------------------------------------------------------- /schema-ja/svg11-flat-20110816.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/svg11-flat-20110816.rnc -------------------------------------------------------------------------------- /schema-ja/xsd/axf-inherited.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/xsd/axf-inherited.xsd -------------------------------------------------------------------------------- /schema-ja/xsd/axf.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/xsd/axf.xsd -------------------------------------------------------------------------------- /schema-ja/xsd/axh.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/xsd/axh.xsd -------------------------------------------------------------------------------- /schema-ja/xsd/axs.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/xsd/axs.xsd -------------------------------------------------------------------------------- /schema-ja/xsd/fo-inherited.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/xsd/fo-inherited.xsd -------------------------------------------------------------------------------- /schema-ja/xsd/fo.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/xsd/fo.xsd -------------------------------------------------------------------------------- /schema-ja/xsd/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema-ja/xsd/xml.xsd -------------------------------------------------------------------------------- /schema/axf-inherited.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/axf-inherited.rnc -------------------------------------------------------------------------------- /schema/axf-mathml3-override.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/axf-mathml3-override.rnc -------------------------------------------------------------------------------- /schema/axf-mathml3-svg11.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/axf-mathml3-svg11.rnc -------------------------------------------------------------------------------- /schema/axf-svg11-override.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/axf-svg11-override.rnc -------------------------------------------------------------------------------- /schema/axf.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/axf.rnc -------------------------------------------------------------------------------- /schema/axh.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/axh.rnc -------------------------------------------------------------------------------- /schema/axs.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/axs.rnc -------------------------------------------------------------------------------- /schema/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/catalog.xml -------------------------------------------------------------------------------- /schema/fo-inherited.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/fo-inherited.rnc -------------------------------------------------------------------------------- /schema/fo.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/fo.rnc -------------------------------------------------------------------------------- /schema/focheck.nvdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/focheck.nvdl -------------------------------------------------------------------------------- /schema/htmlmathml-f.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/htmlmathml-f.ent -------------------------------------------------------------------------------- /schema/mathml3-common.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/mathml3-common.rnc -------------------------------------------------------------------------------- /schema/mathml3-content.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/mathml3-content.rnc -------------------------------------------------------------------------------- /schema/mathml3-presentation.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/mathml3-presentation.rnc -------------------------------------------------------------------------------- /schema/mathml3-strict-content.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/mathml3-strict-content.rnc -------------------------------------------------------------------------------- /schema/mathml3.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/mathml3.rnc -------------------------------------------------------------------------------- /schema/rng/axf-inherited.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/rng/axf-inherited.rng -------------------------------------------------------------------------------- /schema/rng/axf-mathml3-override.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/rng/axf-mathml3-override.rng -------------------------------------------------------------------------------- /schema/rng/axf-mathml3-svg11.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/rng/axf-mathml3-svg11.rng -------------------------------------------------------------------------------- /schema/rng/axf-svg11-override.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/rng/axf-svg11-override.rng -------------------------------------------------------------------------------- /schema/rng/axf.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/rng/axf.rng -------------------------------------------------------------------------------- /schema/rng/axh.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/rng/axh.rng -------------------------------------------------------------------------------- /schema/rng/axs.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/rng/axs.rng -------------------------------------------------------------------------------- /schema/rng/fo-inherited.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/rng/fo-inherited.rng -------------------------------------------------------------------------------- /schema/rng/fo.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/rng/fo.rng -------------------------------------------------------------------------------- /schema/rng/mathml3-common.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/rng/mathml3-common.rng -------------------------------------------------------------------------------- /schema/rng/mathml3-content.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/rng/mathml3-content.rng -------------------------------------------------------------------------------- /schema/rng/mathml3-presentation.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/rng/mathml3-presentation.rng -------------------------------------------------------------------------------- /schema/rng/mathml3-strict-content.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/rng/mathml3-strict-content.rng -------------------------------------------------------------------------------- /schema/rng/mathml3.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/rng/mathml3.rng -------------------------------------------------------------------------------- /schema/rng/svg11-flat-20110816.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/rng/svg11-flat-20110816.rng -------------------------------------------------------------------------------- /schema/svg11-flat-20110816.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/svg11-flat-20110816.rnc -------------------------------------------------------------------------------- /schema/xsd/axf-inherited.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/xsd/axf-inherited.xsd -------------------------------------------------------------------------------- /schema/xsd/axf.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/xsd/axf.xsd -------------------------------------------------------------------------------- /schema/xsd/axh.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/xsd/axh.xsd -------------------------------------------------------------------------------- /schema/xsd/axs.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/xsd/axs.xsd -------------------------------------------------------------------------------- /schema/xsd/fo-inherited.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/xsd/fo-inherited.xsd -------------------------------------------------------------------------------- /schema/xsd/fo.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/xsd/fo.xsd -------------------------------------------------------------------------------- /schema/xsd/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schema/xsd/xml.xsd -------------------------------------------------------------------------------- /schematron-ja/abstract.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schematron-ja/abstract.sch -------------------------------------------------------------------------------- /schematron-ja/axf-fo.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schematron-ja/axf-fo.sch -------------------------------------------------------------------------------- /schematron-ja/axf-property.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schematron-ja/axf-property.sch -------------------------------------------------------------------------------- /schematron-ja/axf.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schematron-ja/axf.sch -------------------------------------------------------------------------------- /schematron-ja/fo-fo.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schematron-ja/fo-fo.sch -------------------------------------------------------------------------------- /schematron-ja/fo-property.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schematron-ja/fo-property.sch -------------------------------------------------------------------------------- /schematron-ja/focheck.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schematron-ja/focheck.sch -------------------------------------------------------------------------------- /schematron-ja/pdf-ua.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schematron-ja/pdf-ua.sch -------------------------------------------------------------------------------- /schematron/abstract.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schematron/abstract.sch -------------------------------------------------------------------------------- /schematron/axf-fo.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schematron/axf-fo.sch -------------------------------------------------------------------------------- /schematron/axf-property.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schematron/axf-property.sch -------------------------------------------------------------------------------- /schematron/fo-fo.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schematron/fo-fo.sch -------------------------------------------------------------------------------- /schematron/fo-property.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schematron/fo-property.sch -------------------------------------------------------------------------------- /schematron/focheck.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schematron/focheck.sch -------------------------------------------------------------------------------- /schematron/pdf-ua.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/schematron/pdf-ua.sch -------------------------------------------------------------------------------- /template/XSL-FO.fo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/template/XSL-FO.fo -------------------------------------------------------------------------------- /template/XSL-FO.properties: -------------------------------------------------------------------------------- 1 | type=general 2 | -------------------------------------------------------------------------------- /test/samples/logo-antenna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/test/samples/logo-antenna.svg -------------------------------------------------------------------------------- /test/samples/test.fo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/test/samples/test.fo -------------------------------------------------------------------------------- /test/stf/error/column-count.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/test/stf/error/column-count.xml -------------------------------------------------------------------------------- /test/xspec/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /test/xspec/parser-runner.xspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/test/xspec/parser-runner.xspec -------------------------------------------------------------------------------- /xsl/axf-expression.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/xsl/axf-expression.xslt -------------------------------------------------------------------------------- /xsl/axf-inherited.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/xsl/axf-inherited.xsl -------------------------------------------------------------------------------- /xsl/axf-property-schematron-override.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/xsl/axf-property-schematron-override.xsl -------------------------------------------------------------------------------- /xsl/common.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/xsl/common.xsl -------------------------------------------------------------------------------- /xsl/parser-runner.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/xsl/parser-runner.xsl -------------------------------------------------------------------------------- /xsl/property-schematron-dump.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/xsl/property-schematron-dump.xsl -------------------------------------------------------------------------------- /xsl/rncdump.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/xsl/rncdump.xsl -------------------------------------------------------------------------------- /xsl/rncinherited.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntennaHouse/focheck/HEAD/xsl/rncinherited.xsl --------------------------------------------------------------------------------