libxml-ruby 2.9.0 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (139) hide show
  1. checksums.yaml +4 -4
  2. data/HISTORY +811 -790
  3. data/LICENSE +20 -20
  4. data/MANIFEST +166 -166
  5. data/README.rdoc +188 -184
  6. data/Rakefile +1 -1
  7. data/ext/libxml/libxml.c +80 -80
  8. data/ext/libxml/ruby_libxml.h +75 -75
  9. data/ext/libxml/ruby_xml.c +0 -84
  10. data/ext/libxml/ruby_xml.h +0 -10
  11. data/ext/libxml/ruby_xml_attr.h +12 -12
  12. data/ext/libxml/ruby_xml_attr_decl.c +153 -153
  13. data/ext/libxml/ruby_xml_attr_decl.h +11 -11
  14. data/ext/libxml/ruby_xml_attributes.c +275 -275
  15. data/ext/libxml/ruby_xml_attributes.h +15 -15
  16. data/ext/libxml/ruby_xml_document.c +21 -27
  17. data/ext/libxml/ruby_xml_document.h +11 -11
  18. data/ext/libxml/ruby_xml_dtd.c +2 -13
  19. data/ext/libxml/ruby_xml_dtd.h +9 -9
  20. data/ext/libxml/ruby_xml_error.c +996 -996
  21. data/ext/libxml/ruby_xml_error.h +12 -12
  22. data/ext/libxml/ruby_xml_html_parser.c +89 -92
  23. data/ext/libxml/ruby_xml_html_parser.h +10 -10
  24. data/ext/libxml/ruby_xml_html_parser_context.h +10 -10
  25. data/ext/libxml/ruby_xml_html_parser_options.c +46 -46
  26. data/ext/libxml/ruby_xml_html_parser_options.h +10 -10
  27. data/ext/libxml/ruby_xml_input_cbg.h +20 -20
  28. data/ext/libxml/ruby_xml_io.c +0 -1
  29. data/ext/libxml/ruby_xml_io.h +10 -10
  30. data/ext/libxml/ruby_xml_namespace.c +153 -153
  31. data/ext/libxml/ruby_xml_namespace.h +10 -10
  32. data/ext/libxml/ruby_xml_namespaces.c +293 -293
  33. data/ext/libxml/ruby_xml_namespaces.h +9 -9
  34. data/ext/libxml/ruby_xml_node.c +100 -143
  35. data/ext/libxml/ruby_xml_node.h +13 -11
  36. data/ext/libxml/ruby_xml_parser.c +91 -94
  37. data/ext/libxml/ruby_xml_parser.h +12 -12
  38. data/ext/libxml/ruby_xml_parser_context.h +10 -10
  39. data/ext/libxml/ruby_xml_parser_options.c +66 -66
  40. data/ext/libxml/ruby_xml_parser_options.h +12 -12
  41. data/ext/libxml/ruby_xml_reader.c +45 -37
  42. data/ext/libxml/ruby_xml_reader.h +17 -17
  43. data/ext/libxml/ruby_xml_relaxng.h +10 -10
  44. data/ext/libxml/ruby_xml_sax2_handler.c +3 -3
  45. data/ext/libxml/ruby_xml_sax2_handler.h +10 -10
  46. data/ext/libxml/ruby_xml_sax_parser.c +116 -120
  47. data/ext/libxml/ruby_xml_sax_parser.h +10 -10
  48. data/ext/libxml/ruby_xml_schema.h +809 -809
  49. data/ext/libxml/ruby_xml_schema_attribute.c +109 -109
  50. data/ext/libxml/ruby_xml_schema_attribute.h +15 -15
  51. data/ext/libxml/ruby_xml_schema_element.c +94 -94
  52. data/ext/libxml/ruby_xml_schema_element.h +14 -14
  53. data/ext/libxml/ruby_xml_schema_facet.c +52 -52
  54. data/ext/libxml/ruby_xml_schema_facet.h +13 -13
  55. data/ext/libxml/ruby_xml_schema_type.c +259 -259
  56. data/ext/libxml/ruby_xml_schema_type.h +9 -9
  57. data/ext/libxml/ruby_xml_version.h +9 -9
  58. data/ext/libxml/ruby_xml_writer.c +1136 -1136
  59. data/ext/libxml/ruby_xml_writer.h +10 -10
  60. data/ext/libxml/ruby_xml_xinclude.c +16 -16
  61. data/ext/libxml/ruby_xml_xinclude.h +11 -11
  62. data/ext/libxml/ruby_xml_xpath.c +42 -36
  63. data/ext/libxml/ruby_xml_xpath.h +13 -13
  64. data/ext/libxml/ruby_xml_xpath_context.c +1 -1
  65. data/ext/libxml/ruby_xml_xpath_context.h +9 -9
  66. data/ext/libxml/ruby_xml_xpath_expression.c +81 -81
  67. data/ext/libxml/ruby_xml_xpath_expression.h +10 -10
  68. data/ext/libxml/ruby_xml_xpath_object.c +5 -2
  69. data/ext/libxml/ruby_xml_xpath_object.h +17 -17
  70. data/ext/libxml/ruby_xml_xpointer.c +99 -99
  71. data/ext/libxml/ruby_xml_xpointer.h +11 -11
  72. data/ext/vc/libxml_ruby.sln +17 -15
  73. data/lib/libxml.rb +1 -6
  74. data/lib/libxml/node.rb +2 -78
  75. data/lib/libxml/parser.rb +0 -266
  76. data/lib/libxml/sax_parser.rb +0 -17
  77. data/lib/libxml/schema.rb +66 -66
  78. data/lib/libxml/schema/attribute.rb +19 -19
  79. data/lib/libxml/schema/element.rb +27 -27
  80. data/lib/libxml/schema/type.rb +29 -29
  81. data/script/benchmark/depixelate +634 -634
  82. data/script/benchmark/hamlet.xml +9054 -9054
  83. data/script/benchmark/parsecount +170 -170
  84. data/script/benchmark/throughput +41 -41
  85. data/script/test +6 -6
  86. data/test/c14n/given/example-1.xml +14 -14
  87. data/test/c14n/given/example-2.xml +11 -11
  88. data/test/c14n/given/example-3.xml +18 -18
  89. data/test/c14n/given/example-4.xml +9 -9
  90. data/test/c14n/given/example-5.xml +12 -12
  91. data/test/c14n/given/example-6.xml +2 -2
  92. data/test/c14n/given/example-7.xml +11 -11
  93. data/test/c14n/given/example-8.xml +11 -11
  94. data/test/c14n/given/example-8.xpath +9 -9
  95. data/test/c14n/result/1-1-without-comments/example-1 +3 -3
  96. data/test/c14n/result/1-1-without-comments/example-2 +10 -10
  97. data/test/c14n/result/1-1-without-comments/example-3 +13 -13
  98. data/test/c14n/result/1-1-without-comments/example-4 +8 -8
  99. data/test/c14n/result/1-1-without-comments/example-5 +2 -2
  100. data/test/c14n/result/with-comments/example-1 +5 -5
  101. data/test/c14n/result/with-comments/example-2 +10 -10
  102. data/test/c14n/result/with-comments/example-3 +13 -13
  103. data/test/c14n/result/with-comments/example-4 +8 -8
  104. data/test/c14n/result/with-comments/example-5 +3 -3
  105. data/test/c14n/result/without-comments/example-1 +3 -3
  106. data/test/c14n/result/without-comments/example-2 +10 -10
  107. data/test/c14n/result/without-comments/example-3 +13 -13
  108. data/test/c14n/result/without-comments/example-4 +8 -8
  109. data/test/c14n/result/without-comments/example-5 +2 -2
  110. data/test/model/atom.xml +12 -12
  111. data/test/model/bands.iso-8859-1.xml +4 -4
  112. data/test/model/bands.utf-8.xml +4 -4
  113. data/test/model/bands.xml +4 -4
  114. data/test/model/books.xml +153 -153
  115. data/test/model/merge_bug_data.xml +58 -58
  116. data/test/model/ruby-lang.html +238 -238
  117. data/test/model/rubynet.xml +79 -79
  118. data/test/model/shiporder.rnc +28 -28
  119. data/test/model/shiporder.rng +86 -86
  120. data/test/model/shiporder.xml +22 -22
  121. data/test/model/shiporder.xsd +39 -39
  122. data/test/model/soap.xml +27 -27
  123. data/test/model/xinclude.xml +4 -4
  124. data/test/tc_attributes.rb +0 -6
  125. data/test/tc_error.rb +157 -158
  126. data/test/tc_node.rb +33 -17
  127. data/test/tc_node_edit.rb +0 -15
  128. data/test/tc_node_pi.rb +39 -39
  129. data/test/tc_parser.rb +0 -48
  130. data/test/tc_reader.rb +12 -53
  131. data/test/tc_writer.rb +447 -447
  132. data/test/tc_xpath.rb +1 -1
  133. data/test/test_helper.rb +2 -2
  134. metadata +3 -8
  135. data/ext/libxml/extconf.h +0 -4
  136. data/lib/libxml/ns.rb +0 -22
  137. data/lib/libxml/properties.rb +0 -23
  138. data/lib/libxml/reader.rb +0 -29
  139. data/lib/libxml/xpath_object.rb +0 -16
