├── .calabash ├── .github └── workflows │ ├── build-pr.yml │ └── build-specs.yml ├── CODEOWNERS ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── lib └── XfoJavaCtl.jar ├── overview ├── build.gradle └── src │ └── main │ └── xml │ └── specification.xml ├── schema ├── dbspec.rnc ├── dbw3c.rnc ├── docbook.sch └── docbookxi.rnc ├── settings.gradle ├── src ├── homepage │ ├── homepage │ │ ├── home.css │ │ ├── home.js │ │ ├── icon.png │ │ └── xproc-fish.svg │ └── index.html └── main │ ├── resources │ ├── css │ │ ├── autodiff.css │ │ ├── base.css │ │ ├── cg-draft.css │ │ ├── db-prism.css │ │ ├── default.css │ │ ├── print-a4.css │ │ ├── print-letter.css │ │ ├── print.css │ │ ├── prism.css │ │ ├── respec.css │ │ └── xproc.css │ ├── js │ │ ├── dbmodnizr.js │ │ ├── fixup.js │ │ ├── prism.js │ │ └── scroll.js │ └── logos │ │ ├── W3C.png │ │ └── back-cg-draft.png │ └── xml │ └── bibliography.xml ├── tools ├── lib │ └── make-diff.sh ├── xpl │ ├── css-format.xpl │ ├── fix-pre.xpl │ ├── formatspec.xpl │ ├── library-to-rnc.xpl │ ├── makeglossary.xpl │ ├── pdfspec.xpl │ ├── pipeline-library.xpl │ ├── smoke-test.xpl │ ├── typed-pipeline-library.xpl │ └── validate.xpl └── xsl │ ├── dbspec.xsl │ ├── docbook.xsl │ ├── elemsyntax.xsl │ ├── htmlprint.xsl │ ├── library-to-rnc.xsl │ ├── makeglossary.xsl │ ├── masterbib.xsl │ ├── ml-macro.xsl │ ├── pipeline-library.xsl │ ├── post-pdf.xsl │ ├── rngsyntax.xsl │ ├── typed-pipeline-library.xsl │ ├── xproc-pdf.xsl │ ├── xproc-specs.xsl │ └── xprocns.xsl └── xproc ├── .gradle ├── 4.4.1 │ ├── fileChanges │ │ └── last-build.bin │ ├── fileHashes │ │ ├── fileHashes.bin │ │ └── fileHashes.lock │ └── taskHistory │ │ ├── taskHistory.bin │ │ └── taskHistory.lock └── buildOutputCleanup │ ├── buildOutputCleanup.lock │ ├── cache.properties │ └── outputFiles.bin ├── build.gradle └── src └── main ├── examples ├── choose.xml ├── doctemp-1.xml ├── doctemp-2.xml ├── doctemp-3-result.xml ├── doctemp-3.xml ├── doctemp-input.xml ├── exclude-pfx.xml ├── fig1-abbr.xml ├── fig1.xml ├── fig2.xml ├── file.xpl ├── filebin.xpl ├── for-each.xml ├── group.xml ├── identity.xml ├── input-doc.xml ├── input-port.xml ├── input-select.xml ├── opns-1.xml ├── opns-2.xml ├── opns-3.xml ├── opns-4.xml ├── par1.xml ├── par1b.xml ├── parameter.xml ├── pipeline-library.xml ├── pipeline.xml ├── shadow.xml ├── simple-default.xml ├── simple-explicit.xml ├── step-types-1.xml ├── step-types-2.xml ├── step-types-3.xml ├── step-types-4.xml ├── trycatch.xml ├── using-names-1.xml ├── using-names-2.xml ├── viewport.xml ├── xinclude.xml ├── xpathcontext.xml ├── xslt-empty.xml └── xslt.xml ├── graphics ├── atomic-step.png ├── compound-step.png ├── depends.png ├── sch-transform.png └── sch-xinclude-validate-pipeline.png ├── resources └── errata-template.html └── xml ├── ancillary.xml ├── conformance.xml ├── credits.xml ├── error-codes.xml ├── handle-imports.xml ├── language-summary.xml ├── mediatype.xml ├── namespace-fixup.xml ├── parallel.xml ├── references.xml ├── specification.xml └── xpath-context.xml /.calabash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/.calabash -------------------------------------------------------------------------------- /.github/workflows/build-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/.github/workflows/build-pr.yml -------------------------------------------------------------------------------- /.github/workflows/build-specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/.github/workflows/build-specs.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/gradlew.bat -------------------------------------------------------------------------------- /lib/XfoJavaCtl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/lib/XfoJavaCtl.jar -------------------------------------------------------------------------------- /overview/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/overview/build.gradle -------------------------------------------------------------------------------- /overview/src/main/xml/specification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/overview/src/main/xml/specification.xml -------------------------------------------------------------------------------- /schema/dbspec.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/schema/dbspec.rnc -------------------------------------------------------------------------------- /schema/dbw3c.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/schema/dbw3c.rnc -------------------------------------------------------------------------------- /schema/docbook.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/schema/docbook.sch -------------------------------------------------------------------------------- /schema/docbookxi.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/schema/docbookxi.rnc -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "specification" 2 | include 'overview', 'xproc' 3 | -------------------------------------------------------------------------------- /src/homepage/homepage/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/homepage/homepage/home.css -------------------------------------------------------------------------------- /src/homepage/homepage/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/homepage/homepage/home.js -------------------------------------------------------------------------------- /src/homepage/homepage/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/homepage/homepage/icon.png -------------------------------------------------------------------------------- /src/homepage/homepage/xproc-fish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/homepage/homepage/xproc-fish.svg -------------------------------------------------------------------------------- /src/homepage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/homepage/index.html -------------------------------------------------------------------------------- /src/main/resources/css/autodiff.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/main/resources/css/autodiff.css -------------------------------------------------------------------------------- /src/main/resources/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/main/resources/css/base.css -------------------------------------------------------------------------------- /src/main/resources/css/cg-draft.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/main/resources/css/cg-draft.css -------------------------------------------------------------------------------- /src/main/resources/css/db-prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/main/resources/css/db-prism.css -------------------------------------------------------------------------------- /src/main/resources/css/default.css: -------------------------------------------------------------------------------- 1 | /* nop */ 2 | -------------------------------------------------------------------------------- /src/main/resources/css/print-a4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/main/resources/css/print-a4.css -------------------------------------------------------------------------------- /src/main/resources/css/print-letter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/main/resources/css/print-letter.css -------------------------------------------------------------------------------- /src/main/resources/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/main/resources/css/print.css -------------------------------------------------------------------------------- /src/main/resources/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/main/resources/css/prism.css -------------------------------------------------------------------------------- /src/main/resources/css/respec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/main/resources/css/respec.css -------------------------------------------------------------------------------- /src/main/resources/css/xproc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/main/resources/css/xproc.css -------------------------------------------------------------------------------- /src/main/resources/js/dbmodnizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/main/resources/js/dbmodnizr.js -------------------------------------------------------------------------------- /src/main/resources/js/fixup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/main/resources/js/fixup.js -------------------------------------------------------------------------------- /src/main/resources/js/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/main/resources/js/prism.js -------------------------------------------------------------------------------- /src/main/resources/js/scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/main/resources/js/scroll.js -------------------------------------------------------------------------------- /src/main/resources/logos/W3C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/main/resources/logos/W3C.png -------------------------------------------------------------------------------- /src/main/resources/logos/back-cg-draft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/main/resources/logos/back-cg-draft.png -------------------------------------------------------------------------------- /src/main/xml/bibliography.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/src/main/xml/bibliography.xml -------------------------------------------------------------------------------- /tools/lib/make-diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/lib/make-diff.sh -------------------------------------------------------------------------------- /tools/xpl/css-format.xpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xpl/css-format.xpl -------------------------------------------------------------------------------- /tools/xpl/fix-pre.xpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xpl/fix-pre.xpl -------------------------------------------------------------------------------- /tools/xpl/formatspec.xpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xpl/formatspec.xpl -------------------------------------------------------------------------------- /tools/xpl/library-to-rnc.xpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xpl/library-to-rnc.xpl -------------------------------------------------------------------------------- /tools/xpl/makeglossary.xpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xpl/makeglossary.xpl -------------------------------------------------------------------------------- /tools/xpl/pdfspec.xpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xpl/pdfspec.xpl -------------------------------------------------------------------------------- /tools/xpl/pipeline-library.xpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xpl/pipeline-library.xpl -------------------------------------------------------------------------------- /tools/xpl/smoke-test.xpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xpl/smoke-test.xpl -------------------------------------------------------------------------------- /tools/xpl/typed-pipeline-library.xpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xpl/typed-pipeline-library.xpl -------------------------------------------------------------------------------- /tools/xpl/validate.xpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xpl/validate.xpl -------------------------------------------------------------------------------- /tools/xsl/dbspec.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xsl/dbspec.xsl -------------------------------------------------------------------------------- /tools/xsl/docbook.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xsl/docbook.xsl -------------------------------------------------------------------------------- /tools/xsl/elemsyntax.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xsl/elemsyntax.xsl -------------------------------------------------------------------------------- /tools/xsl/htmlprint.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xsl/htmlprint.xsl -------------------------------------------------------------------------------- /tools/xsl/library-to-rnc.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xsl/library-to-rnc.xsl -------------------------------------------------------------------------------- /tools/xsl/makeglossary.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xsl/makeglossary.xsl -------------------------------------------------------------------------------- /tools/xsl/masterbib.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xsl/masterbib.xsl -------------------------------------------------------------------------------- /tools/xsl/ml-macro.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xsl/ml-macro.xsl -------------------------------------------------------------------------------- /tools/xsl/pipeline-library.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xsl/pipeline-library.xsl -------------------------------------------------------------------------------- /tools/xsl/post-pdf.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xsl/post-pdf.xsl -------------------------------------------------------------------------------- /tools/xsl/rngsyntax.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xsl/rngsyntax.xsl -------------------------------------------------------------------------------- /tools/xsl/typed-pipeline-library.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xsl/typed-pipeline-library.xsl -------------------------------------------------------------------------------- /tools/xsl/xproc-pdf.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xsl/xproc-pdf.xsl -------------------------------------------------------------------------------- /tools/xsl/xproc-specs.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xsl/xproc-specs.xsl -------------------------------------------------------------------------------- /tools/xsl/xprocns.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/tools/xsl/xprocns.xsl -------------------------------------------------------------------------------- /xproc/.gradle/4.4.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xproc/.gradle/4.4.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/.gradle/4.4.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /xproc/.gradle/4.4.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/.gradle/4.4.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /xproc/.gradle/4.4.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/.gradle/4.4.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /xproc/.gradle/4.4.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/.gradle/4.4.1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /xproc/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /xproc/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Thu Feb 08 17:21:57 CET 2018 2 | gradle.version=4.4.1 3 | -------------------------------------------------------------------------------- /xproc/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /xproc/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/build.gradle -------------------------------------------------------------------------------- /xproc/src/main/examples/choose.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/choose.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/doctemp-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/doctemp-1.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/doctemp-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/doctemp-2.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/doctemp-3-result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/doctemp-3-result.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/doctemp-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/doctemp-3.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/doctemp-input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/doctemp-input.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/exclude-pfx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/exclude-pfx.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/fig1-abbr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/fig1-abbr.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/fig1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/fig1.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/fig2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/fig2.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/file.xpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/file.xpl -------------------------------------------------------------------------------- /xproc/src/main/examples/filebin.xpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/filebin.xpl -------------------------------------------------------------------------------- /xproc/src/main/examples/for-each.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/for-each.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/group.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/group.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/identity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/identity.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/input-doc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/input-doc.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/input-port.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/input-port.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/input-select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/input-select.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/opns-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/opns-1.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/opns-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/opns-2.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/opns-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/opns-3.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/opns-4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/opns-4.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/par1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/par1.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/par1b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/par1b.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/parameter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/parameter.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/pipeline-library.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/pipeline-library.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/pipeline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/pipeline.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/shadow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/shadow.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/simple-default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/simple-default.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/simple-explicit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/simple-explicit.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/step-types-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/step-types-1.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/step-types-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/step-types-2.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/step-types-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/step-types-3.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/step-types-4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/step-types-4.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/trycatch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/trycatch.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/using-names-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/using-names-1.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/using-names-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/using-names-2.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/viewport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/viewport.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/xinclude.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/xinclude.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/xpathcontext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/xpathcontext.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/xslt-empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/xslt-empty.xml -------------------------------------------------------------------------------- /xproc/src/main/examples/xslt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/examples/xslt.xml -------------------------------------------------------------------------------- /xproc/src/main/graphics/atomic-step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/graphics/atomic-step.png -------------------------------------------------------------------------------- /xproc/src/main/graphics/compound-step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/graphics/compound-step.png -------------------------------------------------------------------------------- /xproc/src/main/graphics/depends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/graphics/depends.png -------------------------------------------------------------------------------- /xproc/src/main/graphics/sch-transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/graphics/sch-transform.png -------------------------------------------------------------------------------- /xproc/src/main/graphics/sch-xinclude-validate-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/graphics/sch-xinclude-validate-pipeline.png -------------------------------------------------------------------------------- /xproc/src/main/resources/errata-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/resources/errata-template.html -------------------------------------------------------------------------------- /xproc/src/main/xml/ancillary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/xml/ancillary.xml -------------------------------------------------------------------------------- /xproc/src/main/xml/conformance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/xml/conformance.xml -------------------------------------------------------------------------------- /xproc/src/main/xml/credits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/xml/credits.xml -------------------------------------------------------------------------------- /xproc/src/main/xml/error-codes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/xml/error-codes.xml -------------------------------------------------------------------------------- /xproc/src/main/xml/handle-imports.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/xml/handle-imports.xml -------------------------------------------------------------------------------- /xproc/src/main/xml/language-summary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/xml/language-summary.xml -------------------------------------------------------------------------------- /xproc/src/main/xml/mediatype.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/xml/mediatype.xml -------------------------------------------------------------------------------- /xproc/src/main/xml/namespace-fixup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/xml/namespace-fixup.xml -------------------------------------------------------------------------------- /xproc/src/main/xml/parallel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/xml/parallel.xml -------------------------------------------------------------------------------- /xproc/src/main/xml/references.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/xml/references.xml -------------------------------------------------------------------------------- /xproc/src/main/xml/specification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/xml/specification.xml -------------------------------------------------------------------------------- /xproc/src/main/xml/xpath-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xproc/3.0-specification/HEAD/xproc/src/main/xml/xpath-context.xml --------------------------------------------------------------------------------