├── .project ├── README.md ├── specs ├── README.md ├── archive │ ├── Makefile │ ├── diff │ │ ├── archive-expanded-diff-20131205.xml │ │ └── archive-expanded-diff.xml │ ├── html │ │ ├── archive-20130930.html │ │ ├── archive-20140512-diff.html │ │ ├── archive-20140512.html │ │ ├── archive-diff.html │ │ └── archive.html │ ├── index.html │ ├── make.bsh │ ├── makeDiff.bsh │ ├── src │ │ ├── 20130930 │ │ │ ├── archive-expanded.xml │ │ │ ├── archive.xml │ │ │ └── function-catalog.xml │ │ ├── 20131205 │ │ │ ├── archive-expanded.xml │ │ │ └── archive.xml │ │ ├── archive-diff.xml │ │ ├── archive-expanded.xml │ │ ├── archive.xml │ │ └── function-catalog.xml │ └── style │ │ ├── funcproto.xsl │ │ ├── merge-function-specs.xsl │ │ ├── xmlspec2html.xsl │ │ └── xmlspecDIFF2html.xsl ├── binary │ ├── Makefile │ ├── diff │ │ ├── binary-expanded-diff-1.0.xml │ │ ├── binary-expanded-diff-20130920.xml │ │ ├── binary-expanded-diff-20131113.xml │ │ ├── binary-expanded-diff-20131125.xml │ │ ├── binary-expanded-diff.xml │ │ └── binary-expanded-diffOLD.xml │ ├── html │ │ ├── binary-1.0-diff.html │ │ ├── binary-1.0.html │ │ ├── binary-20130312.html │ │ ├── binary-20130731.html │ │ ├── binary-20130920-diff.html │ │ ├── binary-20130920.html │ │ ├── binary-20131113-diff.html │ │ ├── binary-20131113.html │ │ ├── binary-20131125-diff.html │ │ ├── binary-20131125.html │ │ ├── binary-diff.html │ │ └── binary.html │ ├── index.html │ ├── make.bat │ ├── make.bsh │ ├── makeDiff.bsh │ ├── src │ │ ├── 20130312 │ │ │ └── binary-expanded.xml │ │ ├── 20130731 │ │ │ ├── binary-expanded.xml │ │ │ ├── binary.xml │ │ │ └── function-catalog.xml │ │ ├── 20130920 │ │ │ ├── binary-expanded-diff.xml │ │ │ ├── binary-expanded.xml │ │ │ ├── binary.xml │ │ │ └── function-catalog.xml │ │ ├── 20131113 │ │ │ ├── binary-expanded.xml │ │ │ ├── binary.xml │ │ │ └── function-catalog.xml │ │ ├── 20131125 │ │ │ ├── binary-expanded.xml │ │ │ ├── binary.xml │ │ │ └── function-catalog.xml │ │ ├── 1.0 │ │ │ ├── binary-expanded.xml │ │ │ ├── binary.xml │ │ │ └── function-catalog.xml │ │ ├── analyze-string.xsd │ │ ├── binary-expanded.xml │ │ ├── binary.xml │ │ ├── fos.xsd │ │ ├── function-catalog.xml │ │ └── xml.xsd │ └── style │ │ ├── funcproto.xsl │ │ ├── merge-function-specs.xsl │ │ ├── xmlspec2html.xsl │ │ └── xmlspecDIFF2html.xsl ├── crypto │ ├── .gitignore │ ├── Makefile │ ├── crypto-20110810.html │ ├── crypto-20110810.xml │ ├── crypto-20150214.html │ ├── crypto-20150214.xml │ ├── crypto-20170320.html │ ├── crypto-20170320.xml │ ├── crypto.html │ ├── crypto.xml │ ├── diff │ │ ├── crypto-20150214-diff.html │ │ └── crypto-20150214-diff.xml │ ├── index.html │ └── pom.xml ├── facet │ ├── .gitignore │ ├── facet-20151225.html │ ├── facet-20151225.md │ ├── facet-20151225.xml │ ├── facet.html │ ├── facet.md │ ├── facet.xml │ ├── index.html │ └── make.sh ├── file │ ├── Makefile │ ├── file-1.0-diff.html │ ├── file-1.0-diff.xml │ ├── file-1.0.html │ ├── file-1.0.xml │ ├── file-20100517.html │ ├── file-20100517.xml │ ├── file-20120614-diff.html │ ├── file-20120614-diff.xml │ ├── file-20120614.html │ ├── file-20120614.xml │ ├── file-20131203-diff.html │ ├── file-20131203-diff.xml │ ├── file-20131203.html │ ├── file-20131203.xml │ ├── file-diff.html │ ├── file-diff.xml │ ├── file.html │ ├── file.xml │ ├── gen-function-catalog.xsl │ ├── index.html │ └── src │ │ ├── ROLWfunction-catalog.xml │ │ └── function-catalog.xml ├── houtil │ ├── src │ │ └── function-catalog.xml │ ├── test-driver │ │ └── xslt │ │ │ ├── assert.xsl │ │ │ ├── compare.xsl │ │ │ ├── report.xml │ │ │ └── run-tests.xsl │ ├── tests │ │ ├── after-first.xml │ │ ├── before-first.xml │ │ ├── catalog.xml │ │ ├── docs │ │ │ ├── filter003.xml │ │ │ ├── filter005.xml │ │ │ ├── filter012.xml │ │ │ ├── group001.xml │ │ │ └── group005.xml │ │ ├── from-first.xml │ │ ├── group-adjacent.xml │ │ ├── group-by-position.xml │ │ ├── group-by.xml │ │ ├── group-starting-with.xml │ │ ├── highest.xml │ │ ├── index-of.xml │ │ ├── lowest.xml │ │ ├── process-groups.xml │ │ └── to-first.xml │ └── xslt-lib │ │ └── houtil-functions.xsl ├── http-client-2 │ └── index.html ├── http-client │ └── index.html ├── http │ ├── Makefile │ ├── http.html │ ├── http.xml │ └── index.html ├── list.xml ├── mongo │ ├── create-html.bat │ ├── html │ │ ├── mongo-20150305.html │ │ └── mongo.html │ ├── index.html │ └── xml │ │ ├── expathspec.rnc │ │ ├── mongo-20150305.xml │ │ └── mongo.xml ├── pkg │ ├── .gitignore │ ├── Makefile │ ├── index.html │ ├── pkg-20090901.html │ ├── pkg-20090901.xml │ ├── pkg-20091118.html │ ├── pkg-20091118.xml │ ├── pkg-20100107-diff.html │ ├── pkg-20100107-diff.xml │ ├── pkg-20100107.html │ ├── pkg-20100107.xml │ ├── pkg-20101111-diff.html │ ├── pkg-20101111-diff.xml │ ├── pkg-20101111.html │ ├── pkg-20101111.xml │ ├── pkg-20120509-diff.html │ ├── pkg-20120509-diff.xml │ ├── pkg-20120509.html │ ├── pkg-20120509.xml │ ├── pkg-diff.xml │ ├── pkg.xml │ └── schema │ │ ├── exist-pkg.rnc │ │ ├── exist-pkg.rng │ │ ├── exist-pkg.xsd │ │ ├── expath-pkg.rnc │ │ ├── expath-pkg.rng │ │ ├── expath-pkg.xsd │ │ ├── packages.rnc │ │ ├── packages.rng │ │ ├── packages.xsd │ │ ├── saxon-pkg.rnc │ │ ├── saxon-pkg.rng │ │ └── saxon-pkg.xsd ├── webapp │ ├── Makefile │ ├── index.html │ ├── schema │ │ └── webapp.xsd │ ├── webapp-20130401.html │ ├── webapp-20130401.xml │ ├── webapp.html │ └── webapp.xml └── xparse │ ├── html │ └── xparse.html │ ├── index.html │ ├── make.bat │ ├── make.bsh │ ├── makeDiff.bsh │ ├── src │ ├── fos.xsd │ ├── function-catalog.xml │ ├── xml.xsd │ ├── xparse-expanded.xml │ └── xparse.xml │ └── style │ ├── funcproto.xsl │ ├── merge-function-specs.xsl │ ├── xmlspec2html.xsl │ └── xmlspecDIFF2html.xsl ├── tests └── qt3 │ ├── .gitignore │ ├── archive │ ├── archive-definition.xml │ ├── archive.xml │ ├── maps │ │ ├── entries.xml │ │ ├── extraction.xml │ │ ├── options.xml │ │ └── updating.xml │ ├── parts │ │ ├── entries.xml │ │ ├── extraction.xml │ │ ├── options.xml │ │ └── updating.xml │ └── sandpit2 │ │ ├── test1.zip │ │ ├── test3.zip │ │ ├── textA.txt │ │ ├── textB.txt │ │ └── textC.txt │ ├── binary │ ├── binary-definition.xml │ ├── binary.xml │ ├── binary2.xml │ └── parts │ │ ├── basic-operations.xml │ │ ├── bitwise.xml │ │ ├── numeric-packing.xml │ │ └── text-encoding.xml │ ├── catalog-schema.xsd │ ├── catalog.xml │ ├── file │ ├── file.xml │ └── sandpit │ │ ├── .gitignore │ │ ├── my file.txt │ │ ├── target.txt │ │ ├── test.txt │ │ ├── test2.txt │ │ ├── test3.txt │ │ └── test4.txt │ ├── mongodb │ ├── .gitignore │ ├── catalog.xml │ ├── mongodb-aggregate.xml │ ├── mongodb-close.xml │ ├── mongodb-command.xml │ ├── mongodb-connect.xml │ ├── mongodb-count.xml │ ├── mongodb-drop-database.xml │ ├── mongodb-errors.xml │ ├── mongodb-eval.xml │ ├── mongodb-find-and-modify.xml │ ├── mongodb-find-and-remove.xml │ ├── mongodb-find-one.xml │ ├── mongodb-find.xml │ ├── mongodb-group.xml │ ├── mongodb-insert.xml │ ├── mongodb-list-collections.xml │ ├── mongodb-list-databases.xml │ ├── mongodb-map-reduce.xml │ ├── mongodb-save.xml │ └── mongodb-update.xml │ └── results │ ├── exceptions.xml │ ├── results_XPath3.0_9.7.0.1.xml │ └── results_XQuery3.0_9.6.0.1.xml └── tools ├── README.md ├── expathspec ├── .gitignore ├── src │ ├── diffspec.xsl │ ├── shared.xsl │ ├── xmlspec.rnc │ └── xmlspec.xsl └── xproject │ ├── cxan.xml │ └── project.xml ├── expathtest ├── README.md └── test-expand.xsl ├── fos └── src │ ├── analyze-string.xsd │ ├── fos.xsd │ └── xml.xsd └── xmlspec ├── .gitignore ├── src ├── base.css ├── diffspec.xsl ├── xmlspec.dtd ├── xmlspec.rnc ├── xmlspec.rng ├── xmlspec.xsd └── xmlspec.xsl └── xproject ├── cxan.xml └── project.xml /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/.project -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/README.md -------------------------------------------------------------------------------- /specs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/README.md -------------------------------------------------------------------------------- /specs/archive/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/Makefile -------------------------------------------------------------------------------- /specs/archive/diff/archive-expanded-diff-20131205.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/diff/archive-expanded-diff-20131205.xml -------------------------------------------------------------------------------- /specs/archive/diff/archive-expanded-diff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/diff/archive-expanded-diff.xml -------------------------------------------------------------------------------- /specs/archive/html/archive-20130930.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/html/archive-20130930.html -------------------------------------------------------------------------------- /specs/archive/html/archive-20140512-diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/html/archive-20140512-diff.html -------------------------------------------------------------------------------- /specs/archive/html/archive-20140512.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/html/archive-20140512.html -------------------------------------------------------------------------------- /specs/archive/html/archive-diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/html/archive-diff.html -------------------------------------------------------------------------------- /specs/archive/html/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/html/archive.html -------------------------------------------------------------------------------- /specs/archive/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/index.html -------------------------------------------------------------------------------- /specs/archive/make.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/make.bsh -------------------------------------------------------------------------------- /specs/archive/makeDiff.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/makeDiff.bsh -------------------------------------------------------------------------------- /specs/archive/src/20130930/archive-expanded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/src/20130930/archive-expanded.xml -------------------------------------------------------------------------------- /specs/archive/src/20130930/archive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/src/20130930/archive.xml -------------------------------------------------------------------------------- /specs/archive/src/20130930/function-catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/src/20130930/function-catalog.xml -------------------------------------------------------------------------------- /specs/archive/src/20131205/archive-expanded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/src/20131205/archive-expanded.xml -------------------------------------------------------------------------------- /specs/archive/src/20131205/archive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/src/20131205/archive.xml -------------------------------------------------------------------------------- /specs/archive/src/archive-diff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/src/archive-diff.xml -------------------------------------------------------------------------------- /specs/archive/src/archive-expanded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/src/archive-expanded.xml -------------------------------------------------------------------------------- /specs/archive/src/archive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/src/archive.xml -------------------------------------------------------------------------------- /specs/archive/src/function-catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/src/function-catalog.xml -------------------------------------------------------------------------------- /specs/archive/style/funcproto.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/style/funcproto.xsl -------------------------------------------------------------------------------- /specs/archive/style/merge-function-specs.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/style/merge-function-specs.xsl -------------------------------------------------------------------------------- /specs/archive/style/xmlspec2html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/style/xmlspec2html.xsl -------------------------------------------------------------------------------- /specs/archive/style/xmlspecDIFF2html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/archive/style/xmlspecDIFF2html.xsl -------------------------------------------------------------------------------- /specs/binary/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/Makefile -------------------------------------------------------------------------------- /specs/binary/diff/binary-expanded-diff-1.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/diff/binary-expanded-diff-1.0.xml -------------------------------------------------------------------------------- /specs/binary/diff/binary-expanded-diff-20130920.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/diff/binary-expanded-diff-20130920.xml -------------------------------------------------------------------------------- /specs/binary/diff/binary-expanded-diff-20131113.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/diff/binary-expanded-diff-20131113.xml -------------------------------------------------------------------------------- /specs/binary/diff/binary-expanded-diff-20131125.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/diff/binary-expanded-diff-20131125.xml -------------------------------------------------------------------------------- /specs/binary/diff/binary-expanded-diff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/diff/binary-expanded-diff.xml -------------------------------------------------------------------------------- /specs/binary/diff/binary-expanded-diffOLD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/diff/binary-expanded-diffOLD.xml -------------------------------------------------------------------------------- /specs/binary/html/binary-1.0-diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/html/binary-1.0-diff.html -------------------------------------------------------------------------------- /specs/binary/html/binary-1.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/html/binary-1.0.html -------------------------------------------------------------------------------- /specs/binary/html/binary-20130312.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/html/binary-20130312.html -------------------------------------------------------------------------------- /specs/binary/html/binary-20130731.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/html/binary-20130731.html -------------------------------------------------------------------------------- /specs/binary/html/binary-20130920-diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/html/binary-20130920-diff.html -------------------------------------------------------------------------------- /specs/binary/html/binary-20130920.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/html/binary-20130920.html -------------------------------------------------------------------------------- /specs/binary/html/binary-20131113-diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/html/binary-20131113-diff.html -------------------------------------------------------------------------------- /specs/binary/html/binary-20131113.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/html/binary-20131113.html -------------------------------------------------------------------------------- /specs/binary/html/binary-20131125-diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/html/binary-20131125-diff.html -------------------------------------------------------------------------------- /specs/binary/html/binary-20131125.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/html/binary-20131125.html -------------------------------------------------------------------------------- /specs/binary/html/binary-diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/html/binary-diff.html -------------------------------------------------------------------------------- /specs/binary/html/binary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/html/binary.html -------------------------------------------------------------------------------- /specs/binary/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/index.html -------------------------------------------------------------------------------- /specs/binary/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/make.bat -------------------------------------------------------------------------------- /specs/binary/make.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/make.bsh -------------------------------------------------------------------------------- /specs/binary/makeDiff.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/makeDiff.bsh -------------------------------------------------------------------------------- /specs/binary/src/1.0/binary-expanded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/1.0/binary-expanded.xml -------------------------------------------------------------------------------- /specs/binary/src/1.0/binary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/1.0/binary.xml -------------------------------------------------------------------------------- /specs/binary/src/1.0/function-catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/1.0/function-catalog.xml -------------------------------------------------------------------------------- /specs/binary/src/20130312/binary-expanded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/20130312/binary-expanded.xml -------------------------------------------------------------------------------- /specs/binary/src/20130731/binary-expanded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/20130731/binary-expanded.xml -------------------------------------------------------------------------------- /specs/binary/src/20130731/binary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/20130731/binary.xml -------------------------------------------------------------------------------- /specs/binary/src/20130731/function-catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/20130731/function-catalog.xml -------------------------------------------------------------------------------- /specs/binary/src/20130920/binary-expanded-diff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/20130920/binary-expanded-diff.xml -------------------------------------------------------------------------------- /specs/binary/src/20130920/binary-expanded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/20130920/binary-expanded.xml -------------------------------------------------------------------------------- /specs/binary/src/20130920/binary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/20130920/binary.xml -------------------------------------------------------------------------------- /specs/binary/src/20130920/function-catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/20130920/function-catalog.xml -------------------------------------------------------------------------------- /specs/binary/src/20131113/binary-expanded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/20131113/binary-expanded.xml -------------------------------------------------------------------------------- /specs/binary/src/20131113/binary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/20131113/binary.xml -------------------------------------------------------------------------------- /specs/binary/src/20131113/function-catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/20131113/function-catalog.xml -------------------------------------------------------------------------------- /specs/binary/src/20131125/binary-expanded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/20131125/binary-expanded.xml -------------------------------------------------------------------------------- /specs/binary/src/20131125/binary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/20131125/binary.xml -------------------------------------------------------------------------------- /specs/binary/src/20131125/function-catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/20131125/function-catalog.xml -------------------------------------------------------------------------------- /specs/binary/src/analyze-string.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/analyze-string.xsd -------------------------------------------------------------------------------- /specs/binary/src/binary-expanded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/binary-expanded.xml -------------------------------------------------------------------------------- /specs/binary/src/binary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/binary.xml -------------------------------------------------------------------------------- /specs/binary/src/fos.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/fos.xsd -------------------------------------------------------------------------------- /specs/binary/src/function-catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/function-catalog.xml -------------------------------------------------------------------------------- /specs/binary/src/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/src/xml.xsd -------------------------------------------------------------------------------- /specs/binary/style/funcproto.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/style/funcproto.xsl -------------------------------------------------------------------------------- /specs/binary/style/merge-function-specs.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/style/merge-function-specs.xsl -------------------------------------------------------------------------------- /specs/binary/style/xmlspec2html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/style/xmlspec2html.xsl -------------------------------------------------------------------------------- /specs/binary/style/xmlspecDIFF2html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/binary/style/xmlspecDIFF2html.xsl -------------------------------------------------------------------------------- /specs/crypto/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /specs/crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/crypto/Makefile -------------------------------------------------------------------------------- /specs/crypto/crypto-20110810.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/crypto/crypto-20110810.html -------------------------------------------------------------------------------- /specs/crypto/crypto-20110810.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/crypto/crypto-20110810.xml -------------------------------------------------------------------------------- /specs/crypto/crypto-20150214.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/crypto/crypto-20150214.html -------------------------------------------------------------------------------- /specs/crypto/crypto-20150214.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/crypto/crypto-20150214.xml -------------------------------------------------------------------------------- /specs/crypto/crypto-20170320.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/crypto/crypto-20170320.html -------------------------------------------------------------------------------- /specs/crypto/crypto-20170320.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/crypto/crypto-20170320.xml -------------------------------------------------------------------------------- /specs/crypto/crypto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/crypto/crypto.html -------------------------------------------------------------------------------- /specs/crypto/crypto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/crypto/crypto.xml -------------------------------------------------------------------------------- /specs/crypto/diff/crypto-20150214-diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/crypto/diff/crypto-20150214-diff.html -------------------------------------------------------------------------------- /specs/crypto/diff/crypto-20150214-diff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/crypto/diff/crypto-20150214-diff.xml -------------------------------------------------------------------------------- /specs/crypto/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/crypto/index.html -------------------------------------------------------------------------------- /specs/crypto/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/crypto/pom.xml -------------------------------------------------------------------------------- /specs/facet/.gitignore: -------------------------------------------------------------------------------- 1 | _src/ 2 | -------------------------------------------------------------------------------- /specs/facet/facet-20151225.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/facet/facet-20151225.html -------------------------------------------------------------------------------- /specs/facet/facet-20151225.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/facet/facet-20151225.md -------------------------------------------------------------------------------- /specs/facet/facet-20151225.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/facet/facet-20151225.xml -------------------------------------------------------------------------------- /specs/facet/facet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/facet/facet.html -------------------------------------------------------------------------------- /specs/facet/facet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/facet/facet.md -------------------------------------------------------------------------------- /specs/facet/facet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/facet/facet.xml -------------------------------------------------------------------------------- /specs/facet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/facet/index.html -------------------------------------------------------------------------------- /specs/facet/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/facet/make.sh -------------------------------------------------------------------------------- /specs/file/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/Makefile -------------------------------------------------------------------------------- /specs/file/file-1.0-diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/file-1.0-diff.html -------------------------------------------------------------------------------- /specs/file/file-1.0-diff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/file-1.0-diff.xml -------------------------------------------------------------------------------- /specs/file/file-1.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/file-1.0.html -------------------------------------------------------------------------------- /specs/file/file-1.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/file-1.0.xml -------------------------------------------------------------------------------- /specs/file/file-20100517.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/file-20100517.html -------------------------------------------------------------------------------- /specs/file/file-20100517.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/file-20100517.xml -------------------------------------------------------------------------------- /specs/file/file-20120614-diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/file-20120614-diff.html -------------------------------------------------------------------------------- /specs/file/file-20120614-diff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/file-20120614-diff.xml -------------------------------------------------------------------------------- /specs/file/file-20120614.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/file-20120614.html -------------------------------------------------------------------------------- /specs/file/file-20120614.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/file-20120614.xml -------------------------------------------------------------------------------- /specs/file/file-20131203-diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/file-20131203-diff.html -------------------------------------------------------------------------------- /specs/file/file-20131203-diff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/file-20131203-diff.xml -------------------------------------------------------------------------------- /specs/file/file-20131203.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/file-20131203.html -------------------------------------------------------------------------------- /specs/file/file-20131203.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/file-20131203.xml -------------------------------------------------------------------------------- /specs/file/file-diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/file-diff.html -------------------------------------------------------------------------------- /specs/file/file-diff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/file-diff.xml -------------------------------------------------------------------------------- /specs/file/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/file.html -------------------------------------------------------------------------------- /specs/file/file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/file.xml -------------------------------------------------------------------------------- /specs/file/gen-function-catalog.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/gen-function-catalog.xsl -------------------------------------------------------------------------------- /specs/file/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/index.html -------------------------------------------------------------------------------- /specs/file/src/ROLWfunction-catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/src/ROLWfunction-catalog.xml -------------------------------------------------------------------------------- /specs/file/src/function-catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/file/src/function-catalog.xml -------------------------------------------------------------------------------- /specs/houtil/src/function-catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/src/function-catalog.xml -------------------------------------------------------------------------------- /specs/houtil/test-driver/xslt/assert.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/test-driver/xslt/assert.xsl -------------------------------------------------------------------------------- /specs/houtil/test-driver/xslt/compare.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/test-driver/xslt/compare.xsl -------------------------------------------------------------------------------- /specs/houtil/test-driver/xslt/report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/test-driver/xslt/report.xml -------------------------------------------------------------------------------- /specs/houtil/test-driver/xslt/run-tests.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/test-driver/xslt/run-tests.xsl -------------------------------------------------------------------------------- /specs/houtil/tests/after-first.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/tests/after-first.xml -------------------------------------------------------------------------------- /specs/houtil/tests/before-first.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/tests/before-first.xml -------------------------------------------------------------------------------- /specs/houtil/tests/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/tests/catalog.xml -------------------------------------------------------------------------------- /specs/houtil/tests/docs/filter003.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/tests/docs/filter003.xml -------------------------------------------------------------------------------- /specs/houtil/tests/docs/filter005.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/tests/docs/filter005.xml -------------------------------------------------------------------------------- /specs/houtil/tests/docs/filter012.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/tests/docs/filter012.xml -------------------------------------------------------------------------------- /specs/houtil/tests/docs/group001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/tests/docs/group001.xml -------------------------------------------------------------------------------- /specs/houtil/tests/docs/group005.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/tests/docs/group005.xml -------------------------------------------------------------------------------- /specs/houtil/tests/from-first.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/tests/from-first.xml -------------------------------------------------------------------------------- /specs/houtil/tests/group-adjacent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/tests/group-adjacent.xml -------------------------------------------------------------------------------- /specs/houtil/tests/group-by-position.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/tests/group-by-position.xml -------------------------------------------------------------------------------- /specs/houtil/tests/group-by.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/tests/group-by.xml -------------------------------------------------------------------------------- /specs/houtil/tests/group-starting-with.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/tests/group-starting-with.xml -------------------------------------------------------------------------------- /specs/houtil/tests/highest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/tests/highest.xml -------------------------------------------------------------------------------- /specs/houtil/tests/index-of.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/tests/index-of.xml -------------------------------------------------------------------------------- /specs/houtil/tests/lowest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/tests/lowest.xml -------------------------------------------------------------------------------- /specs/houtil/tests/process-groups.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/tests/process-groups.xml -------------------------------------------------------------------------------- /specs/houtil/tests/to-first.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/tests/to-first.xml -------------------------------------------------------------------------------- /specs/houtil/xslt-lib/houtil-functions.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/houtil/xslt-lib/houtil-functions.xsl -------------------------------------------------------------------------------- /specs/http-client-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/http-client-2/index.html -------------------------------------------------------------------------------- /specs/http-client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/http-client/index.html -------------------------------------------------------------------------------- /specs/http/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/http/Makefile -------------------------------------------------------------------------------- /specs/http/http.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/http/http.html -------------------------------------------------------------------------------- /specs/http/http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/http/http.xml -------------------------------------------------------------------------------- /specs/http/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/http/index.html -------------------------------------------------------------------------------- /specs/list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/list.xml -------------------------------------------------------------------------------- /specs/mongo/create-html.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/mongo/create-html.bat -------------------------------------------------------------------------------- /specs/mongo/html/mongo-20150305.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/mongo/html/mongo-20150305.html -------------------------------------------------------------------------------- /specs/mongo/html/mongo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/mongo/html/mongo.html -------------------------------------------------------------------------------- /specs/mongo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/mongo/index.html -------------------------------------------------------------------------------- /specs/mongo/xml/expathspec.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/mongo/xml/expathspec.rnc -------------------------------------------------------------------------------- /specs/mongo/xml/mongo-20150305.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/mongo/xml/mongo-20150305.xml -------------------------------------------------------------------------------- /specs/mongo/xml/mongo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/mongo/xml/mongo.xml -------------------------------------------------------------------------------- /specs/pkg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/.gitignore -------------------------------------------------------------------------------- /specs/pkg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/Makefile -------------------------------------------------------------------------------- /specs/pkg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/index.html -------------------------------------------------------------------------------- /specs/pkg/pkg-20090901.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/pkg-20090901.html -------------------------------------------------------------------------------- /specs/pkg/pkg-20090901.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/pkg-20090901.xml -------------------------------------------------------------------------------- /specs/pkg/pkg-20091118.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/pkg-20091118.html -------------------------------------------------------------------------------- /specs/pkg/pkg-20091118.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/pkg-20091118.xml -------------------------------------------------------------------------------- /specs/pkg/pkg-20100107-diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/pkg-20100107-diff.html -------------------------------------------------------------------------------- /specs/pkg/pkg-20100107-diff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/pkg-20100107-diff.xml -------------------------------------------------------------------------------- /specs/pkg/pkg-20100107.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/pkg-20100107.html -------------------------------------------------------------------------------- /specs/pkg/pkg-20100107.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/pkg-20100107.xml -------------------------------------------------------------------------------- /specs/pkg/pkg-20101111-diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/pkg-20101111-diff.html -------------------------------------------------------------------------------- /specs/pkg/pkg-20101111-diff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/pkg-20101111-diff.xml -------------------------------------------------------------------------------- /specs/pkg/pkg-20101111.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/pkg-20101111.html -------------------------------------------------------------------------------- /specs/pkg/pkg-20101111.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/pkg-20101111.xml -------------------------------------------------------------------------------- /specs/pkg/pkg-20120509-diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/pkg-20120509-diff.html -------------------------------------------------------------------------------- /specs/pkg/pkg-20120509-diff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/pkg-20120509-diff.xml -------------------------------------------------------------------------------- /specs/pkg/pkg-20120509.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/pkg-20120509.html -------------------------------------------------------------------------------- /specs/pkg/pkg-20120509.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/pkg-20120509.xml -------------------------------------------------------------------------------- /specs/pkg/pkg-diff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/pkg-diff.xml -------------------------------------------------------------------------------- /specs/pkg/pkg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/pkg.xml -------------------------------------------------------------------------------- /specs/pkg/schema/exist-pkg.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/schema/exist-pkg.rnc -------------------------------------------------------------------------------- /specs/pkg/schema/exist-pkg.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/schema/exist-pkg.rng -------------------------------------------------------------------------------- /specs/pkg/schema/exist-pkg.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/schema/exist-pkg.xsd -------------------------------------------------------------------------------- /specs/pkg/schema/expath-pkg.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/schema/expath-pkg.rnc -------------------------------------------------------------------------------- /specs/pkg/schema/expath-pkg.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/schema/expath-pkg.rng -------------------------------------------------------------------------------- /specs/pkg/schema/expath-pkg.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/schema/expath-pkg.xsd -------------------------------------------------------------------------------- /specs/pkg/schema/packages.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/schema/packages.rnc -------------------------------------------------------------------------------- /specs/pkg/schema/packages.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/schema/packages.rng -------------------------------------------------------------------------------- /specs/pkg/schema/packages.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/schema/packages.xsd -------------------------------------------------------------------------------- /specs/pkg/schema/saxon-pkg.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/schema/saxon-pkg.rnc -------------------------------------------------------------------------------- /specs/pkg/schema/saxon-pkg.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/schema/saxon-pkg.rng -------------------------------------------------------------------------------- /specs/pkg/schema/saxon-pkg.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/pkg/schema/saxon-pkg.xsd -------------------------------------------------------------------------------- /specs/webapp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/webapp/Makefile -------------------------------------------------------------------------------- /specs/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/webapp/index.html -------------------------------------------------------------------------------- /specs/webapp/schema/webapp.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/webapp/schema/webapp.xsd -------------------------------------------------------------------------------- /specs/webapp/webapp-20130401.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/webapp/webapp-20130401.html -------------------------------------------------------------------------------- /specs/webapp/webapp-20130401.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/webapp/webapp-20130401.xml -------------------------------------------------------------------------------- /specs/webapp/webapp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/webapp/webapp.html -------------------------------------------------------------------------------- /specs/webapp/webapp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/webapp/webapp.xml -------------------------------------------------------------------------------- /specs/xparse/html/xparse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/xparse/html/xparse.html -------------------------------------------------------------------------------- /specs/xparse/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/xparse/index.html -------------------------------------------------------------------------------- /specs/xparse/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/xparse/make.bat -------------------------------------------------------------------------------- /specs/xparse/make.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/xparse/make.bsh -------------------------------------------------------------------------------- /specs/xparse/makeDiff.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/xparse/makeDiff.bsh -------------------------------------------------------------------------------- /specs/xparse/src/fos.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/xparse/src/fos.xsd -------------------------------------------------------------------------------- /specs/xparse/src/function-catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/xparse/src/function-catalog.xml -------------------------------------------------------------------------------- /specs/xparse/src/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/xparse/src/xml.xsd -------------------------------------------------------------------------------- /specs/xparse/src/xparse-expanded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/xparse/src/xparse-expanded.xml -------------------------------------------------------------------------------- /specs/xparse/src/xparse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/xparse/src/xparse.xml -------------------------------------------------------------------------------- /specs/xparse/style/funcproto.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/xparse/style/funcproto.xsl -------------------------------------------------------------------------------- /specs/xparse/style/merge-function-specs.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/xparse/style/merge-function-specs.xsl -------------------------------------------------------------------------------- /specs/xparse/style/xmlspec2html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/xparse/style/xmlspec2html.xsl -------------------------------------------------------------------------------- /specs/xparse/style/xmlspecDIFF2html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/specs/xparse/style/xmlspecDIFF2html.xsl -------------------------------------------------------------------------------- /tests/qt3/.gitignore: -------------------------------------------------------------------------------- 1 | sandpit -------------------------------------------------------------------------------- /tests/qt3/archive/archive-definition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/archive/archive-definition.xml -------------------------------------------------------------------------------- /tests/qt3/archive/archive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/archive/archive.xml -------------------------------------------------------------------------------- /tests/qt3/archive/maps/entries.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/archive/maps/entries.xml -------------------------------------------------------------------------------- /tests/qt3/archive/maps/extraction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/archive/maps/extraction.xml -------------------------------------------------------------------------------- /tests/qt3/archive/maps/options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/archive/maps/options.xml -------------------------------------------------------------------------------- /tests/qt3/archive/maps/updating.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/archive/maps/updating.xml -------------------------------------------------------------------------------- /tests/qt3/archive/parts/entries.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/archive/parts/entries.xml -------------------------------------------------------------------------------- /tests/qt3/archive/parts/extraction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/archive/parts/extraction.xml -------------------------------------------------------------------------------- /tests/qt3/archive/parts/options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/archive/parts/options.xml -------------------------------------------------------------------------------- /tests/qt3/archive/parts/updating.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/archive/parts/updating.xml -------------------------------------------------------------------------------- /tests/qt3/archive/sandpit2/test1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/archive/sandpit2/test1.zip -------------------------------------------------------------------------------- /tests/qt3/archive/sandpit2/test3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/archive/sandpit2/test3.zip -------------------------------------------------------------------------------- /tests/qt3/archive/sandpit2/textA.txt: -------------------------------------------------------------------------------- 1 | Some text here -------------------------------------------------------------------------------- /tests/qt3/archive/sandpit2/textB.txt: -------------------------------------------------------------------------------- 1 | This is from the file textB -------------------------------------------------------------------------------- /tests/qt3/archive/sandpit2/textC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/archive/sandpit2/textC.txt -------------------------------------------------------------------------------- /tests/qt3/binary/binary-definition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/binary/binary-definition.xml -------------------------------------------------------------------------------- /tests/qt3/binary/binary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/binary/binary.xml -------------------------------------------------------------------------------- /tests/qt3/binary/binary2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/binary/binary2.xml -------------------------------------------------------------------------------- /tests/qt3/binary/parts/basic-operations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/binary/parts/basic-operations.xml -------------------------------------------------------------------------------- /tests/qt3/binary/parts/bitwise.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/binary/parts/bitwise.xml -------------------------------------------------------------------------------- /tests/qt3/binary/parts/numeric-packing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/binary/parts/numeric-packing.xml -------------------------------------------------------------------------------- /tests/qt3/binary/parts/text-encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/binary/parts/text-encoding.xml -------------------------------------------------------------------------------- /tests/qt3/catalog-schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/catalog-schema.xsd -------------------------------------------------------------------------------- /tests/qt3/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/catalog.xml -------------------------------------------------------------------------------- /tests/qt3/file/file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/file/file.xml -------------------------------------------------------------------------------- /tests/qt3/file/sandpit/.gitignore: -------------------------------------------------------------------------------- 1 | dir* -------------------------------------------------------------------------------- /tests/qt3/file/sandpit/my file.txt: -------------------------------------------------------------------------------- 1 | abc -------------------------------------------------------------------------------- /tests/qt3/file/sandpit/target.txt: -------------------------------------------------------------------------------- 1 | treaty -------------------------------------------------------------------------------- /tests/qt3/file/sandpit/test.txt: -------------------------------------------------------------------------------- 1 | abc -------------------------------------------------------------------------------- /tests/qt3/file/sandpit/test2.txt: -------------------------------------------------------------------------------- 1 | abc£ -------------------------------------------------------------------------------- /tests/qt3/file/sandpit/test3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/file/sandpit/test3.txt -------------------------------------------------------------------------------- /tests/qt3/file/sandpit/test4.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qt3/mongodb/.gitignore: -------------------------------------------------------------------------------- 1 | impl* -------------------------------------------------------------------------------- /tests/qt3/mongodb/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/mongodb/catalog.xml -------------------------------------------------------------------------------- /tests/qt3/mongodb/mongodb-aggregate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/mongodb/mongodb-aggregate.xml -------------------------------------------------------------------------------- /tests/qt3/mongodb/mongodb-close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/mongodb/mongodb-close.xml -------------------------------------------------------------------------------- /tests/qt3/mongodb/mongodb-command.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/mongodb/mongodb-command.xml -------------------------------------------------------------------------------- /tests/qt3/mongodb/mongodb-connect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/mongodb/mongodb-connect.xml -------------------------------------------------------------------------------- /tests/qt3/mongodb/mongodb-count.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/mongodb/mongodb-count.xml -------------------------------------------------------------------------------- /tests/qt3/mongodb/mongodb-drop-database.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/mongodb/mongodb-drop-database.xml -------------------------------------------------------------------------------- /tests/qt3/mongodb/mongodb-errors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/mongodb/mongodb-errors.xml -------------------------------------------------------------------------------- /tests/qt3/mongodb/mongodb-eval.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/mongodb/mongodb-eval.xml -------------------------------------------------------------------------------- /tests/qt3/mongodb/mongodb-find-and-modify.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/mongodb/mongodb-find-and-modify.xml -------------------------------------------------------------------------------- /tests/qt3/mongodb/mongodb-find-and-remove.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/mongodb/mongodb-find-and-remove.xml -------------------------------------------------------------------------------- /tests/qt3/mongodb/mongodb-find-one.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/mongodb/mongodb-find-one.xml -------------------------------------------------------------------------------- /tests/qt3/mongodb/mongodb-find.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/mongodb/mongodb-find.xml -------------------------------------------------------------------------------- /tests/qt3/mongodb/mongodb-group.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/mongodb/mongodb-group.xml -------------------------------------------------------------------------------- /tests/qt3/mongodb/mongodb-insert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/mongodb/mongodb-insert.xml -------------------------------------------------------------------------------- /tests/qt3/mongodb/mongodb-list-collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/mongodb/mongodb-list-collections.xml -------------------------------------------------------------------------------- /tests/qt3/mongodb/mongodb-list-databases.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/mongodb/mongodb-list-databases.xml -------------------------------------------------------------------------------- /tests/qt3/mongodb/mongodb-map-reduce.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/mongodb/mongodb-map-reduce.xml -------------------------------------------------------------------------------- /tests/qt3/mongodb/mongodb-save.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/mongodb/mongodb-save.xml -------------------------------------------------------------------------------- /tests/qt3/mongodb/mongodb-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/mongodb/mongodb-update.xml -------------------------------------------------------------------------------- /tests/qt3/results/exceptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/results/exceptions.xml -------------------------------------------------------------------------------- /tests/qt3/results/results_XPath3.0_9.7.0.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tests/qt3/results/results_XPath3.0_9.7.0.1.xml -------------------------------------------------------------------------------- /tests/qt3/results/results_XQuery3.0_9.6.0.1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/expathspec/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /tools/expathspec/src/diffspec.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tools/expathspec/src/diffspec.xsl -------------------------------------------------------------------------------- /tools/expathspec/src/shared.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tools/expathspec/src/shared.xsl -------------------------------------------------------------------------------- /tools/expathspec/src/xmlspec.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tools/expathspec/src/xmlspec.rnc -------------------------------------------------------------------------------- /tools/expathspec/src/xmlspec.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tools/expathspec/src/xmlspec.xsl -------------------------------------------------------------------------------- /tools/expathspec/xproject/cxan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tools/expathspec/xproject/cxan.xml -------------------------------------------------------------------------------- /tools/expathspec/xproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tools/expathspec/xproject/project.xml -------------------------------------------------------------------------------- /tools/expathtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tools/expathtest/README.md -------------------------------------------------------------------------------- /tools/expathtest/test-expand.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tools/expathtest/test-expand.xsl -------------------------------------------------------------------------------- /tools/fos/src/analyze-string.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tools/fos/src/analyze-string.xsd -------------------------------------------------------------------------------- /tools/fos/src/fos.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tools/fos/src/fos.xsd -------------------------------------------------------------------------------- /tools/fos/src/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tools/fos/src/xml.xsd -------------------------------------------------------------------------------- /tools/xmlspec/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /tools/xmlspec/src/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tools/xmlspec/src/base.css -------------------------------------------------------------------------------- /tools/xmlspec/src/diffspec.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tools/xmlspec/src/diffspec.xsl -------------------------------------------------------------------------------- /tools/xmlspec/src/xmlspec.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tools/xmlspec/src/xmlspec.dtd -------------------------------------------------------------------------------- /tools/xmlspec/src/xmlspec.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tools/xmlspec/src/xmlspec.rnc -------------------------------------------------------------------------------- /tools/xmlspec/src/xmlspec.rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tools/xmlspec/src/xmlspec.rng -------------------------------------------------------------------------------- /tools/xmlspec/src/xmlspec.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tools/xmlspec/src/xmlspec.xsd -------------------------------------------------------------------------------- /tools/xmlspec/src/xmlspec.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tools/xmlspec/src/xmlspec.xsl -------------------------------------------------------------------------------- /tools/xmlspec/xproject/cxan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tools/xmlspec/xproject/cxan.xml -------------------------------------------------------------------------------- /tools/xmlspec/xproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expath/expath-cg/HEAD/tools/xmlspec/xproject/project.xml --------------------------------------------------------------------------------