moxml 0.1.9 → 0.1.11

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 (150) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/docs.yml +1 -1
  3. data/.github/workflows/rake.yml +16 -13
  4. data/.github/workflows/release.yml +1 -0
  5. data/.github/workflows/round-trip.yml +74 -0
  6. data/.gitignore +1 -0
  7. data/.rubocop.yml +1 -0
  8. data/.rubocop_todo.yml +160 -38
  9. data/Gemfile +2 -1
  10. data/README.adoc +287 -20
  11. data/Rakefile +11 -0
  12. data/data/w3c_entities.json +2131 -0
  13. data/docs/ENTITY_SUPPORT_FOR_LUTAML_MODEL.md +102 -0
  14. data/docs/_guides/index.adoc +14 -12
  15. data/docs/_guides/node-api-consistency.adoc +572 -0
  16. data/docs/_guides/xml-declaration.adoc +5 -5
  17. data/docs/_pages/adapters/ox.adoc +30 -0
  18. data/docs/_pages/adapters/rexml.adoc +1 -1
  19. data/docs/_pages/configuration.adoc +43 -0
  20. data/docs/_pages/node-api-reference.adoc +128 -3
  21. data/docs/_tutorials/namespace-handling.adoc +21 -0
  22. data/examples/rss_parser/rss_parser.rb +1 -3
  23. data/lib/moxml/adapter/base.rb +26 -2
  24. data/lib/moxml/adapter/headed_ox.rb +5 -4
  25. data/lib/moxml/adapter/libxml.rb +18 -3
  26. data/lib/moxml/adapter/nokogiri.rb +26 -2
  27. data/lib/moxml/adapter/oga.rb +137 -20
  28. data/lib/moxml/adapter/ox.rb +29 -3
  29. data/lib/moxml/adapter/rexml.rb +54 -7
  30. data/lib/moxml/attribute.rb +6 -0
  31. data/lib/moxml/builder.rb +6 -0
  32. data/lib/moxml/config.rb +52 -1
  33. data/lib/moxml/context.rb +21 -2
  34. data/lib/moxml/doctype.rb +33 -0
  35. data/lib/moxml/document.rb +6 -1
  36. data/lib/moxml/document_builder.rb +45 -1
  37. data/lib/moxml/element.rb +10 -3
  38. data/lib/moxml/entity_reference.rb +29 -0
  39. data/lib/moxml/entity_registry.rb +278 -0
  40. data/lib/moxml/error.rb +5 -5
  41. data/lib/moxml/node.rb +22 -8
  42. data/lib/moxml/node_set.rb +10 -6
  43. data/lib/moxml/processing_instruction.rb +6 -0
  44. data/lib/moxml/version.rb +1 -1
  45. data/lib/moxml/xml_utils.rb +25 -2
  46. data/lib/moxml/xpath/errors.rb +1 -1
  47. data/lib/moxml.rb +1 -0
  48. data/spec/consistency/README.md +3 -1
  49. data/spec/consistency/round_trip_spec.rb +479 -0
  50. data/spec/examples/readme_examples_spec.rb +1 -1
  51. data/spec/fixtures/round-trips/metanorma/a.xml +66 -0
  52. data/spec/fixtures/round-trips/metanorma/bilingual-en.xml +7682 -0
  53. data/spec/fixtures/round-trips/metanorma/bilingual-fr.xml +7520 -0
  54. data/spec/fixtures/round-trips/metanorma/bilingual.presentation.xml +21211 -0
  55. data/spec/fixtures/round-trips/metanorma/collection1.xml +313 -0
  56. data/spec/fixtures/round-trips/metanorma/collection1nested.xml +291 -0
  57. data/spec/fixtures/round-trips/metanorma/collection_docinline.xml +544 -0
  58. data/spec/fixtures/round-trips/metanorma/collection_full.xml +1776 -0
  59. data/spec/fixtures/round-trips/metanorma/dummy.1.xml +295 -0
  60. data/spec/fixtures/round-trips/metanorma/dummy.xml +349 -0
  61. data/spec/fixtures/round-trips/metanorma/footnotes.xml +70 -0
  62. data/spec/fixtures/round-trips/metanorma/iho.xml +116 -0
  63. data/spec/fixtures/round-trips/metanorma/rice-amd.final.xml +186 -0
  64. data/spec/fixtures/round-trips/metanorma/rice-amd.final_1.xml +180 -0
  65. data/spec/fixtures/round-trips/metanorma/rice-en.final.norepo.xml +116 -0
  66. data/spec/fixtures/round-trips/metanorma/rice-en.final.xml +149 -0
  67. data/spec/fixtures/round-trips/metanorma/rice-en.final_1.xml +144 -0
  68. data/spec/fixtures/round-trips/metanorma/rice1-en.final.xml +120 -0
  69. data/spec/fixtures/round-trips/metanorma/rice2-en.final.xml +116 -0
  70. data/spec/fixtures/round-trips/metanorma/test_sectionsplit.xml +119 -0
  71. data/spec/fixtures/round-trips/niso-jats/bmj_sample.xml +1068 -0
  72. data/spec/fixtures/round-trips/niso-jats/element_citation.xml +7 -0
  73. data/spec/fixtures/round-trips/niso-jats/pnas_sample.xml +3768 -0
  74. data/spec/fixtures/round-trips/rfcxml/rfc8881.xml +45848 -0
  75. data/spec/fixtures/round-trips/rfcxml/rfc8994.xml +6607 -0
  76. data/spec/fixtures/round-trips/rfcxml/rfc9000.xml +9064 -0
  77. data/spec/fixtures/round-trips/rfcxml/rfc9043.xml +5527 -0
  78. data/spec/fixtures/round-trips/rfcxml/rfc9051.xml +14286 -0
  79. data/spec/fixtures/round-trips/rfcxml/rfc9110.xml +18156 -0
  80. data/spec/fixtures/round-trips/rfcxml/rfc9260.xml +9136 -0
  81. data/spec/fixtures/round-trips/rfcxml/rfc9293.xml +8300 -0
  82. data/spec/fixtures/round-trips/rfcxml/rfc9380.xml +8916 -0
  83. data/spec/fixtures/round-trips/rfcxml/rfc9420.xml +8927 -0
  84. data/spec/fixtures/w3c/namespaces/1.0/001.xml +7 -0
  85. data/spec/fixtures/w3c/namespaces/1.0/002.xml +8 -0
  86. data/spec/fixtures/w3c/namespaces/1.0/003.xml +7 -0
  87. data/spec/fixtures/w3c/namespaces/1.0/004.xml +7 -0
  88. data/spec/fixtures/w3c/namespaces/1.0/005.xml +7 -0
  89. data/spec/fixtures/w3c/namespaces/1.0/006.xml +7 -0
  90. data/spec/fixtures/w3c/namespaces/1.0/007.xml +20 -0
  91. data/spec/fixtures/w3c/namespaces/1.0/008.xml +20 -0
  92. data/spec/fixtures/w3c/namespaces/1.0/009.xml +19 -0
  93. data/spec/fixtures/w3c/namespaces/1.0/010.xml +19 -0
  94. data/spec/fixtures/w3c/namespaces/1.0/011.xml +20 -0
  95. data/spec/fixtures/w3c/namespaces/1.0/012.xml +19 -0
  96. data/spec/fixtures/w3c/namespaces/1.0/013.xml +5 -0
  97. data/spec/fixtures/w3c/namespaces/1.0/014.xml +3 -0
  98. data/spec/fixtures/w3c/namespaces/1.0/015.xml +3 -0
  99. data/spec/fixtures/w3c/namespaces/1.0/016.xml +3 -0
  100. data/spec/fixtures/w3c/namespaces/1.0/017.xml +3 -0
  101. data/spec/fixtures/w3c/namespaces/1.0/018.xml +3 -0
  102. data/spec/fixtures/w3c/namespaces/1.0/019.xml +3 -0
  103. data/spec/fixtures/w3c/namespaces/1.0/020.xml +3 -0
  104. data/spec/fixtures/w3c/namespaces/1.0/021.xml +6 -0
  105. data/spec/fixtures/w3c/namespaces/1.0/022.xml +6 -0
  106. data/spec/fixtures/w3c/namespaces/1.0/023.xml +6 -0
  107. data/spec/fixtures/w3c/namespaces/1.0/024.xml +6 -0
  108. data/spec/fixtures/w3c/namespaces/1.0/025.xml +3 -0
  109. data/spec/fixtures/w3c/namespaces/1.0/026.xml +3 -0
  110. data/spec/fixtures/w3c/namespaces/1.0/027.xml +3 -0
  111. data/spec/fixtures/w3c/namespaces/1.0/028.xml +3 -0
  112. data/spec/fixtures/w3c/namespaces/1.0/029.xml +4 -0
  113. data/spec/fixtures/w3c/namespaces/1.0/030.xml +4 -0
  114. data/spec/fixtures/w3c/namespaces/1.0/031.xml +4 -0
  115. data/spec/fixtures/w3c/namespaces/1.0/032.xml +5 -0
  116. data/spec/fixtures/w3c/namespaces/1.0/033.xml +4 -0
  117. data/spec/fixtures/w3c/namespaces/1.0/034.xml +3 -0
  118. data/spec/fixtures/w3c/namespaces/1.0/035.xml +8 -0
  119. data/spec/fixtures/w3c/namespaces/1.0/036.xml +8 -0
  120. data/spec/fixtures/w3c/namespaces/1.0/037.xml +8 -0
  121. data/spec/fixtures/w3c/namespaces/1.0/038.xml +8 -0
  122. data/spec/fixtures/w3c/namespaces/1.0/039.xml +10 -0
  123. data/spec/fixtures/w3c/namespaces/1.0/040.xml +9 -0
  124. data/spec/fixtures/w3c/namespaces/1.0/041.xml +8 -0
  125. data/spec/fixtures/w3c/namespaces/1.0/042.xml +4 -0
  126. data/spec/fixtures/w3c/namespaces/1.0/043.xml +7 -0
  127. data/spec/fixtures/w3c/namespaces/1.0/044.xml +7 -0
  128. data/spec/fixtures/w3c/namespaces/1.0/045.xml +7 -0
  129. data/spec/fixtures/w3c/namespaces/1.0/046.xml +10 -0
  130. data/spec/fixtures/w3c/namespaces/1.0/047.xml +4 -0
  131. data/spec/fixtures/w3c/namespaces/1.0/048.xml +5 -0
  132. data/spec/fixtures/w3c/namespaces/1.0/LICENSE.md +32 -0
  133. data/spec/fixtures/w3c/namespaces/1.0/README.adoc +42 -0
  134. data/spec/fixtures/w3c/namespaces/1.0/rmt-ns10.xml +156 -0
  135. data/spec/integration/shared_examples/node_wrappers/namespace_behavior.rb +14 -2
  136. data/spec/integration/shared_examples/w3c_namespace_examples.rb +10 -0
  137. data/spec/integration/w3c_namespace_spec.rb +69 -0
  138. data/spec/moxml/adapter/libxml_spec.rb +7 -1
  139. data/spec/moxml/adapter/oga_spec.rb +92 -0
  140. data/spec/moxml/config_spec.rb +75 -0
  141. data/spec/moxml/doctype_spec.rb +19 -3
  142. data/spec/moxml/entity_registry_spec.rb +184 -0
  143. data/spec/moxml/error_spec.rb +2 -2
  144. data/spec/moxml/namespace_uri_validation_spec.rb +140 -0
  145. data/spec/moxml/xpath/axes_spec.rb +3 -4
  146. data/spec/performance/xpath_benchmark_spec.rb +6 -54
  147. data/spec/support/w3c_namespace_helpers.rb +41 -0
  148. data/spec/unit/rexml_isolated_test.rb +271 -0
  149. metadata +99 -3
  150. data/.ruby-version +0 -1
