metanorma-iso 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/docs/customisation.adoc +496 -37
- data/docs/guidance.adoc +26 -2
- data/docs/quickstart.adoc +1 -1
- data/lib/asciidoctor/iso/isodoc.rng +8 -1
- data/lib/asciidoctor/iso/isostandard.rng +11 -4
- data/lib/asciidoctor/iso/section.rb +1 -5
- data/lib/asciidoctor/iso/validate.rb +1 -1
- data/lib/asciidoctor/iso/validate_section.rb +1 -1
- data/lib/asciidoctor/iso/version.rb +1 -1
- data/lib/isodoc/iso/html/word_iso_titlepage.html +3 -6
- data/lib/isodoc/iso/html_convert.rb +20 -0
- data/lib/isodoc/iso/metadata.rb +2 -2
- data/lib/isodoc/iso/word_convert.rb +20 -0
- data/metanorma-iso.gemspec +1 -1
- data/spec/asciidoctor-iso/base_spec.rb +1 -3
- data/spec/asciidoctor-iso/section_spec.rb +6 -4
- data/spec/asciidoctor-iso/validate_spec.rb +26 -0
- data/spec/assets/iso.doc +9 -15
- data/spec/examples/rice.adoc +0 -2
- data/spec/examples/rice.preview.html +2 -9
- data/spec/examples/rice.sh +1 -1
- data/spec/isodoc/inline_spec.rb +263 -0
- data/spec/isodoc/iso_spec.rb +1 -3
- data/spec/isodoc/metadata_spec.rb +4 -4
- data/spec/isodoc/terms_spec.rb +207 -0
- data/spec/isodoc/xref_spec.rb +66 -65
- metadata +6 -4
data/docs/guidance.adoc
CHANGED
@@ -204,13 +204,14 @@ NOTE: The starch of waxy rice consists almost entirely of amylopectin. The kerne
|
|
204
204
|
and Note 1 to entry is not included here
|
205
205
|
--
|
206
206
|
|
207
|
-
The requirement that the source of a term be given in a citation also applies when the source is a term bank, such as http://www.electropedia.org[IEV].
|
207
|
+
The requirement that the source of a term be given in a citation also applies when the source is a term bank, such as http://www.electropedia.org[IEV]. Formally, IEV references should be cited as `IEC 60050-nnn:2011`, where `n` is the top-level clause; e.g. `IEC 60050-113:2011, 113-01-07. For convenience, this gem requires all Electropedia references to be to a single reference, named IEV in the normative references. In rendering the Asciidoctor into ISO XML, this reference will be replaced by the various required IEC 60050-nnn:2001 references.
|
208
208
|
|
209
209
|
[source,asciidoc]
|
210
210
|
--
|
211
211
|
[.source]
|
212
212
|
<<ievtermbank,clause="103-01-02">>
|
213
|
-
|
213
|
+
|
214
|
+
...
|
214
215
|
|
215
216
|
[bibliography]
|
216
217
|
* [[[ievtermbank,IEV]]], _IEV: Electropedia_
|
@@ -434,3 +435,26 @@ It includes:
|
|
434
435
|
--
|
435
436
|
|
436
437
|
* https://asciidoctor.org/docs/user-manual/#using-attributes-set-assign-and-reference[Attribute references] can be used as template variables in a document: if your document contains the text `{foo}`, you can assign the value to be populated in `{foo}` by setting it as a document attribute in the Asciidoctor header: `:foo: this is the text to replace "foo"`. In the Rice Model document example, document attributes are used to provide the Subcommittee and Technical Committee names, which are populated as template entries in the document foreword.
|
438
|
+
|
439
|
+
* List items can contain other blocks in Asciidoctor, through concatenating blocks; e.g.
|
440
|
+
+
|
441
|
+
[source.asciidoc]
|
442
|
+
--
|
443
|
+
* List
|
444
|
+
+
|
445
|
+
|===
|
446
|
+
| Contains | A table
|
447
|
+
|
448
|
+
|===
|
449
|
+
--
|
450
|
+
+
|
451
|
+
However, downstream renderers may not be able to cope with embedding blocks within list items. In particular, Word will force a carriage return between a list item, and a list or table contained in the item. So output like the following, with the list number flush with the embedded block, is not possible in Word (though it is in HTML):
|
452
|
+
|
453
|
+
....
|
454
|
+
a) 1. Text
|
455
|
+
b) |-------|------ |
|
456
|
+
| table | table |
|
457
|
+
|---------------|
|
458
|
+
c) Definition Term Definition
|
459
|
+
Definition Term Definition
|
460
|
+
....
|
data/docs/quickstart.adoc
CHANGED
@@ -321,7 +321,7 @@ NOTE: The starch of waxy rice consists almost entirely of amylopectin. The kerne
|
|
321
321
|
and Note 1 to entry is not included here
|
322
322
|
--
|
323
323
|
|
324
|
-
Term banks such as the http://www.electropedia.org[IEV] must be treated like any other document, with terms treated as clauses; e.g. `<<IEV,clause 103-01-01>>`. The IEV
|
324
|
+
Term banks such as the http://www.electropedia.org[IEV] must be treated like any other document, with terms treated as clauses; e.g. `<<IEV,clause "103-01-01">>`. The IEV must be explictly referenced with that label; when the XML is generated, it will be replaced by the official references to `IEC 60050-nnn:2001` standards documents.
|
325
325
|
|
326
326
|
=== References (Normative, Informative)
|
327
327
|
|
@@ -956,6 +956,11 @@
|
|
956
956
|
</define>
|
957
957
|
<define name="li">
|
958
958
|
<element name="li">
|
959
|
+
<optional>
|
960
|
+
<attribute name="id">
|
961
|
+
<data type="ID"/>
|
962
|
+
</attribute>
|
963
|
+
</optional>
|
959
964
|
<oneOrMore>
|
960
965
|
<ref name="paragraph-with-footnote"/>
|
961
966
|
</oneOrMore>
|
@@ -999,7 +1004,9 @@
|
|
999
1004
|
</define>
|
1000
1005
|
<define name="dt">
|
1001
1006
|
<element name="dt">
|
1002
|
-
<
|
1007
|
+
<zeroOrMore>
|
1008
|
+
<ref name="TextElement"/>
|
1009
|
+
</zeroOrMore>
|
1003
1010
|
</element>
|
1004
1011
|
</define>
|
1005
1012
|
<define name="dd">
|
@@ -548,10 +548,17 @@
|
|
548
548
|
</define>
|
549
549
|
<define name="li">
|
550
550
|
<element name="li">
|
551
|
-
<
|
552
|
-
|
553
|
-
|
554
|
-
|
551
|
+
<group>
|
552
|
+
<optional>
|
553
|
+
<!-- ( paragraph-with-footnote | table | note | formula | admonition | ol | ul | dl | quote | sourcecode | review | example )+ -->
|
554
|
+
<attribute name="id">
|
555
|
+
<data type="ID"/>
|
556
|
+
</attribute>
|
557
|
+
</optional>
|
558
|
+
<oneOrMore>
|
559
|
+
<ref name="BasicBlock"/>
|
560
|
+
</oneOrMore>
|
561
|
+
</group>
|
555
562
|
<!-- exclude figures? -->
|
556
563
|
</element>
|
557
564
|
</define>
|
@@ -8,11 +8,7 @@ module Asciidoctor
|
|
8
8
|
a = { id: Standoc::Utils::anchor_or_uuid(node) }
|
9
9
|
noko do |xml|
|
10
10
|
case sectiontype(node)
|
11
|
-
when "introduction" then
|
12
|
-
if node.level == 1 then introduction_parse(a, xml, node)
|
13
|
-
else
|
14
|
-
clause_parse(a, xml, node)
|
15
|
-
end
|
11
|
+
when "introduction" then introduction_parse(a, xml, node)
|
16
12
|
when "patent notice" then patent_notice_parse(xml, node)
|
17
13
|
when "scope" then scope_parse(a, xml, node)
|
18
14
|
when "normative references" then norm_ref_parse(a, xml, node)
|
@@ -146,7 +146,7 @@ module Asciidoctor
|
|
146
146
|
|
147
147
|
def locality_erefs_validate(root)
|
148
148
|
root.xpath("//eref[locality]").each do |t|
|
149
|
-
unless
|
149
|
+
unless /^IEV$|:[ ]?(\d+{4}|--)$/.match t["citeas"]
|
150
150
|
warn "ISO: undated reference #{t['citeas']} should not contain "\
|
151
151
|
"specific elements"
|
152
152
|
end
|
@@ -181,7 +181,7 @@ module Asciidoctor
|
|
181
181
|
root.xpath("//figure[image][not(title)]").each do |node|
|
182
182
|
style_warning(node, "Figure should have title", nil)
|
183
183
|
end
|
184
|
-
root.xpath("//table[not(
|
184
|
+
root.xpath("//table[not(name)]").each do |node|
|
185
185
|
style_warning(node, "Table should have title", nil)
|
186
186
|
end
|
187
187
|
end
|
@@ -1,14 +1,11 @@
|
|
1
1
|
<p class="MsoNormal" align="right" style='text-align:right'><b style='mso-bidi-font-weight:
|
2
|
-
normal'><span lang="EN-GB" style='font-size:14.0pt;mso-no-proof:yes'>{{
|
2
|
+
normal'><span lang="EN-GB" style='font-size:14.0pt;mso-no-proof:yes'>{{ docnumber }}:{{ docyear }}(E) {{ draftinfo }}</span></b><b
|
3
3
|
style='mso-bidi-font-weight:normal'><span lang="EN-GB" style='font-size:14.0pt'><o:p></o:p></span></b></p>
|
4
4
|
|
5
5
|
<p class="MsoNormal" align="right" style='text-align:right'><span lang="EN-GB"
|
6
|
-
style='mso-no-proof:yes'>{{ agency }} 
|
7
|
-
style='mso-no-proof:yes'>{{ editorialgroup | join: "/" }}</span></p>
|
6
|
+
style='mso-no-proof:yes'>{{ agency }} {{ editorialgroup | join: "/" }}</span></p>
|
8
7
|
|
9
|
-
<p class="MsoNormal" align="right" style='margin-bottom:100.0pt;text-align:right'><
|
10
|
-
name="CVP_Secretariat_Loca"><span lang="EN-GB">Secretariat</span></a><span
|
11
|
-
lang="EN-GB">: <span style='mso-no-proof:yes'>{{ secretariat }}</span></span></p>
|
8
|
+
<p class="MsoNormal" align="right" style='margin-bottom:100.0pt;text-align:right'><span lang="EN-GB">Secretariat: <span style='mso-no-proof:yes'>{{ secretariat }}</span></span></p>
|
12
9
|
|
13
10
|
<p class="MsoNormal" align="left" style='text-align:left;line-height:18.0pt;margin-bottom:0.0pt'><b
|
14
11
|
style='mso-bidi-font-weight:normal'><span lang="EN-GB" style='font-size:16.0pt'>{{ doctitle }}
|
@@ -113,6 +113,26 @@ module IsoDoc
|
|
113
113
|
annex_names1(c, "#{num}.#{i + 1}", level + 1)
|
114
114
|
end
|
115
115
|
end
|
116
|
+
|
117
|
+
def eref_localities1_zh(target, type, from, to)
|
118
|
+
subsection = from&.text&.match(/\./)
|
119
|
+
ret = ", 第#{from.text}" if from
|
120
|
+
ret += "–#{to}" if to
|
121
|
+
loc = (@locality[type] || type.sub(/^locality:/, "").capitalize )
|
122
|
+
ret += " #{loc}" unless subsection && type == "clause" || target.match(/^IEV$/)
|
123
|
+
ret
|
124
|
+
end
|
125
|
+
|
126
|
+
def eref_localities1(target, type, from, to, lang = "en")
|
127
|
+
subsection = from&.text&.match(/\./)
|
128
|
+
return l10n(eref_localities1_zh(target, type, from, to)) if lang == "zh"
|
129
|
+
ret = ","
|
130
|
+
loc = @locality[type] || type.sub(/^locality:/, "").capitalize
|
131
|
+
ret += " #{loc}" unless subsection && type == "clause" || target.match(/^IEV$/)
|
132
|
+
ret += " #{from.text}" if from
|
133
|
+
ret += "–#{to.text}" if to
|
134
|
+
l10n(ret)
|
135
|
+
end
|
116
136
|
end
|
117
137
|
end
|
118
138
|
end
|
data/lib/isodoc/iso/metadata.rb
CHANGED
@@ -38,12 +38,12 @@ module IsoDoc
|
|
38
38
|
end
|
39
39
|
|
40
40
|
def docid(isoxml, _out)
|
41
|
-
dn = docnumber(isoxml)
|
41
|
+
dn = docnumber(isoxml) # e.g. ISO 8601, ISO/IEC DIR 2
|
42
42
|
docstatus = get[:stage]
|
43
43
|
if docstatus
|
44
44
|
abbr = get[:stageabbr]
|
45
45
|
docstatus = get[:stage]
|
46
|
-
(docstatus.to_i < 60) && dn =
|
46
|
+
(docstatus.to_i < 60) && dn = dn.sub(/ /, " #{abbr} ")
|
47
47
|
end
|
48
48
|
set(:docnumber, dn)
|
49
49
|
end
|
@@ -136,6 +136,26 @@ module IsoDoc
|
|
136
136
|
annex_names1(c, "#{num}.#{i + 1}", level + 1)
|
137
137
|
end
|
138
138
|
end
|
139
|
+
|
140
|
+
def eref_localities1_zh(target, type, from, to)
|
141
|
+
subsection = from&.text&.match(/\./)
|
142
|
+
ret = ", 第#{from.text}" if from
|
143
|
+
ret += "–#{to}" if to
|
144
|
+
loc = (@locality[type] || type.sub(/^locality:/, "").capitalize )
|
145
|
+
ret += " #{loc}" unless subsection && type == "clause" || target.match(/^IEV$/)
|
146
|
+
ret
|
147
|
+
end
|
148
|
+
|
149
|
+
def eref_localities1(target, type, from, to, lang = "en")
|
150
|
+
subsection = from&.text&.match(/\./)
|
151
|
+
return l10n(eref_localities1_zh(target, type, from, to)) if lang == "zh"
|
152
|
+
ret = ","
|
153
|
+
loc = @locality[type] || type.sub(/^locality:/, "").capitalize
|
154
|
+
ret += " #{loc}" unless subsection && type == "clause" || target.match(/^IEV$/)
|
155
|
+
ret += " #{from.text}" if from
|
156
|
+
ret += "–#{to.text}" if to
|
157
|
+
l10n(ret)
|
158
|
+
end
|
139
159
|
end
|
140
160
|
end
|
141
161
|
end
|
data/metanorma-iso.gemspec
CHANGED
@@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
|
|
31
31
|
|
32
32
|
spec.add_dependency "asciidoctor", "~> 1.5.7"
|
33
33
|
spec.add_dependency "ruby-jing"
|
34
|
-
spec.add_dependency "isodoc", "~> 0.8.
|
34
|
+
spec.add_dependency "isodoc", "~> 0.8.9"
|
35
35
|
spec.add_dependency "iev", "~> 0.2.0"
|
36
36
|
spec.add_dependency "relaton", "~> 0.1.3"
|
37
37
|
spec.add_dependency "metanorma-standoc", "~> 1.0.0"
|
@@ -5,15 +5,13 @@ RSpec.describe Asciidoctor::ISO do
|
|
5
5
|
expect(Asciidoctor::ISO::VERSION).not_to be nil
|
6
6
|
end
|
7
7
|
|
8
|
-
=begin
|
9
8
|
it "generates output for the Rice document" do
|
10
|
-
system "cd spec/examples; rm -f rice.xml; rm -f rice.doc; rm -f rice.html; rm -f rice_alt.html; asciidoctor --trace -b iso -r '
|
9
|
+
system "cd spec/examples; rm -f rice.xml; rm -f rice.doc; rm -f rice.html; rm -f rice_alt.html; asciidoctor --trace -b iso -r 'metanorma-iso' rice.adoc; cd ../.."
|
11
10
|
expect(File.exist?("spec/examples/rice.xml")).to be true
|
12
11
|
expect(File.exist?("spec/examples/rice.doc")).to be true
|
13
12
|
expect(File.exist?("spec/examples/rice.html")).to be true
|
14
13
|
expect(File.exist?("spec/examples/rice_alt.html")).to be true
|
15
14
|
end
|
16
|
-
=end
|
17
15
|
|
18
16
|
it "processes a blank document" do
|
19
17
|
expect(Asciidoctor.convert(<<~"INPUT", backend: :iso, header_footer: true)).to be_equivalent_to <<~"OUTPUT"
|
@@ -12,8 +12,6 @@ RSpec.describe Asciidoctor::ISO do
|
|
12
12
|
|
13
13
|
=== Introduction Subsection
|
14
14
|
|
15
|
-
=== Patent Notice
|
16
|
-
|
17
15
|
== Scope
|
18
16
|
|
19
17
|
Text
|
@@ -40,6 +38,8 @@ RSpec.describe Asciidoctor::ISO do
|
|
40
38
|
|
41
39
|
=== Clause 4.2
|
42
40
|
|
41
|
+
== Terms and Definitions
|
42
|
+
|
43
43
|
[appendix]
|
44
44
|
== Annex
|
45
45
|
|
@@ -85,6 +85,10 @@ RSpec.describe Asciidoctor::ISO do
|
|
85
85
|
<clause id="_" inline-header="false" obligation="normative">
|
86
86
|
<title>Clause 4.2</title>
|
87
87
|
</clause></clause>
|
88
|
+
<clause id="_" inline-header="false" obligation="normative">
|
89
|
+
<title>Terms and Definitions</title>
|
90
|
+
</clause>
|
91
|
+
|
88
92
|
|
89
93
|
</sections><annex id="_" inline-header="false" obligation="normative">
|
90
94
|
<title>Annex</title>
|
@@ -118,8 +122,6 @@ RSpec.describe Asciidoctor::ISO do
|
|
118
122
|
|
119
123
|
=== Introduction Subsection
|
120
124
|
|
121
|
-
=== Patent Notice
|
122
|
-
|
123
125
|
[heading=scope]
|
124
126
|
== Σκοπός
|
125
127
|
|
@@ -136,6 +136,32 @@ it "warns that undated reference has locality" do
|
|
136
136
|
INPUT
|
137
137
|
end
|
138
138
|
|
139
|
+
it "do not warn that undated IEV reference has locality" do
|
140
|
+
expect { Asciidoctor.convert(<<~"INPUT", backend: :iso, header_footer: true) }.not_to output(/undated reference IEV should not contain specific elements/).to_stderr
|
141
|
+
#{VALIDATING_BLANK_HDR}
|
142
|
+
|
143
|
+
== Scope
|
144
|
+
<<iev,clause=1>>
|
145
|
+
|
146
|
+
[bibliography]
|
147
|
+
== Normative References
|
148
|
+
* [[[iev,IEV]]] _Standard_
|
149
|
+
INPUT
|
150
|
+
end
|
151
|
+
|
152
|
+
it "do not warn that in print has locality" do
|
153
|
+
expect { Asciidoctor.convert(<<~"INPUT", backend: :iso, header_footer: true) }.not_to output(/undated reference ISO 123 should not contain specific elements/).to_stderr
|
154
|
+
#{VALIDATING_BLANK_HDR}
|
155
|
+
|
156
|
+
== Scope
|
157
|
+
<<iev,clause=1>>
|
158
|
+
|
159
|
+
[bibliography]
|
160
|
+
== Normative References
|
161
|
+
* [[[iev,ISO 123:--]]] _Standard_
|
162
|
+
INPUT
|
163
|
+
end
|
164
|
+
|
139
165
|
it "warns of Non-reference in bibliography" do
|
140
166
|
expect { Asciidoctor.convert(<<~"INPUT", backend: :iso, header_footer: true) }.to output(/no anchor on reference/).to_stderr
|
141
167
|
#{VALIDATING_BLANK_HDR}
|
data/spec/assets/iso.doc
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
MIME-Version: 1.0
|
2
|
-
Content-Type: multipart/related; boundary="----=
|
2
|
+
Content-Type: multipart/related; boundary="----=_NextPart_f1bb7f88.630f.42d2"
|
3
3
|
|
4
|
-
------=
|
4
|
+
------=_NextPart_f1bb7f88.630f.42d2
|
5
5
|
Content-Location: file:///C:/Doc/spec/assets/iso.htm
|
6
6
|
Content-Type: text/html; charset="utf-8"
|
7
7
|
|
@@ -756,7 +756,7 @@ span.note_label, span.example_label, td.example_label, td.note_label {
|
|
756
756
|
<body lang="EN-US" link="blue" vlink="#954F72" xml:lang="EN-US">
|
757
757
|
<div class="WordSection1"><p class="MsoNormal" align="right" style="text-align:right">
|
758
758
|
<b style="mso-bidi-font-weight: normal">
|
759
|
-
<span lang="EN-GB" style="font-size:14.0pt;mso-no-proof:yes" xml:lang="EN-GB"
|
759
|
+
<span lang="EN-GB" style="font-size:14.0pt;mso-no-proof:yes" xml:lang="EN-GB">:(E) </span>
|
760
760
|
</b>
|
761
761
|
<b style="mso-bidi-font-weight:normal">
|
762
762
|
<span lang="EN-GB" style="font-size:14.0pt" xml:lang="EN-GB">
|
@@ -767,16 +767,10 @@ span.note_label, span.example_label, td.example_label, td.note_label {
|
|
767
767
|
|
768
768
|
<p class="MsoNormal" align="right" style="text-align:right">
|
769
769
|
<span lang="EN-GB" style="mso-no-proof:yes" xml:lang="EN-GB"> </span>
|
770
|
-
<span lang="EN-GB" xml:lang="EN-GB">
|
771
|
-
<span style="mso-no-proof:yes"></span>
|
772
|
-
</span>
|
773
770
|
</p>
|
774
771
|
|
775
772
|
<p class="MsoNormal" align="right" style="margin-bottom:100.0pt;text-align:right">
|
776
|
-
<
|
777
|
-
<span lang="EN-GB" xml:lang="EN-GB">Secretariat</span>
|
778
|
-
</a>
|
779
|
-
<span lang="EN-GB" xml:lang="EN-GB">: <span style="mso-no-proof:yes">XXXX</span></span>
|
773
|
+
<span lang="EN-GB" xml:lang="EN-GB">Secretariat: <span style="mso-no-proof:yes">XXXX</span></span>
|
780
774
|
</p>
|
781
775
|
|
782
776
|
<p class="MsoNormal" align="left" style="text-align:left;line-height:18.0pt;margin-bottom:0.0pt">
|
@@ -850,11 +844,11 @@ Switzerland<p class="MsoNormal"></p></span></p>
|
|
850
844
|
<p class="MsoToc1"><span lang="EN-GB" xml:lang="EN-GB"><span style="mso-element:field-begin"></span><span style="mso-spacerun:yes"> </span>TOC
|
851
845
|
\o "1-2" \h \z \u <span style="mso-element:field-separator"></span></span>
|
852
846
|
<span class="MsoHyperlink"><span lang="EN-GB" style="mso-no-proof:yes" xml:lang="EN-GB">
|
853
|
-
<a href="#
|
847
|
+
<a href="#_Toc663335066">Foreword<span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB">
|
854
848
|
<span style="mso-tab-count:1 dotted">. </span>
|
855
849
|
</span><span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB">
|
856
850
|
<span style="mso-element:field-begin"></span></span>
|
857
|
-
<span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB"> PAGEREF
|
851
|
+
<span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB"> PAGEREF _Toc663335066 \h </span>
|
858
852
|
<span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB"><span style="mso-element:field-separator"></span></span><span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB">1</span>
|
859
853
|
<span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB"></span><span lang="EN-GB" class="MsoTocTextSpan" xml:lang="EN-GB"><span style="mso-element:field-end"></span></span></a></span></span></p>
|
860
854
|
|
@@ -887,7 +881,7 @@ Switzerland<p class="MsoNormal"></p></span></p>
|
|
887
881
|
</html>
|
888
882
|
|
889
883
|
|
890
|
-
------=
|
884
|
+
------=_NextPart_f1bb7f88.630f.42d2
|
891
885
|
Content-Location: file:///C:/Doc/spec/assets/iso_files/filelist.xml
|
892
886
|
Content-Transfer-Encoding: base64
|
893
887
|
Content-Type: application/xml
|
@@ -897,7 +891,7 @@ ICAgICAgIDxvOk1haW5GaWxlIEhSZWY9Ii4uL3NwZWMvYXNzZXRzL2lzby5odG0iLz4gIDxvOkZp
|
|
897
891
|
bGUgSFJlZj0iZmlsZWxpc3QueG1sIi8+CiAgPG86RmlsZSBIUmVmPSJoZWFkZXIuaHRtbCIvPgo8
|
898
892
|
L3htbD4K
|
899
893
|
|
900
|
-
------=
|
894
|
+
------=_NextPart_f1bb7f88.630f.42d2
|
901
895
|
Content-Location: file:///C:/Doc/spec/assets/iso_files/header.html
|
902
896
|
Content-Transfer-Encoding: base64
|
903
897
|
Content-Type: text/html charset="utf-8"
|
@@ -1090,4 +1084,4 @@ cD4NCg0KPHAgY2xhc3M9TXNvRm9vdGVyPjxzcGFuIGxhbmc9RU4tQVUgc3R5bGU9J2ZvbnQtc2l6
|
|
1090
1084
|
ZToxMC4wcHQ7Jz7CqQ0KJm5ic3A7Jm5ic3A74oCTIEFsbCByaWdodHMgcmVzZXJ2ZWQ8bzpwPjwv
|
1091
1085
|
bzpwPjwvc3Bhbj48L3A+DQoNCjwvZGl2Pg0KDQoNCg0KPC9ib2R5Pg0KDQo8L2h0bWw+DQo=
|
1092
1086
|
|
1093
|
-
------=
|
1087
|
+
------=_NextPart_f1bb7f88.630f.42d2--
|
data/spec/examples/rice.adoc
CHANGED
@@ -75,8 +75,6 @@ Rice is a permanent host to a considerable microflora; most of these microorgani
|
|
75
75
|
Storage losses have been estimated as being an average of 5 %, and as much as 30 %, especially in countries with climates favourable to the rapid development of agents of deterioration and where storage techniques are poorly developed, such as developing countries in the damp tropics. The magnitude of these figures highlights the need to promote throughout the world a rapid improvement in techniques of conservation.
|
76
76
|
|
77
77
|
|
78
|
-
=== Patent Notice
|
79
|
-
|
80
78
|
The International Organization for Standardization (ISO) draws attention to the fact that it is claimed that compliance with this document may involve the use of a patent concerning sample dividers given in <<AnnexA>> and shown in <<figureA-1>>.
|
81
79
|
|
82
80
|
ISO takes no position concerning the evidence, validity and scope of this patent right.
|
@@ -439,11 +439,7 @@ body.book #toc,body.book #preamble,body.book h1.sect0,body.book .sect1>h2{page-b
|
|
439
439
|
<div id="toc" class="toc">
|
440
440
|
<div id="toctitle">Table of Contents</div>
|
441
441
|
<ul class="sectlevel1">
|
442
|
-
<li><a href="#_introduction">Introduction</a>
|
443
|
-
<ul class="sectlevel2">
|
444
|
-
<li><a href="#_patent_notice">Patent Notice</a></li>
|
445
|
-
</ul>
|
446
|
-
</li>
|
442
|
+
<li><a href="#_introduction">Introduction</a></li>
|
447
443
|
<li><a href="#_scope">1. Scope</a></li>
|
448
444
|
<li><a href="#_normative_references">Normative References</a></li>
|
449
445
|
<li><a href="#_terms_and_definitions">2. Terms and Definitions</a>
|
@@ -583,8 +579,6 @@ is a worldwide federation of national standards bodies (ISO member bodies). The
|
|
583
579
|
<div class="paragraph">
|
584
580
|
<p>Storage losses have been estimated as being an average of 5 %, and as much as 30 %, especially in countries with climates favourable to the rapid development of agents of deterioration and where storage techniques are poorly developed, such as developing countries in the damp tropics. The magnitude of these figures highlights the need to promote throughout the world a rapid improvement in techniques of conservation.</p>
|
585
581
|
</div>
|
586
|
-
<div class="sect2">
|
587
|
-
<h3 id="_patent_notice">Patent Notice</h3>
|
588
582
|
<div class="paragraph">
|
589
583
|
<p>The International Organization for Standardization (ISO) draws attention to the fact that it is claimed that compliance with this document may involve the use of a patent concerning sample dividers given in <a href="#AnnexA">Annex A</a> and shown in <a href="#figureA-1">Figure 1</a>.</p>
|
590
584
|
</div>
|
@@ -605,7 +599,6 @@ World<br>
|
|
605
599
|
</div>
|
606
600
|
</div>
|
607
601
|
</div>
|
608
|
-
</div>
|
609
602
|
<div class="sect1">
|
610
603
|
<h2 id="_scope">1. Scope</h2>
|
611
604
|
<div class="sectionbody">
|
@@ -1854,7 +1847,7 @@ end</code></pre>
|
|
1854
1847
|
</div>
|
1855
1848
|
<div id="footer">
|
1856
1849
|
<div id="footer-text">
|
1857
|
-
Last updated 2018-
|
1850
|
+
Last updated 2018-08-19 19:05:52 AEST
|
1858
1851
|
</div>
|
1859
1852
|
</div>
|
1860
1853
|
<script type="text/x-mathjax-config">
|