simple-xspec-wrapper 0.1.0-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.ruby-version +1 -0
- data/.travis.yml +11 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +37 -0
- data/LICENSE.txt +21 -0
- data/README.md +49 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/xspec +16 -0
- data/lib/xspec/version.rb +3 -0
- data/lib/xspec.rb +256 -0
- data/simple-xspec-wrapper.gemspec +28 -0
- data/spec-test.xml +1125 -0
- data/vendor/xspec-1.0.0/.gitignore +7 -0
- data/vendor/xspec-1.0.0/.travis.yml +57 -0
- data/vendor/xspec-1.0.0/LICENSE +21 -0
- data/vendor/xspec-1.0.0/README.md +26 -0
- data/vendor/xspec-1.0.0/appveyor.yml +77 -0
- data/vendor/xspec-1.0.0/bin/xspec.bat +620 -0
- data/vendor/xspec-1.0.0/bin/xspec.sh +403 -0
- data/vendor/xspec-1.0.0/build.xml +369 -0
- data/vendor/xspec-1.0.0/editors/emacs/README +31 -0
- data/vendor/xspec-1.0.0/editors/emacs/schemas.xml +6 -0
- data/vendor/xspec-1.0.0/editors/oxygen/.cvsignore +2 -0
- data/vendor/xspec-1.0.0/editors/oxygen/README +11 -0
- data/vendor/xspec-1.0.0/editors/oxygen/build.xml +38 -0
- data/vendor/xspec-1.0.0/editors/oxygen/templates/xspec.xml +17 -0
- data/vendor/xspec-1.0.0/editors/oxygen/xspec.framework +175 -0
- data/vendor/xspec-1.0.0/find-examples.xml +37 -0
- data/vendor/xspec-1.0.0/find-examples.xsl +615 -0
- data/vendor/xspec-1.0.0/graphics/3angle-down.gif +0 -0
- data/vendor/xspec-1.0.0/graphics/3angle-right.gif +0 -0
- data/vendor/xspec-1.0.0/java/com/jenitennison/xslt/tests/XSLTCoverageTraceListener.class +0 -0
- data/vendor/xspec-1.0.0/java/com/jenitennison/xslt/tests/XSLTCoverageTraceListener.java +209 -0
- data/vendor/xspec-1.0.0/src/ant/find-test-failure.xsl +17 -0
- data/vendor/xspec-1.0.0/src/ant/get-schematron-phase.xsl +17 -0
- data/vendor/xspec-1.0.0/src/ant/locate-schematron.xsl +28 -0
- data/vendor/xspec-1.0.0/src/ant/make-path.js +4 -0
- data/vendor/xspec-1.0.0/src/compiler/generate-common-tests.xsl +604 -0
- data/vendor/xspec-1.0.0/src/compiler/generate-query-helper.xsl +152 -0
- data/vendor/xspec-1.0.0/src/compiler/generate-query-tests.xsl +473 -0
- data/vendor/xspec-1.0.0/src/compiler/generate-query-utils.xql +263 -0
- data/vendor/xspec-1.0.0/src/compiler/generate-tests-helper.xsl +169 -0
- data/vendor/xspec-1.0.0/src/compiler/generate-tests-utils.xsl +479 -0
- data/vendor/xspec-1.0.0/src/compiler/generate-xspec-tests.xsl +503 -0
- data/vendor/xspec-1.0.0/src/harnesses/basex/basex-standalone-xquery-harness.xproc +135 -0
- data/vendor/xspec-1.0.0/src/harnesses/basex/basex-xquery-harness.xproc +133 -0
- data/vendor/xspec-1.0.0/src/harnesses/exist/exist-xquery-harness.xproc +161 -0
- data/vendor/xspec-1.0.0/src/harnesses/harness-lib.xpl +327 -0
- data/vendor/xspec-1.0.0/src/harnesses/marklogic/ml-xquery-harness.xproc +143 -0
- data/vendor/xspec-1.0.0/src/harnesses/saxon/saxon-xquery-harness.xproc +108 -0
- data/vendor/xspec-1.0.0/src/harnesses/saxon/saxon-xslt-harness.xproc +85 -0
- data/vendor/xspec-1.0.0/src/harnesses/zorba/zorba-xquery-harness.xproc +134 -0
- data/vendor/xspec-1.0.0/src/reporter/coverage-report.xsl +378 -0
- data/vendor/xspec-1.0.0/src/reporter/format-utils.xsl +220 -0
- data/vendor/xspec-1.0.0/src/reporter/format-xspec-report-folding.xsl +164 -0
- data/vendor/xspec-1.0.0/src/reporter/format-xspec-report.xsl +410 -0
- data/vendor/xspec-1.0.0/src/reporter/junit-report.xsl +93 -0
- data/vendor/xspec-1.0.0/src/reporter/test-report.css +469 -0
- data/vendor/xspec-1.0.0/src/schemas/find-examples.rnc +90 -0
- data/vendor/xspec-1.0.0/src/schemas/xspec.rnc +304 -0
- data/vendor/xspec-1.0.0/src/schematron/iso-schematron/iso_abstract_expand.xsl +313 -0
- data/vendor/xspec-1.0.0/src/schematron/iso-schematron/iso_dsdl_include.xsl +1519 -0
- data/vendor/xspec-1.0.0/src/schematron/iso-schematron/iso_schematron_message.xsl +64 -0
- data/vendor/xspec-1.0.0/src/schematron/iso-schematron/iso_schematron_message_xslt2.xsl +64 -0
- data/vendor/xspec-1.0.0/src/schematron/iso-schematron/iso_schematron_skeleton_for_saxon.xsl +2306 -0
- data/vendor/xspec-1.0.0/src/schematron/iso-schematron/iso_schematron_skeleton_for_xslt1.xsl +1851 -0
- data/vendor/xspec-1.0.0/src/schematron/iso-schematron/iso_svrl_for_xslt1.xsl +614 -0
- data/vendor/xspec-1.0.0/src/schematron/iso-schematron/iso_svrl_for_xslt2.xsl +692 -0
- data/vendor/xspec-1.0.0/src/schematron/iso-schematron/readme.txt +101 -0
- data/vendor/xspec-1.0.0/src/schematron/iso-schematron/sch-messages-cs.xhtml +56 -0
- data/vendor/xspec-1.0.0/src/schematron/iso-schematron/sch-messages-de.xhtml +55 -0
- data/vendor/xspec-1.0.0/src/schematron/iso-schematron/sch-messages-en.xhtml +57 -0
- data/vendor/xspec-1.0.0/src/schematron/iso-schematron/sch-messages-fr.xhtml +54 -0
- data/vendor/xspec-1.0.0/src/schematron/iso-schematron/sch-messages-ja.xhtml +53 -0
- data/vendor/xspec-1.0.0/src/schematron/iso-schematron/sch-messages-nl.xhtml +58 -0
- data/vendor/xspec-1.0.0/src/schematron/iso-schematron/schematron-skeleton-api.htm +723 -0
- data/vendor/xspec-1.0.0/src/schematron/sch-location-compare.xsl +139 -0
- data/vendor/xspec-1.0.0/src/schematron/schut-to-xspec.xsl +179 -0
- data/vendor/xspec-1.0.0/test/Makefile +117 -0
- data/vendor/xspec-1.0.0/test/README +5 -0
- data/vendor/xspec-1.0.0/test/catalog/xspec-160_catalog.xml +4 -0
- data/vendor/xspec-1.0.0/test/catalog/xspec-160_schematron.xspec +6 -0
- data/vendor/xspec-1.0.0/test/catalog/xspec-160_xslt.xspec +5 -0
- data/vendor/xspec-1.0.0/test/end-to-end/README.md +42 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/.gitignore +1 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/expected/.gitignore +3 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/expected/xspec-50-result-norm.html +74 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/expected/xspec-55-result-norm.html +112 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/expected/xspec-focus-1-result-norm.html +109 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/expected/xspec-function-result-norm.html +118 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/expected/xspec-import-result-norm.html +163 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/expected/xspec-imported-result-norm.html +95 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/expected/xspec-pending-result-norm.html +123 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/expected/xspec-rule-result-norm.html +109 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/expected/xspec-three-dots-result-norm.html +1237 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/xspec-50.xsl +7 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/xspec-50.xspec +10 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/xspec-55.xsl +2 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/xspec-55.xspec +18 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/xspec-focus-1.xspec +71 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/xspec-function.xspec +50 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/xspec-import.xspec +50 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/xspec-imported.xspec +48 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/xspec-pending.xspec +89 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/xspec-rule.xspec +76 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/xspec-three-dots.xsl +49 -0
- data/vendor/xspec-1.0.0/test/end-to-end/cases/xspec-three-dots.xspec +527 -0
- data/vendor/xspec-1.0.0/test/end-to-end/generate-expected.cmd +51 -0
- data/vendor/xspec-1.0.0/test/end-to-end/generate-expected.sh +25 -0
- data/vendor/xspec-1.0.0/test/end-to-end/processor/_deserializer.xsl +53 -0
- data/vendor/xspec-1.0.0/test/end-to-end/processor/_normalizer.xsl +192 -0
- data/vendor/xspec-1.0.0/test/end-to-end/processor/_serializer.xsl +15 -0
- data/vendor/xspec-1.0.0/test/end-to-end/processor/_util.xsl +35 -0
- data/vendor/xspec-1.0.0/test/end-to-end/processor/compare.xsl +88 -0
- data/vendor/xspec-1.0.0/test/end-to-end/processor/normalize.xsl +28 -0
- data/vendor/xspec-1.0.0/test/end-to-end/run-e2e-tests.cmd +61 -0
- data/vendor/xspec-1.0.0/test/end-to-end/run-e2e-tests.sh +28 -0
- data/vendor/xspec-1.0.0/test/generate-tests-utils.xspec +636 -0
- data/vendor/xspec-1.0.0/test/generate-x-utils.xspec +173 -0
- data/vendor/xspec-1.0.0/test/generate-xspec-tests.xspec +64 -0
- data/vendor/xspec-1.0.0/test/run-xspec-tests.cmd +83 -0
- data/vendor/xspec-1.0.0/test/run-xspec-tests.sh +42 -0
- data/vendor/xspec-1.0.0/test/sch-location-compare.xspec +179 -0
- data/vendor/xspec-1.0.0/test/schematron/data/standards.xml +7 -0
- data/vendor/xspec-1.0.0/test/schematron/schematron-017.sch +9 -0
- data/vendor/xspec-1.0.0/test/schematron/schematron-018.sch +17 -0
- data/vendor/xspec-1.0.0/test/schematron/schematron-019.sch +13 -0
- data/vendor/xspec-1.0.0/test/schematron/schematron-020-01.sch +35 -0
- data/vendor/xspec-1.0.0/test/schematron/schematron-020.sch +32 -0
- data/vendor/xspec-1.0.0/test/schematron/schematron-021.sch +28 -0
- data/vendor/xspec-1.0.0/test/schematron/schematron-022.sch +18 -0
- data/vendor/xspec-1.0.0/test/schematron/schematron-xslt-compile.xsl +8 -0
- data/vendor/xspec-1.0.0/test/schematron/schematron-xslt-expand.xsl +8 -0
- data/vendor/xspec-1.0.0/test/schematron/schematron-xslt-include.xsl +8 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-001-in.xspec +5 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-001-out.xspec +7 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-002-in.xspec +5 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-002-out.xspec +7 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-002.sch +4 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-003-in.xspec +7 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-003-out.xspec +9 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-004-in.xspec +20 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-004-out.xspec +22 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-005-in.xspec +6 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-005-out.xspec +8 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-006-in.xspec +11 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-006-out.xspec +13 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-007-in.xspec +7 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-007-out.xspec +9 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-007.xml +2 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-008-in.xspec +9 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-008-out.xspec +9 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-009-import-in.xspec +5 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-009-in.xspec +6 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-009-out.xspec +10 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-010-import.xspec +5 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-010-in.xspec +6 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-010-out.xspec +8 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-011-in.xspec +6 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-011-out.xspec +8 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-012-01.xml +4 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-012-02.xml +13 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-012-out.xspec +81 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-013-in.xspec +6 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-013-out.xspec +8 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-test.sch +4 -0
- data/vendor/xspec-1.0.0/test/schematron/schut-to-xspec-test.sch.xsl +4 -0
- data/vendor/xspec-1.0.0/test/schematron-01.sch +17 -0
- data/vendor/xspec-1.0.0/test/schematron-01.xml +14 -0
- data/vendor/xspec-1.0.0/test/schematron-01.xspec +14 -0
- data/vendor/xspec-1.0.0/test/schematron-012.xspec +83 -0
- data/vendor/xspec-1.0.0/test/schematron-014-01.xml +10 -0
- data/vendor/xspec-1.0.0/test/schematron-014.sch +16 -0
- data/vendor/xspec-1.0.0/test/schematron-014.xspec +11 -0
- data/vendor/xspec-1.0.0/test/schematron-015.sch +16 -0
- data/vendor/xspec-1.0.0/test/schematron-015.xspec +11 -0
- data/vendor/xspec-1.0.0/test/schematron-016.sch +19 -0
- data/vendor/xspec-1.0.0/test/schematron-016.xspec +171 -0
- data/vendor/xspec-1.0.0/test/schematron-017.xspec +26 -0
- data/vendor/xspec-1.0.0/test/schematron-018.xspec +120 -0
- data/vendor/xspec-1.0.0/test/schematron-019.xspec +16 -0
- data/vendor/xspec-1.0.0/test/schematron-020.xspec +53 -0
- data/vendor/xspec-1.0.0/test/schematron-021.xspec +27 -0
- data/vendor/xspec-1.0.0/test/schematron-022.xspec +15 -0
- data/vendor/xspec-1.0.0/test/schematron-param-001.xspec +50 -0
- data/vendor/xspec-1.0.0/test/schut-to-xspec-012.sch +27 -0
- data/vendor/xspec-1.0.0/test/schut-to-xspec.xspec +85 -0
- data/vendor/xspec-1.0.0/test/unit-expect-xsl.xspec +28 -0
- data/vendor/xspec-1.0.0/test/xspec-26.xsl +19 -0
- data/vendor/xspec-1.0.0/test/xspec-26.xspec +17 -0
- data/vendor/xspec-1.0.0/test/xspec-30.xml +2 -0
- data/vendor/xspec-1.0.0/test/xspec-30.xsl +6 -0
- data/vendor/xspec-1.0.0/test/xspec-30.xspec +8 -0
- data/vendor/xspec-1.0.0/test/xspec-33.xsl +7 -0
- data/vendor/xspec-1.0.0/test/xspec-33.xspec +15 -0
- data/vendor/xspec-1.0.0/test/xspec-46.xsl +7 -0
- data/vendor/xspec-1.0.0/test/xspec-46.xspec +9 -0
- data/vendor/xspec-1.0.0/test/xspec-72.xsl +13 -0
- data/vendor/xspec-1.0.0/test/xspec-72.xspec +19 -0
- data/vendor/xspec-1.0.0/test/xspec-bat.cmd +757 -0
- data/vendor/xspec-1.0.0/test/xspec-focus-2.xspec +91 -0
- data/vendor/xspec-1.0.0/test/xspec-junit.xspec +78 -0
- data/vendor/xspec-1.0.0/test/xspec-result-naming-collision.xml +1003 -0
- data/vendor/xspec-1.0.0/test/xspec-result-naming-collision.xslt +10 -0
- data/vendor/xspec-1.0.0/test/xspec-result-naming-collision.xspec +13 -0
- data/vendor/xspec-1.0.0/test/xspec-tested.xql +44 -0
- data/vendor/xspec-1.0.0/test/xspec-tested.xsl +64 -0
- data/vendor/xspec-1.0.0/test/xspec-variable.xml +3 -0
- data/vendor/xspec-1.0.0/test/xspec-variable.xspec +58 -0
- data/vendor/xspec-1.0.0/test/xspec-xslt3.xsl +13 -0
- data/vendor/xspec-1.0.0/test/xspec-xslt3.xspec +12 -0
- data/vendor/xspec-1.0.0/test/xspec.bats +420 -0
- data/vendor/xspec-1.0.0/tutorial/escape-for-regex.xslt +40 -0
- data/vendor/xspec-1.0.0/tutorial/escape-for-regex.xspec +75 -0
- data/vendor/xspec-1.0.0/tutorial/schematron/demo-01.sch +17 -0
- data/vendor/xspec-1.0.0/tutorial/schematron/demo-01.xml +11 -0
- data/vendor/xspec-1.0.0/tutorial/schematron/demo-01.xspec +14 -0
- data/vendor/xspec-1.0.0/tutorial/schematron/demo-02-PhaseA.xspec +11 -0
- data/vendor/xspec-1.0.0/tutorial/schematron/demo-02-PhaseB.xspec +12 -0
- data/vendor/xspec-1.0.0/tutorial/schematron/demo-02-import1.xspec +10 -0
- data/vendor/xspec-1.0.0/tutorial/schematron/demo-02-import2.xspec +8 -0
- data/vendor/xspec-1.0.0/tutorial/schematron/demo-02-import3.xspec +10 -0
- data/vendor/xspec-1.0.0/tutorial/schematron/demo-02.sch +58 -0
- data/vendor/xspec-1.0.0/tutorial/schematron/demo-02.xml +19 -0
- data/vendor/xspec-1.0.0/tutorial/schematron/demo-03-doc1.xml +6 -0
- data/vendor/xspec-1.0.0/tutorial/schematron/demo-03-doc2.xml +7 -0
- data/vendor/xspec-1.0.0/tutorial/schematron/demo-03.sch +29 -0
- data/vendor/xspec-1.0.0/tutorial/schematron/demo-03.xspec +63 -0
- data/vendor/xspec-1.0.0/tutorial/schematron/demo-04.sch +20 -0
- data/vendor/xspec-1.0.0/tutorial/schematron/demo-04.xspec +33 -0
- data/vendor/xspec-1.0.0/tutorial/schematron/quickfix.sch +81 -0
- data/vendor/xspec-1.0.0/tutorial/xquery-tutorial.xq +8 -0
- data/vendor/xspec-1.0.0/tutorial/xquery-tutorial.xspec +16 -0
- data/vendor/xspec-1.0.0/xproject/project.xml +8 -0
- data/vendor/xspec-1.0.0/xproject/release-project.xsl +41 -0
- metadata +341 -0
|
@@ -0,0 +1,469 @@
|
|
|
1
|
+
/****************************************************************************/
|
|
2
|
+
/* File: test-report.css */
|
|
3
|
+
/* Author: Jeni Tennsion */
|
|
4
|
+
/* Tags: */
|
|
5
|
+
/* Copyright (c) 2008, 2010 Jeni Tennsion (see end of file.) */
|
|
6
|
+
/* ------------------------------------------------------------------------ */
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
/* test */
|
|
10
|
+
|
|
11
|
+
/* box model */
|
|
12
|
+
|
|
13
|
+
body {
|
|
14
|
+
margin-right: 5%;
|
|
15
|
+
margin-left: 5%;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
h1 {
|
|
19
|
+
padding: 0.3em 0.5em 0.3em 0.5em;
|
|
20
|
+
position: relative;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
h2 {
|
|
24
|
+
padding: 0.1em 0.5em 0.2em 0.5em;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
h3 {
|
|
28
|
+
padding-left: 0.6em;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
h4 {
|
|
32
|
+
padding-left: 0.8em;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
p, table {
|
|
36
|
+
margin-left: 5%;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
dd ul, dd ol {
|
|
40
|
+
margin-left: 0%;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
li ul, li ol {
|
|
44
|
+
margin-left: 5%;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
dl, ul, ol, blockquote {
|
|
48
|
+
margin-left: 10%;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
dt {
|
|
52
|
+
padding-top: 3px;
|
|
53
|
+
padding-bottom: 3px;
|
|
54
|
+
clear: both;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
dd p {
|
|
58
|
+
margin-left: -5px;
|
|
59
|
+
margin-top: 5px;
|
|
60
|
+
clear: both;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
p.link {
|
|
64
|
+
margin-top: 4px;
|
|
65
|
+
margin-bottom: 0px;
|
|
66
|
+
clear: both;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
tr td, td p, li, li p {
|
|
70
|
+
margin-left: 0%;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
td {
|
|
74
|
+
padding-right: 5%;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.link img, dt img {
|
|
78
|
+
vertical-align: middle;
|
|
79
|
+
position: relative;
|
|
80
|
+
top: -5px;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
img {
|
|
84
|
+
position: relative;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
#xml-link {
|
|
88
|
+
position: absolute;
|
|
89
|
+
left: 5px;
|
|
90
|
+
top: 5px;
|
|
91
|
+
width: 10%;
|
|
92
|
+
margin-left: 0%;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
#link-up {
|
|
96
|
+
position: absolute;
|
|
97
|
+
left: 93%;
|
|
98
|
+
right: 2em;
|
|
99
|
+
top: 0.3em;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
#link-top {
|
|
103
|
+
position: absolute;
|
|
104
|
+
left: 89%;
|
|
105
|
+
right: 4em;
|
|
106
|
+
top: 0.3em;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.popup {
|
|
110
|
+
display: block;
|
|
111
|
+
visibility: hidden;
|
|
112
|
+
float: right;
|
|
113
|
+
position: absolute;
|
|
114
|
+
top: 5px;
|
|
115
|
+
left: -200px;
|
|
116
|
+
z-index: 1;
|
|
117
|
+
padding: 0.3em;
|
|
118
|
+
width: 220px;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.note {
|
|
122
|
+
position: relative;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.post {
|
|
126
|
+
margin-left: 5%;
|
|
127
|
+
padding-top: 1em;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.example, .sidebar {
|
|
131
|
+
margin-left: 5%;
|
|
132
|
+
margin-top: 1em;
|
|
133
|
+
margin-bottom: 1em;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
pre {
|
|
137
|
+
padding-left: 5%;
|
|
138
|
+
margin-left: 5%;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
dd pre, li pre {
|
|
142
|
+
padding-left: 5%;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
/* fonts */
|
|
146
|
+
body {
|
|
147
|
+
font-family: arial, helvetica, sans-serif;
|
|
148
|
+
font-size: small;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
h1, h2, h3, h4, h5, h6 {
|
|
152
|
+
font-family: 'trebuchet MS', arial, sans-serif;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
h1 {
|
|
156
|
+
font-size: 173%;
|
|
157
|
+
font-weight: bold;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
h2 {
|
|
161
|
+
font-size: 144%;
|
|
162
|
+
font-weight: bold;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
h3 {
|
|
166
|
+
font-size: 120%;
|
|
167
|
+
font-weight: normal;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
h4 {
|
|
171
|
+
font-size: 100%;
|
|
172
|
+
font-weight: bold;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
dt {
|
|
176
|
+
font-weight: bold;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
a:link, a:visited, a:active, a:hover {
|
|
180
|
+
font-weight: bold;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
a.offsite:link, a.offsite:visited, a.offsite:active, a.offsite:hover {
|
|
184
|
+
font-weight: normal;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
/* suppress the normal italics */
|
|
188
|
+
address {
|
|
189
|
+
font-style: normal;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
div.example, .sidebar {
|
|
193
|
+
font-family: Verdana, arial, sans-serif;
|
|
194
|
+
font-size: 100%;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
.note, .link {
|
|
199
|
+
font-family: Verdana, arial, sans-serif;
|
|
200
|
+
font-size: 83%;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.example, .string, .rtf, .code, pre, code {
|
|
204
|
+
font-family: "Lucida Console", "Courier New", monospace;
|
|
205
|
+
font-size: 83%;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.boolean {
|
|
209
|
+
font-style: italic;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
#colophon, #xml-link {
|
|
213
|
+
font-size: 69%;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.question, .title {
|
|
217
|
+
font-weight: bold;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
/* colours */
|
|
221
|
+
body {
|
|
222
|
+
background-color: white;
|
|
223
|
+
color: black;
|
|
224
|
+
border: 0px none black;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
/* this is to make Navigator fill the entire line */
|
|
228
|
+
h1, h2 {
|
|
229
|
+
border: 1px solid white;
|
|
230
|
+
width: auto;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
h1 {
|
|
234
|
+
background: #606;
|
|
235
|
+
color: #6F6;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
h2 {
|
|
239
|
+
color: #606;
|
|
240
|
+
background: #CFC;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
hr {
|
|
244
|
+
color: #606;
|
|
245
|
+
background: white;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
img, a:link img, a:visited img, a:hover img, a:active img, #link-up img, #link-top img {
|
|
249
|
+
border: 0px none white;
|
|
250
|
+
background: transparent;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
a:link {
|
|
254
|
+
color: #636;
|
|
255
|
+
background: transparent;
|
|
256
|
+
border: 0px none white;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
a:visited {
|
|
260
|
+
color: #606;
|
|
261
|
+
background: transparent;
|
|
262
|
+
border: 0px none white;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
a:active {
|
|
266
|
+
color: #6F6;
|
|
267
|
+
background: #606;
|
|
268
|
+
border: 0px none white;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
a:hover {
|
|
272
|
+
color: #636;
|
|
273
|
+
background: #9F9;
|
|
274
|
+
border: 0px none white;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
a.img:hover, a.img:active {
|
|
278
|
+
background: transparent;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
#colophon, #xml-link, .note {
|
|
282
|
+
color: #666;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
#colophon a:link, #colophon a:visited, #colophon a:hover,
|
|
286
|
+
#xml-link a:link, #xml-link a:visited, #xml-link a:hover,
|
|
287
|
+
.note a:link, .note a:visited, .note a:hover {
|
|
288
|
+
color: #969;
|
|
289
|
+
background: transparent;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
#colophon a:hover, #xml-link a:hover, .note a:hover {
|
|
293
|
+
background: #CFC;
|
|
294
|
+
color: #969;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.popup {
|
|
298
|
+
background: white;
|
|
299
|
+
border: 1px solid #606;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
.post {
|
|
303
|
+
border-top: 2px solid #606;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
.example {
|
|
307
|
+
border-top: 2px solid #606;
|
|
308
|
+
border-bottom: 2px solid #606;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.sidebar {
|
|
312
|
+
border-top: 2px solid #090;
|
|
313
|
+
border-bottom: 2px solid #090;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.rng {
|
|
317
|
+
border-left: 2px solid #666;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.same {
|
|
321
|
+
background-color: rgb(206, 239, 174);
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.diff {
|
|
325
|
+
background-color: #FCC;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.whitespace {
|
|
329
|
+
font-style: italic;
|
|
330
|
+
color: #999;
|
|
331
|
+
background: white;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.ignored {
|
|
335
|
+
font-style: italic;
|
|
336
|
+
color: #999;
|
|
337
|
+
background: white;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.hit {
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.missed {
|
|
344
|
+
background-color: #A33;
|
|
345
|
+
color: white;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
/* text */
|
|
349
|
+
ol ol li {
|
|
350
|
+
list-style: lower-alpha;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
td {
|
|
354
|
+
vertical-align: top;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
h1 {
|
|
358
|
+
text-transform: uppercase;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.question {
|
|
362
|
+
text-indent: -33px;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.byline {
|
|
366
|
+
text-align: right;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
#link-top, #link-up {
|
|
370
|
+
text-align: right;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
a {
|
|
374
|
+
text-decoration: none;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
body > h2:first-of-type {
|
|
378
|
+
background: inherit;
|
|
379
|
+
margin-bottom: 0;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
table { width: 95%;
|
|
383
|
+
/* border: collapse; */ }
|
|
384
|
+
|
|
385
|
+
th { text-align: left; }
|
|
386
|
+
|
|
387
|
+
th.totals { text-align: center; font-weight: normal; }
|
|
388
|
+
|
|
389
|
+
div > table > tbody > tr > th:first-child {
|
|
390
|
+
font-weight:bold;
|
|
391
|
+
color: #474747;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.xspec tbody th { font-weight: normal; font-size: 0.8em; border-top: 1px #666 solid; }
|
|
395
|
+
.xspec tbody td { font-size: 0.8em; color: #262626; }
|
|
396
|
+
|
|
397
|
+
.successful { background-color: #CFC; }
|
|
398
|
+
.pending { background-color: #EEE; color: #666; }
|
|
399
|
+
.failed { background-color: #FCC; }
|
|
400
|
+
|
|
401
|
+
.successful td:first-child:before,
|
|
402
|
+
body > table:first-of-type tr.successful th:first-child:before
|
|
403
|
+
{
|
|
404
|
+
margin-right: 5px;
|
|
405
|
+
content:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpCQjU0NjU4QjIyQTNFMTExQkI5Rjk5QkQ4RkQ5RUJFQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEMDVBNThBQUEzRDUxMUUxQjdCQkM2QUNBMTNBMDExNiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEMDVBNThBOUEzRDUxMUUxQjdCQkM2QUNBMTNBMDExNiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ4MTZDRTNCRDVBM0UxMTFBQTI2QTBCMjZENzg1Qzg5IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkJCNTQ2NThCMjJBM0UxMTFCQjlGOTlCRDhGRDlFQkVCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+xJ3YrgAAAYBJREFUeNpsUrtKA1EQPZtdY4gEQiD4QCsLEVGX4CP4AykEq1hYiGghCDZ+gBZWVtrZ+EAjaGOhfoAkNiaKhYWICilMEQNqoYjZ5O4d5+6ucQuLM3funDNzD7OrLe229YBwSKAEnyAP/pyIbL5fcz5rcNiLtuqJSEz3ickn5ruE/vFmJ9/LYjvAldGWqA7bJkgPtoAHQrS5G6NdiwhFWCoxHOCgKUL+iurkCBVawyamE8d4qmSZ51clBZUlh+RG14JzEsJNcaTNLVwWd1B6vXXqkmGoYNeVUPnW3JNr4+YarPoncvebEAKNekAlokaY6N/A1NA+SBgY6Eijtz2Fs5sVWNWawysorWNJsO+q9QWzaxLTYwfojA3isZzDfSnrWvTsNiyp7pOrZURC7ejrTDEpcVpY9ab+NSioLZEiapZA5nwBxZcC8g9HeK7ccYM7TDnwmoU2vx6/NIJaUjc0b0u8YvJNle5HdJvlhbI0Y31ThqsjTGr0/+8hOOQ5nfsRYACtHiy+FDd82wAAAABJRU5ErkJggg==')
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.failed td:first-child:before,
|
|
409
|
+
body > table:first-of-type tr.failed th:first-child:before
|
|
410
|
+
{
|
|
411
|
+
margin-right: 5px;
|
|
412
|
+
content:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpCQjU0NjU4QjIyQTNFMTExQkI5Rjk5QkQ4RkQ5RUJFQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEQTUyOTdBQUEzRDUxMUUxQTQwN0YzMUI0Nzg3NDU1RSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEQTUyOTdBOUEzRDUxMUUxQTQwN0YzMUI0Nzg3NDU1RSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ4MTZDRTNCRDVBM0UxMTFBQTI2QTBCMjZENzg1Qzg5IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkJCNTQ2NThCMjJBM0UxMTFCQjlGOTlCRDhGRDlFQkVCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+aHNJrgAAAZ1JREFUeNpsUssrRGEU/907985YMDPNYlh4hbKZPMdgR3aysrGSSFIeKyUKpewoRTYkmcgCf4MsMI2FPDYGKeUZSoru4/uc82VC+W7fOeee+zvn/M45V1uuyCmVwDogq0hDklD6jy1dspNkdxokVrIzPFUh0/MD5OdXoJDwPFtu3d2ns6TTp9oggTlFZlmN0o4AHMmXfJGo0lmGzoE1OgmNHf5YA8rmN5HfM6wADmUuHphA9cIW/JX1yiek9DIlyijxkNjBzXYche19gNcHzfShoLUdVxtLuD/cYzCoMAzCwqYrhMDx9Chs20JRWzf4nMcXcDI3pYAqQHIAtWUJbpKursMMhpA+RiAEGzpc4X5XkDB4GjaHmiZik/PIa2rBEWVlSuW9Q+T3YndskBi46QpQFcLltchtbEZyZhxna4uKhmV9Ito/gtPNOG4P99WItdlIWARNXWOAv6AEr9cplel7/ggUleDlMqUSvNnCobHKxDsNnqs8XaWUZopp/XhxTkOR+HDVOveYUge9rNLyY9SU9v+vwXuUB2R0fQkwABfn/VKSjTLBAAAAAElFTkSuQmCC')
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.pending td:first-child:before,
|
|
416
|
+
body > table:first-of-type tr.pending th:first-child:before
|
|
417
|
+
{
|
|
418
|
+
margin-right: 5px;
|
|
419
|
+
content:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpCQjU0NjU4QjIyQTNFMTExQkI5Rjk5QkQ4RkQ5RUJFQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpDODdDM0Y0QUEzRDUxMUUxQjk5N0MzQjVFRDMyQUE1MiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpDODdDM0Y0OUEzRDUxMUUxQjk5N0MzQjVFRDMyQUE1MiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ4MTZDRTNCRDVBM0UxMTFBQTI2QTBCMjZENzg1Qzg5IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkJCNTQ2NThCMjJBM0UxMTFCQjlGOTlCRDhGRDlFQkVCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+yj6RYgAAAPZJREFUeNp0kM8KgkAQxmc1E0Wfo3vQn5eRSDx4EUHwbTpEhx4lil7DiydBQUFXp5nAMNsGhpnd/X77za4Iw3CFiFcAWFMFDkXtKZ/UHhfUnB3HWdu2/REpAL2u631ZlicGdpZlwTAMSmBM0zS5bhgQLB5FU3AOUS4XvNn3vVKgAACCIMA0TbFpGsyyDJMkefdFUWAcx1hVFeZ5jlEUoed5qPEI7KDrOhiG8e6llNC27Zcz77FW+L6Pruv+WKtGIzfgR39umv/UHOJgAMlO/BPOXCQDD5p3r2ma8lvHNU9BcWPg0HXdhRZbOhRT8aSXVO9U/ZcAAwAsmjsSQcM0lwAAAABJRU5ErkJggg==')
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
.xspecResult { width: 95%; table-layout: fixed; }
|
|
425
|
+
|
|
426
|
+
.xspecResult td,
|
|
427
|
+
.xspecResult th { width: 50%; }
|
|
428
|
+
|
|
429
|
+
.xspecResult pre {
|
|
430
|
+
margin-left: 0;
|
|
431
|
+
padding: 0.5em;
|
|
432
|
+
overflow: auto;
|
|
433
|
+
border: 1px #999 dotted;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
span.scenario-totals {float: right; text-align: right}
|
|
437
|
+
|
|
438
|
+
/* highlight the link target */
|
|
439
|
+
*:target {
|
|
440
|
+
box-shadow: -0.5rem 0 0 0 #FC511D;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
/* ------------------------------------------------------------------------ */
|
|
444
|
+
/* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS COMMENT. */
|
|
445
|
+
/* */
|
|
446
|
+
/* Copyright (c) 2008, 2010 Jeni Tennsion */
|
|
447
|
+
/* */
|
|
448
|
+
/* The contents of this file are subject to the MIT License (see the URI */
|
|
449
|
+
/* http://www.opensource.org/licenses/mit-license.php for details). */
|
|
450
|
+
/* */
|
|
451
|
+
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
452
|
+
/* a copy of this software and associated documentation files (the */
|
|
453
|
+
/* "Software"), to deal in the Software without restriction, including */
|
|
454
|
+
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
455
|
+
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
456
|
+
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
457
|
+
/* the following conditions: */
|
|
458
|
+
/* */
|
|
459
|
+
/* The above copyright notice and this permission notice shall be */
|
|
460
|
+
/* included in all copies or substantial portions of the Software. */
|
|
461
|
+
/* */
|
|
462
|
+
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
463
|
+
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
464
|
+
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
|
|
465
|
+
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
466
|
+
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
467
|
+
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
468
|
+
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
469
|
+
/* ------------------------------------------------------------------------ */
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
# ========================================================================== #
|
|
2
|
+
# File: find-examples.rnc #
|
|
3
|
+
# Author: Jeni Tennsion #
|
|
4
|
+
# Tags: #
|
|
5
|
+
# Copyright (c) 2008, 2010 Jeni Tennsion (see end of file.) #
|
|
6
|
+
# -------------------------------------------------------------------------- #
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
default namespace = "http://www.jenitennison.com/xslt/xspec"
|
|
10
|
+
datatypes xs = "http://www.w3.org/2001/XMLSchema-datatypes"
|
|
11
|
+
|
|
12
|
+
start = scan
|
|
13
|
+
|
|
14
|
+
scan =
|
|
15
|
+
## <scan> is the document element
|
|
16
|
+
element scan {
|
|
17
|
+
collection? & find?
|
|
18
|
+
& global-id-atts? & local-id-atts? & enum-atts?
|
|
19
|
+
& max-examples?
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
collection =
|
|
23
|
+
## <collection> provides the URL of a collection of documents that will be
|
|
24
|
+
## searched. This is passed to the collection() function. A typical value if
|
|
25
|
+
## you're using Saxon might be:
|
|
26
|
+
## ?select=*.xml&recurse=yes&strip-space=yes
|
|
27
|
+
element collection { xs:anyURI }
|
|
28
|
+
|
|
29
|
+
find =
|
|
30
|
+
## <find> provides an XPath that selects the kinds of nodes that should be
|
|
31
|
+
## scanned for. The default (if you don't specify the <find> element) is:
|
|
32
|
+
## //(* | processing-instruction())
|
|
33
|
+
element find { xs:string }
|
|
34
|
+
|
|
35
|
+
global-id-atts =
|
|
36
|
+
## <global-id-atts> is a space-separated list of the names of attributes that
|
|
37
|
+
## are globally unique within a particular document. This helps to produce
|
|
38
|
+
## readable XPath expressions in the generated test suite. The default is:
|
|
39
|
+
## id xml:id
|
|
40
|
+
element global-id-atts { list { xs:QName } }
|
|
41
|
+
|
|
42
|
+
local-id-atts =
|
|
43
|
+
## <local-id-atts> is a space-separated list of the names of attributes that
|
|
44
|
+
## are unique within a particular parent element. This helps to produce readable
|
|
45
|
+
## XPath expressions in the generated test suite. The default is empty.
|
|
46
|
+
element local-id-atts { list { xs:QName} }
|
|
47
|
+
|
|
48
|
+
enum-atts =
|
|
49
|
+
## <enum-atts> is a space-separated list of the names of attributes whose values
|
|
50
|
+
## are enumerated. This helps to produce distinct tests for distinct values of
|
|
51
|
+
## those attributes. The default is empty.
|
|
52
|
+
element enum-atts { list { xs:QName } }
|
|
53
|
+
|
|
54
|
+
max-examples =
|
|
55
|
+
## <max-examples> is the maximum number of examples that should be listed.
|
|
56
|
+
## Generally, when examples are listed only the first is actually given in full;
|
|
57
|
+
## the rest are commented out. However, if an element has text content and there
|
|
58
|
+
## are less than max-examples distinct values for that element, all the examples
|
|
59
|
+
## will be listed. If you have textual content that is marked up then you want
|
|
60
|
+
## to set this high; otherwise, set it low. The default is 10.
|
|
61
|
+
element max-examples { xs:integer }
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
# -------------------------------------------------------------------------- #
|
|
65
|
+
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS COMMENT. #
|
|
66
|
+
# #
|
|
67
|
+
# Copyright (c) 2008, 2010 Jeni Tennsion #
|
|
68
|
+
# #
|
|
69
|
+
# The contents of this file are subject to the MIT License (see the URI #
|
|
70
|
+
# http://www.opensource.org/licenses/mit-license.php for details). #
|
|
71
|
+
# #
|
|
72
|
+
# Permission is hereby granted, free of charge, to any person obtaining #
|
|
73
|
+
# a copy of this software and associated documentation files (the #
|
|
74
|
+
# "Software"), to deal in the Software without restriction, including #
|
|
75
|
+
# without limitation the rights to use, copy, modify, merge, publish, #
|
|
76
|
+
# distribute, sublicense, and/or sell copies of the Software, and to #
|
|
77
|
+
# permit persons to whom the Software is furnished to do so, subject to #
|
|
78
|
+
# the following conditions: #
|
|
79
|
+
# #
|
|
80
|
+
# The above copyright notice and this permission notice shall be #
|
|
81
|
+
# included in all copies or substantial portions of the Software. #
|
|
82
|
+
# #
|
|
83
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, #
|
|
84
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF #
|
|
85
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. #
|
|
86
|
+
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY #
|
|
87
|
+
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, #
|
|
88
|
+
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE #
|
|
89
|
+
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #
|
|
90
|
+
# -------------------------------------------------------------------------- #
|