", true, 0, false);
10 | }
11 |
12 | @Override
13 | public OutputStream getOutputStream() {
14 | return System.out;
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/src/main/java/org/json/JSONException.java:
--------------------------------------------------------------------------------
1 | package org.json;
2 |
3 | /**
4 | * The JSONException is thrown by the JSON.org classes when things are amiss.
5 | * @author JSON.org
6 | * @version 2008-09-18
7 | */
8 | public class JSONException extends Exception {
9 | /**
10 | *
11 | */
12 | private static final long serialVersionUID = 0;
13 | private Throwable cause;
14 |
15 | /**
16 | * Constructs a JSONException with an explanatory message.
17 | * @param message Detail about the reason for the exception.
18 | */
19 | public JSONException(String message) {
20 | super(message);
21 | }
22 |
23 | public JSONException(Throwable t) {
24 | super(t.getMessage());
25 | this.cause = t;
26 | }
27 |
28 | public Throwable getCause() {
29 | return this.cause;
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/src/main/java/org/json/JSONString.java:
--------------------------------------------------------------------------------
1 | package org.json;
2 | /**
3 | * The JSONString
interface allows a toJSONString()
4 | * method so that a class can change the behavior of
5 | * JSONObject.toString()
, JSONArray.toString()
,
6 | * and JSONWriter.value(
Object)
. The
7 | * toJSONString
method will be used instead of the default behavior
8 | * of using the Object's toString()
method and quoting the result.
9 | */
10 | public interface JSONString {
11 | /**
12 | * The toJSONString
method allows a class to produce its own JSON
13 | * serialization.
14 | *
15 | * @return A strictly syntactically correct JSON text.
16 | */
17 | public String toJSONString();
18 | }
19 |
--------------------------------------------------------------------------------
/src/main/resources/com/xmlcalabash/antlib.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/src/main/resources/etc/configuration.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
6 |
--------------------------------------------------------------------------------
/src/main/resources/etc/log4j2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/src/main/resources/log4j2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/test/testsuite/doc/address-invalid-sample.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Jon
5 | Tester
6 | 5555555555
7 |
--------------------------------------------------------------------------------
/test/testsuite/doc/address-nonexistent-dtd.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Jon
5 | Tester
6 | 5555555555
7 |
--------------------------------------------------------------------------------
/test/testsuite/doc/address-valid-sample.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Jon
5 | Tester
6 | 5555555555
7 |
--------------------------------------------------------------------------------
/test/testsuite/doc/address.dtd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/test/testsuite/doc/chaps/div.xml:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/test/testsuite/doc/chaps/div2.xml:
--------------------------------------------------------------------------------
1 |
2 |
This is a uri test.
3 |
4 |
--------------------------------------------------------------------------------
/test/testsuite/doc/compoundDoc.xml:
--------------------------------------------------------------------------------
1 |
2 | This document contains a couple of divs that are XIncluded and a few
3 | elements with xs:anyURI content.
4 |
6 |
8 |
10 |
11 |
--------------------------------------------------------------------------------
/test/testsuite/doc/compoundEntity.xml:
--------------------------------------------------------------------------------
1 |
3 | ]>
4 | &p;
5 |
6 |
--------------------------------------------------------------------------------
/test/testsuite/doc/directory-list-test/adir/cfile:
--------------------------------------------------------------------------------
1 | test
--------------------------------------------------------------------------------
/test/testsuite/doc/directory-list-test/afile:
--------------------------------------------------------------------------------
1 | test
--------------------------------------------------------------------------------
/test/testsuite/doc/directory-list-test/bfile:
--------------------------------------------------------------------------------
1 | test
--------------------------------------------------------------------------------
/test/testsuite/doc/divs/div.xml:
--------------------------------------------------------------------------------
1 |
2 |
This is an image test.
3 |
4 |
--------------------------------------------------------------------------------
/test/testsuite/doc/divs/p.xml:
--------------------------------------------------------------------------------
1 | This is a test document
2 |
--------------------------------------------------------------------------------
/test/testsuite/doc/document-attr.xsd:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/test/testsuite/doc/document-ns.xml:
--------------------------------------------------------------------------------
1 |
3 | This is a test document
4 |
5 |
--------------------------------------------------------------------------------
/test/testsuite/doc/document.rnc:
--------------------------------------------------------------------------------
1 | start = doc
2 |
3 | doc = element doc { title?, (\div|p)* }
4 |
5 | title = element title { text }
6 |
7 | \div = element div { (\div|p)* }
8 |
9 | p = element p { (text|a)* }
10 |
11 | a = element a { attribute href { text }?, text }
12 |
13 |
--------------------------------------------------------------------------------
/test/testsuite/doc/document.xml:
--------------------------------------------------------------------------------
1 |
2 | This is a test document
3 |
4 |
--------------------------------------------------------------------------------
/test/testsuite/doc/document2.xml:
--------------------------------------------------------------------------------
1 |
3 | This is a test document
4 |
5 |
--------------------------------------------------------------------------------
/test/testsuite/doc/envelope.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | John
4 | Smith
5 |
6 |
7 | 123 Main Street
8 | Anytown
9 | SA
10 | 12345
11 |
12 |
13 |
14 |
15 | Jane
16 | Doe
17 |
18 |
19 | 456 Random Street
20 | Suite 200
21 | Othertown
22 | OA
23 | 67890
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/test/testsuite/doc/html-utf8.data:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Page Title
5 |
6 |
7 | Page content.
8 |
9 |
10 |
--------------------------------------------------------------------------------
/test/testsuite/doc/input-cs.xml:
--------------------------------------------------------------------------------
1 |
2 | A Document
3 | Tento odstavec je česky.
4 |
5 |
--------------------------------------------------------------------------------
/test/testsuite/doc/input-en-cs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/test/testsuite/doc/input-en.xml:
--------------------------------------------------------------------------------
1 |
2 | A Document
3 | This paragraph is in English.
4 |
5 |
--------------------------------------------------------------------------------
/test/testsuite/doc/input-xinclude-loop-source.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/test/testsuite/doc/input-xinclude-loop-target.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/test/testsuite/doc/input-xinclude-recursive-1.xml:
--------------------------------------------------------------------------------
1 |
2 | some para
3 |
4 |
5 |
--------------------------------------------------------------------------------
/test/testsuite/doc/input-xinclude.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 | Fallback: XInclude failed.
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/test/testsuite/doc/input.xml:
--------------------------------------------------------------------------------
1 |
2 | input.xml
3 | This is input.xml.
4 |
5 |
--------------------------------------------------------------------------------
/test/testsuite/doc/invalid.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 | ]>
5 |
6 |
--------------------------------------------------------------------------------
/test/testsuite/doc/nfc-input.xml:
--------------------------------------------------------------------------------
1 | Priscilla Walmsley showed me an NF test with “leçon”.
2 |
--------------------------------------------------------------------------------
/test/testsuite/doc/nfkc-input.xml:
--------------------------------------------------------------------------------
1 | Priscilla Walmsley showed me an NF test with “£” and “”.
2 |
--------------------------------------------------------------------------------
/test/testsuite/doc/nfkd-input.xml:
--------------------------------------------------------------------------------
1 | Priscilla Walmsley showed me an NF test with “leçon”.
2 |
--------------------------------------------------------------------------------
/test/testsuite/doc/non-well-formed.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/test/testsuite/doc/pqhref.rnc:
--------------------------------------------------------------------------------
1 | start = doc
2 |
3 | doc = element doc { title?, (p|q)* }
4 |
5 | title = element title { text }
6 |
7 | p = element p {
8 | attribute href { xsd:anyURI }?,
9 | text
10 | }
11 |
12 | q = element q {
13 | attribute href { text }?,
14 | text
15 | }
16 |
--------------------------------------------------------------------------------
/test/testsuite/doc/pqhref.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/doc/s-input.dtd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/test/testsuite/doc/s-input.xml:
--------------------------------------------------------------------------------
1 | Document Title
2 | Some prose.
3 | literally
4 | what should appear in this element.]]>
5 | The Balisage conference
6 | takes place in Montréal.
7 |
8 |
--------------------------------------------------------------------------------
/test/testsuite/doc/s-input2.xml:
--------------------------------------------------------------------------------
1 | Document Title
2 | Some prose.
3 | literally
4 | what should appear in this element.]]>]]>
5 | The Balisage conference
6 | takes place in Montréal.
7 |
8 |
--------------------------------------------------------------------------------
/test/testsuite/doc/windows-1252.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndw/xmlcalabash1/1042cf66f3a4d2f1ca78ec090e045f3f60137179/test/testsuite/doc/windows-1252.txt
--------------------------------------------------------------------------------
/test/testsuite/doc/xhtml-ct.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Title
4 |
5 |
6 |
7 | Link to Montréal .
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/test/testsuite/doc/xhtml.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Title
4 |
5 |
6 | Link to Montréal .
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/test/testsuite/doc/xidoc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
This is a test document
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/test/testsuite/doc/xinclude/input-xinclude-recursive-2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/testsuite/doc/xinclude/para.xml:
--------------------------------------------------------------------------------
1 | another para
--------------------------------------------------------------------------------
/test/testsuite/doc/xml-base-chap.xml:
--------------------------------------------------------------------------------
1 |
2 |
This has a different base URI: xml-base-chap.xml .
3 |
4 |
5 |
--------------------------------------------------------------------------------
/test/testsuite/doc/xml-base-test.xml:
--------------------------------------------------------------------------------
1 |
3 | ]>
4 |
5 | This has one base URI: xml-base-test.xml
6 |
7 | &subdoc;
8 | This has the original base URI.
9 |
10 |
--------------------------------------------------------------------------------
/test/testsuite/doc/xml11.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Some text in a para.
5 | In an element in no namespace.
6 |
7 | Only in 1.1!
8 |
9 |
--------------------------------------------------------------------------------
/test/testsuite/doc/xpath-xinclude-doc.xml:
--------------------------------------------------------------------------------
1 |
2 | First p
3 | Second p
4 | Third p
5 | Parenthetical (in content, I mean) p
6 | x^2 + y^2 = z^2
7 | Last p
8 |
9 |
--------------------------------------------------------------------------------
/test/testsuite/extension/test-suite.xml:
--------------------------------------------------------------------------------
1 |
2 | Extension tests
3 |
4 |
5 |
--------------------------------------------------------------------------------
/test/testsuite/lib/exclude-inline-prefixes.xpl:
--------------------------------------------------------------------------------
1 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/test/testsuite/lib/externalxml.xpl:
--------------------------------------------------------------------------------
1 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/test/testsuite/lib/l1.xpl:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/test/testsuite/lib/l1a.xpl:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/test/testsuite/lib/l2.xpl:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/test/testsuite/lib/l3.xpl:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/test/testsuite/lib/l4.xpl:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/test/testsuite/lib/l5.xpl:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/test/testsuite/lib/l6.xpl:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/test/testsuite/lib/pipeline.xpl:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/test/testsuite/lib/pipeline2.xpl:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/test/testsuite/optional/err-c0033-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XC0033 - 001
9 |
10 |
11 | Tests if dynamic error XC003 is thrown if the command cannot be run.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/optional/err-c0034-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XC0034 - 001
9 |
10 |
11 | Tests if dynamic error XC0034 is thrown if the current
12 | working directory cannot be changed.
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/test/testsuite/optional/err-c0036-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0036 - #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/test/testsuite/optional/err-c0036-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0036 - #002
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/test/testsuite/optional/err-c0036-003.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0036 - #003
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/test/testsuite/optional/err-c0036-004.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0036 - #004
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/test/testsuite/optional/err-c0036-005.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0036 - #005
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/test/testsuite/optional/err-c0037-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0037 - #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/test/testsuite/optional/err-c0037-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0037 - #002
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/test/testsuite/optional/err-c0037-003.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0037 - #003
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/test/testsuite/optional/err-c0060-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0060 - #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/test/testsuite/optional/err-c0061-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0061 - #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/test/testsuite/optional/exec-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test exec-002
8 |
9 |
10 |
11 |
12 | This is a p.
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 | This is a p.
30 |
31 |
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/test/testsuite/optional/exec-003.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test exec-003
8 |
9 |
10 | some text
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
21 |
22 |
23 |
24 |
25 |
26 | some text
27 |
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/test/testsuite/optional/exec-004.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test exec-004
8 |
9 |
10 | <para>some text</para>
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | some text
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/test/testsuite/optional/exec-013.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test exec-013
8 |
9 |
10 |
11 |
12 |
13 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 | one two three
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/optional/exec-014.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test exec-014
8 |
9 |
10 |
11 |
12 |
13 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 | one two three
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/optional/exec-016.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test exec-016
8 |
9 |
10 | line1
11 | line2
12 | line3
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 | line1
27 | line2
28 | line3
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/test/testsuite/optional/hash-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test hash-001
8 |
9 |
10 |
11 | This is a p.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
20 |
21 |
22 |
23 |
24 |
25 |
26 | This is a p.
27 |
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/test/testsuite/optional/hash-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test hash-002
8 |
9 |
10 |
11 | This is a p.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
20 |
21 |
22 |
23 |
24 |
25 |
26 | This is a p.
27 |
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/test/testsuite/optional/hash-003.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test hash-003
8 |
9 |
10 |
11 | This is a p.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
20 |
21 |
22 |
23 |
24 |
25 |
26 | This is a p.
27 |
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/test/testsuite/optional/hash-004.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test hash-004
8 |
9 |
10 |
11 | This is a p.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
20 |
21 |
22 |
23 |
24 |
25 |
26 | This is a p.
27 |
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/test/testsuite/optional/hash-005.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test hash-005
8 |
9 |
10 |
11 | This is a p.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
20 |
21 |
22 |
23 |
24 |
25 |
26 | This is a p.
27 |
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/test/testsuite/optional/hash-006.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test hash-006
8 |
9 |
10 |
11 | This is a p.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
20 |
21 |
22 |
23 |
24 |
25 |
26 | This is a p.
27 |
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/test/testsuite/optional/template-004.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test p:template-004
9 |
10 |
11 |
12 | A para.
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/test/testsuite/optional/template-005.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test p:template-005
9 |
10 |
11 |
12 | A para.
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/test/testsuite/optional/template-006.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test p:template-006
9 |
10 |
11 |
12 | A para.
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/test/testsuite/optional/template-007.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test p:template-007
9 |
10 |
11 |
12 | A para.
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/test/testsuite/optional/template-014.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test p:template-014
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/test/testsuite/optional/template-016.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test p:template-016
9 |
10 |
11 |
12 | A para.
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/test/testsuite/optional/template-017.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test p:template-016
9 |
10 |
11 |
12 | A para.
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/test/testsuite/optional/uuid-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test uuid-001
8 |
9 |
10 |
11 | This is a p.
12 | here
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 | 1
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/test/testsuite/optional/validxsd-010.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test validxsd-010
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/test/testsuite/optional/validxsd-011.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test validxsd-011
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/test/testsuite/optional/xinclude-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test optional features of p:xinclude #001
8 |
9 |
10 |
11 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | First p
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/test/testsuite/optional/xinclude-003.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test optional features of p:xinclude #003
8 |
9 |
10 |
11 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | First p
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/test/testsuite/optional/xinclude-005.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test optional features of p:xinclude #005
8 |
9 |
10 |
11 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | x^2 + y^2 = z^2
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/test/testsuite/optional/xquery.xq:
--------------------------------------------------------------------------------
1 | //title
--------------------------------------------------------------------------------
/test/testsuite/optional/xslt2-002.xpl:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/required/atomic-imported.xpl:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/test/testsuite/required/count-004.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test count 004
8 |
9 |
10 | Test variation on for-each-004.xml, testing p:count
with an empty p:iteration-source
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | 0
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/test/testsuite/required/delete-004.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test delete-004
9 |
10 |
11 |
12 | text
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-c0004-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0004 #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-c0005-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0005 #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | foo
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-c0022-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0022 #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | D3D3ER
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-c0023-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test for err:XC0023 #001
8 |
9 |
10 |
11 | Some text.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-c0023-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test for err:XC0023 #002
8 |
9 |
10 |
11 | Some text.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-c0023-003.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test for err:XC0023 #003
8 |
9 |
10 |
11 | Some text.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-c0023-004.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test for err:XC0023 #004
8 |
9 |
10 |
11 | Some text.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-c0023-005.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test for err:XC0023 #005
8 |
9 |
10 |
11 | Some text.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-c0023-006.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test for err:XC0023 #006
8 |
9 |
10 |
11 | Some text.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-c0023-007.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test for err:XC0023 #007
8 |
9 |
10 |
11 | Some text.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-c0023-008.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test for err:XC0023 #008
8 |
9 |
10 |
11 | Some text.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-c0023-009.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test for err:XC0023 #009
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-c0028-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0028 #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | D3D3ER
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-c0029-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0029 #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-c0029-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0029 #002
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-c0030-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0030 #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-c0040-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0040 #001
9 |
10 |
11 |
12 |
13 |
14 |
15 | bar
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-c0062-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0062 #001
9 |
10 |
11 | p:delete: It is a dynamic error if the match option matches
12 | a namespace node.
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0001-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test err:XD0001 #001
8 |
9 |
10 |
11 | some text
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0001-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test err:XD0001 #002
8 |
9 |
10 |
11 | some text
12 | some text
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0004-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XD0004
9 |
10 |
11 |
12 |
13 | Some title
14 |
15 |
16 | Some title
17 | Some deletedtext.
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0006-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XD0006 #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0007-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XD0007
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0011-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test for inaccessible URIs (err:XD0011)
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0011-003.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XD0011 - 003
9 |
10 |
11 | Tests if dynamic error XD0011 is thrown if the document does not exist or is not well-formed.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0012-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XD0012 #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0012-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XD0012 #002
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0012-003.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XD0012 #003
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0014-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XD0014 #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0014-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XD0014 #002
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0015-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 | Test for err:XD0015 #001
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | some text
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0016-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 | Test for err:XD0016 #001
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | some text
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0016-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 | Test for err:XD0016 #002
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | some text
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0019-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XD0019
9 |
10 |
11 | Tests if dynamic error XD0019 is thrown if any option value does not satisfy the type required for that option.
12 |
13 |
14 |
15 |
16 | Some paragraph.
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0023-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XD0023 - #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0023-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XD0023 - #002
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0023-003.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XD0023 - #003
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0025-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XD0025 #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0028-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0028 #001
9 |
10 |
11 | It is a dynamic error if any attribute value does
12 | not satisfy the type required for that attribute.
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0028-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0028 #002
9 |
10 |
11 | It is a dynamic error if any attribute value does
12 | not satisfy the type required for that attribute.
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0028-003.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:XC0028 #003
9 |
10 |
11 | It is a dynamic error if any attribute value does
12 | not satisfy the type required for that attribute.
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0029-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test for err:XD0029 #001
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-d0029-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test for err:XD0029 #002
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-primary-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test err:XS0008
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0001-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XS0001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0001-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XS0001 #002
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0001-003.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XS0001 #003
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0001-004.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XS0001 #004
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0001-005.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XS0001 #005
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0001-006.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XS0001 #006
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0001-007.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XS0001 #007
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0001-008.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XS0001 #008
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0002-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test for duplicate names error (err:XS0002
)
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0002-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test for duplicate names error (err:XS0002
)
8 |
9 |
10 |
11 |
12 |
13 |
14 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0003-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test err:XS0003 #001
9 |
10 | It is a static error if any declared input
11 | is not connected.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0004-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XS0004 #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0004-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XS0004 #002
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0007-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XS0007
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0007-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XS0007 #002
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0015-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test err:XS0015 #001
9 |
10 |
11 | It is a static error if a compound
12 | step has no contained steps.
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0022-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XS0022
9 |
10 |
11 |
12 |
13 |
14 |
15 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0022-003.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XS0022
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0022-005.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XS0022 #005
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0022-006.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XS0022 #006
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0024-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test for err:XS0024 #001
8 |
9 |
10 |
11 |
12 |
13 | aaa
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0024-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test for err:XS0024 #002
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0025-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test for err:XS0025 #002
8 |
9 |
10 | Tests p:declare-step: It is a static error (err:XS0025) if
11 | the expanded-QName value of the type attribute is in no namespace.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0025-004.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test for err:XS0025 #004
8 |
9 |
10 | Tests p:pipeline: It is a static error (err:XS0025) if
11 | the expanded-QName value of the type attribute is in no namespace.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0026-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XS0026 #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0026-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XS0026 #002
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0027-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XS0027
9 |
10 |
11 |
12 |
13 |
14 |
15 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0032-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test err:XS0032 #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0036-005.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test err:xs0036 #005
9 |
10 | It's an error to import the standard library.
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0044-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test err:XS0044 #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0044-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test err:XS0044 #002
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0048-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XS0048 - 001
9 |
10 |
11 | It is a static error to use a declared step as
12 | a compound step.
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0052-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test err:XS0052 #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0052-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test err:XS0052 #002
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0053-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test err:XS0053 #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0057-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 | Test err:XS0057 #001
7 |
8 | It is a static error if a namespace prefix is used within the exclude-inline-prefixes attribute and there is no namespace binding in scope for that prefix.
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0057-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 | Test err:XS0057 #002
7 |
8 | It is a static error (err:XS0057) if the exclude-inline-prefixes attribute does not contain a list of tokens.
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0058-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 | Test err:XS0058 #001
7 |
8 | It is a static error if the value #default is used within the exclude-inline-prefixes attribute and there is no default namespace in scope.
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0059-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test for err:XS0059 #001
8 |
9 |
10 | Tests that it is a static error (err:XS0059) if the pipeline
11 | element is not p:pipeline, p:declare-step, or p:library.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0061-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test err:XS0061 #001
8 |
9 |
10 | It is a static error if a use-when expression refers
11 | to the context or attempts to refer to any documents
12 | or collections.
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0061-001.xpl:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0062-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test for err:XS0062 #001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/test/testsuite/required/err-s0063-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | Test err:XS0063 #001
8 |
9 |
10 | It is a static error if the value of the version
11 | attribute is not a xs:decimal.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/test/testsuite/required/error-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 | Test p:error #001
9 |
10 |
11 |
12 |
13 |
14 |
15 | Bang!
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/required/escape-markup-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test escape-markup #001
8 |
9 |
10 |
11 |
12 |
13 | <doc><p>foo&bar;</p></doc>
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/test/testsuite/required/escape-markup-001.xpl:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | foo&bar;
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/test/testsuite/required/filter-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test filter-001
8 |
9 |
10 |
11 |
12 | This is a p.
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 | This is a p.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/test/testsuite/required/filter-003.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test filter-003
8 |
9 |
10 |
11 | This is a p.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 | This is a p.
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/test/testsuite/required/group-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test group #002
8 |
9 |
10 |
11 | Some Title
12 | Some paragraph.
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 | 1
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/test/testsuite/required/http-request-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test http-request #001
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 | Sample document
24 | Hello world!
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/test/testsuite/required/http-request-007.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test http-request #007
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/test/testsuite/required/import-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test p:import #001
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/test/testsuite/required/import-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test p:import #002
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/test/testsuite/required/insert-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test p:insert #001
8 |
9 |
10 |
11 |
12 |
First paragraph.
13 |
Middle paragraph.
14 |
Last paragraph.
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 | New first paragraph
24 |
First paragraph.
25 |
Middle paragraph.
26 |
Last paragraph.
27 |
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/test/testsuite/required/insert-001.xpl:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | New first paragraph
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/test/testsuite/required/insert-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test p:insert #002
8 |
9 |
10 |
11 |
12 |
First paragraph.
13 |
Middle paragraph.
14 |
Last paragraph.
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
First paragraph.
25 |
Middle paragraph.
26 |
Last paragraph.
27 |
New last paragraph
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/test/testsuite/required/insert-002.xpl:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | New last paragraph
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/test/testsuite/required/insert-003.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test p:insert #003
8 |
9 |
10 |
11 |
12 |
First paragraph.
13 |
Middle paragraph.
14 |
Last paragraph.
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 | New before paragraph
24 |
First paragraph.
25 |
Middle paragraph.
26 |
Last paragraph.
27 |
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/test/testsuite/required/insert-003.xpl:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | New before paragraph
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/test/testsuite/required/insert-004.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test p:insert #004
8 |
9 |
10 |
11 |
12 |
First paragraph.
13 |
Middle paragraph.
14 |
Last paragraph.
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
First paragraph.
25 |
Middle paragraph.
26 |
Last paragraph.
27 |
New after paragraph
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/test/testsuite/required/insert-004.xpl:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | New after paragraph
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/test/testsuite/required/insert-010.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test p:insert #010
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 | New paragraph
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 | New paragraph
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/test/testsuite/required/library-missing-version.xpl:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/test/testsuite/required/library-v2.xpl:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/test/testsuite/required/load-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test p:load #001
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 | This is a test document
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/test/testsuite/required/load-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test p:load #002
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Jon
22 | Tester
23 | 5555555555
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/test/testsuite/required/load-003.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test p:load #003
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 | This is a test document
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/test/testsuite/required/load-004.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test p:load #004
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Jon
22 | Tester
23 | 5555555555
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/test/testsuite/required/namespace-rename-003.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test p:namespace-rename #003
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/test/testsuite/required/namespace-rename-013.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test p:namespace-rename #013
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/test/testsuite/required/namespace-rename-014.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test p:namespace-rename #014
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/test/testsuite/required/nested-pipeline-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test nested pipeline #001
8 |
9 |
10 |
11 | Hello world.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 | Hello world.
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/test/testsuite/required/pipeline-imported.xpl:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/test/testsuite/required/pipeline-no-type.xpl:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/test/testsuite/required/rename-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 | Test rename-002
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/test/testsuite/required/rename-003.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 | Test rename-003
7 |
8 |
9 |
11 |
12 |
13 |
14 |
15 |
16 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/test/testsuite/required/rename-004.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 | Test rename-004
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/test/testsuite/required/rename-005.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 | Test rename-005
7 |
8 |
9 | Tests new-namespace
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/test/testsuite/required/sink-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test p:sink #001
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/test/testsuite/required/sink-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test p:sink #002
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/test/testsuite/required/sink-003.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test p:sink #003
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/test/testsuite/required/split-sequence-005.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test split-sequence 005
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 | 2
33 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/test/testsuite/required/string-replace-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | Test p:string-replace #002
6 |
7 |
8 |
9 |
10 |
11 | 1
12 | some text
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 | 2
26 | some text
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/test/testsuite/required/string-replace-003.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | Test p:string-replace #003
6 |
7 |
8 |
9 |
10 |
11 | some text
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | censored
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/test/testsuite/required/try-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test try/catch #001
8 |
9 |
10 |
11 |
12 |
13 |
14 | p:compare succeeded
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/test/testsuite/required/try-001.xpl:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | p:compare succeeded
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | p:compare failed
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/test/testsuite/required/try-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test try/catch #002
8 |
9 |
10 |
11 | Some Title
12 | Some paragraph.
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 | p:compare failed
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/test/testsuite/required/unescapemarkup-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test unescapemarkup-001
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | <doc><p>foo</p></doc>
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 | foo
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/test/testsuite/required/unescapemarkup-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test unescapemarkup-002
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | <doc><p>foo</p></doc>
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 | foo
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/test/testsuite/required/unwrap-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test unwrap 002
8 |
9 |
10 |
11 | a
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 | a
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/test/testsuite/required/versioning-007.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test versioning #007
8 |
9 |
10 | Tests that forwards-compatible mode is triggered for steps from
11 | libraries from future versions of XProc.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/test/testsuite/required/wrap-004.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 | Test for p:wrap #004
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/test/testsuite/required/wrap-005.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 | Test for p:wrap #005
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
--------------------------------------------------------------------------------
/test/testsuite/required/xinclude-004.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test p:xinclude #004
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | This paragraph is in English.
22 | Tento odstavec je česky.
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/test/testsuite/required/xinclude-005.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 | Test p:xinclude #005
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | This paragraph is in English.
22 | Tento odstavec je česky.
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/test/testsuite/required/xml-id-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Test literal xml:id support #001
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | one
15 | two
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 | two
24 |
25 |
26 |
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/.htaccess:
--------------------------------------------------------------------------------
1 | AddType "text/plain" xml
2 |
3 |
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/byte-order-mark-001.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndw/xmlcalabash1/1042cf66f3a4d2f1ca78ec090e045f3f60137179/test/testsuite/serialization/results/byte-order-mark-001.xml
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/byte-order-mark-002.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndw/xmlcalabash1/1042cf66f3a4d2f1ca78ec090e045f3f60137179/test/testsuite/serialization/results/byte-order-mark-002.xml
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/cdata-section-elements-001.xml:
--------------------------------------------------------------------------------
1 | Document Title
2 | Some prose.
3 | literally
4 | what should appear in this element.]]>
5 | The Balisage conference
6 | takes place in Montréal.
7 |
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/cdata-section-elements-002.xml:
--------------------------------------------------------------------------------
1 | Document Title
2 | Some prose.
3 | literally
4 | what should appear in this element.]]]]>]]>
5 | The Balisage conference
6 | takes place in Montréal.
7 |
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/doctype-public-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 | Document Title
5 | Some prose.
6 | This is <literally>literally</literally>
7 | what should appear in this element.
8 | The Balisage conference
9 | takes place in Montréal.
10 |
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/doctype-system-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 | Document Title
5 | Some prose.
6 | This is <literally>literally</literally>
7 | what should appear in this element.
8 | The Balisage conference
9 | takes place in Montréal.
10 |
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/encoding-001.xml:
--------------------------------------------------------------------------------
1 | Document Title
2 | Some prose.
3 | This is <literally>literally</literally>
4 | what should appear in this element.
5 | The Balisage conference
6 | takes place in Montréal.
7 |
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/escape-uri-attributes-001.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Title
4 |
5 |
6 | Link to Montréal .
7 |
8 |
9 |
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/escape-uri-attributes-002.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Title
4 |
5 |
6 | Link to Montréal .
7 |
8 |
9 |
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/include-content-type-001.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndw/xmlcalabash1/1042cf66f3a4d2f1ca78ec090e045f3f60137179/test/testsuite/serialization/results/include-content-type-001.html
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/include-content-type-002.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Title
4 |
5 |
6 |
7 | Link to Montréal .
8 |
9 |
10 |
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/indent-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Title
4 |
5 |
6 | Link to Montréal .
7 |
8 |
9 |
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/indent-002.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Title
4 |
5 |
6 | Link to Montréal .
7 |
8 |
9 |
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/media-type-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Title
4 |
5 |
6 | Link to Montréal .
7 |
8 |
9 |
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/normalization-form-001.xml:
--------------------------------------------------------------------------------
1 | Priscilla Walmsley showed me an NF test with “leçon”.
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/normalization-form-002.xml:
--------------------------------------------------------------------------------
1 | Priscilla Walmsley showed me an NF test with “£” and “”.
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/normalization-form-003.xml:
--------------------------------------------------------------------------------
1 | Priscilla Walmsley showed me an NF test with “leçon”.
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/omit-xml-declaration-001.xml:
--------------------------------------------------------------------------------
1 | Document Title
2 | Some prose.
3 | This is <literally>literally</literally>
4 | what should appear in this element.
5 | The Balisage conference
6 | takes place in Montréal.
7 |
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/omit-xml-declaration-002.xml:
--------------------------------------------------------------------------------
1 |
2 | Document Title
3 | Some prose.
4 | This is <literally>literally</literally>
5 | what should appear in this element.
6 | The Balisage conference
7 | takes place in Montréal.
8 |
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/standalone-001.xml:
--------------------------------------------------------------------------------
1 |
2 | Document Title
3 | Some prose.
4 | This is <literally>literally</literally>
5 | what should appear in this element.
6 | The Balisage conference
7 | takes place in Montréal.
8 |
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/standalone-002.xml:
--------------------------------------------------------------------------------
1 |
2 | Document Title
3 | Some prose.
4 | This is <literally>literally</literally>
5 | what should appear in this element.
6 | The Balisage conference
7 | takes place in Montréal.
8 |
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/standalone-003.xml:
--------------------------------------------------------------------------------
1 |
2 | Document Title
3 | Some prose.
4 | This is <literally>literally</literally>
5 | what should appear in this element.
6 | The Balisage conference
7 | takes place in Montréal.
8 |
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/undeclare-prefixes-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Some text in a para.
4 | In an element in no namespace.
5 |
6 | Only in 1.1!
7 |
--------------------------------------------------------------------------------
/test/testsuite/serialization/results/version-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Some text in a para.
4 | In an element in no namespace.
5 |
6 | Only in 1.1!
7 |
--------------------------------------------------------------------------------
/test/testsuite/xmlcalabash/collection.xsl:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/test/testsuite/xmlcalabash/data/book.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/test/testsuite/xmlcalabash/data/chapter.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/test/testsuite/xmlcalabash/java.properties:
--------------------------------------------------------------------------------
1 | example.property=one
2 | other.property=two
3 | three=3
4 |
--------------------------------------------------------------------------------
/test/testsuite/xmlcalabash/pipe.xpl:
--------------------------------------------------------------------------------
1 |
2 |
3 | Congratulations! You've run your first pipeline!
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/test/testsuite/xmlcalabash/pipe2.xpl:
--------------------------------------------------------------------------------
1 |
5 |
6 | Congratulations! You've run a pipeline!
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/test/testsuite/xmlcalabash/sample-tests.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ndw/xmlcalabash1/1042cf66f3a4d2f1ca78ec090e045f3f60137179/test/testsuite/xmlcalabash/sample-tests.zip
--------------------------------------------------------------------------------
/test/testsuite/xmlcalabash/unzip-001.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 | Test unzip-001
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 | 4
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/xpl/pipe.xpl:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Congratulations! You've run your first pipeline!
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------