@@ -0,0 +1,144 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <metanorma xmlns="https://www.metanorma.org/ns/standoc" flavor="iso">
3
+ <bibdata type="standard">
4
+ <title language="en" format="text/plain" type="main">Cereals and pulses — Specifications and test methods — Rice (Final)</title>
5
+ <title language="en" format="text/plain" type="title-intro">Cereals and pulses</title>
6
+ <title language="en" format="text/plain" type="title-main">Specifications and test methods</title>
7
+ <title language="en" format="text/plain" type="title-part">Rice (Final)</title>
8
+ <title language="fr" format="text/plain" type="main">Céréales et légumineuses — Spécification et méthodes d’essai — Riz (Final)</title>
9
+ <title language="fr" format="text/plain" type="title-intro">Céréales et légumineuses</title>
10
+ <title language="fr" format="text/plain" type="title-main">Spécification et méthodes d’essai</title>
11
+ <title language="fr" format="text/plain" type="title-part">Riz (Final)</title>
12
+ <docidentifier primary="true" type="ISO">ISO 17301-1:2016</docidentifier>
13
+ <docidentifier type="iso-with-lang">ISO 17301-1:2016(E)</docidentifier>
14
+ <docidentifier type="iso-reference">ISO 17301-1:2016(E)</docidentifier>
15
+ <docidentifier type="iso-tc">17301</docidentifier>
16
+ <docnumber>17301</docnumber>
17
+ <contributor>
18
+ <role type="author"/>
19
+ <organization>
20
+ <name>International Organization for Standardization</name>
21
+ <abbreviation>ISO</abbreviation>
22
+ </organization>
23
+ </contributor>
24
+ <contributor>
25
+ <role type="publisher"/>
26
+ <organization>
27
+ <name>International Organization for Standardization</name>
28
+ <abbreviation>ISO</abbreviation>
29
+ </organization>
30
+ </contributor>
31
+ <edition>2</edition>
32
+ <version>
33
+ <revision-date>2016-05-01</revision-date>
34
+ </version>
35
+ <language>en</language>
36
+ <script>Latn</script>
37
+ <status>
38
+ <stage abbreviation="IS">60</stage>
39
+ <substage>60</substage>
40
+ </status>
41
+ <copyright>
42
+ <from>2016</from>
43
+ <owner>
44
+ <organization>
45
+ <name>International Organization for Standardization</name>
46
+ <abbreviation>ISO</abbreviation>
47
+ </organization>
48
+ </owner>
49
+ </copyright>
50
+ <ext>
51
+ <doctype>international-standard</doctype>
52
+ <ics>
53
+ <code>67.060</code>
54
+ </ics>
55
+ <structuredidentifier>
56
+ <project-number part="1">ISO 17301</project-number>
57
+ </structuredidentifier>
58
+ <stagename>International standard</stagename>
59
+ </ext>
60
+ </bibdata>
61
+ <boilerplate>
62
+ <copyright-statement>
63
+ <clause>
64
+ <p id="boilerplate-year">
65
+ © ISO 2016
66
+ </p>
67
+
68
+ <p id="boilerplate-message">
69
+ All rights
70
+ reserved. Unless otherwise specified, no part of this publication may be
71
+ reproduced or utilized otherwise in any form or by any means, electronic or
72
+ mechanical, including photocopying, or posting on the internet or an intranet,
73
+ without prior written permission. Permission can be requested from either ISO
74
+ at the address below or ISO’s member body in the country of the requester.
75
+ </p>
76
+
77
+ <p id="boilerplate-address" align="left">
78
+ ISO copyright office<br/>
79
+ Ch. de Blandonnet 8 • CP 401<br/>
80
+ CH-1214 Vernier, Geneva, Switzerland<br/>
81
+ Tel.  + 41 22 749 01 11<br/>
82
+ Fax  + 41 22 749 09 47<br/>
83
+ Email: copyright@iso.org<br/>
84
+ Website: www.iso.org
85
+ </p>
86
+ <p id="boilerplate-place">
87
+ Published in Switzerland
88
+ </p>
89
+ </clause>
90
+ </copyright-statement>
91
+
92
+
93
+ </boilerplate>
94
+ <sections><clause id="_scope" obligation="normative"><title>Scope</title><p id="_03729c28-015a-466b-85e9-3fce1ad0e18f">This document specifies minimum requirements and test methods for rice (<em>Oryza sativa L.</em>).</p>
95
+ <p id="_3e4442b8-a93b-45c7-b947-f7c9af3449a5">It is applicable to husked rice, husked parboiled rice, milled rice and milled parboiled rice, suitable for human consumption, directly or after reconditioning.</p>
96
+ <p id="_f4a2f165-3713-40be-992c-a01835f953d3">It is not applicable to cooked rice products, which are not discussed in <xref target="anotherclause"/> or <xref target="thirdclause"/>.</p>
97
+ <p id="_b9d7b0c0-ff21-4205-b5b5-8435634a0c95">This document is updated in <eref type="inline" bibitemid="RiceAmd" citeas="ISO 17301-1:2016/Amd.1:2017"/>.</p>
98
+ <p id="_50a0e498-4b20-401c-ab99-fed8d11e266b">This document is unrelated <eref type="inline" bibitemid="StarTrek" citeas="ISO 1701:1974"/>, see e.g. <eref type="inline" bibitemid="StarTrek" citeas="ISO 1701:1974"><localityStack><locality type="clause"><referenceFrom>1</referenceFrom></locality></localityStack></eref>.</p>
99
+ <p id="_60bc26a9-2eaa-4f54-97f6-b58af731babb">This document is also unrelated to <eref type="inline" bibitemid="Dummy" citeas="ISO 17302:2016"><localityStack><locality type="anchor"><referenceFrom>what</referenceFrom></locality></localityStack></eref>.</p>
100
+ <!--<p id="_001">This document uses schemas <eref bibitemid="express-schema_E0"><locality type="anchor"><referenceFrom>A0</referenceFrom></locality>E0/A0</eref>, <eref bibitemid="express-schema_E1"><locality type="anchor"><referenceFrom>A1</referenceFrom></locality>E1/A1</eref> and <eref bibitemid="express-schema_E2"><locality type="anchor"><referenceFrom>A2</referenceFrom></locality>E2/A2</eref>.</p>-->
101
+ <p id="_001">This document uses schemas <eref bibitemid="express-schema_E0"><locality type="anchor"><referenceFrom>A0</referenceFrom></locality>E0/A0</eref>, <eref bibitemid="express-schema_E1"><locality type="anchor"><referenceFrom>A1</referenceFrom></locality>E1/A1</eref> and <eref bibitemid="express-schema_E2"></eref> as well as <xref target="express-schema_E0"/>.</p>
102
+ <svgmap id='svg1'>
103
+ <figure id='fig1'>
104
+ <image src='action_schemaexpg1.svg' id='_' mimetype='image/svg+xml' height='auto' width='auto' alt='Workmap'/>
105
+ </figure>
106
+ <target href='mn://action_schema'>
107
+ <eref bibitemid='express-schema_E0'>
108
+ <localityStack>
109
+ <locality type='anchor'><referenceFrom>A0</referenceFrom></locality>
110
+ </localityStack>
111
+ </eref>
112
+ </target>
113
+ <target href='mn://basic_attribute_schema'>
114
+ <eref bibitemid='express-schema_E1'>
115
+ <localityStack>
116
+ <locality type='anchor'><referenceFrom>A1</referenceFrom></locality>
117
+ </localityStack>
118
+ </eref>
119
+ </target>
120
+ <target href='mn://support_resource_schema'>
121
+ <eref bibitemid='express-schema_E2'>
122
+ <localityStack>
123
+ <locality type='anchor'><referenceFrom>A2</referenceFrom></locality>
124
+ </localityStack>
125
+ </eref>
126
+ </target>
127
+ </svgmap>
128
+ <p>You can also download the svg image at: <eref type="inline" bibitemid="action_schemaexpg1.svg" citeas="action_schemaexpg1.svg"/>. See <xref target="_scope"/> and <strong style="background: url(#svg1); foreground: url(_001); middleground: url(#fig1);">scope</strong></p>
129
+ </clause>
130
+ <clause id="anotherclause" type="express"><title>This is another clause</title>
131
+ <p><eref bibitemid="Nowhere"/>Direct links nowhere</p>
132
+ <p><eref bibitemid="express-schema_E2"/>Indirect links nowhere</p>
133
+ </clause>
134
+ <clause id="thirdclause"><title>This is another clause</title></clause>
135
+ </sections><bibliography><references id="_normative_references" normative="true" obligation="informative"><title>Normative References</title><p id="_27effc86-b49a-4ba4-a19a-8b03fad45c58">The following documents are referred to in the text in such a way that some or all of their content constitutes requirements of this document. For dated references, only the edition cited applies. For undated references, the latest edition of the referenced document (including any amendments) applies.</p>
136
+ <bibitem id="RiceAmd"><formattedref format="application/x-isodoc+xml"/><docidentifier type="ISO">ISO 17301-1:2016/Amd.1:2017</docidentifier><docidentifier type="repository">current-metanorma-collection/rice</docidentifier><docnumber>17301-1:2016/Amd.1:2017</docnumber></bibitem><bibitem id="StarTrek"><formattedref format="application/x-isodoc+xml"/><docidentifier type="ISO">ISO 1701:1974</docidentifier><docidentifier type="repository">current-metanorma-collection/rice</docidentifier><docnumber>1701:1974</docnumber></bibitem></references>
137
+ <references id="_bibliography" normative="false" obligation="informative"><title>Bibliography</title>
138
+ <bibitem id="Dummy"><formattedref format="application/x-isodoc+xml"/><uri type="URI">dummy</uri><uri type="citation" language="fr">dummy2</uri><uri type="citation">dummy1</uri><uri type="citation" language="en">dummy</uri><docidentifier>ISO 17302:2016</docidentifier><docnumber>17302</docnumber></bibitem><bibitem id="ISO712" type="standard"> <fetched>2020-07-14</fetched> <title type="title-intro" format="text/plain" language="en" script="Latn">Cereals and cereal products</title> <title type="title-main" format="text/plain" language="en" script="Latn">Determination of moisture content</title> <title type="main" format="text/plain" language="en" script="Latn">Cereals and cereal products – Determination of moisture content</title> <title type="title-intro" format="text/plain" language="fr" script="Latn">Céréales et produits céréaliers</title> <title type="title-main" format="text/plain" language="fr" script="Latn">Détermination de la teneur en eau</title> <title type="main" format="text/plain" language="fr" script="Latn">Céréales et produits céréaliers – Détermination de la teneur en eau</title> <uri type="src">https://www.iso.org/standard/44807.html</uri> <uri type="obp">https://www.iso.org/obp/ui/#!iso:std:44807:en</uri> <uri type="rss">https://www.iso.org/contents/data/standard/04/48/44807.detail.rss</uri> <docidentifier type="ISO">ISO 712 (all parts)</docidentifier> <docnumber>712</docnumber> <date type="published"> <on>2009</on> </date> <contributor> <role type="publisher"/> <organization> <name>International Organization for Standardization</name> <abbreviation>ISO</abbreviation> <uri>www.iso.org</uri> </organization> </contributor> <edition>4</edition> <language>en</language> <language>fr</language> <script>Latn</script> <status> <stage>90</stage> <substage>93</substage> </status> <copyright> <from>2009</from> <owner> <organization> <name>ISO</name> </organization> </owner> </copyright> <relation type="obsoletes"> <bibitem type="standard"> <formattedref format="text/plain">ISO 712:1998</formattedref> </bibitem> </relation> <relation type="instance"> <bibitem type="standard"> <fetched>2020-07-14</fetched> <title type="title-intro" format="text/plain" language="en" script="Latn">Cereals and cereal products</title> <title type="title-main" format="text/plain" language="en" script="Latn">Determination of moisture content</title> <title type="title-part" format="text/plain" language="en" script="Latn">Reference method</title> <title type="main" format="text/plain" language="en" script="Latn">Cereals and cereal products — Determination of moisture content — Reference method</title> <title type="title-intro" format="text/plain" language="fr" script="Latn">Céréales et produits céréaliers</title> <title type="title-main" format="text/plain" language="fr" script="Latn">Détermination de la teneur en eau</title> <title type="title-part" format="text/plain" language="fr" script="Latn">Méthode de référence</title> <title type="main" format="text/plain" language="fr" script="Latn">Céréales et produits céréaliers — Détermination de la teneur en eau — Méthode de référence</title> <uri type="src">https://www.iso.org/standard/44807.html</uri> <uri type="obp">https://www.iso.org/obp/ui/#!iso:std:44807:en</uri> <uri type="rss">https://www.iso.org/contents/data/standard/04/48/44807.detail.rss</uri> <docidentifier type="ISO">ISO 712:2009</docidentifier> <docnumber>712</docnumber> <date type="published"> <on>2009</on> </date> <contributor> <role type="publisher"/> <organization> <name>International Organization for Standardization</name> <abbreviation>ISO</abbreviation> <uri>www.iso.org</uri> </organization> </contributor> <edition>4</edition> <language>en</language> <language>fr</language> <script>Latn</script> <abstract format="text/plain" language="en" script="Latn">ISO 712:2009 specifies a routine reference method for the determination of the moisture content of cereals and cereal products.ISO 712:2009 applies to: wheat, rice (paddy, husked and milled), barley, millet (Panicum miliaceum), rye, oats, triticale, sorghum in the form of grains, milled grains, semolina or flour.The method is not applicable to maize and pulses.</abstract> <abstract format="text/plain" language="fr" script="Latn">L’ISO 712:2009 spécifie une méthode de référence pratique pour la détermination de la teneur en eau des céréales et des produits céréaliers.L’ISO 712:2009 est applicable aux produits suivants: blé, riz (paddy, décortiqué et usiné), orge, millet (Panicum miliaceum), seigle, avoine, triticale, sorgho, à l’état de grains, grains broyés, semoule ou farine.La méthode n’est applicable ni au maïs ni aux légumineuses.</abstract> <status> <stage>90</stage> <substage>93</substage> </status> <copyright> <from>2009</from> <owner> <organization> <name>ISO</name> </organization> </owner> </copyright> <relation type="obsoletes"> <bibitem type="standard"> <formattedref format="text/plain">ISO 712:1998</formattedref> </bibitem> </relation> <place>Geneva</place> </bibitem> </relation> <relation type="instance"> <bibitem type="standard"> <formattedref format="text/plain">ISO 712:1998</formattedref> </bibitem> </relation> <relation type="instance"> <bibitem type="standard"> <formattedref format="text/plain">ISO 712:1985</formattedref> </bibitem> </relation> <relation type="instance"> <bibitem type="standard"> <formattedref format="text/plain">ISO 712:1979</formattedref> </bibitem> </relation> <place>Geneva</place></bibitem>
139
+ <bibitem id="express-schema_E0" type="internal"><docidentifier type='repository'>express-schema/E0</docidentifier></bibitem>
140
+ <bibitem id="express-schema_E1" type="internal"><docidentifier type='repository'>express-schema/E1</docidentifier></bibitem>
141
+ <bibitem id="express-schema_E2" type="internal"><docidentifier type='repository'>express-schema/E2</docidentifier></bibitem>
142
+ <bibitem id="action_schemaexpg1.svg"><formattedref format="application/x-isodoc+xml"/><docidentifier>action_schemaexpg1.svg</docidentifier><docidentifier type="repository">current-metanorma-collection/action_schemaexpg1.svg</docidentifier><docnumber>action_schemaexpg1.svg</docnumber></bibitem>
143
+ </references></bibliography>
144
+ </metanorma>
@@ -0,0 +1,120 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <metanorma xmlns="https://www.metanorma.org/ns/standoc" type="semantic" version="1.6.0" flavor="iso">
3
+ <bibdata type="standard">
4
+ <title language="en" format="text/plain" type="main">Test conditions for milling machines with table of variable height, with horizontal or vertical spindle</title>
5
+ <title language="en" format="text/plain" type="title-main">Test conditions for milling machines with table of variable height, with horizontal or vertical spindle</title>
6
+ <title language="fr" format="text/plain" type="main">Conditions d’essais des machines à fraiser à table de hauteur variable, à broche horizontale ou verticale</title>
7
+ <title language="fr" format="text/plain" type="title-main">Conditions d’essais des machines à fraiser à table de hauteur variable, à broche horizontale ou verticale</title>
8
+ <docidentifier primary="true" type="ISO">ISO 1701:1974</docidentifier><docidentifier type="iso-with-lang">ISO 1701:1974(E)</docidentifier><docidentifier type="iso-reference">ISO 1701:1974(E)</docidentifier>
9
+
10
+
11
+ <docnumber>1701</docnumber>
12
+ <contributor>
13
+ <role type="author"/>
14
+ <organization>
15
+ <name>International Organization for Standardization</name>
16
+ <abbreviation>ISO</abbreviation>
17
+ </organization>
18
+ </contributor>
19
+ <contributor>
20
+ <role type="publisher"/>
21
+ <organization>
22
+ <name>International Organization for Standardization</name>
23
+ <abbreviation>ISO</abbreviation>
24
+ </organization>
25
+ </contributor>
26
+ <edition>1</edition>
27
+ <version>
28
+ <revision-date>2016-05-01</revision-date>
29
+ </version>
30
+ <language>en</language>
31
+ <script>Latn</script>
32
+ <status>
33
+ <stage abbreviation="IS">60</stage>
34
+ <substage>60</substage>
35
+ </status>
36
+ <copyright>
37
+ <from>1974</from>
38
+ <owner>
39
+ <organization>
40
+ <name>International Organization for Standardization</name>
41
+ <abbreviation>ISO</abbreviation>
42
+ </organization>
43
+ </owner>
44
+ </copyright>
45
+ <ext>
46
+ <doctype>international-standard</doctype>
47
+ <ics>
48
+ <code>67.060</code>
49
+ </ics>
50
+ <structuredidentifier>
51
+ <project-number>ISO 1701</project-number>
52
+ </structuredidentifier>
53
+ <stagename>International standard</stagename>
54
+ </ext>
55
+ </bibdata>
56
+ <boilerplate>
57
+ <copyright-statement>
58
+ <clause>
59
+ <title>COPYRIGHT PROTECTED DOCUMENT</title>
60
+ <p id="boilerplate-year">
61
+ © ISO 1974
62
+ </p>
63
+
64
+ <p id="boilerplate-message">
65
+ All rights
66
+ reserved. Unless otherwise specified, no part of this publication may be
67
+ reproduced or utilized otherwise in any form or by any means, electronic or
68
+ mechanical, including photocopying, or posting on the internet or an intranet,
69
+ without prior written permission. Permission can be requested from either ISO
70
+ at the address below or ISO’s member body in the country of the requester.
71
+ </p>
72
+
73
+ <p id="boilerplate-address" align="left">
74
+ ISO copyright office<br/>
75
+ Ch. de Blandonnet 8 • CP 401<br/>
76
+ CH-1214 Vernier, Geneva, Switzerland<br/>
77
+ Tel.  + 41 22 749 01 11<br/>
78
+ Fax  + 41 22 749 09 47<br/>
79
+ Email: copyright@iso.org<br/>
80
+ Website: www.iso.org
81
+ </p>
82
+ <p id="boilerplate-place">
83
+ Published in Switzerland
84
+ </p>
85
+ </clause>
86
+ </copyright-statement>
87
+
88
+
89
+ </boilerplate>
90
+ <sections><clause id="_scope" type="scope" inline-header="false" obligation="normative"><title>Scope</title><p id="_0f24bcbe-6ca7-400e-9fb3-34027510f8f2">This document specifies minimum requirements and test methods for rice (<em>Oryza sativa L.</em>).</p>
91
+ <p id="_7b4ddc83-6eab-4476-99ab-dee2fa285d14">It is applicable to husked rice, husked parboiled rice, milled rice and milled parboiled rice, suitable for human consumption, directly or after reconditioning.</p>
92
+ <p id="_2d5119f1-3fed-4faa-a457-65bb0c0449d2">It is not applicable to cooked rice products.</p>
93
+ <p id="_3ca0ca2e-49cb-45c2-9bd5-e79bdaae0f7a">This document is updated in <eref type="inline" bibitemid="RiceAmd" citeas="ISO 17301-1:2016/Amd.1:2017"/>. It derives from <eref type="inline" bibitemid="StarTrek" citeas="ISO 1701:1974"/>. See e.g. <eref type="inline" bibitemid="StarTrek" citeas="ISO 1701:1974"><localityStack><locality type="clause"><referenceFrom>1</referenceFrom></locality></localityStack></eref>.</p>
94
+ <p id="_d726ee55-0554-49a3-851e-dc8e16372c3f">This document is unrelated to <eref type="inline" bibitemid="Dummy" citeas="ISO 17302:2016"><localityStack><locality type="anchor"><referenceFrom>what</referenceFrom></locality></localityStack></eref>.</p></clause>
95
+ </sections><bibliography>
96
+ <references id="_normref" normative="true" obligation="informative">
97
+ <title>Normative References</title>
98
+ </references>
99
+ <references id="_bibliography" normative="false" obligation="informative">
100
+ <title>Bibliography</title><bibitem id="StarTrek">
101
+ <formattedref format="application/x-isodoc+xml"/>
102
+ <docidentifier type="ISO">ISO 1701:1974</docidentifier>
103
+ <docidentifier type="repository">current-metanorma-collection/rice</docidentifier>
104
+ <docnumber>1701:1974</docnumber>
105
+ </bibitem><bibitem id="RiceAmd">
106
+ <formattedref format="application/x-isodoc+xml"/>
107
+ <docidentifier type="ISO">ISO 17301-1:2016/Amd.1:2017</docidentifier>
108
+ <docidentifier type="repository">current-metanorma-collection/ISO 17301-1:2016/Amd.1:2017</docidentifier>
109
+ <docnumber>17301-1:2016/Amd.1:2017</docnumber>
110
+ </bibitem><bibitem id="Dummy">
111
+ <formattedref format="application/x-isodoc+xml"/>
112
+ <docidentifier type="ISO">ISO 17302:2016</docidentifier>
113
+ <docidentifier type="repository">current-metanorma-collection/ISO 17302<sup>x</sup></docidentifier>
114
+ <docnumber>17302</docnumber>
115
+ </bibitem>
116
+
117
+
118
+
119
+ </references></bibliography>
120
+ </metanorma>
@@ -0,0 +1,116 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <metanorma xmlns="https://www.metanorma.org/ns/standoc" type="semantic" version="1.6.0" flavor="iso">
3
+ <bibdata type="standard">
4
+ <title language="en" format="text/plain" type="main">Test conditions for milling machines with table of variable height, with horizontal or vertical spindle</title>
5
+ <title language="en" format="text/plain" type="title-main">Test conditions for milling machines with table of variable height, with horizontal or vertical spindle</title>
6
+ <title language="fr" format="text/plain" type="main">Conditions d’essais des machines à fraiser à table de hauteur variable, à broche horizontale ou verticale</title>
7
+ <title language="fr" format="text/plain" type="title-main">Conditions d’essais des machines à fraiser à table de hauteur variable, à broche horizontale ou verticale</title>
8
+ <docidentifier primary="true" type="ISO">ISO 1701<sup>x</sup>:1974</docidentifier><docidentifier type="iso-with-lang">ISO 1701:1974(E)</docidentifier><docidentifier type="iso-reference">ISO 1701:1974(E)</docidentifier>
9
+
10
+
11
+ <docnumber>1701</docnumber>
12
+ <contributor>
13
+ <role type="author"/>
14
+ <organization>
15
+ <name>International Organization for Standardization</name>
16
+ <abbreviation>ISO</abbreviation>
17
+ </organization>
18
+ </contributor>
19
+ <contributor>
20
+ <role type="publisher"/>
21
+ <organization>
22
+ <name>International Organization for Standardization</name>
23
+ <abbreviation>ISO</abbreviation>
24
+ </organization>
25
+ </contributor>
26
+ <edition>1</edition>
27
+ <version>
28
+ <revision-date>2016-05-01</revision-date>
29
+ </version>
30
+ <language>en</language>
31
+ <script>Latn</script>
32
+ <status>
33
+ <stage abbreviation="IS">60</stage>
34
+ <substage>60</substage>
35
+ </status>
36
+ <copyright>
37
+ <from>1974</from>
38
+ <owner>
39
+ <organization>
40
+ <name>International Organization for Standardization</name>
41
+ <abbreviation>ISO</abbreviation>
42
+ </organization>
43
+ </owner>
44
+ </copyright>
45
+ <ext>
46
+ <doctype>international-standard</doctype>
47
+ <ics>
48
+ <code>67.060</code>
49
+ </ics>
50
+ <structuredidentifier>
51
+ <project-number>ISO 1701</project-number>
52
+ </structuredidentifier>
53
+ <stagename>International standard</stagename>
54
+ </ext>
55
+ </bibdata>
56
+ <boilerplate>
57
+ <copyright-statement>
58
+ <clause>
59
+ <title>COPYRIGHT PROTECTED DOCUMENT</title>
60
+ <p id="boilerplate-year">
61
+ © ISO 1974
62
+ </p>
63
+
64
+ <p id="boilerplate-message">
65
+ All rights
66
+ reserved. Unless otherwise specified, no part of this publication may be
67
+ reproduced or utilized otherwise in any form or by any means, electronic or
68
+ mechanical, including photocopying, or posting on the internet or an intranet,
69
+ without prior written permission. Permission can be requested from either ISO
70
+ at the address below or ISO’s member body in the country of the requester.
71
+ </p>
72
+
73
+ <p id="boilerplate-address" align="left">
74
+ ISO copyright office<br/>
75
+ Ch. de Blandonnet 8 • CP 401<br/>
76
+ CH-1214 Vernier, Geneva, Switzerland<br/>
77
+ Tel.  + 41 22 749 01 11<br/>
78
+ Fax  + 41 22 749 09 47<br/>
79
+ Email: copyright@iso.org<br/>
80
+ Website: www.iso.org
81
+ </p>
82
+ <p id="boilerplate-place">
83
+ Published in Switzerland
84
+ </p>
85
+ </clause>
86
+ </copyright-statement>
87
+
88
+
89
+ </boilerplate>
90
+ <sections><clause id="_scope" type="scope" inline-header="false" obligation="normative"><title>Scope</title><p id="_0f24bcbe-6ca7-400e-9fb3-34027510f8f2">This document specifies minimum requirements and test methods for rice (<em>Oryza sativa L.</em>).</p>
91
+ <p id="_7b4ddc83-6eab-4476-99ab-dee2fa285d14">It is applicable to husked rice, husked parboiled rice, milled rice and milled parboiled rice, suitable for human consumption, directly or after reconditioning.</p>
92
+ <p id="_2d5119f1-3fed-4faa-a457-65bb0c0449d2">It is not applicable to cooked rice products.</p>
93
+ <p id="_3ca0ca2e-49cb-45c2-9bd5-e79bdaae0f7a">This document is updated in <eref type="inline" bibitemid="RiceAmd" citeas="ISO 17301-1:2016/Amd.1:2017"/>. It derives from <eref type="inline" bibitemid="StarTrek" citeas="ISO 1701:1974"/>. See e.g. <eref type="inline" bibitemid="StarTrek" citeas="ISO 1701:1974"><localityStack><locality type="clause"><referenceFrom>1</referenceFrom></locality></localityStack></eref>.</p>
94
+ <p id="_d726ee55-0554-49a3-851e-dc8e16372c3f">This document is unrelated to <eref type="inline" bibitemid="Dummy" citeas="ISO 17302:2016"><localityStack><locality type="anchor"><referenceFrom>what</referenceFrom></locality></localityStack></eref>.</p></clause>
95
+ </sections><bibliography><references id="_bibliography" normative="false" obligation="informative">
96
+ <title>Bibliography</title><bibitem id="StarTrek">
97
+ <formattedref format="application/x-isodoc+xml"/>
98
+ <docidentifier type="ISO">ISO 1701:1974</docidentifier>
99
+ <docidentifier type="repository">current-metanorma-collection/rice</docidentifier>
100
+ <docnumber>1701:1974</docnumber>
101
+ </bibitem><bibitem id="RiceAmd">
102
+ <formattedref format="application/x-isodoc+xml"/>
103
+ <docidentifier type="ISO">ISO 17301-1:2016/Amd.1:2017</docidentifier>
104
+ <docidentifier type="repository">current-metanorma-collection/ISO 17301-1:2016/Amd.1:2017</docidentifier>
105
+ <docnumber>17301-1:2016/Amd.1:2017</docnumber>
106
+ </bibitem><bibitem id="Dummy">
107
+ <formattedref format="application/x-isodoc+xml"/>
108
+ <docidentifier type="ISO">ISO 17302:2016</docidentifier>
109
+ <docidentifier type="repository">current-metanorma-collection/ISO 17302<sup>x</sup></docidentifier>
110
+ <docnumber>17302</docnumber>
111
+ </bibitem>
112
+
113
+
114
+
115
+ </references></bibliography>
116
+ </metanorma>
@@ -0,0 +1,119 @@
1
+ <metanorma xmlns="http://riboseinc.com/isoxml" flavor="iso">
2
+ <bibdata>
3
+ <title>ISO Title</title>
4
+ <docidentifier type="ISO">ISO 1</docidentifier>
5
+ </bibdata>
6
+ <metanorma-extension>
7
+ <attachment name="_test_sectionsplit_attachments/LICENSE.TXT">data:application/octet-stream;base64,QlNEIDItQ2xhdXNlIExpY2V
8
+ uc2UKCkNvcHlyaWdodCAoYykgMjAxOCwgUmlib3NlCkFsbCByaWdodHMgcmV
9
+ zZXJ2ZWQuCgpSZWRpc3RyaWJ1dGlvbiBhbmQgdXNlIGluIHNvdXJjZSBhbmQ
10
+ gYmluYXJ5IGZvcm1zLCB3aXRoIG9yIHdpdGhvdXQKbW9kaWZpY2F0aW9uLCB
11
+ hcmUgcGVybWl0dGVkIHByb3ZpZGVkIHRoYXQgdGhlIGZvbGxvd2luZyBjb25
12
+ kaXRpb25zIGFyZSBtZXQ6CgoqIFJlZGlzdHJpYnV0aW9ucyBvZiBzb3VyY2U
13
+ gY29kZSBtdXN0IHJldGFpbiB0aGUgYWJvdmUgY29weXJpZ2h0IG5vdGljZSw
14
+ gdGhpcwogIGxpc3Qgb2YgY29uZGl0aW9ucyBhbmQgdGhlIGZvbGxvd2luZyB
15
+ kaXNjbGFpbWVyLgoKKiBSZWRpc3RyaWJ1dGlvbnMgaW4gYmluYXJ5IGZvcm0
16
+ gbXVzdCByZXByb2R1Y2UgdGhlIGFib3ZlIGNvcHlyaWdodCBub3RpY2UsCiA
17
+ gdGhpcyBsaXN0IG9mIGNvbmRpdGlvbnMgYW5kIHRoZSBmb2xsb3dpbmcgZGl
18
+ zY2xhaW1lciBpbiB0aGUgZG9jdW1lbnRhdGlvbgogIGFuZC9vciBvdGhlciB
19
+ tYXRlcmlhbHMgcHJvdmlkZWQgd2l0aCB0aGUgZGlzdHJpYnV0aW9uLgoKVEh
20
+ JUyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQ09QWVJJR0hUIEhPTER
21
+ FUlMgQU5EIENPTlRSSUJVVE9SUyAiQVMgSVMiCkFORCBBTlkgRVhQUkVTUyB
22
+ PUiBJTVBMSUVEIFdBUlJBTlRJRVMsIElOQ0xVRElORywgQlVUIE5PVCBMSU1
23
+ JVEVEIFRPLCBUSEUKSU1QTElFRCBXQVJSQU5USUVTIE9GIE1FUkNIQU5UQUJ
24
+ JTElUWSBBTkQgRklUTkVTUyBGT1IgQSBQQVJUSUNVTEFSIFBVUlBPU0UgQVJ
25
+ FCkRJU0NMQUlNRUQuIElOIE5PIEVWRU5UIFNIQUxMIFRIRSBDT1BZUklHSFQ
26
+ gSE9MREVSIE9SIENPTlRSSUJVVE9SUyBCRSBMSUFCTEUKRk9SIEFOWSBESVJ
27
+ FQ1QsIElORElSRUNULCBJTkNJREVOVEFMLCBTUEVDSUFMLCBFWEVNUExBUlk
28
+ sIE9SIENPTlNFUVVFTlRJQUwKREFNQUdFUyAoSU5DTFVESU5HLCBCVVQgTk9
29
+ UIExJTUlURUQgVE8sIFBST0NVUkVNRU5UIE9GIFNVQlNUSVRVVEUgR09PRFM
30
+ gT1IKU0VSVklDRVM7IExPU1MgT0YgVVNFLCBEQVRBLCBPUiBQUk9GSVRTOyB
31
+ PUiBCVVNJTkVTUyBJTlRFUlJVUFRJT04pIEhPV0VWRVIKQ0FVU0VEIEFORCB
32
+ PTiBBTlkgVEhFT1JZIE9GIExJQUJJTElUWSwgV0hFVEhFUiBJTiBDT05UUkF
33
+ DVCwgU1RSSUNUIExJQUJJTElUWSwKT1IgVE9SVCAoSU5DTFVESU5HIE5FR0x
34
+ JR0VOQ0UgT1IgT1RIRVJXSVNFKSBBUklTSU5HIElOIEFOWSBXQVkgT1VUIE9
35
+ GIFRIRSBVU0UKT0YgVEhJUyBTT0ZUV0FSRSwgRVZFTiBJRiBBRFZJU0VEIE9
36
+ GIFRIRSBQT1NTSUJJTElUWSBPRiBTVUNIIERBTUFHRS4K
37
+ </attachment>
38
+ </metanorma-extension>
39
+ <preface>
40
+ <abstract id="A" displayorder='1'><title>abstract</title></abstract>
41
+ <introduction id="B" displayorder='2'><title>introduction</title></introduction>
42
+ </preface>
43
+ <sections>
44
+ <p id="middletitle" displayorder="3">Title</p>
45
+ <note id="middlenote" displayorder="4">Title</note>
46
+ <clause id="M" inline-header="false" obligation="normative" displayorder='6'>
47
+ <title>Clause 4</title>
48
+ <clause id="N" inline-header="false" obligation="normative">
49
+ <title>Introduction</title>
50
+ <p><xref target="A">HE</xref></p>
51
+ <note id="N1"><p><eref bibitemid="R1" citeas="R1">SHE</eref></p></note>
52
+ <note id="N2"><p><eref bibitemid="R1" citeas="R1"><image src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"/></eref></p></note>
53
+ <note id="N3">
54
+ <p id="_3cfcdeb7-bba1-0265-29d1-cc6b3c1e1810"><eref type="inline" bibitemid="License_A" citeas="[LICENSE.TXT]">License A</eref></p>
55
+ </note>
56
+ <svgmap>
57
+ <figure>
58
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1_000000000" x="0px" y="0px" viewBox="0 0 595.28 841.89" style="enable-background:new 0 0 595.28 841.89;" xml:space="preserve">
59
+ <image style="overflow:visible;" width="1" height="1" xlink:href='data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7'/>
60
+ <a href="#A">A</a>
61
+ <a href="#B">B</a>
62
+ </svg>
63
+ <target href="B"><eref bibitemid="R1" citeas="R1"/></target>
64
+ </figure>
65
+ </svgmap>
66
+ <figure>
67
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1_000000000" x="0px" y="0px" viewBox="0 0 595.28 841.89" style="enable-background:new 0 0 595.28 841.89;" xml:space="preserve">
68
+ <image style="overflow:visible;" width="1" height="1" xlink:href='data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7'/>
69
+ <a href="#P">P</a>
70
+ </svg>
71
+ </figure>
72
+ </clause>
73
+ <clause id="O" inline-header="true" obligation="normative">
74
+ <title>Clause 4.2</title>
75
+ </clause></clause>
76
+ <admonition id="L" type="caution"><p>admonition</p></admonition>
77
+ </sections>
78
+ <annex id="P" inline-header="false" obligation="normative" displayorder='7'>
79
+ <title><strong>Annex</strong><br/>(informative)</title>
80
+ <clause id="Q" inline-header="false" obligation="normative">
81
+ <title>Annex A.1</title>
82
+ <clause id="Q1" inline-header="false" obligation="normative">
83
+ <title>Annex A.1a</title>
84
+ </clause>
85
+ <references id="Q2" normative="false">
86
+ <title>Annex Bibliography</title>
87
+ </references>
88
+ </clause>
89
+ </annex>
90
+ <annex id="P1" inline-header="false" obligation="normative" displayorder='8'>
91
+ <title>Annex 2</title>
92
+ </annex>
93
+ <bibliography><references id="R" obligation="informative" normative="true" displayorder='5'>
94
+ <title>Normative References</title>
95
+ <bibitem id="R1"><docidentifier>R1</docidentifier><title>Hello</title></bibitem>
96
+ </references><clause id="S" obligation="informative" displayorder='9'>
97
+ <title>Bibliography</title>
98
+ <references id="T" obligation="informative" normative="false">
99
+ <title>Bibliography Subsection</title>
100
+
101
+
102
+
103
+ <bibitem id="License_A" hidden="true">
104
+ <formattedref format="application/x-isodoc+xml">attachment description</formattedref>
105
+ <uri type="attachment">_test_sectionsplit_attachments/LICENSE.TXT</uri>
106
+ <uri type="citation">_test_sectionsplit_attachments/LICENSE.TXT</uri>
107
+ <docidentifier type="metanorma">[LICENSE.TXT]</docidentifier>
108
+ </bibitem>
109
+
110
+
111
+
112
+
113
+
114
+ </references>
115
+ </clause>
116
+ </bibliography>
117
+ <indexsect displayorder="10"><title>Index</title></indexsect>
118
+ </metanorma>
119
+