@@ -1,11 +1,11 @@
1
- <doc>
2
- <clean> </clean>
3
- <dirty> A B </dirty>
4
- <mixed>
5
- A
6
- <clean> </clean>
7
- B
8
- <dirty> A B </dirty>
9
- C
10
- </mixed>
11
- </doc>
1
+ <doc>
2
+ <clean> </clean>
3
+ <dirty> A B </dirty>
4
+ <mixed>
5
+ A
6
+ <clean> </clean>
7
+ B
8
+ <dirty> A B </dirty>
9
+ C
10
+ </mixed>
11
+ </doc>
@@ -1,18 +1,18 @@
1
- <!DOCTYPE doc [<!ATTLIST e9 attr CDATA "default">]>
2
- <doc>
3
- <e1 />
4
- <e2 ></e2>
5
- <e3 name = "elem3" id="elem3" />
6
- <e4 name="elem4" id="elem4" ></e4>
7
- <e5 a:attr="out" b:attr="sorted" attr2="all" attr="I'm"
8
- xmlns:b="http://www.ietf.org"
9
- xmlns:a="http://www.w3.org"
10
- xmlns="http://www.uvic.ca"/>
11
- <e6 xmlns="" xmlns:a="http://www.w3.org">
12
- <e7 xmlns="http://www.ietf.org">
13
- <e8 xmlns="" xmlns:a="http://www.w3.org">
14
- <e9 xmlns="" xmlns:a="http://www.ietf.org" attr="default"/>
15
- </e8>
16
- </e7>
17
- </e6>
18
- </doc>
1
+ <!DOCTYPE doc [<!ATTLIST e9 attr CDATA "default">]>
2
+ <doc>
3
+ <e1 />
4
+ <e2 ></e2>
5
+ <e3 name = "elem3" id="elem3" />
6
+ <e4 name="elem4" id="elem4" ></e4>
7
+ <e5 a:attr="out" b:attr="sorted" attr2="all" attr="I'm"
8
+ xmlns:b="http://www.ietf.org"
9
+ xmlns:a="http://www.w3.org"
10
+ xmlns="http://www.uvic.ca"/>
11
+ <e6 xmlns="" xmlns:a="http://www.w3.org">
12
+ <e7 xmlns="http://www.ietf.org">
13
+ <e8 xmlns="" xmlns:a="http://www.w3.org">
14
+ <e9 xmlns="" xmlns:a="http://www.ietf.org" attr="default"/>
15
+ </e8>
16
+ </e7>
17
+ </e6>
18
+ </doc>
@@ -1,9 +1,9 @@
1
- <!DOCTYPE doc [<!ATTLIST normId id ID #IMPLIED>]>
2
- <doc>
3
- <text>First line&#x0d;&#10;Second line</text>
4
- <value>&#x32;</value>
5
- <compute><![CDATA[value>"0" && value<"10" ?"valid":"error"]]></compute>
6
- <compute expr='value>"0" &amp;&amp; value&lt;"10" ?"valid":"error"'>valid</compute>
7
- <norm attr=' &apos; &#x20;&#13;&#xa;&#9; &apos; '/>
8
- <normId id=' &apos; &#x20;&#13;&#xa;&#9; &apos; '/>
9
- </doc>
1
+ <!DOCTYPE doc [<!ATTLIST normId id ID #IMPLIED>]>
2
+ <doc>
3
+ <text>First line&#x0d;&#10;Second line</text>
4
+ <value>&#x32;</value>
5
+ <compute><![CDATA[value>"0" && value<"10" ?"valid":"error"]]></compute>
6
+ <compute expr='value>"0" &amp;&amp; value&lt;"10" ?"valid":"error"'>valid</compute>
7
+ <norm attr=' &apos; &#x20;&#13;&#xa;&#9; &apos; '/>
8
+ <normId id=' &apos; &#x20;&#13;&#xa;&#9; &apos; '/>
9
+ </doc>
@@ -1,12 +1,12 @@
1
- <!DOCTYPE doc [
2
- <!ATTLIST doc attrExtEnt ENTITY #IMPLIED>
3
- <!ENTITY ent1 "Hello">
4
- <!ENTITY ent2 SYSTEM "world.txt">
5
- <!ENTITY entExt SYSTEM "earth.gif" NDATA gif>
6
- <!NOTATION gif SYSTEM "viewgif.exe">
7
- ]>
8
- <doc attrExtEnt="entExt">
9
- &ent1;, &ent2;!
10
- </doc>
11
-
12
- <!-- Let world.txt contain "world" (excluding the quotes) -->
1
+ <!DOCTYPE doc [
2
+ <!ATTLIST doc attrExtEnt ENTITY #IMPLIED>
3
+ <!ENTITY ent1 "Hello">
4
+ <!ENTITY ent2 SYSTEM "world.txt">
5
+ <!ENTITY entExt SYSTEM "earth.gif" NDATA gif>
6
+ <!NOTATION gif SYSTEM "viewgif.exe">
7
+ ]>
8
+ <doc attrExtEnt="entExt">
9
+ &ent1;, &ent2;!
10
+ </doc>
11
+
12
+ <!-- Let world.txt contain "world" (excluding the quotes) -->
@@ -1,2 +1,2 @@
1
- <?xml version="1.0" encoding="ISO-8859-1"?>
2
- <doc>&#169;</doc>
1
+ <?xml version="1.0" encoding="ISO-8859-1"?>
2
+ <doc>&#169;</doc>
@@ -1,11 +1,11 @@
1
- <!DOCTYPE doc [
2
- <!ATTLIST e2 xml:space (default|preserve) 'preserve'>
3
- <!ATTLIST e3 id ID #IMPLIED>
4
- ]>
5
- <doc xmlns="http://www.ietf.org" xmlns:w3c="http://www.w3.org">
6
- <e1>
7
- <e2 xmlns="">
8
- <e3 id="E3"/>
9
- </e2>
10
- </e1>
11
- </doc>
1
+ <!DOCTYPE doc [
2
+ <!ATTLIST e2 xml:space (default|preserve) 'preserve'>
3
+ <!ATTLIST e3 id ID #IMPLIED>
4
+ ]>
5
+ <doc xmlns="http://www.ietf.org" xmlns:w3c="http://www.w3.org">
6
+ <e1>
7
+ <e2 xmlns="">
8
+ <e3 id="E3"/>
9
+ </e2>
10
+ </e1>
11
+ </doc>
@@ -1,11 +1,11 @@
1
- <!DOCTYPE doc [
2
- <!ATTLIST e2 xml:space (default|preserve) 'preserve'>
3
- <!ATTLIST e3 id ID #IMPLIED>
4
- ]>
5
- <doc xmlns="http://www.ietf.org" xmlns:w3c="http://www.w3.org" xml:base="something/else">
6
- <e1>
7
- <e2 xmlns="" xml:id="abc" xml:base="bar/">
8
- <e3 id="E3" xml:base="foo"/>
9
- </e2>
10
- </e1>
11
- </doc>
1
+ <!DOCTYPE doc [
2
+ <!ATTLIST e2 xml:space (default|preserve) 'preserve'>
3
+ <!ATTLIST e3 id ID #IMPLIED>
4
+ ]>
5
+ <doc xmlns="http://www.ietf.org" xmlns:w3c="http://www.w3.org" xml:base="something/else">
6
+ <e1>
7
+ <e2 xmlns="" xml:id="abc" xml:base="bar/">
8
+ <e3 id="E3" xml:base="foo"/>
9
+ </e2>
10
+ </e1>
11
+ </doc>
@@ -1,10 +1,10 @@
1
- <XPath xmlns:ietf="http://www.ietf.org" >
2
- (//.|//@*|//namespace::*)
3
- [
4
- self::ietf:e1
5
- or
6
- (parent::ietf:e1 and not(self::text() or self::e2))
7
- or
8
- count(id("E3")|ancestor-or-self::node()) = count(ancestor-or-self::node())
9
- ]
1
+ <XPath xmlns:ietf="http://www.ietf.org" >
2
+ (//.|//@*|//namespace::*)
3
+ [
4
+ self::ietf:e1
5
+ or
6
+ (parent::ietf:e1 and not(self::text() or self::e2))
7
+ or
8
+ count(id("E3")|ancestor-or-self::node()) = count(ancestor-or-self::node())
9
+ ]
10
10
  </XPath>
@@ -1,4 +1,4 @@
1
- <?xml-stylesheet href="doc.xsl"
2
- type="text/xsl" ?>
3
- <doc>Hello, world!</doc>
1
+ <?xml-stylesheet href="doc.xsl"
2
+ type="text/xsl" ?>
3
+ <doc>Hello, world!</doc>
4
4
  <?pi-without-data?>
@@ -1,11 +1,11 @@
1
- <doc>
2
- <clean> </clean>
3
- <dirty> A B </dirty>
4
- <mixed>
5
- A
6
- <clean> </clean>
7
- B
8
- <dirty> A B </dirty>
9
- C
10
- </mixed>
1
+ <doc>
2
+ <clean> </clean>
3
+ <dirty> A B </dirty>
4
+ <mixed>
5
+ A
6
+ <clean> </clean>
7
+ B
8
+ <dirty> A B </dirty>
9
+ C
10
+ </mixed>
11
11
  </doc>
@@ -1,14 +1,14 @@
1
- <doc>
2
- <e1></e1>
3
- <e2></e2>
4
- <e3 id="elem3" name="elem3"></e3>
5
- <e4 id="elem4" name="elem4"></e4>
6
- <e5 xmlns="http://www.uvic.ca" xmlns:a="http://www.w3.org" xmlns:b="http://www.ietf.org" attr="I'm" attr2="all" b:attr="sorted" a:attr="out"></e5>
7
- <e6 xmlns:a="http://www.w3.org">
8
- <e7 xmlns="http://www.ietf.org">
9
- <e8 xmlns="">
10
- <e9 xmlns:a="http://www.ietf.org" attr="default"></e9>
11
- </e8>
12
- </e7>
13
- </e6>
1
+ <doc>
2
+ <e1></e1>
3
+ <e2></e2>
4
+ <e3 id="elem3" name="elem3"></e3>
5
+ <e4 id="elem4" name="elem4"></e4>
6
+ <e5 xmlns="http://www.uvic.ca" xmlns:a="http://www.w3.org" xmlns:b="http://www.ietf.org" attr="I'm" attr2="all" b:attr="sorted" a:attr="out"></e5>
7
+ <e6 xmlns:a="http://www.w3.org">
8
+ <e7 xmlns="http://www.ietf.org">
9
+ <e8 xmlns="">
10
+ <e9 xmlns:a="http://www.ietf.org" attr="default"></e9>
11
+ </e8>
12
+ </e7>
13
+ </e6>
14
14
  </doc>
@@ -1,9 +1,9 @@
1
- <doc>
2
- <text>First line&#xD;
3
- Second line</text>
4
- <value>2</value>
5
- <compute>value&gt;"0" &amp;&amp; value&lt;"10" ?"valid":"error"</compute>
6
- <compute expr="value>&quot;0&quot; &amp;&amp; value&lt;&quot;10&quot; ?&quot;valid&quot;:&quot;error&quot;">valid</compute>
7
- <norm attr=" ' &#xD;&#xA;&#x9; ' "></norm>
8
- <normId id="' &#xD;&#xA;&#x9; '"></normId>
1
+ <doc>
2
+ <text>First line&#xD;
3
+ Second line</text>
4
+ <value>2</value>
5
+ <compute>value&gt;"0" &amp;&amp; value&lt;"10" ?"valid":"error"</compute>
6
+ <compute expr="value>&quot;0&quot; &amp;&amp; value&lt;&quot;10&quot; ?&quot;valid&quot;:&quot;error&quot;">valid</compute>
7
+ <norm attr=" ' &#xD;&#xA;&#x9; ' "></norm>
8
+ <normId id="' &#xD;&#xA;&#x9; '"></normId>
9
9
  </doc>
@@ -1,3 +1,3 @@
1
- <doc attrExtEnt="entExt">
2
- Hello, world!
1
+ <doc attrExtEnt="entExt">
2
+ Hello, world!
3
3
  </doc>
@@ -1,6 +1,6 @@
1
- <?xml-stylesheet href="doc.xsl"
2
- type="text/xsl" ?>
3
- <doc>Hello, world!<!-- Comment 1 --></doc>
4
- <?pi-without-data?>
5
- <!-- Comment 2 -->
1
+ <?xml-stylesheet href="doc.xsl"
2
+ type="text/xsl" ?>
3
+ <doc>Hello, world!<!-- Comment 1 --></doc>
4
+ <?pi-without-data?>
5
+ <!-- Comment 2 -->
6
6
  <!-- Comment 3 -->
@@ -1,11 +1,11 @@
1
- <doc>
2
- <clean> </clean>
3
- <dirty> A B </dirty>
4
- <mixed>
5
- A
6
- <clean> </clean>
7
- B
8
- <dirty> A B </dirty>
9
- C
10
- </mixed>
1
+ <doc>
2
+ <clean> </clean>
3
+ <dirty> A B </dirty>
4
+ <mixed>
5
+ A
6
+ <clean> </clean>
7
+ B
8
+ <dirty> A B </dirty>
9
+ C
10
+ </mixed>
11
11
  </doc>
@@ -1,14 +1,14 @@
1
- <doc>
2
- <e1></e1>
3
- <e2></e2>
4
- <e3 id="elem3" name="elem3"></e3>
5
- <e4 id="elem4" name="elem4"></e4>
6
- <e5 xmlns="http://www.uvic.ca" xmlns:a="http://www.w3.org" xmlns:b="http://www.ietf.org" attr="I'm" attr2="all" b:attr="sorted" a:attr="out"></e5>
7
- <e6 xmlns:a="http://www.w3.org">
8
- <e7 xmlns="http://www.ietf.org">
9
- <e8 xmlns="">
10
- <e9 xmlns:a="http://www.ietf.org" attr="default"></e9>
11
- </e8>
12
- </e7>
13
- </e6>
1
+ <doc>
2
+ <e1></e1>
3
+ <e2></e2>
4
+ <e3 id="elem3" name="elem3"></e3>
5
+ <e4 id="elem4" name="elem4"></e4>
6
+ <e5 xmlns="http://www.uvic.ca" xmlns:a="http://www.w3.org" xmlns:b="http://www.ietf.org" attr="I'm" attr2="all" b:attr="sorted" a:attr="out"></e5>
7
+ <e6 xmlns:a="http://www.w3.org">
8
+ <e7 xmlns="http://www.ietf.org">
9
+ <e8 xmlns="">
10
+ <e9 xmlns:a="http://www.ietf.org" attr="default"></e9>
11
+ </e8>
12
+ </e7>
13
+ </e6>
14
14
  </doc>
@@ -1,9 +1,9 @@
1
- <doc>
2
- <text>First line&#xD;
3
- Second line</text>
4
- <value>2</value>
5
- <compute>value&gt;"0" &amp;&amp; value&lt;"10" ?"valid":"error"</compute>
6
- <compute expr="value>&quot;0&quot; &amp;&amp; value&lt;&quot;10&quot; ?&quot;valid&quot;:&quot;error&quot;">valid</compute>
7
- <norm attr=" ' &#xD;&#xA;&#x9; ' "></norm>
8
- <normId id="' &#xD;&#xA;&#x9; '"></normId>
1
+ <doc>
2
+ <text>First line&#xD;
3
+ Second line</text>
4
+ <value>2</value>
5
+ <compute>value&gt;"0" &amp;&amp; value&lt;"10" ?"valid":"error"</compute>
6
+ <compute expr="value>&quot;0&quot; &amp;&amp; value&lt;&quot;10&quot; ?&quot;valid&quot;:&quot;error&quot;">valid</compute>
7
+ <norm attr=" ' &#xD;&#xA;&#x9; ' "></norm>
8
+ <normId id="' &#xD;&#xA;&#x9; '"></normId>
9
9
  </doc>
@@ -1,4 +1,4 @@
1
- <doc attrExtEnt="entExt">
2
- Hello, world!
3
- </doc>
1
+ <doc attrExtEnt="entExt">
2
+ Hello, world!
3
+ </doc>
4
4
  <!-- Let world.txt contain "world" (excluding the quotes) -->
@@ -1,4 +1,4 @@
1
- <?xml-stylesheet href="doc.xsl"
2
- type="text/xsl" ?>
3
- <doc>Hello, world!</doc>
1
+ <?xml-stylesheet href="doc.xsl"
2
+ type="text/xsl" ?>
3
+ <doc>Hello, world!</doc>
4
4
  <?pi-without-data?>
@@ -1,11 +1,11 @@
1
- <doc>
2
- <clean> </clean>
3
- <dirty> A B </dirty>
4
- <mixed>
5
- A
6
- <clean> </clean>
7
- B
8
- <dirty> A B </dirty>
9
- C
10
- </mixed>
1
+ <doc>
2
+ <clean> </clean>
3
+ <dirty> A B </dirty>
4
+ <mixed>
5
+ A
6
+ <clean> </clean>
7
+ B
8
+ <dirty> A B </dirty>
9
+ C
10
+ </mixed>
11
11
  </doc>
@@ -1,14 +1,14 @@
1
- <doc>
2
- <e1></e1>
3
- <e2></e2>
4
- <e3 id="elem3" name="elem3"></e3>
5
- <e4 id="elem4" name="elem4"></e4>
6
- <e5 xmlns="http://www.uvic.ca" xmlns:a="http://www.w3.org" xmlns:b="http://www.ietf.org" attr="I'm" attr2="all" b:attr="sorted" a:attr="out"></e5>
7
- <e6 xmlns:a="http://www.w3.org">
8
- <e7 xmlns="http://www.ietf.org">
9
- <e8 xmlns="">
10
- <e9 xmlns:a="http://www.ietf.org" attr="default"></e9>
11
- </e8>
12
- </e7>
13
- </e6>
1
+ <doc>
2
+ <e1></e1>
3
+ <e2></e2>
4
+ <e3 id="elem3" name="elem3"></e3>
5
+ <e4 id="elem4" name="elem4"></e4>
6
+ <e5 xmlns="http://www.uvic.ca" xmlns:a="http://www.w3.org" xmlns:b="http://www.ietf.org" attr="I'm" attr2="all" b:attr="sorted" a:attr="out"></e5>
7
+ <e6 xmlns:a="http://www.w3.org">
8
+ <e7 xmlns="http://www.ietf.org">
9
+ <e8 xmlns="">
10
+ <e9 xmlns:a="http://www.ietf.org" attr="default"></e9>
11
+ </e8>
12
+ </e7>
13
+ </e6>
14
14
  </doc>
@@ -1,9 +1,9 @@
1
- <doc>
2
- <text>First line&#xD;
3
- Second line</text>
4
- <value>2</value>
5
- <compute>value&gt;"0" &amp;&amp; value&lt;"10" ?"valid":"error"</compute>
6
- <compute expr="value>&quot;0&quot; &amp;&amp; value&lt;&quot;10&quot; ?&quot;valid&quot;:&quot;error&quot;">valid</compute>
7
- <norm attr=" ' &#xD;&#xA;&#x9; ' "></norm>
8
- <normId id="' &#xD;&#xA;&#x9; '"></normId>
1
+ <doc>
2
+ <text>First line&#xD;
3
+ Second line</text>
4
+ <value>2</value>
5
+ <compute>value&gt;"0" &amp;&amp; value&lt;"10" ?"valid":"error"</compute>
6
+ <compute expr="value>&quot;0&quot; &amp;&amp; value&lt;&quot;10&quot; ?&quot;valid&quot;:&quot;error&quot;">valid</compute>
7
+ <norm attr=" ' &#xD;&#xA;&#x9; ' "></norm>
8
+ <normId id="' &#xD;&#xA;&#x9; '"></normId>
9
9
  </doc>
@@ -1,3 +1,3 @@
1
- <doc attrExtEnt="entExt">
2
- Hello, world!
1
+ <doc attrExtEnt="entExt">
2
+ Hello, world!
3
3
  </doc>
@@ -1,13 +1,13 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <?xml-stylesheet type="text/xsl" href="my_stylesheet.xsl"?>
3
- <feed xmlns="http://www.w3.org/2005/Atom">
4
- <!-- Not a valid atom entry -->
5
- <entry>
6
- <title type="html"><![CDATA[<<strong>>]]></title>
7
- <content type="xhtml">
8
- <xhtml:div xmlns:xhtml="http://www.w3.org/1999/xhtml">
9
- <xhtml:p>hi there</xhtml:p>
10
- </xhtml:div>
11
- </content>
12
- </entry>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <?xml-stylesheet type="text/xsl" href="my_stylesheet.xsl"?>
3
+ <feed xmlns="http://www.w3.org/2005/Atom">
4
+ <!-- Not a valid atom entry -->
5
+ <entry>
6
+ <title type="html"><![CDATA[<<strong>>]]></title>
7
+ <content type="xhtml">
8
+ <xhtml:div xmlns:xhtml="http://www.w3.org/1999/xhtml">
9
+ <xhtml:p>hi there</xhtml:p>
10
+ </xhtml:div>
11
+ </content>
12
+ </entry>
13
13
  </feed>