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.
- checksums.yaml +4 -4
- data/.github/workflows/docs.yml +1 -1
- data/.github/workflows/rake.yml +16 -13
- data/.github/workflows/release.yml +1 -0
- data/.github/workflows/round-trip.yml +74 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +1 -0
- data/.rubocop_todo.yml +160 -38
- data/Gemfile +2 -1
- data/README.adoc +287 -20
- data/Rakefile +11 -0
- data/data/w3c_entities.json +2131 -0
- data/docs/ENTITY_SUPPORT_FOR_LUTAML_MODEL.md +102 -0
- data/docs/_guides/index.adoc +14 -12
- data/docs/_guides/node-api-consistency.adoc +572 -0
- data/docs/_guides/xml-declaration.adoc +5 -5
- data/docs/_pages/adapters/ox.adoc +30 -0
- data/docs/_pages/adapters/rexml.adoc +1 -1
- data/docs/_pages/configuration.adoc +43 -0
- data/docs/_pages/node-api-reference.adoc +128 -3
- data/docs/_tutorials/namespace-handling.adoc +21 -0
- data/examples/rss_parser/rss_parser.rb +1 -3
- data/lib/moxml/adapter/base.rb +26 -2
- data/lib/moxml/adapter/headed_ox.rb +5 -4
- data/lib/moxml/adapter/libxml.rb +18 -3
- data/lib/moxml/adapter/nokogiri.rb +26 -2
- data/lib/moxml/adapter/oga.rb +137 -20
- data/lib/moxml/adapter/ox.rb +29 -3
- data/lib/moxml/adapter/rexml.rb +54 -7
- data/lib/moxml/attribute.rb +6 -0
- data/lib/moxml/builder.rb +6 -0
- data/lib/moxml/config.rb +52 -1
- data/lib/moxml/context.rb +21 -2
- data/lib/moxml/doctype.rb +33 -0
- data/lib/moxml/document.rb +6 -1
- data/lib/moxml/document_builder.rb +45 -1
- data/lib/moxml/element.rb +10 -3
- data/lib/moxml/entity_reference.rb +29 -0
- data/lib/moxml/entity_registry.rb +278 -0
- data/lib/moxml/error.rb +5 -5
- data/lib/moxml/node.rb +22 -8
- data/lib/moxml/node_set.rb +10 -6
- data/lib/moxml/processing_instruction.rb +6 -0
- data/lib/moxml/version.rb +1 -1
- data/lib/moxml/xml_utils.rb +25 -2
- data/lib/moxml/xpath/errors.rb +1 -1
- data/lib/moxml.rb +1 -0
- data/spec/consistency/README.md +3 -1
- data/spec/consistency/round_trip_spec.rb +479 -0
- data/spec/examples/readme_examples_spec.rb +1 -1
- data/spec/fixtures/round-trips/metanorma/a.xml +66 -0
- data/spec/fixtures/round-trips/metanorma/bilingual-en.xml +7682 -0
- data/spec/fixtures/round-trips/metanorma/bilingual-fr.xml +7520 -0
- data/spec/fixtures/round-trips/metanorma/bilingual.presentation.xml +21211 -0
- data/spec/fixtures/round-trips/metanorma/collection1.xml +313 -0
- data/spec/fixtures/round-trips/metanorma/collection1nested.xml +291 -0
- data/spec/fixtures/round-trips/metanorma/collection_docinline.xml +544 -0
- data/spec/fixtures/round-trips/metanorma/collection_full.xml +1776 -0
- data/spec/fixtures/round-trips/metanorma/dummy.1.xml +295 -0
- data/spec/fixtures/round-trips/metanorma/dummy.xml +349 -0
- data/spec/fixtures/round-trips/metanorma/footnotes.xml +70 -0
- data/spec/fixtures/round-trips/metanorma/iho.xml +116 -0
- data/spec/fixtures/round-trips/metanorma/rice-amd.final.xml +186 -0
- data/spec/fixtures/round-trips/metanorma/rice-amd.final_1.xml +180 -0
- data/spec/fixtures/round-trips/metanorma/rice-en.final.norepo.xml +116 -0
- data/spec/fixtures/round-trips/metanorma/rice-en.final.xml +149 -0
- data/spec/fixtures/round-trips/metanorma/rice-en.final_1.xml +144 -0
- data/spec/fixtures/round-trips/metanorma/rice1-en.final.xml +120 -0
- data/spec/fixtures/round-trips/metanorma/rice2-en.final.xml +116 -0
- data/spec/fixtures/round-trips/metanorma/test_sectionsplit.xml +119 -0
- data/spec/fixtures/round-trips/niso-jats/bmj_sample.xml +1068 -0
- data/spec/fixtures/round-trips/niso-jats/element_citation.xml +7 -0
- data/spec/fixtures/round-trips/niso-jats/pnas_sample.xml +3768 -0
- data/spec/fixtures/round-trips/rfcxml/rfc8881.xml +45848 -0
- data/spec/fixtures/round-trips/rfcxml/rfc8994.xml +6607 -0
- data/spec/fixtures/round-trips/rfcxml/rfc9000.xml +9064 -0
- data/spec/fixtures/round-trips/rfcxml/rfc9043.xml +5527 -0
- data/spec/fixtures/round-trips/rfcxml/rfc9051.xml +14286 -0
- data/spec/fixtures/round-trips/rfcxml/rfc9110.xml +18156 -0
- data/spec/fixtures/round-trips/rfcxml/rfc9260.xml +9136 -0
- data/spec/fixtures/round-trips/rfcxml/rfc9293.xml +8300 -0
- data/spec/fixtures/round-trips/rfcxml/rfc9380.xml +8916 -0
- data/spec/fixtures/round-trips/rfcxml/rfc9420.xml +8927 -0
- data/spec/fixtures/w3c/namespaces/1.0/001.xml +7 -0
- data/spec/fixtures/w3c/namespaces/1.0/002.xml +8 -0
- data/spec/fixtures/w3c/namespaces/1.0/003.xml +7 -0
- data/spec/fixtures/w3c/namespaces/1.0/004.xml +7 -0
- data/spec/fixtures/w3c/namespaces/1.0/005.xml +7 -0
- data/spec/fixtures/w3c/namespaces/1.0/006.xml +7 -0
- data/spec/fixtures/w3c/namespaces/1.0/007.xml +20 -0
- data/spec/fixtures/w3c/namespaces/1.0/008.xml +20 -0
- data/spec/fixtures/w3c/namespaces/1.0/009.xml +19 -0
- data/spec/fixtures/w3c/namespaces/1.0/010.xml +19 -0
- data/spec/fixtures/w3c/namespaces/1.0/011.xml +20 -0
- data/spec/fixtures/w3c/namespaces/1.0/012.xml +19 -0
- data/spec/fixtures/w3c/namespaces/1.0/013.xml +5 -0
- data/spec/fixtures/w3c/namespaces/1.0/014.xml +3 -0
- data/spec/fixtures/w3c/namespaces/1.0/015.xml +3 -0
- data/spec/fixtures/w3c/namespaces/1.0/016.xml +3 -0
- data/spec/fixtures/w3c/namespaces/1.0/017.xml +3 -0
- data/spec/fixtures/w3c/namespaces/1.0/018.xml +3 -0
- data/spec/fixtures/w3c/namespaces/1.0/019.xml +3 -0
- data/spec/fixtures/w3c/namespaces/1.0/020.xml +3 -0
- data/spec/fixtures/w3c/namespaces/1.0/021.xml +6 -0
- data/spec/fixtures/w3c/namespaces/1.0/022.xml +6 -0
- data/spec/fixtures/w3c/namespaces/1.0/023.xml +6 -0
- data/spec/fixtures/w3c/namespaces/1.0/024.xml +6 -0
- data/spec/fixtures/w3c/namespaces/1.0/025.xml +3 -0
- data/spec/fixtures/w3c/namespaces/1.0/026.xml +3 -0
- data/spec/fixtures/w3c/namespaces/1.0/027.xml +3 -0
- data/spec/fixtures/w3c/namespaces/1.0/028.xml +3 -0
- data/spec/fixtures/w3c/namespaces/1.0/029.xml +4 -0
- data/spec/fixtures/w3c/namespaces/1.0/030.xml +4 -0
- data/spec/fixtures/w3c/namespaces/1.0/031.xml +4 -0
- data/spec/fixtures/w3c/namespaces/1.0/032.xml +5 -0
- data/spec/fixtures/w3c/namespaces/1.0/033.xml +4 -0
- data/spec/fixtures/w3c/namespaces/1.0/034.xml +3 -0
- data/spec/fixtures/w3c/namespaces/1.0/035.xml +8 -0
- data/spec/fixtures/w3c/namespaces/1.0/036.xml +8 -0
- data/spec/fixtures/w3c/namespaces/1.0/037.xml +8 -0
- data/spec/fixtures/w3c/namespaces/1.0/038.xml +8 -0
- data/spec/fixtures/w3c/namespaces/1.0/039.xml +10 -0
- data/spec/fixtures/w3c/namespaces/1.0/040.xml +9 -0
- data/spec/fixtures/w3c/namespaces/1.0/041.xml +8 -0
- data/spec/fixtures/w3c/namespaces/1.0/042.xml +4 -0
- data/spec/fixtures/w3c/namespaces/1.0/043.xml +7 -0
- data/spec/fixtures/w3c/namespaces/1.0/044.xml +7 -0
- data/spec/fixtures/w3c/namespaces/1.0/045.xml +7 -0
- data/spec/fixtures/w3c/namespaces/1.0/046.xml +10 -0
- data/spec/fixtures/w3c/namespaces/1.0/047.xml +4 -0
- data/spec/fixtures/w3c/namespaces/1.0/048.xml +5 -0
- data/spec/fixtures/w3c/namespaces/1.0/LICENSE.md +32 -0
- data/spec/fixtures/w3c/namespaces/1.0/README.adoc +42 -0
- data/spec/fixtures/w3c/namespaces/1.0/rmt-ns10.xml +156 -0
- data/spec/integration/shared_examples/node_wrappers/namespace_behavior.rb +14 -2
- data/spec/integration/shared_examples/w3c_namespace_examples.rb +10 -0
- data/spec/integration/w3c_namespace_spec.rb +69 -0
- data/spec/moxml/adapter/libxml_spec.rb +7 -1
- data/spec/moxml/adapter/oga_spec.rb +92 -0
- data/spec/moxml/config_spec.rb +75 -0
- data/spec/moxml/doctype_spec.rb +19 -3
- data/spec/moxml/entity_registry_spec.rb +184 -0
- data/spec/moxml/error_spec.rb +2 -2
- data/spec/moxml/namespace_uri_validation_spec.rb +140 -0
- data/spec/moxml/xpath/axes_spec.rb +3 -4
- data/spec/performance/xpath_benchmark_spec.rb +6 -54
- data/spec/support/w3c_namespace_helpers.rb +41 -0
- data/spec/unit/rexml_isolated_test.rb +271 -0
- metadata +99 -3
- data/.ruby-version +0 -1
|
@@ -0,0 +1,1776 @@
|
|
|
1
|
+
<metanorma-collection>
|
|
2
|
+
<bibdata type="collection">
|
|
3
|
+
<title type="title-main" format="text/plain" language="en">ISO Collection 1</title>
|
|
4
|
+
<docidentifier type="iso" primary="true">ISO 12345</docidentifier>
|
|
5
|
+
<date type="created">
|
|
6
|
+
<on>2020-01-01</on>
|
|
7
|
+
</date>
|
|
8
|
+
<date type="issued">
|
|
9
|
+
<on>2020-01-01</on>
|
|
10
|
+
</date>
|
|
11
|
+
<edition>1</edition>
|
|
12
|
+
<copyright>
|
|
13
|
+
<from>2020</from>
|
|
14
|
+
<owner>
|
|
15
|
+
<organization>
|
|
16
|
+
<name>International Organization for Standardization</name>
|
|
17
|
+
<abbreviation>ISO</abbreviation>
|
|
18
|
+
</organization>
|
|
19
|
+
</owner>
|
|
20
|
+
</copyright>
|
|
21
|
+
</bibdata>
|
|
22
|
+
<directive>
|
|
23
|
+
<key>documents-external</key>
|
|
24
|
+
</directive>
|
|
25
|
+
<directive>
|
|
26
|
+
<key>coverpage</key>
|
|
27
|
+
<value>collection_cover.html</value>
|
|
28
|
+
</directive>
|
|
29
|
+
<directive>
|
|
30
|
+
<key>coverpage-pdf-portfolio</key>
|
|
31
|
+
<value>../collection/cover.pdf</value>
|
|
32
|
+
</directive>
|
|
33
|
+
<directive>
|
|
34
|
+
<key>documents-inline</key>
|
|
35
|
+
</directive>
|
|
36
|
+
<entry index="true">
|
|
37
|
+
<identifier>_</identifier>
|
|
38
|
+
<type>collection</type>
|
|
39
|
+
<title>ISO Collection</title>
|
|
40
|
+
<entry index="true">
|
|
41
|
+
<identifier>_</identifier>
|
|
42
|
+
<type>subcollection</type>
|
|
43
|
+
<title>Standards</title>
|
|
44
|
+
<format>xml</format>
|
|
45
|
+
<format>presentation</format>
|
|
46
|
+
<format>html</format>
|
|
47
|
+
<entry target="doc000000000" index="true" fileref="rice-en.final.xml" pdf-file="rice17301.pdf">
|
|
48
|
+
<identifier>ISO 17301-1:2016</identifier>
|
|
49
|
+
<format>xml</format>
|
|
50
|
+
<format>presentation</format>
|
|
51
|
+
<format>html</format>
|
|
52
|
+
<bibdata type="standard">
|
|
53
|
+
<title type="main" format="text/plain" language="en">Cereals and pulses — Specifications and test methods — Rice (Final)</title>
|
|
54
|
+
<title type="title-intro" format="text/plain" language="en">Cereals and pulses</title>
|
|
55
|
+
<title type="title-main" format="text/plain" language="en">Specifications and test methods</title>
|
|
56
|
+
<title type="title-part" format="text/plain" language="en">Rice (Final)</title>
|
|
57
|
+
<title type="main" format="text/plain" language="fr">Céréales et légumineuses — Spécification et méthodes d’essai — Riz (Final)</title>
|
|
58
|
+
<title type="title-intro" format="text/plain" language="fr">Céréales et légumineuses</title>
|
|
59
|
+
<title type="title-main" format="text/plain" language="fr">Spécification et méthodes d’essai</title>
|
|
60
|
+
<title type="title-part" format="text/plain" language="fr">Riz (Final)</title>
|
|
61
|
+
<docidentifier type="ISO" primary="true">ISO 17301-1:2016</docidentifier>
|
|
62
|
+
<docidentifier type="iso-with-lang">ISO 17301-1:2016(E)</docidentifier>
|
|
63
|
+
<docidentifier type="iso-reference">ISO 17301-1:2016(E)</docidentifier>
|
|
64
|
+
<docidentifier type="iso-tc">17301</docidentifier>
|
|
65
|
+
<docnumber>17301</docnumber>
|
|
66
|
+
<contributor>
|
|
67
|
+
<role type="author"/>
|
|
68
|
+
<organization>
|
|
69
|
+
<name>International Organization for Standardization</name>
|
|
70
|
+
<abbreviation>ISO</abbreviation>
|
|
71
|
+
</organization>
|
|
72
|
+
</contributor>
|
|
73
|
+
<contributor>
|
|
74
|
+
<role type="publisher"/>
|
|
75
|
+
<organization>
|
|
76
|
+
<name>International Organization for Standardization</name>
|
|
77
|
+
<abbreviation>ISO</abbreviation>
|
|
78
|
+
</organization>
|
|
79
|
+
</contributor>
|
|
80
|
+
<edition>2</edition>
|
|
81
|
+
<version>
|
|
82
|
+
<revision-date>2016-05-01</revision-date>
|
|
83
|
+
</version>
|
|
84
|
+
<language>en</language>
|
|
85
|
+
<script>Latn</script>
|
|
86
|
+
<status>
|
|
87
|
+
<stage abbreviation="IS">60</stage>
|
|
88
|
+
<substage>60</substage>
|
|
89
|
+
</status>
|
|
90
|
+
<copyright>
|
|
91
|
+
<from>2016</from>
|
|
92
|
+
<owner>
|
|
93
|
+
<organization>
|
|
94
|
+
<name>International Organization for Standardization</name>
|
|
95
|
+
<abbreviation>ISO</abbreviation>
|
|
96
|
+
</organization>
|
|
97
|
+
</owner>
|
|
98
|
+
</copyright>
|
|
99
|
+
<ext>
|
|
100
|
+
<doctype>international-standard</doctype>
|
|
101
|
+
<ics>
|
|
102
|
+
<code>67.060</code>
|
|
103
|
+
</ics>
|
|
104
|
+
<structuredidentifier>
|
|
105
|
+
<project-number part="1">ISO 17301</project-number>
|
|
106
|
+
</structuredidentifier>
|
|
107
|
+
<stagename>International standard</stagename>
|
|
108
|
+
</ext>
|
|
109
|
+
</bibdata>
|
|
110
|
+
</entry>
|
|
111
|
+
<entry target="doc000000001" index="true" url="example/url" fileref="dummy.xml">
|
|
112
|
+
<identifier>ISO 17302:2016</identifier>
|
|
113
|
+
<format>xml</format>
|
|
114
|
+
<format>presentation</format>
|
|
115
|
+
<format>html</format>
|
|
116
|
+
<bibdata type="standard">
|
|
117
|
+
<title type="main" format="text/plain" language="en">Dummy document</title>
|
|
118
|
+
<title type="title-main" format="text/plain" language="en">Dummy document</title>
|
|
119
|
+
<title type="main" format="text/plain" language="fr">Dummy document</title>
|
|
120
|
+
<title type="title-main" format="text/plain" language="fr">Dummy document</title>
|
|
121
|
+
<docidentifier type="ISO" primary="true">ISO 17302:2016</docidentifier>
|
|
122
|
+
<docidentifier type="iso-with-lang">ISO 17302:2016(E)</docidentifier>
|
|
123
|
+
<docidentifier type="iso-reference">ISO 17302:2016(E)</docidentifier>
|
|
124
|
+
<docnumber>17302</docnumber>
|
|
125
|
+
<contributor>
|
|
126
|
+
<role type="author"/>
|
|
127
|
+
<organization>
|
|
128
|
+
<name>International Organization for Standardization</name>
|
|
129
|
+
<abbreviation>ISO</abbreviation>
|
|
130
|
+
</organization>
|
|
131
|
+
</contributor>
|
|
132
|
+
<contributor>
|
|
133
|
+
<role type="publisher"/>
|
|
134
|
+
<organization>
|
|
135
|
+
<name>International Organization for Standardization</name>
|
|
136
|
+
<abbreviation>ISO</abbreviation>
|
|
137
|
+
</organization>
|
|
138
|
+
</contributor>
|
|
139
|
+
<language>en</language>
|
|
140
|
+
<script>Latn</script>
|
|
141
|
+
<status>
|
|
142
|
+
<stage abbreviation="IS">60</stage>
|
|
143
|
+
<substage>60</substage>
|
|
144
|
+
</status>
|
|
145
|
+
<copyright>
|
|
146
|
+
<from>2016</from>
|
|
147
|
+
<owner>
|
|
148
|
+
<organization>
|
|
149
|
+
<name>International Organization for Standardization</name>
|
|
150
|
+
<abbreviation>ISO</abbreviation>
|
|
151
|
+
</organization>
|
|
152
|
+
</owner>
|
|
153
|
+
</copyright>
|
|
154
|
+
<ext>
|
|
155
|
+
<doctype>international-standard</doctype>
|
|
156
|
+
<ics>
|
|
157
|
+
<code>67.060</code>
|
|
158
|
+
</ics>
|
|
159
|
+
<structuredidentifier>
|
|
160
|
+
<project-number>ISO 17302</project-number>
|
|
161
|
+
</structuredidentifier>
|
|
162
|
+
<stagename>International standard</stagename>
|
|
163
|
+
</ext>
|
|
164
|
+
</bibdata>
|
|
165
|
+
</entry>
|
|
166
|
+
<entry target="doc000000002" index="true" fileref="rice1-en.final.xml">
|
|
167
|
+
<identifier>ISO 1701:1974</identifier>
|
|
168
|
+
<format>xml</format>
|
|
169
|
+
<format>presentation</format>
|
|
170
|
+
<format>html</format>
|
|
171
|
+
<bibdata type="standard">
|
|
172
|
+
<title type="main" format="text/plain" language="en">Test conditions for milling machines with table of variable height, with horizontal or vertical spindle</title>
|
|
173
|
+
<title type="title-main" format="text/plain" language="en">Test conditions for milling machines with table of variable height, with horizontal or vertical spindle</title>
|
|
174
|
+
<title type="main" format="text/plain" language="fr">Conditions d’essais des machines à fraiser à table de hauteur variable, à broche horizontale ou verticale</title>
|
|
175
|
+
<title type="title-main" format="text/plain" language="fr">Conditions d’essais des machines à fraiser à table de hauteur variable, à broche horizontale ou verticale</title>
|
|
176
|
+
<docidentifier type="ISO" primary="true">ISO 1701:1974</docidentifier>
|
|
177
|
+
<docidentifier type="iso-with-lang">ISO 1701:1974(E)</docidentifier>
|
|
178
|
+
<docidentifier type="iso-reference">ISO 1701:1974(E)</docidentifier>
|
|
179
|
+
<docnumber>1701</docnumber>
|
|
180
|
+
<contributor>
|
|
181
|
+
<role type="author"/>
|
|
182
|
+
<organization>
|
|
183
|
+
<name>International Organization for Standardization</name>
|
|
184
|
+
<abbreviation>ISO</abbreviation>
|
|
185
|
+
</organization>
|
|
186
|
+
</contributor>
|
|
187
|
+
<contributor>
|
|
188
|
+
<role type="publisher"/>
|
|
189
|
+
<organization>
|
|
190
|
+
<name>International Organization for Standardization</name>
|
|
191
|
+
<abbreviation>ISO</abbreviation>
|
|
192
|
+
</organization>
|
|
193
|
+
</contributor>
|
|
194
|
+
<edition>1</edition>
|
|
195
|
+
<version>
|
|
196
|
+
<revision-date>2016-05-01</revision-date>
|
|
197
|
+
</version>
|
|
198
|
+
<language>en</language>
|
|
199
|
+
<script>Latn</script>
|
|
200
|
+
<status>
|
|
201
|
+
<stage abbreviation="IS">60</stage>
|
|
202
|
+
<substage>60</substage>
|
|
203
|
+
</status>
|
|
204
|
+
<copyright>
|
|
205
|
+
<from>1974</from>
|
|
206
|
+
<owner>
|
|
207
|
+
<organization>
|
|
208
|
+
<name>International Organization for Standardization</name>
|
|
209
|
+
<abbreviation>ISO</abbreviation>
|
|
210
|
+
</organization>
|
|
211
|
+
</owner>
|
|
212
|
+
</copyright>
|
|
213
|
+
<ext>
|
|
214
|
+
<doctype>international-standard</doctype>
|
|
215
|
+
<ics>
|
|
216
|
+
<code>67.060</code>
|
|
217
|
+
</ics>
|
|
218
|
+
<structuredidentifier>
|
|
219
|
+
<project-number>ISO 1701</project-number>
|
|
220
|
+
</structuredidentifier>
|
|
221
|
+
<stagename>International standard</stagename>
|
|
222
|
+
</ext>
|
|
223
|
+
</bibdata>
|
|
224
|
+
</entry>
|
|
225
|
+
</entry>
|
|
226
|
+
<entry index="true">
|
|
227
|
+
<identifier>_</identifier>
|
|
228
|
+
<type>subcollection</type>
|
|
229
|
+
<title>Amendments</title>
|
|
230
|
+
<format>xml</format>
|
|
231
|
+
<format>presentation</format>
|
|
232
|
+
<format>html</format>
|
|
233
|
+
<entry target="doc000000003" index="true" fileref="rice-amd.final.xml">
|
|
234
|
+
<identifier>ISO 17301-1:2016/Amd.1:2017</identifier>
|
|
235
|
+
<format>xml</format>
|
|
236
|
+
<format>presentation</format>
|
|
237
|
+
<format>html</format>
|
|
238
|
+
<bibdata type="standard">
|
|
239
|
+
<title type="main" format="text/plain" language="en">Specification and test methods — Rice — Mass fraction of extraneous matter, milled rice (nonglutinous), sample dividers and recommendations relating to storage and transport conditions</title>
|
|
240
|
+
<title type="title-main" format="text/plain" language="en">Specification and test methods</title>
|
|
241
|
+
<title type="title-part" format="text/plain" language="en">Rice</title>
|
|
242
|
+
<title type="title-amd" format="text/plain" language="en">Mass fraction of extraneous matter, milled rice (nonglutinous), sample dividers and recommendations relating to storage and transport conditions</title>
|
|
243
|
+
<title type="main" format="text/plain" language="fr">Spécification et méthodes d’essai — Riz — Fraction massique de matière étrangère, riz usiné (non gluant), diviseurs d’échantillon et recommandations relatives aux conditions d’entreposage et de transport</title>
|
|
244
|
+
<title type="title-main" format="text/plain" language="fr">Spécification et méthodes d’essai</title>
|
|
245
|
+
<title type="title-part" format="text/plain" language="fr">Riz</title>
|
|
246
|
+
<title type="title-amd" format="text/plain" language="fr">Fraction massique de matière étrangère, riz usiné (non gluant), diviseurs d’échantillon et recommandations relatives aux conditions d’entreposage et de transport</title>
|
|
247
|
+
<docidentifier type="ISO" primary="true">ISO 17301-1:2016/Amd.1:2017</docidentifier>
|
|
248
|
+
<docidentifier type="iso-with-lang">ISO 17301-1:2016/Amd.1:2017(E)</docidentifier>
|
|
249
|
+
<docidentifier type="iso-reference">ISO 17301-1:2016/Amd.1:2017(E)</docidentifier>
|
|
250
|
+
<docnumber>17301</docnumber>
|
|
251
|
+
<date type="created">
|
|
252
|
+
<on>2016-05-01</on>
|
|
253
|
+
</date>
|
|
254
|
+
<date type="updated">
|
|
255
|
+
<on>2017-02-01</on>
|
|
256
|
+
</date>
|
|
257
|
+
<contributor>
|
|
258
|
+
<role type="author"/>
|
|
259
|
+
<organization>
|
|
260
|
+
<name>International Organization for Standardization</name>
|
|
261
|
+
<abbreviation>ISO</abbreviation>
|
|
262
|
+
</organization>
|
|
263
|
+
</contributor>
|
|
264
|
+
<contributor>
|
|
265
|
+
<role type="publisher"/>
|
|
266
|
+
<organization>
|
|
267
|
+
<name>International Organization for Standardization</name>
|
|
268
|
+
<abbreviation>ISO</abbreviation>
|
|
269
|
+
</organization>
|
|
270
|
+
</contributor>
|
|
271
|
+
<edition>2</edition>
|
|
272
|
+
<version/>
|
|
273
|
+
<language>en</language>
|
|
274
|
+
<script>Latn</script>
|
|
275
|
+
<status>
|
|
276
|
+
<stage abbreviation="IS">60</stage>
|
|
277
|
+
<substage>60</substage>
|
|
278
|
+
</status>
|
|
279
|
+
<copyright>
|
|
280
|
+
<from>2017</from>
|
|
281
|
+
<owner>
|
|
282
|
+
<organization>
|
|
283
|
+
<name>International Organization for Standardization</name>
|
|
284
|
+
<abbreviation>ISO</abbreviation>
|
|
285
|
+
</organization>
|
|
286
|
+
</owner>
|
|
287
|
+
</copyright>
|
|
288
|
+
<ext>
|
|
289
|
+
<doctype>amendment</doctype>
|
|
290
|
+
<ics>
|
|
291
|
+
<code>67.060</code>
|
|
292
|
+
</ics>
|
|
293
|
+
<structuredidentifier>
|
|
294
|
+
<project-number part="1">17301</project-number>
|
|
295
|
+
</structuredidentifier>
|
|
296
|
+
<stagename>International standard</stagename>
|
|
297
|
+
</ext>
|
|
298
|
+
</bibdata>
|
|
299
|
+
</entry>
|
|
300
|
+
</entry>
|
|
301
|
+
<entry index="true">
|
|
302
|
+
<identifier>_</identifier>
|
|
303
|
+
<type>attachments</type>
|
|
304
|
+
<title>Attachments</title>
|
|
305
|
+
<format>xml</format>
|
|
306
|
+
<format>presentation</format>
|
|
307
|
+
<format>html</format>
|
|
308
|
+
<entry target="doc000000004" attachment="true" index="true" fileref="pics/action_schemaexpg1.svg">
|
|
309
|
+
<identifier>action_schemaexpg1.svg</identifier>
|
|
310
|
+
</entry>
|
|
311
|
+
<entry target="doc000000005" attachment="true" index="true" fileref="../../assets/rice_image1.png">
|
|
312
|
+
<identifier>rice_image1.png</identifier>
|
|
313
|
+
</entry>
|
|
314
|
+
</entry>
|
|
315
|
+
</entry>
|
|
316
|
+
<format>html</format>
|
|
317
|
+
<coverpage>cover.html</coverpage>
|
|
318
|
+
<prefatory-content>
|
|
319
|
+
<clause id="_" inline-header="false" obligation="normative" unnumbered="true" displayorder="3">
|
|
320
|
+
<title id="_">Clause</title>
|
|
321
|
+
<fmt-title depth="1" id="_">
|
|
322
|
+
<semx element="title" source="_">Clause</semx>
|
|
323
|
+
</fmt-title>
|
|
324
|
+
<p id="">Welcome to our collection</p>
|
|
325
|
+
</clause>
|
|
326
|
+
</prefatory-content>
|
|
327
|
+
<doc-container id="doc000000000">
|
|
328
|
+
<metanorma xmlns="https://www.metanorma.org/ns/standoc" document_suffix="ISO_17301-1_2016" flavor="iso">
|
|
329
|
+
<bibdata type="standard">
|
|
330
|
+
<title language="en" format="text/plain" type="main">Cereals and pulses — Specifications and test methods — Rice (Final)</title>
|
|
331
|
+
<title language="en" format="text/plain" type="title-intro">Cereals and pulses</title>
|
|
332
|
+
<title language="en" format="text/plain" type="title-main">Specifications and test methods</title>
|
|
333
|
+
<title language="en" format="text/plain" type="title-part">Rice (Final)</title>
|
|
334
|
+
<title language="fr" format="text/plain" type="main">Céréales et légumineuses — Spécification et méthodes d’essai — Riz (Final)</title>
|
|
335
|
+
<title language="fr" format="text/plain" type="title-intro">Céréales et légumineuses</title>
|
|
336
|
+
<title language="fr" format="text/plain" type="title-main">Spécification et méthodes d’essai</title>
|
|
337
|
+
<title language="fr" format="text/plain" type="title-part">Riz (Final)</title>
|
|
338
|
+
<docidentifier primary="true" type="ISO">ISO 17301-1:2016</docidentifier>
|
|
339
|
+
<docidentifier type="iso-with-lang">ISO 17301-1:2016(E)</docidentifier>
|
|
340
|
+
<docidentifier type="iso-reference">ISO 17301-1:2016(E)</docidentifier>
|
|
341
|
+
<docidentifier type="iso-tc">17301</docidentifier>
|
|
342
|
+
<docnumber>17301</docnumber>
|
|
343
|
+
<contributor>
|
|
344
|
+
<role type="author"/>
|
|
345
|
+
<organization>
|
|
346
|
+
<name>International Organization for Standardization</name>
|
|
347
|
+
<abbreviation>ISO</abbreviation>
|
|
348
|
+
</organization>
|
|
349
|
+
</contributor>
|
|
350
|
+
<contributor>
|
|
351
|
+
<role type="publisher"/>
|
|
352
|
+
<organization>
|
|
353
|
+
<name>International Organization for Standardization</name>
|
|
354
|
+
<abbreviation>ISO</abbreviation>
|
|
355
|
+
</organization>
|
|
356
|
+
</contributor>
|
|
357
|
+
<edition>2</edition>
|
|
358
|
+
<version>
|
|
359
|
+
<revision-date>2016-05-01</revision-date>
|
|
360
|
+
</version>
|
|
361
|
+
<language>en</language>
|
|
362
|
+
<script>Latn</script>
|
|
363
|
+
<status>
|
|
364
|
+
<stage abbreviation="IS">60</stage>
|
|
365
|
+
<substage>60</substage>
|
|
366
|
+
</status>
|
|
367
|
+
<copyright>
|
|
368
|
+
<from>2016</from>
|
|
369
|
+
<owner>
|
|
370
|
+
<organization>
|
|
371
|
+
<name>International Organization for Standardization</name>
|
|
372
|
+
<abbreviation>ISO</abbreviation>
|
|
373
|
+
</organization>
|
|
374
|
+
</owner>
|
|
375
|
+
</copyright>
|
|
376
|
+
<ext>
|
|
377
|
+
<doctype>international-standard</doctype>
|
|
378
|
+
<ics>
|
|
379
|
+
<code>67.060</code>
|
|
380
|
+
</ics>
|
|
381
|
+
<structuredidentifier>
|
|
382
|
+
<project-number part="1">ISO 17301</project-number>
|
|
383
|
+
</structuredidentifier>
|
|
384
|
+
<stagename>International standard</stagename>
|
|
385
|
+
</ext>
|
|
386
|
+
</bibdata>
|
|
387
|
+
<boilerplate>
|
|
388
|
+
<copyright-statement>
|
|
389
|
+
<clause>
|
|
390
|
+
<p id="">
|
|
391
|
+
© ISO 2016
|
|
392
|
+
</p>
|
|
393
|
+
<p id="">
|
|
394
|
+
All rights
|
|
395
|
+
reserved. Unless otherwise specified, no part of this publication may be
|
|
396
|
+
reproduced or utilized otherwise in any form or by any means, electronic or
|
|
397
|
+
mechanical, including photocopying, or posting on the internet or an intranet,
|
|
398
|
+
without prior written permission. Permission can be requested from either ISO
|
|
399
|
+
at the address below or ISO’s member body in the country of the requester.
|
|
400
|
+
</p>
|
|
401
|
+
<p id="" align="left">
|
|
402
|
+
ISO copyright office
|
|
403
|
+
<br/>
|
|
404
|
+
Ch. de Blandonnet 8 • CP 401
|
|
405
|
+
<br/>
|
|
406
|
+
CH-1214 Vernier, Geneva, Switzerland
|
|
407
|
+
<br/>
|
|
408
|
+
Tel. + 41 22 749 01 11
|
|
409
|
+
<br/>
|
|
410
|
+
Fax + 41 22 749 09 47
|
|
411
|
+
<br/>
|
|
412
|
+
Email: copyright@iso.org
|
|
413
|
+
<br/>
|
|
414
|
+
Website: www.iso.org
|
|
415
|
+
</p>
|
|
416
|
+
<p id="">
|
|
417
|
+
Published in Switzerland
|
|
418
|
+
</p>
|
|
419
|
+
</clause>
|
|
420
|
+
</copyright-statement>
|
|
421
|
+
</boilerplate>
|
|
422
|
+
<sections>
|
|
423
|
+
<clause id="_scope_ISO_17301-1_2016" obligation="normative">
|
|
424
|
+
<title>Scope</title>
|
|
425
|
+
<p id="">
|
|
426
|
+
This document specifies minimum requirements and test methods for rice (
|
|
427
|
+
<em>Oryza sativa L.</em>
|
|
428
|
+
).
|
|
429
|
+
</p>
|
|
430
|
+
<p id="">It is applicable to husked rice, husked parboiled rice, milled rice and milled parboiled rice, suitable for human consumption, directly or after reconditioning.</p>
|
|
431
|
+
<p id="">
|
|
432
|
+
It is not applicable to cooked rice products, which are not discussed in
|
|
433
|
+
<xref target="anotherclause_ISO_17301-1_2016"/>
|
|
434
|
+
or
|
|
435
|
+
<xref target="thirdclause_ISO_17301-1_2016"/>
|
|
436
|
+
.
|
|
437
|
+
</p>
|
|
438
|
+
<p id="">
|
|
439
|
+
This document is updated in
|
|
440
|
+
<eref type="inline" bibitemid="RiceAmd_ISO_17301-1_2016" citeas="ISO 17301-1:2016/Amd.1:2017"/>
|
|
441
|
+
.
|
|
442
|
+
</p>
|
|
443
|
+
<p id="">
|
|
444
|
+
This document is unrelated
|
|
445
|
+
<eref type="inline" bibitemid="StarTrek_ISO_17301-1_2016" citeas="ISO 1701:1974"/>
|
|
446
|
+
, see e.g.
|
|
447
|
+
<eref type="inline" bibitemid="StarTrek_ISO_17301-1_2016" citeas="ISO 1701:1974">
|
|
448
|
+
<localityStack>
|
|
449
|
+
<locality type="clause">
|
|
450
|
+
<referenceFrom>1</referenceFrom>
|
|
451
|
+
</locality>
|
|
452
|
+
<locality type="anchor">
|
|
453
|
+
<referenceFrom>_scope_ISO_1701_1974</referenceFrom>
|
|
454
|
+
</locality>
|
|
455
|
+
</localityStack>
|
|
456
|
+
</eref>
|
|
457
|
+
.
|
|
458
|
+
</p>
|
|
459
|
+
<p id="">
|
|
460
|
+
This document is also unrelated to
|
|
461
|
+
<eref type="inline" bibitemid="Dummy_ISO_17301-1_2016" citeas="ISO 17302:2016">
|
|
462
|
+
<localityStack>
|
|
463
|
+
<locality type="anchor">
|
|
464
|
+
<referenceFrom>what</referenceFrom>
|
|
465
|
+
</locality>
|
|
466
|
+
</localityStack>
|
|
467
|
+
</eref>
|
|
468
|
+
.
|
|
469
|
+
</p>
|
|
470
|
+
<p id="">
|
|
471
|
+
This document uses schemas E0/A0,
|
|
472
|
+
<eref bibitemid="express-schema_E1_ISO_17301-1_2016" citeas="ISO 17302:2016">
|
|
473
|
+
<locality type="anchor">
|
|
474
|
+
<referenceFrom>A1</referenceFrom>
|
|
475
|
+
</locality>
|
|
476
|
+
E1/A1
|
|
477
|
+
</eref>
|
|
478
|
+
and
|
|
479
|
+
<eref bibitemid="express-schema_E2_ISO_17301-1_2016" citeas="ISO 17302:2016">
|
|
480
|
+
E2
|
|
481
|
+
<localityStack>
|
|
482
|
+
<locality type="anchor">
|
|
483
|
+
<referenceFrom>E2</referenceFrom>
|
|
484
|
+
</locality>
|
|
485
|
+
</localityStack>
|
|
486
|
+
</eref>
|
|
487
|
+
as well as <xref target="express-schema_E0_ISO_17301-1_2016"/>.
|
|
488
|
+
</p>
|
|
489
|
+
<figure id="fig1_ISO_17301-1_2016">
|
|
490
|
+
<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">
|
|
491
|
+
<style type="text/css">
|
|
492
|
+
.st0{fill:none;stroke:#000000;stroke-miterlimit:10;}
|
|
493
|
+
</style>
|
|
494
|
+
<image style="overflow:visible;" width="368" height="315" xlink:href='data:image/gif;base64,_' transform="matrix(1 0 0 1 114 263.8898)">
|
|
495
|
+
</image>
|
|
496
|
+
<a xlink:href="mn://action_schema">
|
|
497
|
+
<rect x="123.28" y="273.93" class="st0" width="88.05" height="41.84"/>
|
|
498
|
+
</a>
|
|
499
|
+
<a xlink:href="example/url.html#A1">
|
|
500
|
+
<rect x="324.69" y="450.52" class="st0" width="132.62" height="40.75"/>
|
|
501
|
+
</a>
|
|
502
|
+
<a xlink:href="example/url.html#A2">
|
|
503
|
+
<rect x="324.69" y="528.36" class="st0" width="148.16" height="40.75"/>
|
|
504
|
+
</a>
|
|
505
|
+
</svg>
|
|
506
|
+
</figure>
|
|
507
|
+
<p>
|
|
508
|
+
You can also download the svg image at:
|
|
509
|
+
<eref type="inline" bibitemid="action_schemaexpg1.svg_ISO_17301-1_2016" citeas="action_schemaexpg1.svg"/>
|
|
510
|
+
. See
|
|
511
|
+
<xref target="_scope_ISO_17301-1_2016"/>
|
|
512
|
+
and
|
|
513
|
+
<strong style="background: url(#svg1_ISO_17301-1_2016); foreground: url(_001); middleground: url(#fig1_ISO_17301-1_2016);">scope</strong>
|
|
514
|
+
</p>
|
|
515
|
+
</clause>
|
|
516
|
+
<clause id="anotherclause_ISO_17301-1_2016" type="express">
|
|
517
|
+
<title>This is another clause</title>
|
|
518
|
+
<p>
|
|
519
|
+
<eref bibitemid="Nowhere_ISO_17301-1_2016"/>
|
|
520
|
+
Direct links nowhere
|
|
521
|
+
</p>
|
|
522
|
+
<p>
|
|
523
|
+
<eref bibitemid="express-schema_E2_ISO_17301-1_2016" citeas="ISO 17302:2016">
|
|
524
|
+
E2
|
|
525
|
+
<localityStack>
|
|
526
|
+
<locality type="anchor">
|
|
527
|
+
<referenceFrom>E2</referenceFrom>
|
|
528
|
+
</locality>
|
|
529
|
+
</localityStack>
|
|
530
|
+
</eref>
|
|
531
|
+
Indirect links nowhere
|
|
532
|
+
</p>
|
|
533
|
+
</clause>
|
|
534
|
+
<clause id="thirdclause_ISO_17301-1_2016">
|
|
535
|
+
<title>This is another clause</title>
|
|
536
|
+
</clause>
|
|
537
|
+
</sections>
|
|
538
|
+
<bibliography>
|
|
539
|
+
<references id="_normative_references_ISO_17301-1_2016" normative="true" obligation="informative" hidden="true">
|
|
540
|
+
<title>Normative References</title>
|
|
541
|
+
<p id="">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>
|
|
542
|
+
<bibitem type="standard" hidden="true" id="RiceAmd_ISO_17301-1_2016">
|
|
543
|
+
<title language="en" format="text/plain" type="main">Specification and test methods — Rice — Mass fraction of extraneous matter, milled rice (nonglutinous), sample dividers and recommendations relating to storage and transport conditions</title>
|
|
544
|
+
<title language="en" format="text/plain" type="title-main">Specification and test methods</title>
|
|
545
|
+
<title language="en" format="text/plain" type="title-part">Rice</title>
|
|
546
|
+
<title language="en" format="text/plain" type="title-amd">Mass fraction of extraneous matter, milled rice (nonglutinous), sample dividers and recommendations relating to storage and transport conditions</title>
|
|
547
|
+
<title language="fr" format="text/plain" type="main">Spécification et méthodes d’essai — Riz — Fraction massique de matière étrangère, riz usiné (non gluant), diviseurs d’échantillon et recommandations relatives aux conditions d’entreposage et de transport</title>
|
|
548
|
+
<title language="fr" format="text/plain" type="title-main">Spécification et méthodes d’essai</title>
|
|
549
|
+
<title language="fr" format="text/plain" type="title-part">Riz</title>
|
|
550
|
+
<title language="fr" format="text/plain" type="title-amd">Fraction massique de matière étrangère, riz usiné (non gluant), diviseurs d’échantillon et recommandations relatives aux conditions d’entreposage et de transport</title>
|
|
551
|
+
<uri type="citation">rice-amd.final.html</uri>
|
|
552
|
+
<docidentifier primary="true" type="ISO">ISO 17301-1:2016/Amd.1:2017</docidentifier>
|
|
553
|
+
<docidentifier type="iso-with-lang">ISO 17301-1:2016/Amd.1:2017(E)</docidentifier>
|
|
554
|
+
<docidentifier type="iso-reference">ISO 17301-1:2016/Amd.1:2017(E)</docidentifier>
|
|
555
|
+
<docnumber>17301</docnumber>
|
|
556
|
+
<date type="created">
|
|
557
|
+
<on>2016-05-01</on>
|
|
558
|
+
</date>
|
|
559
|
+
<date type="updated">
|
|
560
|
+
<on>2017-02</on>
|
|
561
|
+
</date>
|
|
562
|
+
<contributor>
|
|
563
|
+
<role type="author"/>
|
|
564
|
+
<organization>
|
|
565
|
+
<name>International Organization for Standardization</name>
|
|
566
|
+
<abbreviation>ISO</abbreviation>
|
|
567
|
+
</organization>
|
|
568
|
+
</contributor>
|
|
569
|
+
<contributor>
|
|
570
|
+
<role type="publisher"/>
|
|
571
|
+
<organization>
|
|
572
|
+
<name>International Organization for Standardization</name>
|
|
573
|
+
<abbreviation>ISO</abbreviation>
|
|
574
|
+
</organization>
|
|
575
|
+
</contributor>
|
|
576
|
+
<edition>2</edition>
|
|
577
|
+
<version>
|
|
578
|
+
|
|
579
|
+
</version>
|
|
580
|
+
<language>en</language>
|
|
581
|
+
<script>Latn</script>
|
|
582
|
+
<status>
|
|
583
|
+
<stage abbreviation="IS">60</stage>
|
|
584
|
+
<substage>60</substage>
|
|
585
|
+
</status>
|
|
586
|
+
<copyright>
|
|
587
|
+
<from>2017</from>
|
|
588
|
+
<owner>
|
|
589
|
+
<organization>
|
|
590
|
+
<name>International Organization for Standardization</name>
|
|
591
|
+
<abbreviation>ISO</abbreviation>
|
|
592
|
+
</organization>
|
|
593
|
+
</owner>
|
|
594
|
+
</copyright>
|
|
595
|
+
</bibitem>
|
|
596
|
+
<bibitem type="standard" hidden="true" id="StarTrek_ISO_17301-1_2016">
|
|
597
|
+
<title language="en" format="text/plain" type="main">Test conditions for milling machines with table of variable height, with horizontal or vertical spindle</title>
|
|
598
|
+
<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>
|
|
599
|
+
<title language="fr" format="text/plain" type="main">Conditions d’essais des machines à fraiser à table de hauteur variable, à broche horizontale ou verticale</title>
|
|
600
|
+
<title language="fr" format="text/plain" type="title-main">Conditions d’essais des machines à fraiser à table de hauteur variable, à broche horizontale ou verticale</title>
|
|
601
|
+
<uri type="citation">rice1-en.final.html</uri>
|
|
602
|
+
<docidentifier primary="true" type="ISO">ISO 1701:1974</docidentifier>
|
|
603
|
+
<docidentifier type="iso-with-lang">ISO 1701:1974(E)</docidentifier>
|
|
604
|
+
<docidentifier type="iso-reference">ISO 1701:1974(E)</docidentifier>
|
|
605
|
+
<docnumber>1701</docnumber>
|
|
606
|
+
<contributor>
|
|
607
|
+
<role type="author"/>
|
|
608
|
+
<organization>
|
|
609
|
+
<name>International Organization for Standardization</name>
|
|
610
|
+
<abbreviation>ISO</abbreviation>
|
|
611
|
+
</organization>
|
|
612
|
+
</contributor>
|
|
613
|
+
<contributor>
|
|
614
|
+
<role type="publisher"/>
|
|
615
|
+
<organization>
|
|
616
|
+
<name>International Organization for Standardization</name>
|
|
617
|
+
<abbreviation>ISO</abbreviation>
|
|
618
|
+
</organization>
|
|
619
|
+
</contributor>
|
|
620
|
+
<edition>1</edition>
|
|
621
|
+
<version>
|
|
622
|
+
<revision-date>2016-05-01</revision-date>
|
|
623
|
+
</version>
|
|
624
|
+
<language>en</language>
|
|
625
|
+
<script>Latn</script>
|
|
626
|
+
<status>
|
|
627
|
+
<stage abbreviation="IS">60</stage>
|
|
628
|
+
<substage>60</substage>
|
|
629
|
+
</status>
|
|
630
|
+
<copyright>
|
|
631
|
+
<from>1974</from>
|
|
632
|
+
<owner>
|
|
633
|
+
<organization>
|
|
634
|
+
<name>International Organization for Standardization</name>
|
|
635
|
+
<abbreviation>ISO</abbreviation>
|
|
636
|
+
</organization>
|
|
637
|
+
</owner>
|
|
638
|
+
</copyright>
|
|
639
|
+
</bibitem>
|
|
640
|
+
</references>
|
|
641
|
+
<references id="_bibliography_ISO_17301-1_2016" normative="false" obligation="informative">
|
|
642
|
+
<title>Bibliography</title>
|
|
643
|
+
<bibitem type="standard" hidden="true" id="Dummy_ISO_17301-1_2016">
|
|
644
|
+
<title language="en" format="text/plain" type="main">Dummy document</title>
|
|
645
|
+
<title language="en" format="text/plain" type="title-main">Dummy document</title>
|
|
646
|
+
<title language="fr" format="text/plain" type="main">Dummy document</title>
|
|
647
|
+
<title language="fr" format="text/plain" type="title-main">Dummy document</title>
|
|
648
|
+
<uri type="citation">example/url</uri>
|
|
649
|
+
<docidentifier primary="true" type="ISO">ISO 17302:2016</docidentifier>
|
|
650
|
+
<docidentifier type="iso-with-lang">ISO 17302:2016(E)</docidentifier>
|
|
651
|
+
<docidentifier type="iso-reference">ISO 17302:2016(E)</docidentifier>
|
|
652
|
+
<docnumber>17302</docnumber>
|
|
653
|
+
<contributor>
|
|
654
|
+
<role type="author"/>
|
|
655
|
+
<organization>
|
|
656
|
+
<name>International Organization for Standardization</name>
|
|
657
|
+
<abbreviation>ISO</abbreviation>
|
|
658
|
+
</organization>
|
|
659
|
+
</contributor>
|
|
660
|
+
<contributor>
|
|
661
|
+
<role type="publisher"/>
|
|
662
|
+
<organization>
|
|
663
|
+
<name>International Organization for Standardization</name>
|
|
664
|
+
<abbreviation>ISO</abbreviation>
|
|
665
|
+
</organization>
|
|
666
|
+
</contributor>
|
|
667
|
+
<language>en</language>
|
|
668
|
+
<script>Latn</script>
|
|
669
|
+
<status>
|
|
670
|
+
<stage abbreviation="IS">60</stage>
|
|
671
|
+
<substage>60</substage>
|
|
672
|
+
</status>
|
|
673
|
+
<copyright>
|
|
674
|
+
<from>2016</from>
|
|
675
|
+
<owner>
|
|
676
|
+
<organization>
|
|
677
|
+
<name>International Organization for Standardization</name>
|
|
678
|
+
<abbreviation>ISO</abbreviation>
|
|
679
|
+
</organization>
|
|
680
|
+
</owner>
|
|
681
|
+
</copyright>
|
|
682
|
+
</bibitem>
|
|
683
|
+
<bibitem id="ISO712_ISO_17301-1_2016" type="standard">
|
|
684
|
+
<fetched>2025-08-18</fetched>
|
|
685
|
+
<title type="title-intro" format="text/plain" language="en" script="Latn">Cereals and cereal products</title>
|
|
686
|
+
<title type="title-main" format="text/plain" language="en" script="Latn">Determination of moisture content</title>
|
|
687
|
+
<title type="main" format="text/plain" language="en" script="Latn">Cereals and cereal products – Determination of moisture content</title>
|
|
688
|
+
<title type="title-intro" format="text/plain" language="fr" script="Latn">Céréales et produits céréaliers</title>
|
|
689
|
+
<title type="title-main" format="text/plain" language="fr" script="Latn">Détermination de la teneur en eau</title>
|
|
690
|
+
<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>
|
|
691
|
+
<uri type="src">https://www.iso.org/standard/44807.html</uri>
|
|
692
|
+
<uri type="obp">https://www.iso.org/obp/ui/#!iso:std:44807:en</uri>
|
|
693
|
+
<uri type="rss">https://www.iso.org/contents/data/standard/04/48/44807.detail.rss</uri>
|
|
694
|
+
<docidentifier type="ISO">ISO 712 (all parts)</docidentifier>
|
|
695
|
+
<docnumber>712</docnumber>
|
|
696
|
+
<date type="published">
|
|
697
|
+
<on>2009</on>
|
|
698
|
+
</date>
|
|
699
|
+
<contributor>
|
|
700
|
+
<role type="publisher"/>
|
|
701
|
+
<organization>
|
|
702
|
+
<name>International Organization for Standardization</name>
|
|
703
|
+
<abbreviation>ISO</abbreviation>
|
|
704
|
+
<uri>www.iso.org</uri>
|
|
705
|
+
</organization>
|
|
706
|
+
</contributor>
|
|
707
|
+
<edition>4</edition>
|
|
708
|
+
<language>en</language>
|
|
709
|
+
<language>fr</language>
|
|
710
|
+
<script>Latn</script>
|
|
711
|
+
<status>
|
|
712
|
+
<stage>90</stage>
|
|
713
|
+
<substage>93</substage>
|
|
714
|
+
</status>
|
|
715
|
+
<copyright>
|
|
716
|
+
<from>2009</from>
|
|
717
|
+
<owner>
|
|
718
|
+
<organization>
|
|
719
|
+
<name>ISO</name>
|
|
720
|
+
</organization>
|
|
721
|
+
</owner>
|
|
722
|
+
</copyright>
|
|
723
|
+
<relation type="obsoletes">
|
|
724
|
+
<bibitem type="standard">
|
|
725
|
+
<formattedref format="text/plain">ISO 712:1998</formattedref>
|
|
726
|
+
</bibitem>
|
|
727
|
+
</relation>
|
|
728
|
+
<relation type="instance">
|
|
729
|
+
<bibitem type="standard">
|
|
730
|
+
<fetched>2025-08-18</fetched>
|
|
731
|
+
<title type="title-intro" format="text/plain" language="en" script="Latn">Cereals and cereal products</title>
|
|
732
|
+
<title type="title-main" format="text/plain" language="en" script="Latn">Determination of moisture content</title>
|
|
733
|
+
<title type="title-part" format="text/plain" language="en" script="Latn">Reference method</title>
|
|
734
|
+
<title type="main" format="text/plain" language="en" script="Latn">Cereals and cereal products — Determination of moisture content — Reference method</title>
|
|
735
|
+
<title type="title-intro" format="text/plain" language="fr" script="Latn">Céréales et produits céréaliers</title>
|
|
736
|
+
<title type="title-main" format="text/plain" language="fr" script="Latn">Détermination de la teneur en eau</title>
|
|
737
|
+
<title type="title-part" format="text/plain" language="fr" script="Latn">Méthode de référence</title>
|
|
738
|
+
<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>
|
|
739
|
+
<uri type="src">https://www.iso.org/standard/44807.html</uri>
|
|
740
|
+
<uri type="obp">https://www.iso.org/obp/ui/#!iso:std:44807:en</uri>
|
|
741
|
+
<uri type="rss">https://www.iso.org/contents/data/standard/04/48/44807.detail.rss</uri>
|
|
742
|
+
<docidentifier type="ISO">ISO 712:2009</docidentifier>
|
|
743
|
+
<docnumber>712</docnumber>
|
|
744
|
+
<date type="published">
|
|
745
|
+
<on>2009</on>
|
|
746
|
+
</date>
|
|
747
|
+
<contributor>
|
|
748
|
+
<role type="publisher"/>
|
|
749
|
+
<organization>
|
|
750
|
+
<name>International Organization for Standardization</name>
|
|
751
|
+
<abbreviation>ISO</abbreviation>
|
|
752
|
+
<uri>www.iso.org</uri>
|
|
753
|
+
</organization>
|
|
754
|
+
</contributor>
|
|
755
|
+
<edition>4</edition>
|
|
756
|
+
<language>en</language>
|
|
757
|
+
<language>fr</language>
|
|
758
|
+
<script>Latn</script>
|
|
759
|
+
<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>
|
|
760
|
+
<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>
|
|
761
|
+
<status>
|
|
762
|
+
<stage>90</stage>
|
|
763
|
+
<substage>93</substage>
|
|
764
|
+
</status>
|
|
765
|
+
<copyright>
|
|
766
|
+
<from>2009</from>
|
|
767
|
+
<owner>
|
|
768
|
+
<organization>
|
|
769
|
+
<name>ISO</name>
|
|
770
|
+
</organization>
|
|
771
|
+
</owner>
|
|
772
|
+
</copyright>
|
|
773
|
+
<relation type="obsoletes">
|
|
774
|
+
<bibitem type="standard">
|
|
775
|
+
<formattedref format="text/plain">ISO 712:1998</formattedref>
|
|
776
|
+
</bibitem>
|
|
777
|
+
</relation>
|
|
778
|
+
<place>Geneva</place>
|
|
779
|
+
</bibitem>
|
|
780
|
+
</relation>
|
|
781
|
+
<relation type="instance">
|
|
782
|
+
<bibitem type="standard">
|
|
783
|
+
<formattedref format="text/plain">ISO 712:1998</formattedref>
|
|
784
|
+
</bibitem>
|
|
785
|
+
</relation>
|
|
786
|
+
<relation type="instance">
|
|
787
|
+
<bibitem type="standard">
|
|
788
|
+
<formattedref format="text/plain">ISO 712:1985</formattedref>
|
|
789
|
+
</bibitem>
|
|
790
|
+
</relation>
|
|
791
|
+
<relation type="instance">
|
|
792
|
+
<bibitem type="standard">
|
|
793
|
+
<formattedref format="text/plain">ISO 712:1979</formattedref>
|
|
794
|
+
</bibitem>
|
|
795
|
+
</relation>
|
|
796
|
+
<place>Geneva</place>
|
|
797
|
+
</bibitem>
|
|
798
|
+
<bibitem id="express-schema_E0_ISO_17301-1_2016" type="internal">
|
|
799
|
+
<docidentifier type="metanorma-collection">Missing:express-schema:E0</docidentifier>
|
|
800
|
+
<docidentifier type="repository">current-metanorma-collection/Missing:express-schema:E0</docidentifier>
|
|
801
|
+
</bibitem>
|
|
802
|
+
<bibitem type="standard" hidden="true" id="express-schema_E1_ISO_17301-1_2016">
|
|
803
|
+
<title language="en" format="text/plain" type="main">Dummy document</title>
|
|
804
|
+
<title language="en" format="text/plain" type="title-main">Dummy document</title>
|
|
805
|
+
<title language="fr" format="text/plain" type="main">Dummy document</title>
|
|
806
|
+
<title language="fr" format="text/plain" type="title-main">Dummy document</title>
|
|
807
|
+
<uri type="citation">example/url</uri>
|
|
808
|
+
<docidentifier primary="true" type="ISO">ISO 17302:2016</docidentifier>
|
|
809
|
+
<docidentifier type="iso-with-lang">ISO 17302:2016(E)</docidentifier>
|
|
810
|
+
<docidentifier type="iso-reference">ISO 17302:2016(E)</docidentifier>
|
|
811
|
+
<docnumber>17302</docnumber>
|
|
812
|
+
<contributor>
|
|
813
|
+
<role type="author"/>
|
|
814
|
+
<organization>
|
|
815
|
+
<name>International Organization for Standardization</name>
|
|
816
|
+
<abbreviation>ISO</abbreviation>
|
|
817
|
+
</organization>
|
|
818
|
+
</contributor>
|
|
819
|
+
<contributor>
|
|
820
|
+
<role type="publisher"/>
|
|
821
|
+
<organization>
|
|
822
|
+
<name>International Organization for Standardization</name>
|
|
823
|
+
<abbreviation>ISO</abbreviation>
|
|
824
|
+
</organization>
|
|
825
|
+
</contributor>
|
|
826
|
+
<language>en</language>
|
|
827
|
+
<script>Latn</script>
|
|
828
|
+
<status>
|
|
829
|
+
<stage abbreviation="IS">60</stage>
|
|
830
|
+
<substage>60</substage>
|
|
831
|
+
</status>
|
|
832
|
+
<copyright>
|
|
833
|
+
<from>2016</from>
|
|
834
|
+
<owner>
|
|
835
|
+
<organization>
|
|
836
|
+
<name>International Organization for Standardization</name>
|
|
837
|
+
<abbreviation>ISO</abbreviation>
|
|
838
|
+
</organization>
|
|
839
|
+
</owner>
|
|
840
|
+
</copyright>
|
|
841
|
+
</bibitem>
|
|
842
|
+
<bibitem type="standard" hidden="true" id="express-schema_E2_ISO_17301-1_2016">
|
|
843
|
+
<title language="en" format="text/plain" type="main">Dummy document</title>
|
|
844
|
+
<title language="en" format="text/plain" type="title-main">Dummy document</title>
|
|
845
|
+
<title language="fr" format="text/plain" type="main">Dummy document</title>
|
|
846
|
+
<title language="fr" format="text/plain" type="title-main">Dummy document</title>
|
|
847
|
+
<uri type="citation">example/url</uri>
|
|
848
|
+
<docidentifier primary="true" type="ISO">ISO 17302:2016</docidentifier>
|
|
849
|
+
<docidentifier type="iso-with-lang">ISO 17302:2016(E)</docidentifier>
|
|
850
|
+
<docidentifier type="iso-reference">ISO 17302:2016(E)</docidentifier>
|
|
851
|
+
<docnumber>17302</docnumber>
|
|
852
|
+
<contributor>
|
|
853
|
+
<role type="author"/>
|
|
854
|
+
<organization>
|
|
855
|
+
<name>International Organization for Standardization</name>
|
|
856
|
+
<abbreviation>ISO</abbreviation>
|
|
857
|
+
</organization>
|
|
858
|
+
</contributor>
|
|
859
|
+
<contributor>
|
|
860
|
+
<role type="publisher"/>
|
|
861
|
+
<organization>
|
|
862
|
+
<name>International Organization for Standardization</name>
|
|
863
|
+
<abbreviation>ISO</abbreviation>
|
|
864
|
+
</organization>
|
|
865
|
+
</contributor>
|
|
866
|
+
<language>en</language>
|
|
867
|
+
<script>Latn</script>
|
|
868
|
+
<status>
|
|
869
|
+
<stage abbreviation="IS">60</stage>
|
|
870
|
+
<substage>60</substage>
|
|
871
|
+
</status>
|
|
872
|
+
<copyright>
|
|
873
|
+
<from>2016</from>
|
|
874
|
+
<owner>
|
|
875
|
+
<organization>
|
|
876
|
+
<name>International Organization for Standardization</name>
|
|
877
|
+
<abbreviation>ISO</abbreviation>
|
|
878
|
+
</organization>
|
|
879
|
+
</owner>
|
|
880
|
+
</copyright>
|
|
881
|
+
</bibitem>
|
|
882
|
+
<bibitem hidden="true" id="action_schemaexpg1.svg_ISO_17301-1_2016">
|
|
883
|
+
<uri type="citation">pics/action_schemaexpg1.svg</uri>
|
|
884
|
+
<docidentifier>action_schemaexpg1.svg</docidentifier>
|
|
885
|
+
</bibitem>
|
|
886
|
+
</references>
|
|
887
|
+
<references hidden="true" normative="false"/>
|
|
888
|
+
</bibliography>
|
|
889
|
+
</metanorma>
|
|
890
|
+
</doc-container>
|
|
891
|
+
<doc-container id="doc000000001">
|
|
892
|
+
<metanorma xmlns="https://www.metanorma.org/ns/standoc" document_suffix="ISO_17302_2016" flavor="iso">
|
|
893
|
+
<bibdata type="standard">
|
|
894
|
+
<title language="en" format="text/plain" type="main">Dummy document</title>
|
|
895
|
+
<title language="en" format="text/plain" type="title-main">Dummy document</title>
|
|
896
|
+
<title language="fr" format="text/plain" type="main">Dummy document</title>
|
|
897
|
+
<title language="fr" format="text/plain" type="title-main">Dummy document</title>
|
|
898
|
+
<docidentifier primary="true" type="ISO">ISO 17302:2016</docidentifier>
|
|
899
|
+
<docidentifier type="iso-with-lang">ISO 17302:2016(E)</docidentifier>
|
|
900
|
+
<docidentifier type="iso-reference">ISO 17302:2016(E)</docidentifier>
|
|
901
|
+
<docnumber>17302</docnumber>
|
|
902
|
+
<contributor>
|
|
903
|
+
<role type="author"/>
|
|
904
|
+
<organization>
|
|
905
|
+
<name>International Organization for Standardization</name>
|
|
906
|
+
<abbreviation>ISO</abbreviation>
|
|
907
|
+
</organization>
|
|
908
|
+
</contributor>
|
|
909
|
+
<contributor>
|
|
910
|
+
<role type="publisher"/>
|
|
911
|
+
<organization>
|
|
912
|
+
<name>International Organization for Standardization</name>
|
|
913
|
+
<abbreviation>ISO</abbreviation>
|
|
914
|
+
</organization>
|
|
915
|
+
</contributor>
|
|
916
|
+
<language>en</language>
|
|
917
|
+
<script>Latn</script>
|
|
918
|
+
<status>
|
|
919
|
+
<stage abbreviation="IS">60</stage>
|
|
920
|
+
<substage>60</substage>
|
|
921
|
+
</status>
|
|
922
|
+
<copyright>
|
|
923
|
+
<from>2016</from>
|
|
924
|
+
<owner>
|
|
925
|
+
<organization>
|
|
926
|
+
<name>International Organization for Standardization</name>
|
|
927
|
+
<abbreviation>ISO</abbreviation>
|
|
928
|
+
</organization>
|
|
929
|
+
</owner>
|
|
930
|
+
</copyright>
|
|
931
|
+
<ext>
|
|
932
|
+
<doctype>international-standard</doctype>
|
|
933
|
+
<ics>
|
|
934
|
+
<code>67.060</code>
|
|
935
|
+
</ics>
|
|
936
|
+
<structuredidentifier>
|
|
937
|
+
<project-number>ISO 17302</project-number>
|
|
938
|
+
</structuredidentifier>
|
|
939
|
+
<stagename>International standard</stagename>
|
|
940
|
+
</ext>
|
|
941
|
+
</bibdata>
|
|
942
|
+
<metanorma-extension>
|
|
943
|
+
<attachment name="_dummy_attachments/LICENSE1.TXT">data:application/octet-stream;base64,QlNEIDItQ2xhdXNlIExpY2V
|
|
944
|
+
uc2UKCkNvcHlyaWdodCAoYykgMjAxOCwgUmlib3NlCkFsbCByaWdodHMgcmV
|
|
945
|
+
zZXJ2ZWQuCgpSZWRpc3RyaWJ1dGlvbiBhbmQgdXNlIGluIHNvdXJjZSBhbmQ
|
|
946
|
+
gYmluYXJ5IGZvcm1zLCB3aXRoIG9yIHdpdGhvdXQKbW9kaWZpY2F0aW9uLCB
|
|
947
|
+
hcmUgcGVybWl0dGVkIHByb3ZpZGVkIHRoYXQgdGhlIGZvbGxvd2luZyBjb25
|
|
948
|
+
kaXRpb25zIGFyZSBtZXQ6CgoqIFJlZGlzdHJpYnV0aW9ucyBvZiBzb3VyY2U
|
|
949
|
+
gY29kZSBtdXN0IHJldGFpbiB0aGUgYWJvdmUgY29weXJpZ2h0IG5vdGljZSw
|
|
950
|
+
gdGhpcwogIGxpc3Qgb2YgY29uZGl0aW9ucyBhbmQgdGhlIGZvbGxvd2luZyB
|
|
951
|
+
kaXNjbGFpbWVyLgoKKiBSZWRpc3RyaWJ1dGlvbnMgaW4gYmluYXJ5IGZvcm0
|
|
952
|
+
gbXVzdCByZXByb2R1Y2UgdGhlIGFib3ZlIGNvcHlyaWdodCBub3RpY2UsCiA
|
|
953
|
+
gdGhpcyBsaXN0IG9mIGNvbmRpdGlvbnMgYW5kIHRoZSBmb2xsb3dpbmcgZGl
|
|
954
|
+
zY2xhaW1lciBpbiB0aGUgZG9jdW1lbnRhdGlvbgogIGFuZC9vciBvdGhlciB
|
|
955
|
+
tYXRlcmlhbHMgcHJvdmlkZWQgd2l0aCB0aGUgZGlzdHJpYnV0aW9uLgoKVEh
|
|
956
|
+
JUyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQ09QWVJJR0hUIEhPTER
|
|
957
|
+
FUlMgQU5EIENPTlRSSUJVVE9SUyAiQVMgSVMiCkFORCBBTlkgRVhQUkVTUyB
|
|
958
|
+
PUiBJTVBMSUVEIFdBUlJBTlRJRVMsIElOQ0xVRElORywgQlVUIE5PVCBMSU1
|
|
959
|
+
JVEVEIFRPLCBUSEUKSU1QTElFRCBXQVJSQU5USUVTIE9GIE1FUkNIQU5UQUJ
|
|
960
|
+
JTElUWSBBTkQgRklUTkVTUyBGT1IgQSBQQVJUSUNVTEFSIFBVUlBPU0UgQVJ
|
|
961
|
+
FCkRJU0NMQUlNRUQuIElOIE5PIEVWRU5UIFNIQUxMIFRIRSBDT1BZUklHSFQ
|
|
962
|
+
gSE9MREVSIE9SIENPTlRSSUJVVE9SUyBCRSBMSUFCTEUKRk9SIEFOWSBESVJ
|
|
963
|
+
FQ1QsIElORElSRUNULCBJTkNJREVOVEFMLCBTUEVDSUFMLCBFWEVNUExBUlk
|
|
964
|
+
sIE9SIENPTlNFUVVFTlRJQUwKREFNQUdFUyAoSU5DTFVESU5HLCBCVVQgTk9
|
|
965
|
+
UIExJTUlURUQgVE8sIFBST0NVUkVNRU5UIE9GIFNVQlNUSVRVVEUgR09PRFM
|
|
966
|
+
gT1IKU0VSVklDRVM7IExPU1MgT0YgVVNFLCBEQVRBLCBPUiBQUk9GSVRTOyB
|
|
967
|
+
PUiBCVVNJTkVTUyBJTlRFUlJVUFRJT04pIEhPV0VWRVIKQ0FVU0VEIEFORCB
|
|
968
|
+
PTiBBTlkgVEhFT1JZIE9GIExJQUJJTElUWSwgV0hFVEhFUiBJTiBDT05UUkF
|
|
969
|
+
DVCwgU1RSSUNUIExJQUJJTElUWSwKT1IgVE9SVCAoSU5DTFVESU5HIE5FR0x
|
|
970
|
+
JR0VOQ0UgT1IgT1RIRVJXSVNFKSBBUklTSU5HIElOIEFOWSBXQVkgT1VUIE9
|
|
971
|
+
GIFRIRSBVU0UKT0YgVEhJUyBTT0ZUV0FSRSwgRVZFTiBJRiBBRFZJU0VEIE9
|
|
972
|
+
GIFRIRSBQT1NTSUJJTElUWSBPRiBTVUNIIERBTUFHRS4K
|
|
973
|
+
</attachment>
|
|
974
|
+
</metanorma-extension>
|
|
975
|
+
<boilerplate>
|
|
976
|
+
<copyright-statement>
|
|
977
|
+
<clause>
|
|
978
|
+
<p id="">
|
|
979
|
+
© ISO 2016
|
|
980
|
+
</p>
|
|
981
|
+
<p id="">
|
|
982
|
+
All rights
|
|
983
|
+
reserved. Unless otherwise specified, no part of this publication may be
|
|
984
|
+
reproduced or utilized otherwise in any form or by any means, electronic or
|
|
985
|
+
mechanical, including photocopying, or posting on the internet or an intranet,
|
|
986
|
+
without prior written permission. Permission can be requested from either ISO
|
|
987
|
+
at the address below or ISO’s member body in the country of the requester.
|
|
988
|
+
</p>
|
|
989
|
+
<p id="" align="left">
|
|
990
|
+
ISO copyright office
|
|
991
|
+
<br/>
|
|
992
|
+
Ch. de Blandonnet 8 • CP 401
|
|
993
|
+
<br/>
|
|
994
|
+
CH-1214 Vernier, Geneva, Switzerland
|
|
995
|
+
<br/>
|
|
996
|
+
Tel. + 41 22 749 01 11
|
|
997
|
+
<br/>
|
|
998
|
+
Fax + 41 22 749 09 47
|
|
999
|
+
<br/>
|
|
1000
|
+
Email: copyright@iso.org
|
|
1001
|
+
<br/>
|
|
1002
|
+
Website: www.iso.org
|
|
1003
|
+
</p>
|
|
1004
|
+
<p id="">
|
|
1005
|
+
Published in Switzerland
|
|
1006
|
+
</p>
|
|
1007
|
+
</clause>
|
|
1008
|
+
</copyright-statement>
|
|
1009
|
+
</boilerplate>
|
|
1010
|
+
<sections>
|
|
1011
|
+
<clause id="_scope_ISO_17302_2016" obligation="normative">
|
|
1012
|
+
<title>Scope</title>
|
|
1013
|
+
<p id="">This is a dummy document.</p>
|
|
1014
|
+
</clause>
|
|
1015
|
+
<clause id="E1_ISO_17302_2016" type="express-schema">
|
|
1016
|
+
<figure id="_">
|
|
1017
|
+
<pre id="A1_ISO_17302_2016">
|
|
1018
|
+
module Metanorma
|
|
1019
|
+
class Document
|
|
1020
|
+
# @return [Strin]
|
|
1021
|
+
attr_reader :file
|
|
1022
|
+
|
|
1023
|
+
# @param bibitem [RelatonBib::BibliographicItem]
|
|
1024
|
+
def initialize(bibitem, file)
|
|
1025
|
+
@bibitem = bibitem
|
|
1026
|
+
@file = file
|
|
1027
|
+
end
|
|
1028
|
+
|
|
1029
|
+
class << self
|
|
1030
|
+
# @param file [String] file path
|
|
1031
|
+
# @return [Metanorma::Document]
|
|
1032
|
+
def parse_file(file)
|
|
1033
|
+
new bibitem(file), file
|
|
1034
|
+
end
|
|
1035
|
+
|
|
1036
|
+
# #param xml [Nokogiri::XML::Document, Nokogiri::XML::Element]
|
|
1037
|
+
# @return [Metanorma::Document]
|
|
1038
|
+
def parse_xml(xml)
|
|
1039
|
+
new from_xml(xml)
|
|
1040
|
+
end
|
|
1041
|
+
|
|
1042
|
+
private
|
|
1043
|
+
|
|
1044
|
+
# #param xml [Nokogiri::XML::Document, Nokogiri::XML::Element]
|
|
1045
|
+
# @return [RelatonBib::BibliographicItem,RelatonIso::IsoBibliographicItem]
|
|
1046
|
+
def from_xml(xml)
|
|
1047
|
+
Relaton::Cli.parse_xml xml.at("//xmlns:bibitem|//xmlns:bibdata")
|
|
1048
|
+
end
|
|
1049
|
+
|
|
1050
|
+
# @param file [String]
|
|
1051
|
+
# @return [Symbol] file type
|
|
1052
|
+
def format(file)
|
|
1053
|
+
case file
|
|
1054
|
+
when /\.xml$/ then :xml
|
|
1055
|
+
when /.ya?ml$/ then :yaml
|
|
1056
|
+
end
|
|
1057
|
+
end
|
|
1058
|
+
|
|
1059
|
+
# @param file [String]
|
|
1060
|
+
# @return [RelatonBib::BibliographicItem,
|
|
1061
|
+
# RelatonIso::IsoBibliographicItem]
|
|
1062
|
+
def bibitem(file)
|
|
1063
|
+
case format(file)
|
|
1064
|
+
when :xml
|
|
1065
|
+
from_xml Nokogiri::XML(File.read(file, encoding: "UTF-8"))
|
|
1066
|
+
when :yaml
|
|
1067
|
+
yaml = File.read(file, ecoding: "UTF-8")
|
|
1068
|
+
Relaton::Cli::YAMLConvertor.convert_single_file(yaml)
|
|
1069
|
+
end
|
|
1070
|
+
end
|
|
1071
|
+
end
|
|
1072
|
+
|
|
1073
|
+
# @param builder [Nokogiri::XML::Builder, nil]
|
|
1074
|
+
# @return [Nokogiri::XML::Builder, String]
|
|
1075
|
+
def to_xml(builder = nil)
|
|
1076
|
+
if builder
|
|
1077
|
+
render_xml builder
|
|
1078
|
+
else
|
|
1079
|
+
Nokogiri::XML::Builder.new do |b|
|
|
1080
|
+
root = render_xml b
|
|
1081
|
+
root["xmlns"] = "http://metanorma.org"
|
|
1082
|
+
end.to_xml
|
|
1083
|
+
end
|
|
1084
|
+
end
|
|
1085
|
+
|
|
1086
|
+
# @return [String]
|
|
1087
|
+
def type
|
|
1088
|
+
@type ||= (@bibitem.docidentifier.first&.type ||
|
|
1089
|
+
@bibitem.docidentifier.first&.id&.match(/^[^\s]+/)&.to_s)&.downcase ||
|
|
1090
|
+
"standoc"
|
|
1091
|
+
end
|
|
1092
|
+
|
|
1093
|
+
private
|
|
1094
|
+
|
|
1095
|
+
def render_xml(builder)
|
|
1096
|
+
builder.send(type + "-standard") { |b| @bibitem.to_xml b, bibdata: true }
|
|
1097
|
+
end
|
|
1098
|
+
end
|
|
1099
|
+
end
|
|
1100
|
+
</pre>
|
|
1101
|
+
</figure>
|
|
1102
|
+
</clause>
|
|
1103
|
+
<clause id="what_ISO_17302_2016" inline-header="false" obligation="normative">
|
|
1104
|
+
<title>What?</title>
|
|
1105
|
+
<ol id="_" type="roman">
|
|
1106
|
+
<li>
|
|
1107
|
+
<p id="">What?</p>
|
|
1108
|
+
</li>
|
|
1109
|
+
</ol>
|
|
1110
|
+
<note id="N3_ISO_17302_2016">
|
|
1111
|
+
<p id="">
|
|
1112
|
+
<link type="inline" bibitemid="License_A_ISO_17302_2016" citeas="[LICENSE.TXT]" target="_dummy_attachments/LICENSE1.TXT">License A</link>
|
|
1113
|
+
</p>
|
|
1114
|
+
</note>
|
|
1115
|
+
</clause>
|
|
1116
|
+
<clause id="E2_ISO_17302_2016" type="express-schema">
|
|
1117
|
+
<figure id="A2_ISO_17302_2016">
|
|
1118
|
+
<pre id="_">
|
|
1119
|
+
module Metanorma
|
|
1120
|
+
# Metanorma collection's manifest
|
|
1121
|
+
class CollectionManifest
|
|
1122
|
+
# @return [Metanorma::Collection]
|
|
1123
|
+
attr_reader :collection
|
|
1124
|
+
|
|
1125
|
+
# @param level [String]
|
|
1126
|
+
# @param title [String, nil]
|
|
1127
|
+
# @param docref [Array<Hash{String=>String}>]
|
|
1128
|
+
# @param manifest [Array<Metanorma::CollectionManifest>]
|
|
1129
|
+
def initialize(level, title = nil, docref = [], manifest = [])
|
|
1130
|
+
@level = level
|
|
1131
|
+
@title = title
|
|
1132
|
+
@docref = docref
|
|
1133
|
+
@manifest = manifest
|
|
1134
|
+
end
|
|
1135
|
+
|
|
1136
|
+
class << self
|
|
1137
|
+
# @param mnf [Nokogiri::XML::Element]
|
|
1138
|
+
# @return [Metanorma::CollectionManifest]
|
|
1139
|
+
def from_yaml(mnf)
|
|
1140
|
+
manifest = RelatonBib::HashConverter.array(mnf["manifest"]).map do |m|
|
|
1141
|
+
from_yaml m
|
|
1142
|
+
end
|
|
1143
|
+
docref = RelatonBib::HashConverter.array mnf["docref"]
|
|
1144
|
+
new(mnf["level"], mnf["title"], docref, manifest)
|
|
1145
|
+
end
|
|
1146
|
+
|
|
1147
|
+
# @param mnf [Nokogiri::XML::Element]
|
|
1148
|
+
# @return [Metanorma::CollectionManifest]
|
|
1149
|
+
def from_xml(mnf)
|
|
1150
|
+
level = mnf.at("level").text
|
|
1151
|
+
title = mnf.at("title")&.text
|
|
1152
|
+
manifest = mnf.xpath("xmlns:manifest").map { |m| from_xml(m) }
|
|
1153
|
+
new(level, title, parse_docref(mnf), manifest)
|
|
1154
|
+
end
|
|
1155
|
+
|
|
1156
|
+
private
|
|
1157
|
+
|
|
1158
|
+
# @param mnf [Nokogiri::XML::Element]
|
|
1159
|
+
# @return [Hash{String=>String}]
|
|
1160
|
+
def parse_docref(mnf)
|
|
1161
|
+
mnf.xpath("xmlns:docref").map do |dr|
|
|
1162
|
+
h = { "identifier" => dr.at("identifier").text }
|
|
1163
|
+
h["fileref"] = dr[:fileref] if dr[:fileref]
|
|
1164
|
+
h
|
|
1165
|
+
end
|
|
1166
|
+
end
|
|
1167
|
+
end
|
|
1168
|
+
|
|
1169
|
+
# @param col [Metanorma::Collection]
|
|
1170
|
+
def collection=(col)
|
|
1171
|
+
@collection = col
|
|
1172
|
+
@manifest.each { |mnf| mnf.collection = col }
|
|
1173
|
+
end
|
|
1174
|
+
|
|
1175
|
+
# @param dir [String] path to coolection
|
|
1176
|
+
# @return [Hash<String, Metanorma::Document>]
|
|
1177
|
+
def documents(dir = "")
|
|
1178
|
+
docs = @docref.each_with_object({}) do |dr, m|
|
|
1179
|
+
next m unless dr["fileref"]
|
|
1180
|
+
|
|
1181
|
+
m[dr["identifier"]] = Document.parse_file File.join(dir, dr["fileref"])
|
|
1182
|
+
m
|
|
1183
|
+
end
|
|
1184
|
+
@manifest.reduce(docs) do |mem, mnf|
|
|
1185
|
+
mem.merge mnf.documents(dir)
|
|
1186
|
+
end
|
|
1187
|
+
end
|
|
1188
|
+
|
|
1189
|
+
# @param builder [Nokogiri::XML::Builder]
|
|
1190
|
+
def to_xml(builder)
|
|
1191
|
+
builder.manifest do |b|
|
|
1192
|
+
b.level @level
|
|
1193
|
+
b.title @title if @title
|
|
1194
|
+
docref_to_xml b
|
|
1195
|
+
@manifest.each { |m| m.to_xml b }
|
|
1196
|
+
end
|
|
1197
|
+
end
|
|
1198
|
+
|
|
1199
|
+
# @return [Array<Hash{String=>String}>]
|
|
1200
|
+
def docrefs
|
|
1201
|
+
return @docrefs if @docrefs
|
|
1202
|
+
|
|
1203
|
+
drfs = @docref.map { |dr| dr }
|
|
1204
|
+
@manifest.reduce(drfs) { |mem, mnf| mem + mnf.docrefs }
|
|
1205
|
+
end
|
|
1206
|
+
|
|
1207
|
+
def docref_by_id(docid)
|
|
1208
|
+
refs = docrefs
|
|
1209
|
+
dref = refs.detect { |k| k["identifier"] == docid }
|
|
1210
|
+
dref || docrefs.detect { |k| /^#{k["identifier"]}/ =~ docid }
|
|
1211
|
+
end
|
|
1212
|
+
|
|
1213
|
+
private
|
|
1214
|
+
|
|
1215
|
+
# @param builder [Nokogiri::XML::Builder]
|
|
1216
|
+
def docref_to_xml(builder)
|
|
1217
|
+
@docref.each do |dr|
|
|
1218
|
+
drf = builder.docref { |b| b.identifier dr["identifier"] }
|
|
1219
|
+
drf[:fileref] = dr["fileref"]
|
|
1220
|
+
if collection.directives.include?("documents-inline")
|
|
1221
|
+
id = collection.documents.find_index { |k, _| k == dr["identifier"] }
|
|
1222
|
+
drf[:id] = format("doc%<index>09d", index: id)
|
|
1223
|
+
end
|
|
1224
|
+
end
|
|
1225
|
+
end
|
|
1226
|
+
end
|
|
1227
|
+
end
|
|
1228
|
+
</pre>
|
|
1229
|
+
</figure>
|
|
1230
|
+
</clause>
|
|
1231
|
+
</sections>
|
|
1232
|
+
<bibliography>
|
|
1233
|
+
<references id="T_ISO_17302_2016" obligation="informative" normative="false" hidden="true">
|
|
1234
|
+
<bibitem id="License_A_ISO_17302_2016" hidden="true">
|
|
1235
|
+
<formattedref format="application/x-isodoc+xml">attachment description</formattedref>
|
|
1236
|
+
<uri type="attachment">_dummy_attachments/LICENSE1.TXT</uri>
|
|
1237
|
+
<uri type="citation">_dummy_attachments/LICENSE1.TXT</uri>
|
|
1238
|
+
<docidentifier type="metanorma">[LICENSE.TXT]</docidentifier>
|
|
1239
|
+
</bibitem>
|
|
1240
|
+
</references>
|
|
1241
|
+
<references hidden="true" normative="false"/>
|
|
1242
|
+
</bibliography>
|
|
1243
|
+
</metanorma>
|
|
1244
|
+
</doc-container>
|
|
1245
|
+
<doc-container id="doc000000002">
|
|
1246
|
+
<metanorma xmlns="https://www.metanorma.org/ns/standoc" type="semantic" version="1.6.0" document_suffix="ISO_1701_1974" flavor="iso">
|
|
1247
|
+
<bibdata type="standard">
|
|
1248
|
+
<title language="en" format="text/plain" type="main">Test conditions for milling machines with table of variable height, with horizontal or vertical spindle</title>
|
|
1249
|
+
<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>
|
|
1250
|
+
<title language="fr" format="text/plain" type="main">Conditions d’essais des machines à fraiser à table de hauteur variable, à broche horizontale ou verticale</title>
|
|
1251
|
+
<title language="fr" format="text/plain" type="title-main">Conditions d’essais des machines à fraiser à table de hauteur variable, à broche horizontale ou verticale</title>
|
|
1252
|
+
<docidentifier primary="true" type="ISO">ISO 1701:1974</docidentifier>
|
|
1253
|
+
<docidentifier type="iso-with-lang">ISO 1701:1974(E)</docidentifier>
|
|
1254
|
+
<docidentifier type="iso-reference">ISO 1701:1974(E)</docidentifier>
|
|
1255
|
+
<docnumber>1701</docnumber>
|
|
1256
|
+
<contributor>
|
|
1257
|
+
<role type="author"/>
|
|
1258
|
+
<organization>
|
|
1259
|
+
<name>International Organization for Standardization</name>
|
|
1260
|
+
<abbreviation>ISO</abbreviation>
|
|
1261
|
+
</organization>
|
|
1262
|
+
</contributor>
|
|
1263
|
+
<contributor>
|
|
1264
|
+
<role type="publisher"/>
|
|
1265
|
+
<organization>
|
|
1266
|
+
<name>International Organization for Standardization</name>
|
|
1267
|
+
<abbreviation>ISO</abbreviation>
|
|
1268
|
+
</organization>
|
|
1269
|
+
</contributor>
|
|
1270
|
+
<edition>1</edition>
|
|
1271
|
+
<version>
|
|
1272
|
+
<revision-date>2016-05-01</revision-date>
|
|
1273
|
+
</version>
|
|
1274
|
+
<language>en</language>
|
|
1275
|
+
<script>Latn</script>
|
|
1276
|
+
<status>
|
|
1277
|
+
<stage abbreviation="IS">60</stage>
|
|
1278
|
+
<substage>60</substage>
|
|
1279
|
+
</status>
|
|
1280
|
+
<copyright>
|
|
1281
|
+
<from>1974</from>
|
|
1282
|
+
<owner>
|
|
1283
|
+
<organization>
|
|
1284
|
+
<name>International Organization for Standardization</name>
|
|
1285
|
+
<abbreviation>ISO</abbreviation>
|
|
1286
|
+
</organization>
|
|
1287
|
+
</owner>
|
|
1288
|
+
</copyright>
|
|
1289
|
+
<ext>
|
|
1290
|
+
<doctype>international-standard</doctype>
|
|
1291
|
+
<ics>
|
|
1292
|
+
<code>67.060</code>
|
|
1293
|
+
</ics>
|
|
1294
|
+
<structuredidentifier>
|
|
1295
|
+
<project-number>ISO 1701</project-number>
|
|
1296
|
+
</structuredidentifier>
|
|
1297
|
+
<stagename>International standard</stagename>
|
|
1298
|
+
</ext>
|
|
1299
|
+
</bibdata>
|
|
1300
|
+
<boilerplate>
|
|
1301
|
+
<copyright-statement>
|
|
1302
|
+
<clause>
|
|
1303
|
+
<title>COPYRIGHT PROTECTED DOCUMENT</title>
|
|
1304
|
+
<p id="">
|
|
1305
|
+
© ISO 1974
|
|
1306
|
+
</p>
|
|
1307
|
+
<p id="">
|
|
1308
|
+
All rights
|
|
1309
|
+
reserved. Unless otherwise specified, no part of this publication may be
|
|
1310
|
+
reproduced or utilized otherwise in any form or by any means, electronic or
|
|
1311
|
+
mechanical, including photocopying, or posting on the internet or an intranet,
|
|
1312
|
+
without prior written permission. Permission can be requested from either ISO
|
|
1313
|
+
at the address below or ISO’s member body in the country of the requester.
|
|
1314
|
+
</p>
|
|
1315
|
+
<p id="" align="left">
|
|
1316
|
+
ISO copyright office
|
|
1317
|
+
<br/>
|
|
1318
|
+
Ch. de Blandonnet 8 • CP 401
|
|
1319
|
+
<br/>
|
|
1320
|
+
CH-1214 Vernier, Geneva, Switzerland
|
|
1321
|
+
<br/>
|
|
1322
|
+
Tel. + 41 22 749 01 11
|
|
1323
|
+
<br/>
|
|
1324
|
+
Fax + 41 22 749 09 47
|
|
1325
|
+
<br/>
|
|
1326
|
+
Email: copyright@iso.org
|
|
1327
|
+
<br/>
|
|
1328
|
+
Website: www.iso.org
|
|
1329
|
+
</p>
|
|
1330
|
+
<p id="">
|
|
1331
|
+
Published in Switzerland
|
|
1332
|
+
</p>
|
|
1333
|
+
</clause>
|
|
1334
|
+
</copyright-statement>
|
|
1335
|
+
</boilerplate>
|
|
1336
|
+
<sections>
|
|
1337
|
+
<clause id="_scope_ISO_1701_1974" type="scope" inline-header="false" obligation="normative">
|
|
1338
|
+
<title>Scope</title>
|
|
1339
|
+
<p id="">
|
|
1340
|
+
This document specifies minimum requirements and test methods for rice (
|
|
1341
|
+
<em>Oryza sativa L.</em>
|
|
1342
|
+
).
|
|
1343
|
+
</p>
|
|
1344
|
+
<p id="">It is applicable to husked rice, husked parboiled rice, milled rice and milled parboiled rice, suitable for human consumption, directly or after reconditioning.</p>
|
|
1345
|
+
<p id="">It is not applicable to cooked rice products.</p>
|
|
1346
|
+
<p id="">
|
|
1347
|
+
This document is updated in
|
|
1348
|
+
<eref type="inline" bibitemid="RiceAmd_ISO_1701_1974" citeas="ISO 17301-1:2016/Amd.1:2017"/>
|
|
1349
|
+
. It derives from
|
|
1350
|
+
<eref type="inline" bibitemid="StarTrek_ISO_1701_1974" citeas="ISO 1701:1974"/>
|
|
1351
|
+
. See e.g.
|
|
1352
|
+
<eref type="inline" bibitemid="StarTrek_ISO_1701_1974" citeas="ISO 1701:1974">
|
|
1353
|
+
<localityStack>
|
|
1354
|
+
<locality type="clause">
|
|
1355
|
+
<referenceFrom>1</referenceFrom>
|
|
1356
|
+
</locality>
|
|
1357
|
+
<locality type="anchor">
|
|
1358
|
+
<referenceFrom>_scope_ISO_1701_1974</referenceFrom>
|
|
1359
|
+
</locality>
|
|
1360
|
+
</localityStack>
|
|
1361
|
+
</eref>
|
|
1362
|
+
.
|
|
1363
|
+
</p>
|
|
1364
|
+
<p id="">
|
|
1365
|
+
This document is unrelated to
|
|
1366
|
+
<eref type="inline" bibitemid="Dummy_ISO_1701_1974" citeas="ISO 17302:2016">
|
|
1367
|
+
<localityStack>
|
|
1368
|
+
<locality type="anchor">
|
|
1369
|
+
<referenceFrom>what</referenceFrom>
|
|
1370
|
+
</locality>
|
|
1371
|
+
</localityStack>
|
|
1372
|
+
</eref>
|
|
1373
|
+
.
|
|
1374
|
+
</p>
|
|
1375
|
+
</clause>
|
|
1376
|
+
</sections>
|
|
1377
|
+
<bibliography>
|
|
1378
|
+
<references id="_normref_ISO_1701_1974" normative="true" obligation="informative">
|
|
1379
|
+
<title>Normative References</title>
|
|
1380
|
+
</references>
|
|
1381
|
+
<references id="_bibliography_ISO_1701_1974" normative="false" obligation="informative" hidden="true">
|
|
1382
|
+
<title>Bibliography</title>
|
|
1383
|
+
<bibitem type="standard" hidden="true" id="StarTrek_ISO_1701_1974">
|
|
1384
|
+
<title language="en" format="text/plain" type="main">Test conditions for milling machines with table of variable height, with horizontal or vertical spindle</title>
|
|
1385
|
+
<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>
|
|
1386
|
+
<title language="fr" format="text/plain" type="main">Conditions d’essais des machines à fraiser à table de hauteur variable, à broche horizontale ou verticale</title>
|
|
1387
|
+
<title language="fr" format="text/plain" type="title-main">Conditions d’essais des machines à fraiser à table de hauteur variable, à broche horizontale ou verticale</title>
|
|
1388
|
+
<uri type="citation">rice1-en.final.html</uri>
|
|
1389
|
+
<docidentifier primary="true" type="ISO">ISO 1701:1974</docidentifier>
|
|
1390
|
+
<docidentifier type="iso-with-lang">ISO 1701:1974(E)</docidentifier>
|
|
1391
|
+
<docidentifier type="iso-reference">ISO 1701:1974(E)</docidentifier>
|
|
1392
|
+
<docnumber>1701</docnumber>
|
|
1393
|
+
<contributor>
|
|
1394
|
+
<role type="author"/>
|
|
1395
|
+
<organization>
|
|
1396
|
+
<name>International Organization for Standardization</name>
|
|
1397
|
+
<abbreviation>ISO</abbreviation>
|
|
1398
|
+
</organization>
|
|
1399
|
+
</contributor>
|
|
1400
|
+
<contributor>
|
|
1401
|
+
<role type="publisher"/>
|
|
1402
|
+
<organization>
|
|
1403
|
+
<name>International Organization for Standardization</name>
|
|
1404
|
+
<abbreviation>ISO</abbreviation>
|
|
1405
|
+
</organization>
|
|
1406
|
+
</contributor>
|
|
1407
|
+
<edition>1</edition>
|
|
1408
|
+
<version>
|
|
1409
|
+
<revision-date>2016-05-01</revision-date>
|
|
1410
|
+
</version>
|
|
1411
|
+
<language>en</language>
|
|
1412
|
+
<script>Latn</script>
|
|
1413
|
+
<status>
|
|
1414
|
+
<stage abbreviation="IS">60</stage>
|
|
1415
|
+
<substage>60</substage>
|
|
1416
|
+
</status>
|
|
1417
|
+
<copyright>
|
|
1418
|
+
<from>1974</from>
|
|
1419
|
+
<owner>
|
|
1420
|
+
<organization>
|
|
1421
|
+
<name>International Organization for Standardization</name>
|
|
1422
|
+
<abbreviation>ISO</abbreviation>
|
|
1423
|
+
</organization>
|
|
1424
|
+
</owner>
|
|
1425
|
+
</copyright>
|
|
1426
|
+
</bibitem>
|
|
1427
|
+
<bibitem type="standard" hidden="true" id="RiceAmd_ISO_1701_1974">
|
|
1428
|
+
<title language="en" format="text/plain" type="main">Specification and test methods — Rice — Mass fraction of extraneous matter, milled rice (nonglutinous), sample dividers and recommendations relating to storage and transport conditions</title>
|
|
1429
|
+
<title language="en" format="text/plain" type="title-main">Specification and test methods</title>
|
|
1430
|
+
<title language="en" format="text/plain" type="title-part">Rice</title>
|
|
1431
|
+
<title language="en" format="text/plain" type="title-amd">Mass fraction of extraneous matter, milled rice (nonglutinous), sample dividers and recommendations relating to storage and transport conditions</title>
|
|
1432
|
+
<title language="fr" format="text/plain" type="main">Spécification et méthodes d’essai — Riz — Fraction massique de matière étrangère, riz usiné (non gluant), diviseurs d’échantillon et recommandations relatives aux conditions d’entreposage et de transport</title>
|
|
1433
|
+
<title language="fr" format="text/plain" type="title-main">Spécification et méthodes d’essai</title>
|
|
1434
|
+
<title language="fr" format="text/plain" type="title-part">Riz</title>
|
|
1435
|
+
<title language="fr" format="text/plain" type="title-amd">Fraction massique de matière étrangère, riz usiné (non gluant), diviseurs d’échantillon et recommandations relatives aux conditions d’entreposage et de transport</title>
|
|
1436
|
+
<uri type="citation">rice-amd.final.html</uri>
|
|
1437
|
+
<docidentifier primary="true" type="ISO">ISO 17301-1:2016/Amd.1:2017</docidentifier>
|
|
1438
|
+
<docidentifier type="iso-with-lang">ISO 17301-1:2016/Amd.1:2017(E)</docidentifier>
|
|
1439
|
+
<docidentifier type="iso-reference">ISO 17301-1:2016/Amd.1:2017(E)</docidentifier>
|
|
1440
|
+
<docnumber>17301</docnumber>
|
|
1441
|
+
<date type="created">
|
|
1442
|
+
<on>2016-05-01</on>
|
|
1443
|
+
</date>
|
|
1444
|
+
<date type="updated">
|
|
1445
|
+
<on>2017-02</on>
|
|
1446
|
+
</date>
|
|
1447
|
+
<contributor>
|
|
1448
|
+
<role type="author"/>
|
|
1449
|
+
<organization>
|
|
1450
|
+
<name>International Organization for Standardization</name>
|
|
1451
|
+
<abbreviation>ISO</abbreviation>
|
|
1452
|
+
</organization>
|
|
1453
|
+
</contributor>
|
|
1454
|
+
<contributor>
|
|
1455
|
+
<role type="publisher"/>
|
|
1456
|
+
<organization>
|
|
1457
|
+
<name>International Organization for Standardization</name>
|
|
1458
|
+
<abbreviation>ISO</abbreviation>
|
|
1459
|
+
</organization>
|
|
1460
|
+
</contributor>
|
|
1461
|
+
<edition>2</edition>
|
|
1462
|
+
<version>
|
|
1463
|
+
|
|
1464
|
+
</version>
|
|
1465
|
+
<language>en</language>
|
|
1466
|
+
<script>Latn</script>
|
|
1467
|
+
<status>
|
|
1468
|
+
<stage abbreviation="IS">60</stage>
|
|
1469
|
+
<substage>60</substage>
|
|
1470
|
+
</status>
|
|
1471
|
+
<copyright>
|
|
1472
|
+
<from>2017</from>
|
|
1473
|
+
<owner>
|
|
1474
|
+
<organization>
|
|
1475
|
+
<name>International Organization for Standardization</name>
|
|
1476
|
+
<abbreviation>ISO</abbreviation>
|
|
1477
|
+
</organization>
|
|
1478
|
+
</owner>
|
|
1479
|
+
</copyright>
|
|
1480
|
+
</bibitem>
|
|
1481
|
+
<bibitem type="standard" hidden="true" id="Dummy_ISO_1701_1974">
|
|
1482
|
+
<title language="en" format="text/plain" type="main">Dummy document</title>
|
|
1483
|
+
<title language="en" format="text/plain" type="title-main">Dummy document</title>
|
|
1484
|
+
<title language="fr" format="text/plain" type="main">Dummy document</title>
|
|
1485
|
+
<title language="fr" format="text/plain" type="title-main">Dummy document</title>
|
|
1486
|
+
<uri type="citation">example/url</uri>
|
|
1487
|
+
<docidentifier primary="true" type="ISO">ISO 17302:2016</docidentifier>
|
|
1488
|
+
<docidentifier type="iso-with-lang">ISO 17302:2016(E)</docidentifier>
|
|
1489
|
+
<docidentifier type="iso-reference">ISO 17302:2016(E)</docidentifier>
|
|
1490
|
+
<docnumber>17302</docnumber>
|
|
1491
|
+
<contributor>
|
|
1492
|
+
<role type="author"/>
|
|
1493
|
+
<organization>
|
|
1494
|
+
<name>International Organization for Standardization</name>
|
|
1495
|
+
<abbreviation>ISO</abbreviation>
|
|
1496
|
+
</organization>
|
|
1497
|
+
</contributor>
|
|
1498
|
+
<contributor>
|
|
1499
|
+
<role type="publisher"/>
|
|
1500
|
+
<organization>
|
|
1501
|
+
<name>International Organization for Standardization</name>
|
|
1502
|
+
<abbreviation>ISO</abbreviation>
|
|
1503
|
+
</organization>
|
|
1504
|
+
</contributor>
|
|
1505
|
+
<language>en</language>
|
|
1506
|
+
<script>Latn</script>
|
|
1507
|
+
<status>
|
|
1508
|
+
<stage abbreviation="IS">60</stage>
|
|
1509
|
+
<substage>60</substage>
|
|
1510
|
+
</status>
|
|
1511
|
+
<copyright>
|
|
1512
|
+
<from>2016</from>
|
|
1513
|
+
<owner>
|
|
1514
|
+
<organization>
|
|
1515
|
+
<name>International Organization for Standardization</name>
|
|
1516
|
+
<abbreviation>ISO</abbreviation>
|
|
1517
|
+
</organization>
|
|
1518
|
+
</owner>
|
|
1519
|
+
</copyright>
|
|
1520
|
+
</bibitem>
|
|
1521
|
+
</references>
|
|
1522
|
+
<references hidden="true" normative="false"/>
|
|
1523
|
+
</bibliography>
|
|
1524
|
+
</metanorma>
|
|
1525
|
+
</doc-container>
|
|
1526
|
+
<doc-container id="doc000000003">
|
|
1527
|
+
<metanorma xmlns="https://www.metanorma.org/ns/standoc" document_suffix="ISO_17301-1_2016_Amd.1_2017" flavor="iso">
|
|
1528
|
+
<bibdata type="standard">
|
|
1529
|
+
<title language="en" format="text/plain" type="main">Specification and test methods — Rice — Mass fraction of extraneous matter, milled rice (nonglutinous), sample dividers and recommendations relating to storage and transport conditions</title>
|
|
1530
|
+
<title language="en" format="text/plain" type="title-main">Specification and test methods</title>
|
|
1531
|
+
<title language="en" format="text/plain" type="title-part">Rice</title>
|
|
1532
|
+
<title language="en" format="text/plain" type="title-amd">Mass fraction of extraneous matter, milled rice (nonglutinous), sample dividers and recommendations relating to storage and transport conditions</title>
|
|
1533
|
+
<title language="fr" format="text/plain" type="main">Spécification et méthodes d’essai — Riz — Fraction massique de matière étrangère, riz usiné (non gluant), diviseurs d’échantillon et recommandations relatives aux conditions d’entreposage et de transport</title>
|
|
1534
|
+
<title language="fr" format="text/plain" type="title-main">Spécification et méthodes d’essai</title>
|
|
1535
|
+
<title language="fr" format="text/plain" type="title-part">Riz</title>
|
|
1536
|
+
<title language="fr" format="text/plain" type="title-amd">Fraction massique de matière étrangère, riz usiné (non gluant), diviseurs d’échantillon et recommandations relatives aux conditions d’entreposage et de transport</title>
|
|
1537
|
+
<docidentifier primary="true" type="ISO">ISO 17301-1:2016/Amd.1:2017</docidentifier>
|
|
1538
|
+
<docidentifier type="iso-with-lang">ISO 17301-1:2016/Amd.1:2017(E)</docidentifier>
|
|
1539
|
+
<docidentifier type="iso-reference">ISO 17301-1:2016/Amd.1:2017(E)</docidentifier>
|
|
1540
|
+
<docnumber>17301</docnumber>
|
|
1541
|
+
<date type="created">
|
|
1542
|
+
<on>2016-05-01</on>
|
|
1543
|
+
</date>
|
|
1544
|
+
<date type="updated">
|
|
1545
|
+
<on>2017-02</on>
|
|
1546
|
+
</date>
|
|
1547
|
+
<contributor>
|
|
1548
|
+
<role type="author"/>
|
|
1549
|
+
<organization>
|
|
1550
|
+
<name>International Organization for Standardization</name>
|
|
1551
|
+
<abbreviation>ISO</abbreviation>
|
|
1552
|
+
</organization>
|
|
1553
|
+
</contributor>
|
|
1554
|
+
<contributor>
|
|
1555
|
+
<role type="publisher"/>
|
|
1556
|
+
<organization>
|
|
1557
|
+
<name>International Organization for Standardization</name>
|
|
1558
|
+
<abbreviation>ISO</abbreviation>
|
|
1559
|
+
</organization>
|
|
1560
|
+
</contributor>
|
|
1561
|
+
<edition>2</edition>
|
|
1562
|
+
<version>
|
|
1563
|
+
|
|
1564
|
+
</version>
|
|
1565
|
+
<language>en</language>
|
|
1566
|
+
<script>Latn</script>
|
|
1567
|
+
<status>
|
|
1568
|
+
<stage abbreviation="IS">60</stage>
|
|
1569
|
+
<substage>60</substage>
|
|
1570
|
+
</status>
|
|
1571
|
+
<copyright>
|
|
1572
|
+
<from>2017</from>
|
|
1573
|
+
<owner>
|
|
1574
|
+
<organization>
|
|
1575
|
+
<name>International Organization for Standardization</name>
|
|
1576
|
+
<abbreviation>ISO</abbreviation>
|
|
1577
|
+
</organization>
|
|
1578
|
+
</owner>
|
|
1579
|
+
</copyright>
|
|
1580
|
+
<ext>
|
|
1581
|
+
<doctype>amendment</doctype>
|
|
1582
|
+
<ics>
|
|
1583
|
+
<code>67.060</code>
|
|
1584
|
+
</ics>
|
|
1585
|
+
<structuredidentifier>
|
|
1586
|
+
<project-number part="1" amendment="1" origyr="2016-05-01">17301</project-number>
|
|
1587
|
+
</structuredidentifier>
|
|
1588
|
+
<stagename>International standard</stagename>
|
|
1589
|
+
<updates-document-type>international-standard</updates-document-type>
|
|
1590
|
+
</ext>
|
|
1591
|
+
</bibdata>
|
|
1592
|
+
<boilerplate>
|
|
1593
|
+
<copyright-statement>
|
|
1594
|
+
<clause>
|
|
1595
|
+
<p id="">
|
|
1596
|
+
© ISO 2017
|
|
1597
|
+
</p>
|
|
1598
|
+
<p id="">
|
|
1599
|
+
All rights
|
|
1600
|
+
reserved. Unless otherwise specified, no part of this publication may be
|
|
1601
|
+
reproduced or utilized otherwise in any form or by any means, electronic or
|
|
1602
|
+
mechanical, including photocopying, or posting on the internet or an intranet,
|
|
1603
|
+
without prior written permission. Permission can be requested from either ISO
|
|
1604
|
+
at the address below or ISO’s member body in the country of the requester.
|
|
1605
|
+
</p>
|
|
1606
|
+
<p id="" align="left">
|
|
1607
|
+
ISO copyright office
|
|
1608
|
+
<br/>
|
|
1609
|
+
Ch. de Blandonnet 8 • CP 401
|
|
1610
|
+
<br/>
|
|
1611
|
+
CH-1214 Vernier, Geneva, Switzerland
|
|
1612
|
+
<br/>
|
|
1613
|
+
Tel. + 41 22 749 01 11
|
|
1614
|
+
<br/>
|
|
1615
|
+
Fax + 41 22 749 09 47
|
|
1616
|
+
<br/>
|
|
1617
|
+
Email: copyright@iso.org
|
|
1618
|
+
<br/>
|
|
1619
|
+
Website: www.iso.org
|
|
1620
|
+
</p>
|
|
1621
|
+
<p id="">
|
|
1622
|
+
Published in Switzerland
|
|
1623
|
+
</p>
|
|
1624
|
+
</clause>
|
|
1625
|
+
</copyright-statement>
|
|
1626
|
+
</boilerplate>
|
|
1627
|
+
<preface>
|
|
1628
|
+
<foreword id="_" obligation="informative">
|
|
1629
|
+
<title>Foreword</title>
|
|
1630
|
+
<p id="">ISO (the International Organization for Standardization) is a worldwide federation of national standards bodies (ISO member bodies). The work of preparing International Standards is normally carried out through ISO technical committees. Each member body interested in a subject for which a technical committee has been established has the right to be represented on that committee. International organizations, governmental and non-governmental, in liaison with ISO, also take part in the work. ISO collaborates closely with the International Electrotechnical Commission (IEC) on all matters of electrotechnical standardization.</p>
|
|
1631
|
+
<p id="">The procedures used to develop this document and those intended for its further maintenance are described in the ISO/IEC Directives, Part 1. In particular the different approval criteria needed for the different types of ISO documents should be noted. This document was drafted in accordance with the editorial rules of the ISO/IEC Directives, Part 2 (see www.iso.org/directives).</p>
|
|
1632
|
+
<p id="">Attention is drawn to the possibility that some of the elements of this document may be the subject of patent rights. ISO shall not be held responsible for identifying any or all such patent rights. Details of any patent rights identified during the development of the document will be in the Introduction and/or on the ISO list of patent declarations received (see www.iso.org/patents).</p>
|
|
1633
|
+
<p id="">Any trade name used in this document is information given for the convenience of users and does not constitute an endorsement.</p>
|
|
1634
|
+
<p id="">For an explanation on the voluntary nature of standards, the meaning of ISO specific terms and expressions related to conformity assessment, as well as information about ISO’s adherence to the World Trade Organization (WTO) principles in the Technical Barriers to Trade (TBT) see the following URL: www.iso.org/iso/foreword.html.</p>
|
|
1635
|
+
<p id="">
|
|
1636
|
+
This document was prepared by Technical Committee ISO/{technical-committee-type} 34,
|
|
1637
|
+
<em>Food products</em>
|
|
1638
|
+
, Subcommittee SC 4,
|
|
1639
|
+
<em>Cereals and pulses</em>
|
|
1640
|
+
.
|
|
1641
|
+
</p>
|
|
1642
|
+
<p id="">A list of all parts in the ISO 17301 series can be found on the ISO website.</p>
|
|
1643
|
+
</foreword>
|
|
1644
|
+
</preface>
|
|
1645
|
+
<sections>
|
|
1646
|
+
<clause id="_introduction_ISO_17301-1_2016_Amd.1_2017" change="delete" locality="clause=introduction,paragraph=4-7" obligation="normative">
|
|
1647
|
+
<title>Introduction</title>
|
|
1648
|
+
<p id="">Delete the fourth to seventh paragraphs.</p>
|
|
1649
|
+
</clause>
|
|
1650
|
+
<clause id="_normative_references_ISO_17301-1_2016_Amd.1_2017" change="modify" locality="clause=2" obligation="normative">
|
|
1651
|
+
<title>Normative references</title>
|
|
1652
|
+
<p id="">Replace the reference to ISO 16634:— (including the footnote) with the following:</p>
|
|
1653
|
+
<quote id="_">
|
|
1654
|
+
<p id="">
|
|
1655
|
+
ISO 16634-2:2016,
|
|
1656
|
+
<em>Food products — Determination of the total nitrogen content by combustion according to the Dumas principle and calculation of the crude protein content — Part 2: Cereals, pulses and milled cereal products</em>
|
|
1657
|
+
</p>
|
|
1658
|
+
</quote>
|
|
1659
|
+
<p id="">Renumber subsequent footnotes.</p>
|
|
1660
|
+
</clause>
|
|
1661
|
+
<clause id="_4_1_second_paragraph_ISO_17301-1_2016_Amd.1_2017" change="modify" locality="clause=4.1,paragraph=2" obligation="normative">
|
|
1662
|
+
<title>4.1, second paragraph</title>
|
|
1663
|
+
<p id="">Replace the paragraph with the following:</p>
|
|
1664
|
+
<quote id="_">
|
|
1665
|
+
<p id="">There shall be a procedure to identify the maximum permissible levels for additives and pesticide residues and other contaminants in the country of destination.</p>
|
|
1666
|
+
</quote>
|
|
1667
|
+
</clause>
|
|
1668
|
+
<clause id="_4_2_1_ISO_17301-1_2016_Amd.1_2017" change="modify" locality="clause=4.2.1" obligation="normative">
|
|
1669
|
+
<title>4.2.1</title>
|
|
1670
|
+
<p id="">Designate the existing NOTE as NOTE 1 and add the following new NOTE:</p>
|
|
1671
|
+
<quote id="_">
|
|
1672
|
+
<p id="">NOTE 2 For certain destinations, no differentiation is made between the organic and inorganic mass fractions of extraneous matter.</p>
|
|
1673
|
+
</quote>
|
|
1674
|
+
</clause>
|
|
1675
|
+
<clause id="_4_2_2_table_1_ISO_17301-1_2016_Amd.1_2017" change="modify" locality="clause=4.2.2,table=1" obligation="normative">
|
|
1676
|
+
<title>4.2.2, Table 1</title>
|
|
1677
|
+
<p id="">In the column “in milled rice (non-glutinous)”, replace the value “0,3” for “Paddy” with the value “0,5”.</p>
|
|
1678
|
+
</clause>
|
|
1679
|
+
<clause id="_6_3_first_paragraph_ISO_17301-1_2016_Amd.1_2017" change="modify" locality="clause=6.3,paragraph=1" obligation="normative">
|
|
1680
|
+
<title>6.3, first paragraph</title>
|
|
1681
|
+
<p id="">Replace the reference “ISO 16634:—, Clause 9” with “ISO 16634-2:2016, Clause 9”.</p>
|
|
1682
|
+
</clause>
|
|
1683
|
+
<clause id="_clause_8_ISO_17301-1_2016_Amd.1_2017" change="add" locality="clause=8" obligation="normative">
|
|
1684
|
+
<title>Clause 8</title>
|
|
1685
|
+
<p id="">Add the following paragraph at the end of the clause:</p>
|
|
1686
|
+
<quote id="_">
|
|
1687
|
+
<p id="">Annex E gives recommendations relating to storage and transport conditions.</p>
|
|
1688
|
+
</quote>
|
|
1689
|
+
</clause>
|
|
1690
|
+
<clause id="_clause_9_ISO_17301-1_2016_Amd.1_2017" change="modify" locality="clause=9" obligation="normative">
|
|
1691
|
+
<title>Clause 9</title>
|
|
1692
|
+
<p id="">Replace the text with the following:</p>
|
|
1693
|
+
<quote id="_">
|
|
1694
|
+
<p id="">The marking on the packages shall clearly identify the type of rice.</p>
|
|
1695
|
+
</quote>
|
|
1696
|
+
</clause>
|
|
1697
|
+
<clause id="_a_2_1_ISO_17301-1_2016_Amd.1_2017" change="modify" locality="clause=A.2.1" obligation="normative">
|
|
1698
|
+
<title>A.2.1</title>
|
|
1699
|
+
<p id="">Replace the text with the following:</p>
|
|
1700
|
+
<quote id="_">
|
|
1701
|
+
<p id="">
|
|
1702
|
+
<strong>A.2.1 Sample divider</strong>
|
|
1703
|
+
, consisting of a conical sample divider or multiple-slot sample divider with a distribution system, e.g. conical (Boerner-type) divider such as that shown in Figure A.1 or multiple-slot (riffle-type) divider such as that shown in Figure A.2.
|
|
1704
|
+
</p>
|
|
1705
|
+
</quote>
|
|
1706
|
+
</clause>
|
|
1707
|
+
<clause id="_figure_a_1_ISO_17301-1_2016_Amd.1_2017" change="modify" locality="figure=A.1" obligation="normative">
|
|
1708
|
+
<title>Figure A.1</title>
|
|
1709
|
+
<p id="">Replace Figure A.1 with the following two figures:</p>
|
|
1710
|
+
<figure id="fig1_ISO_17301-1_2016_Amd.1_2017">
|
|
1711
|
+
<name>Conical (Boerner-type) divider</name>
|
|
1712
|
+
<image src="data:image/png" id="_" mimetype="image/png" height="auto" width="auto"/>
|
|
1713
|
+
<dl id="_">
|
|
1714
|
+
<dt>1</dt>
|
|
1715
|
+
<dd>
|
|
1716
|
+
<p id="">funnel</p>
|
|
1717
|
+
</dd>
|
|
1718
|
+
<dt>2</dt>
|
|
1719
|
+
<dd>
|
|
1720
|
+
<p id="">collection boxes</p>
|
|
1721
|
+
</dd>
|
|
1722
|
+
</dl>
|
|
1723
|
+
</figure>
|
|
1724
|
+
<figure id="fig2_ISO_17301-1_2016_Amd.1_2017">
|
|
1725
|
+
<name>Multiple-slot (riffle-type) divider with two collection boxes</name>
|
|
1726
|
+
<image src="data:image/png" id="_" mimetype="image/png" height="auto" width="auto"/>
|
|
1727
|
+
<dl id="_">
|
|
1728
|
+
<dt>1</dt>
|
|
1729
|
+
<dd>
|
|
1730
|
+
<p id="">slots</p>
|
|
1731
|
+
</dd>
|
|
1732
|
+
<dt>2</dt>
|
|
1733
|
+
<dd>
|
|
1734
|
+
<p id="">collection boxes</p>
|
|
1735
|
+
</dd>
|
|
1736
|
+
</dl>
|
|
1737
|
+
</figure>
|
|
1738
|
+
</clause>
|
|
1739
|
+
<clause id="_annex_e_ISO_17301-1_2016_Amd.1_2017" change="add" locality="clause=D" obligation="normative">
|
|
1740
|
+
<title>Annex E</title>
|
|
1741
|
+
<p id="">Add the following annex after Annex D, before the Bibliography.</p>
|
|
1742
|
+
<quote id="_">
|
|
1743
|
+
<p id="">== Recommendations relating to storage and storage and transport conditions</p>
|
|
1744
|
+
<p id="">Containers of rice should be stored in covered premises, well protected from the sun, rain and excessive heat.</p>
|
|
1745
|
+
<p id="">The storeroom should be dry, free from unpleasant odours and protected against entry of insects and other vermin. Ventilation should be adjusted in such a way as to give good ventilation during dry weather and to be fully closed under damp conditions. Suitable provisions should be made for fumigation of storerooms.</p>
|
|
1746
|
+
<p id="">Containers should be handled and transported in such a way that they are protected from the rain, sun or other sources of excessive heat, unpleasant odours and any other contamination (especially in the holds of ships).</p>
|
|
1747
|
+
</quote>
|
|
1748
|
+
</clause>
|
|
1749
|
+
</sections>
|
|
1750
|
+
<bibliography>
|
|
1751
|
+
<references hidden="true" normative="false"/>
|
|
1752
|
+
</bibliography>
|
|
1753
|
+
</metanorma>
|
|
1754
|
+
</doc-container>
|
|
1755
|
+
<doc-container id="doc000000004">
|
|
1756
|
+
<bibdata>
|
|
1757
|
+
<docidentifier>action_schemaexpg1.svg</docidentifier>
|
|
1758
|
+
</bibdata>
|
|
1759
|
+
<attachment>data:image/svg+xml</attachment>
|
|
1760
|
+
</doc-container>
|
|
1761
|
+
<doc-container id="doc000000005">
|
|
1762
|
+
<bibdata>
|
|
1763
|
+
<docidentifier>rice_image1.png</docidentifier>
|
|
1764
|
+
</bibdata>
|
|
1765
|
+
<attachment>data:image/png</attachment>
|
|
1766
|
+
</doc-container>
|
|
1767
|
+
<final-content>
|
|
1768
|
+
<clause id="_" inline-header="false" obligation="normative" unnumbered="true" displayorder="3">
|
|
1769
|
+
<title id="_">Exordium</title>
|
|
1770
|
+
<fmt-title depth="1" id="_">
|
|
1771
|
+
<semx element="title" source="_">Exordium</semx>
|
|
1772
|
+
</fmt-title>
|
|
1773
|
+
<p id="">Hic explicit</p>
|
|
1774
|
+
</clause>
|
|
1775
|
+
</final-content>
|
|
1776
|
+
</metanorma-collection>
|