metanorma-standoc 1.3.28 → 1.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/macos.yml +8 -7
- data/.github/workflows/ubuntu.yml +14 -11
- data/.github/workflows/windows.yml +8 -8
- data/.gitignore +1 -0
- data/lib/asciidoctor/standoc/base.rb +29 -48
- data/lib/asciidoctor/standoc/biblio.rng +36 -6
- data/lib/asciidoctor/standoc/blocks.rb +32 -96
- data/lib/asciidoctor/standoc/blocks_notes.rb +89 -0
- data/lib/asciidoctor/standoc/cleanup.rb +12 -6
- data/lib/asciidoctor/standoc/cleanup_block.rb +5 -2
- data/lib/asciidoctor/standoc/cleanup_inline.rb +1 -1
- data/lib/asciidoctor/standoc/cleanup_ref.rb +47 -1
- data/lib/asciidoctor/standoc/cleanup_section.rb +8 -125
- data/lib/asciidoctor/standoc/cleanup_terms.rb +134 -0
- data/lib/asciidoctor/standoc/converter.rb +16 -0
- data/lib/asciidoctor/standoc/datamodel/attributes_table_preprocessor.rb +57 -0
- data/lib/asciidoctor/standoc/datamodel/diagram_preprocessor.rb +102 -0
- data/lib/asciidoctor/standoc/datamodel/plantuml_renderer.rb +408 -0
- data/lib/asciidoctor/standoc/inline.rb +11 -6
- data/lib/asciidoctor/standoc/isodoc.rng +444 -1
- data/lib/asciidoctor/standoc/lists.rb +12 -12
- data/lib/asciidoctor/standoc/macros.rb +13 -8
- data/lib/asciidoctor/standoc/macros_yaml2text.rb +44 -21
- data/lib/asciidoctor/standoc/ref.rb +78 -79
- data/lib/asciidoctor/standoc/ref_sect.rb +124 -0
- data/lib/asciidoctor/standoc/reqt.rb +11 -6
- data/lib/asciidoctor/standoc/reqt.rng +23 -0
- data/lib/asciidoctor/standoc/section.rb +2 -46
- data/lib/asciidoctor/standoc/table.rb +3 -2
- data/lib/asciidoctor/standoc/validate.rb +8 -2
- data/lib/asciidoctor/standoc/validate_section.rb +0 -2
- data/lib/asciidoctor/standoc/views/datamodel/model_representation.adoc.erb +30 -0
- data/lib/asciidoctor/standoc/views/datamodel/plantuml_representation.adoc.erb +20 -0
- data/lib/metanorma/standoc/processor.rb +5 -7
- data/lib/metanorma/standoc/version.rb +1 -1
- data/metanorma-standoc.gemspec +2 -2
- data/spec/asciidoctor-standoc/blocks_spec.rb +68 -23
- data/spec/asciidoctor-standoc/cleanup_spec.rb +85 -5
- data/spec/asciidoctor-standoc/datamodel/attributes_table_preprocessor_spec.rb +111 -0
- data/spec/asciidoctor-standoc/datamodel/diagram_preprocessor_spec.rb +72 -0
- data/spec/asciidoctor-standoc/inline_spec.rb +7 -3
- data/spec/asciidoctor-standoc/isobib_cache_spec.rb +4 -4
- data/spec/asciidoctor-standoc/lists_spec.rb +7 -5
- data/spec/asciidoctor-standoc/macros_spec.rb +54 -2
- data/spec/asciidoctor-standoc/macros_yaml2text_spec.rb +2 -1
- data/spec/asciidoctor-standoc/refs_dl_spec.rb +4 -2
- data/spec/asciidoctor-standoc/refs_spec.rb +283 -24
- data/spec/asciidoctor-standoc/table_spec.rb +3 -3
- data/spec/asciidoctor-standoc/validate_spec.rb +77 -7
- data/spec/assets/iso123.rxl +107 -0
- data/spec/assets/xref_error.adoc +7 -0
- data/spec/examples/datamodel/address_class_profile.adoc +4 -0
- data/spec/examples/datamodel/address_component_profile.adoc +4 -0
- data/spec/examples/datamodel/blank_definition_profile.adoc +4 -0
- data/spec/examples/datamodel/common_models_diagram.adoc +4 -0
- data/spec/examples/datamodel/models/models/AddressClassProfile.yml +90 -0
- data/spec/examples/datamodel/models/models/AddressComponentProfile.yml +63 -0
- data/spec/examples/datamodel/models/models/AddressComponentSpecification.yml +15 -0
- data/spec/examples/datamodel/models/models/AddressProfile.yml +36 -0
- data/spec/examples/datamodel/models/models/AttributeProfile.yml +32 -0
- data/spec/examples/datamodel/models/models/InterchangeAddressClassProfile.yml +79 -0
- data/spec/examples/datamodel/models/models/Localization copy.yml +23 -0
- data/spec/examples/datamodel/models/models/Localization.yml +23 -0
- data/spec/examples/datamodel/models/models/ProfileCompliantAddress.yml +36 -0
- data/spec/examples/datamodel/models/models/ProfileCompliantAddressComponent.yml +15 -0
- data/spec/examples/datamodel/models/models/Signature.yml +20 -0
- data/spec/examples/datamodel/models/models/SignatureBlankDefinition.yml +20 -0
- data/spec/examples/datamodel/models/models/TextDirectionCode copy.yml +16 -0
- data/spec/examples/datamodel/models/models/TextDirectionCode.yml +16 -0
- data/spec/examples/datamodel/models/models/Validity.yml +14 -0
- data/spec/examples/datamodel/models/models/iso19160-1/Address.yml +22 -0
- data/spec/examples/datamodel/models/models/iso19160-1/AddressComponent.yml +2 -0
- data/spec/examples/datamodel/models/style.uml.inc +37 -0
- data/spec/examples/datamodel/models/views/CommonModels.yml +9 -0
- data/spec/examples/datamodel/models/views/TopDown.yml +62 -0
- data/spec/examples/datamodel/top_down_diagram.adoc +4 -0
- data/spec/fixtures/macros_datamodel/address_class_profile.xml +149 -0
- data/spec/fixtures/macros_datamodel/address_component_profile.xml +71 -0
- data/spec/fixtures/macros_datamodel/blank_definition_profile.xml +51 -0
- data/spec/fixtures/macros_datamodel/common_models_diagram.xml +7 -0
- data/spec/fixtures/macros_datamodel/top_down_diagram.xml +7 -0
- data/spec/metanorma/processor_spec.rb +4 -4
- data/spec/spec_helper.rb +13 -2
- data/spec/vcr_cassettes/dated_iso_ref_joint_iso_iec.yml +85 -85
- data/spec/vcr_cassettes/isobib_get_123.yml +19 -198
- data/spec/vcr_cassettes/isobib_get_123_1.yml +361 -0
- data/spec/vcr_cassettes/isobib_get_123_2001.yml +22 -22
- data/spec/vcr_cassettes/isobib_get_124.yml +21 -21
- data/spec/vcr_cassettes/rfcbib_get_rfc8341.yml +10 -10
- data/spec/vcr_cassettes/separates_iev_citations_by_top_level_clause.yml +47 -44
- metadata +53 -11
@@ -0,0 +1,72 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
RSpec.describe Asciidoctor::Standoc::Datamodel::DiagramPreprocessor do
|
6
|
+
describe '#process' do
|
7
|
+
context 'when simple models without relations' do
|
8
|
+
let(:datamodel_file) do
|
9
|
+
examples_path('datamodel/common_models_diagram.adoc')
|
10
|
+
end
|
11
|
+
let(:result_file) do
|
12
|
+
examples_path('datamodel/common_models_diagram.xml')
|
13
|
+
end
|
14
|
+
let(:output) do
|
15
|
+
[
|
16
|
+
BLANK_HDR,
|
17
|
+
File.read(
|
18
|
+
fixtures_path('macros_datamodel/common_models_diagram.xml')
|
19
|
+
)
|
20
|
+
].join
|
21
|
+
end
|
22
|
+
|
23
|
+
after do
|
24
|
+
%w[doc html xml err].each do |extention|
|
25
|
+
path = examples_path("datamodel/common_models_diagram.#{extention}")
|
26
|
+
FileUtils.rm_f(path)
|
27
|
+
FileUtils.rm_f("common_models_diagram.#{extention}")
|
28
|
+
end
|
29
|
+
FileUtils.rm_rf('common_models_diagram_htmlimages')
|
30
|
+
end
|
31
|
+
|
32
|
+
it 'correctly renders input' do
|
33
|
+
Asciidoctor.convert_file(datamodel_file,
|
34
|
+
backend: :standoc,
|
35
|
+
safe: :safe,
|
36
|
+
header_footer: true)
|
37
|
+
expect(xmlpp(strip_src(strip_guid(File.read(result_file)))))
|
38
|
+
.to(be_equivalent_to(xmlpp(output)))
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
context 'when complex relations' do
|
43
|
+
let(:datamodel_file) { examples_path('datamodel/top_down_diagram.adoc') }
|
44
|
+
let(:result_file) { examples_path('datamodel/top_down_diagram.xml') }
|
45
|
+
let(:output) do
|
46
|
+
[
|
47
|
+
BLANK_HDR,
|
48
|
+
File.read(fixtures_path('macros_datamodel/top_down_diagram.xml'))
|
49
|
+
].join("\n")
|
50
|
+
end
|
51
|
+
|
52
|
+
after do
|
53
|
+
%w[doc html xml err].each do |extention|
|
54
|
+
path = examples_path("datamodel/top_down_diagram.#{extention}")
|
55
|
+
FileUtils.rm_f(path)
|
56
|
+
FileUtils.rm_f("top_down_diagram.#{extention}")
|
57
|
+
end
|
58
|
+
FileUtils.rm_rf(examples_path('datamodel/plantuml'))
|
59
|
+
FileUtils.rm_rf('top_down_diagram_htmlimages')
|
60
|
+
end
|
61
|
+
|
62
|
+
it 'correctly renders input' do
|
63
|
+
Asciidoctor.convert_file(datamodel_file,
|
64
|
+
backend: :standoc,
|
65
|
+
safe: :safe,
|
66
|
+
header_footer: true)
|
67
|
+
expect(xmlpp(strip_src(strip_guid(File.read(result_file)))))
|
68
|
+
.to(be_equivalent_to(xmlpp(output)))
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
@@ -88,7 +88,7 @@ text, including nested markup.
|
|
88
88
|
<sections>
|
89
89
|
<p id="_">
|
90
90
|
<stem type="MathML"><math xmlns="http://www.w3.org/1998/Math/MathML"><mi>n</mi><mo><</mo><mn>1</mn></math></stem><br/>
|
91
|
-
<stem type="MathML"> <math xmlns="http://www.w3.org/1998/Math/MathML"
|
91
|
+
<stem type="MathML"> <math xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mi>n</mi> <mo><</mo> <mn>1</mn> </mrow> </math></stem>
|
92
92
|
</p>
|
93
93
|
</sections>
|
94
94
|
</standard-document>
|
@@ -106,7 +106,7 @@ text, including nested markup.
|
|
106
106
|
<sections>
|
107
107
|
<p id="_">
|
108
108
|
<stem type="MathML"><math xmlns="http://www.w3.org/1998/Math/MathML"><mi>n</mi><mo><</mo><mn>1</mn></math></stem>
|
109
|
-
<stem type="MathML"> <math xmlns="http://www.w3.org/1998/Math/MathML"
|
109
|
+
<stem type="MathML"> <math xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mi>n</mi> <mo><</mo> <mn>1</mn> </mrow> </math></stem>
|
110
110
|
</p>
|
111
111
|
</sections>
|
112
112
|
</standard-document>
|
@@ -198,6 +198,8 @@ text, including nested markup.
|
|
198
198
|
Inline Reference with Text to <<reference,text>>
|
199
199
|
Footnoted Reference with Text to <<reference,fn: text>>
|
200
200
|
Anchored Crossreference to other document <<a.adoc#b>>
|
201
|
+
Capitalised Reference to <<reference,capital%>>
|
202
|
+
Lowercase Footnoted Reference to <<reference,capital%fn>>
|
201
203
|
INPUT
|
202
204
|
#{BLANK_HDR}
|
203
205
|
<sections>
|
@@ -207,7 +209,9 @@ text, including nested markup.
|
|
207
209
|
Footnoted Reference to <xref target="reference"/>
|
208
210
|
Inline Reference with Text to <xref target="reference">text</xref>
|
209
211
|
Footnoted Reference with Text to <xref target="reference">text</xref>
|
210
|
-
Anchored Crossreference to other document <xref target="a#b"
|
212
|
+
Anchored Crossreference to other document <xref target="a#b"/>
|
213
|
+
Capitalised Reference to <xref target='reference' case='capital'></xref>
|
214
|
+
Lowercase Footnoted Reference to <xref target='reference' case='capital'></xref></p>
|
211
215
|
</clause>
|
212
216
|
</sections>
|
213
217
|
</standard-document>
|
@@ -47,10 +47,10 @@ EOS
|
|
47
47
|
<fetched>#{Date.today}</fetched>
|
48
48
|
<title type="title-intro" format="text/plain" language="en" script="Latn">Latex, rubber</title>
|
49
49
|
<title type="title-main" format="text/plain" language="en" script="Latn">Determination of total solids content</title>
|
50
|
-
<title type=
|
50
|
+
<title type='main' format='text/plain' language='en' script='Latn'>Latex, rubber - Determination of total solids content</title>
|
51
51
|
<title type="title-intro" format="text/plain" language="fr" script="Latn">Latex de caoutchouc</title>
|
52
52
|
<title type="title-main" format="text/plain" language="fr" script="Latn">Détermination des matières solides totales</title>
|
53
|
-
<title type=
|
53
|
+
<title type='main' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc - Détermination des matières solides totales</title>
|
54
54
|
<uri type="src">https://www.iso.org/standard/61884.html</uri>
|
55
55
|
<uri type="obp">https://www.iso.org/obp/ui/#!iso:std:61884:en</uri>
|
56
56
|
<uri type="rss">https://www.iso.org/contents/data/standard/06/18/61884.detail.rss</uri>
|
@@ -217,10 +217,10 @@ EOS
|
|
217
217
|
<fetched>#{Date.today}</fetched>
|
218
218
|
<title type="title-intro" format="text/plain" language="en" script="Latn">Rubber latex</title>
|
219
219
|
<title type="title-main" format="text/plain" language="en" script="Latn">Sampling</title>
|
220
|
-
<title type=
|
220
|
+
<title type='main' format='text/plain' language='en' script='Latn'>Rubber latex - Sampling</title>
|
221
221
|
<title type="title-intro" format="text/plain" language="fr" script="Latn">Latex de caoutchouc</title>
|
222
222
|
<title type="title-main" format="text/plain" language="fr" script="Latn">Échantillonnage</title>
|
223
|
-
<title type=
|
223
|
+
<title type='main' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc - Échantillonnage</title>
|
224
224
|
<uri type="src">https://www.iso.org/standard/23281.html</uri>
|
225
225
|
<uri type="obp">https://www.iso.org/obp/ui/#!iso:std:23281:en</uri>
|
226
226
|
<uri type="rss">https://www.iso.org/contents/data/standard/02/32/23281.detail.rss</uri>
|
@@ -73,6 +73,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
73
73
|
output = Asciidoctor.convert(<<~"INPUT", backend: :standoc, header_footer: true)
|
74
74
|
#{ASCIIDOC_BLANK_HDR}
|
75
75
|
[[id]]
|
76
|
+
[keep-with-next=true,keep-lines-together=true]
|
76
77
|
* First
|
77
78
|
* Second
|
78
79
|
+
|
@@ -83,6 +84,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
83
84
|
--
|
84
85
|
|
85
86
|
[[id1]]
|
87
|
+
[keep-with-next=true,keep-lines-together=true]
|
86
88
|
[loweralpha]
|
87
89
|
. First
|
88
90
|
. Second
|
@@ -101,8 +103,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
101
103
|
[arabic]
|
102
104
|
... E
|
103
105
|
... F
|
104
|
-
|
105
|
-
|
106
|
+
[keep-with-next=true,keep-lines-together=true]
|
106
107
|
Notes1::
|
107
108
|
Notes:: Note 1.
|
108
109
|
+
|
@@ -113,14 +114,14 @@ RSpec.describe Asciidoctor::Standoc do
|
|
113
114
|
INPUT
|
114
115
|
expect(xmlpp(strip_guid(output))).to be_equivalent_to xmlpp(<<~"OUTPUT")
|
115
116
|
#{BLANK_HDR}
|
116
|
-
<sections><ul id="id">
|
117
|
+
<sections><ul id="id" keep-with-next="true" keep-lines-together="true">
|
117
118
|
<li>
|
118
119
|
<p id="_">First</p>
|
119
120
|
</li>
|
120
121
|
<li><p id="_">Second</p><p id="_">entry1</p>
|
121
122
|
<p id="_">entry2</p></li>
|
122
123
|
</ul>
|
123
|
-
<ol id="id1" type="alphabet">
|
124
|
+
<ol id="id1" type="alphabet" keep-with-next="true" keep-lines-together="true">
|
124
125
|
<li>
|
125
126
|
<p id="_">First</p>
|
126
127
|
</li>
|
@@ -160,7 +161,8 @@ RSpec.describe Asciidoctor::Standoc do
|
|
160
161
|
</li>
|
161
162
|
<li>
|
162
163
|
<p id="_">F</p>
|
163
|
-
|
164
|
+
|
165
|
+
<dl id="_" keep-with-next="true" keep-lines-together="true">
|
164
166
|
<dt>Notes1</dt>
|
165
167
|
<dd/>
|
166
168
|
<dt>Notes</dt>
|
@@ -223,7 +223,8 @@ OUTPUT
|
|
223
223
|
expect(xmlpp(strip_guid(Asciidoctor.convert(<<~"INPUT", backend: :standoc, header_footer: true)))).to be_equivalent_to xmlpp(<<~"OUTPUT")
|
224
224
|
#{ASCIIDOC_BLANK_HDR}
|
225
225
|
|
226
|
-
[pseudocode]
|
226
|
+
[pseudocode,subsequence="A",number="3",keep-with-next=true,keep-lines-together=true]
|
227
|
+
[%unnumbered]
|
227
228
|
====
|
228
229
|
*A* +
|
229
230
|
[smallcap]#B#
|
@@ -233,7 +234,8 @@ OUTPUT
|
|
233
234
|
INPUT
|
234
235
|
#{BLANK_HDR}
|
235
236
|
<sections>
|
236
|
-
<figure id="_" class="pseudocode"
|
237
|
+
<figure id="_" subsequence='A' class="pseudocode" unnumbered="true" number="3" keep-with-next="true" keep-lines-together="true">
|
238
|
+
<p id="_"> <strong>A</strong><br/>
|
237
239
|
<smallcap>B</smallcap></p>
|
238
240
|
<p id="_"> <em>C</em></p></figure>
|
239
241
|
</sections>
|
@@ -269,6 +271,56 @@ OUTPUT
|
|
269
271
|
</p>
|
270
272
|
</figure>
|
271
273
|
</sections>
|
274
|
+
</standard-document>
|
275
|
+
OUTPUT
|
276
|
+
end
|
277
|
+
|
278
|
+
it "skips embedded blocks when supplying line breaks in pseudocode" do
|
279
|
+
expect(xmlpp(strip_guid(Asciidoctor.convert(<<~"INPUT", backend: :standoc, header_footer: true)))).to be_equivalent_to xmlpp(<<~"OUTPUT")
|
280
|
+
#{ASCIIDOC_BLANK_HDR}
|
281
|
+
|
282
|
+
[pseudocode]
|
283
|
+
====
|
284
|
+
[stem]
|
285
|
+
++++
|
286
|
+
bar X' = (1)/(v) sum_(i = 1)^(v) t_(i)
|
287
|
+
++++
|
288
|
+
====
|
289
|
+
INPUT
|
290
|
+
#{BLANK_HDR}
|
291
|
+
<sections>
|
292
|
+
<figure id='_' class='pseudocode'>
|
293
|
+
<formula id='_'>
|
294
|
+
<stem type='MathML'>
|
295
|
+
<math xmlns='http://www.w3.org/1998/Math/MathML'>
|
296
|
+
<mover>
|
297
|
+
<mi>X</mi>
|
298
|
+
<mo>¯</mo>
|
299
|
+
</mover>
|
300
|
+
<mo>′</mo>
|
301
|
+
<mo>=</mo>
|
302
|
+
<mfrac>
|
303
|
+
<mn>1</mn>
|
304
|
+
<mi>v</mi>
|
305
|
+
</mfrac>
|
306
|
+
<munderover>
|
307
|
+
<mo>∑</mo>
|
308
|
+
<mrow>
|
309
|
+
<mi>i</mi>
|
310
|
+
<mo>=</mo>
|
311
|
+
<mn>1</mn>
|
312
|
+
</mrow>
|
313
|
+
<mi>v</mi>
|
314
|
+
</munderover>
|
315
|
+
<msub>
|
316
|
+
<mi>t</mi>
|
317
|
+
<mi>i</mi>
|
318
|
+
</msub>
|
319
|
+
</math>
|
320
|
+
</stem>
|
321
|
+
</formula>
|
322
|
+
</figure>
|
323
|
+
</sections>
|
272
324
|
</standard-document>
|
273
325
|
OUTPUT
|
274
326
|
end
|
@@ -43,7 +43,8 @@ RSpec.describe Asciidoctor::Standoc do
|
|
43
43
|
#{NORM_REF_BOILERPLATE}
|
44
44
|
<bibitem id="iso123" type="standard">
|
45
45
|
<fetched>#{Date.today}</fetched>
|
46
|
-
|
46
|
+
<title type='title-main' format='text/plain'>Standard</title>
|
47
|
+
<title type='main' format='text/plain'>Standard</title>
|
47
48
|
<docidentifier type="ISO">ISO 123</docidentifier>
|
48
49
|
<contributor>
|
49
50
|
<role type="publisher"/>
|
@@ -813,7 +814,8 @@ OUTPUT
|
|
813
814
|
</bibitem>
|
814
815
|
<bibitem id='iso123' type='standard'>
|
815
816
|
<fetched>#{Date.today.to_s}</fetched>
|
816
|
-
<title type='main' format='text/plain'
|
817
|
+
<title type='title-main' format='text/plain'>Standard</title>
|
818
|
+
<title type='main' format='text/plain'>Standard</title>
|
817
819
|
<docidentifier type='ISO'>ISO 123</docidentifier>
|
818
820
|
<contributor>
|
819
821
|
<role type='publisher'/>
|
@@ -224,14 +224,14 @@ RSpec.describe Asciidoctor::Standoc do
|
|
224
224
|
|
225
225
|
it "fetches simple ISO reference" do
|
226
226
|
# mock_isobib_get_123
|
227
|
-
VCR.use_cassette "
|
227
|
+
VCR.use_cassette "isobib_get_123_1" do
|
228
228
|
expect(xmlpp(strip_guid(Asciidoctor.convert(<<~"INPUT", backend: :standoc, header_footer: true)))).to be_equivalent_to xmlpp( <<~"OUTPUT")
|
229
229
|
#{ISOBIB_BLANK_HDR}
|
230
230
|
[bibliography]
|
231
231
|
== Normative References
|
232
232
|
|
233
233
|
* [[[iso123,ISO 123]]] _Standard_
|
234
|
-
* [[[
|
234
|
+
* [[[iso124,(1)ISO 123]]] _Standard_
|
235
235
|
INPUT
|
236
236
|
#{BLANK_HDR}
|
237
237
|
<sections>
|
@@ -288,10 +288,10 @@ RSpec.describe Asciidoctor::Standoc do
|
|
288
288
|
<fetched>#{Date.today}</fetched>
|
289
289
|
<title type='title-intro' format='text/plain' language='en' script='Latn'>Rubber latex</title>
|
290
290
|
<title type='title-main' format='text/plain' language='en' script='Latn'>Sampling</title>
|
291
|
-
<title type='main' format='text/plain' language='en' script='Latn'>Rubber latex
|
291
|
+
<title type='main' format='text/plain' language='en' script='Latn'>Rubber latex — Sampling</title>
|
292
292
|
<title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc</title>
|
293
293
|
<title type='title-main' format='text/plain' language='fr' script='Latn'>Échantillonnage</title>
|
294
|
-
<title type='main' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc
|
294
|
+
<title type='main' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc — Échantillonnage</title>
|
295
295
|
<uri type='src'>https://www.iso.org/standard/23281.html</uri>
|
296
296
|
<uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:23281:en</uri>
|
297
297
|
<uri type='rss'>https://www.iso.org/contents/data/standard/02/32/23281.detail.rss</uri>
|
@@ -344,7 +344,7 @@ RSpec.describe Asciidoctor::Standoc do
|
|
344
344
|
</relation>
|
345
345
|
<place>Geneva</place>
|
346
346
|
</bibitem>
|
347
|
-
<bibitem id='
|
347
|
+
<bibitem id='iso124' type='standard'>
|
348
348
|
<fetched>#{Date.today}</fetched>
|
349
349
|
<title type='title-intro' format='text/plain' language='en' script='Latn'>Rubber latex</title>
|
350
350
|
<title type='title-main' format='text/plain' language='en' script='Latn'>Sampling</title>
|
@@ -395,10 +395,10 @@ RSpec.describe Asciidoctor::Standoc do
|
|
395
395
|
<fetched>#{Date.today}</fetched>
|
396
396
|
<title type='title-intro' format='text/plain' language='en' script='Latn'>Rubber latex</title>
|
397
397
|
<title type='title-main' format='text/plain' language='en' script='Latn'>Sampling</title>
|
398
|
-
<title type='main' format='text/plain' language='en' script='Latn'>Rubber latex
|
398
|
+
<title type='main' format='text/plain' language='en' script='Latn'>Rubber latex — Sampling</title>
|
399
399
|
<title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc</title>
|
400
400
|
<title type='title-main' format='text/plain' language='fr' script='Latn'>Échantillonnage</title>
|
401
|
-
<title type='main' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc
|
401
|
+
<title type='main' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc — Échantillonnage</title>
|
402
402
|
<uri type='src'>https://www.iso.org/standard/23281.html</uri>
|
403
403
|
<uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:23281:en</uri>
|
404
404
|
<uri type='rss'>https://www.iso.org/contents/data/standard/02/32/23281.detail.rss</uri>
|
@@ -575,10 +575,10 @@ RSpec.describe Asciidoctor::Standoc do
|
|
575
575
|
<fetched>#{Date.today}</fetched>
|
576
576
|
<title type="title-intro" format="text/plain" language="en" script="Latn">Latex, rubber</title>
|
577
577
|
<title type="title-main" format="text/plain" language="en" script="Latn">Determination of total solids content</title>
|
578
|
-
<title type=
|
578
|
+
<title type='main' format='text/plain' language='en' script='Latn'>Latex, rubber — Determination of total solids content</title>
|
579
579
|
<title type="title-intro" format="text/plain" language="fr" script="Latn">Latex de caoutchouc</title>
|
580
580
|
<title type="title-main" format="text/plain" language="fr" script="Latn">Détermination des matières solides totales</title>
|
581
|
-
|
581
|
+
<title type='main' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc — Détermination des matières solides totales</title>
|
582
582
|
<uri type="src">https://www.iso.org/standard/61884.html</uri>
|
583
583
|
<uri type="obp">https://www.iso.org/obp/ui/#!iso:std:61884:en</uri>
|
584
584
|
<uri type="rss">https://www.iso.org/contents/data/standard/06/18/61884.detail.rss</uri>
|
@@ -623,9 +623,9 @@ RSpec.describe Asciidoctor::Standoc do
|
|
623
623
|
<bibitem type="standard" id="iso125">
|
624
624
|
<fetched>#{Date.today}</fetched>
|
625
625
|
<title type="title-main" format="text/plain" language="en" script="Latn">Permuted index of the vocabulary of information technology</title>
|
626
|
-
<title type=
|
626
|
+
<title type='main' format='text/plain' language='en' script='Latn'>Permuted index of the vocabulary of information technology</title>
|
627
627
|
<title type="title-main" format="text/plain" language="fr" script="Latn">Index permuté du vocabulaire des technologies de l’information</title>
|
628
|
-
<title type=
|
628
|
+
<title type='main' format='text/plain' language='fr' script='Latn'>Index permuté du vocabulaire des technologies de l’information</title>
|
629
629
|
<uri type="src">https://www.iso.org/standard/21071.html</uri>
|
630
630
|
<uri type="obp">https://www.iso.org/obp/ui/#!iso:std:21071:en</uri>
|
631
631
|
<uri type="rss">https://www.iso.org/contents/data/standard/02/10/21071.detail.rss</uri>
|
@@ -675,10 +675,10 @@ RSpec.describe Asciidoctor::Standoc do
|
|
675
675
|
<fetched>#{Date.today}</fetched>
|
676
676
|
<title type="title-intro" format="text/plain" language="en" script="Latn">Latex, rubber</title>
|
677
677
|
<title type="title-main" format="text/plain" language="en" script="Latn">Determination of total solids content</title>
|
678
|
-
<title type=
|
678
|
+
<title type='main' format='text/plain' language='en' script='Latn'>Latex, rubber — Determination of total solids content</title>
|
679
679
|
<title type="title-intro" format="text/plain" language="fr" script="Latn">Latex de caoutchouc</title>
|
680
680
|
<title type="title-main" format="text/plain" language="fr" script="Latn">Détermination des matières solides totales</title>
|
681
|
-
|
681
|
+
<title type='main' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc — Détermination des matières solides totales</title>
|
682
682
|
<uri type="src">https://www.iso.org/standard/61884.html</uri>
|
683
683
|
<uri type="obp">https://www.iso.org/obp/ui/#!iso:std:61884:en</uri>
|
684
684
|
<uri type="rss">https://www.iso.org/contents/data/standard/06/18/61884.detail.rss</uri>
|
@@ -748,17 +748,17 @@ RSpec.describe Asciidoctor::Standoc do
|
|
748
748
|
<formattedref format='application/x-isodoc+xml'>
|
749
749
|
<em>Standard</em>
|
750
750
|
</formattedref>
|
751
|
-
<docidentifier>ISO/IEC TR 12382:1992</docidentifier>
|
752
|
-
<docnumber>12382:1992
|
751
|
+
<docidentifier type='ISO'>ISO/IEC TR 12382:1992</docidentifier>
|
752
|
+
<docnumber>12382:1992</docnumber>
|
753
753
|
</bibitem>
|
754
754
|
<bibitem id='iso124' type='standard'>
|
755
755
|
<fetched>#{Date.today}</fetched>
|
756
756
|
<title type='title-intro' format='text/plain' language='en' script='Latn'>Latex, rubber</title>
|
757
757
|
<title type='title-main' format='text/plain' language='en' script='Latn'>Determination of total solids content</title>
|
758
|
-
<title type='main' format='text/plain' language='en' script='Latn'>Latex, rubber
|
758
|
+
<title type='main' format='text/plain' language='en' script='Latn'>Latex, rubber — Determination of total solids content</title>
|
759
759
|
<title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc</title>
|
760
760
|
<title type='title-main' format='text/plain' language='fr' script='Latn'>Détermination des matières solides totales</title>
|
761
|
-
<title type='main' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc
|
761
|
+
<title type='main' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc — Détermination des matières solides totales</title>
|
762
762
|
<uri type='src'>https://www.iso.org/standard/61884.html</uri>
|
763
763
|
<uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:61884:en</uri>
|
764
764
|
<uri type='rss'>https://www.iso.org/contents/data/standard/06/18/61884.detail.rss</uri>
|
@@ -850,7 +850,7 @@ OUTPUT
|
|
850
850
|
<name>ISO</name>
|
851
851
|
</organization>
|
852
852
|
</contributor>
|
853
|
-
<note format="text/plain"
|
853
|
+
<note format="text/plain" type="ISO DATE">The standard is in press</note>
|
854
854
|
</bibitem>
|
855
855
|
<bibitem id="iso125" type="standard">
|
856
856
|
<title format="text/plain">Standard</title>
|
@@ -865,7 +865,7 @@ OUTPUT
|
|
865
865
|
<name>ISO</name>
|
866
866
|
</organization>
|
867
867
|
</contributor>
|
868
|
-
<note format="text/plain"
|
868
|
+
<note format="text/plain" type="ISO DATE">The standard is in press</note>
|
869
869
|
</bibitem>
|
870
870
|
<bibitem id='iso126' type='standard'>
|
871
871
|
<title format='text/plain'>Standard</title>
|
@@ -990,7 +990,7 @@ OUTPUT
|
|
990
990
|
</name>
|
991
991
|
<affiliation>
|
992
992
|
<organization>
|
993
|
-
<name>
|
993
|
+
<name>Internet Engineering Task Force</name>
|
994
994
|
<abbreviation>IETF</abbreviation>
|
995
995
|
</organization>
|
996
996
|
</affiliation>
|
@@ -1004,12 +1004,19 @@ OUTPUT
|
|
1004
1004
|
</name>
|
1005
1005
|
<affiliation>
|
1006
1006
|
<organization>
|
1007
|
-
<name>
|
1007
|
+
<name>Internet Engineering Task Force</name>
|
1008
1008
|
<abbreviation>IETF</abbreviation>
|
1009
1009
|
</organization>
|
1010
1010
|
</affiliation>
|
1011
1011
|
</person>
|
1012
1012
|
</contributor>
|
1013
|
+
<contributor>
|
1014
|
+
<role type='publisher'/>
|
1015
|
+
<organization>
|
1016
|
+
<name>Internet Engineering Task Force</name>
|
1017
|
+
<abbreviation>IETF</abbreviation>
|
1018
|
+
</organization>
|
1019
|
+
</contributor>
|
1013
1020
|
<language>en</language>
|
1014
1021
|
<script>Latn</script>
|
1015
1022
|
<abstract format="text/plain" language="en" script="Latn">The standardization of network configuration interfaces for use with the Network Configuration Protocol (NETCONF) or the RESTCONF protocol requires a structured and secure operating environment that promotes human usability and multi-vendor interoperability. There is a need for standard mechanisms to restrict NETCONF or RESTCONF protocol access for particular users to a preconfigured subset of all available NETCONF or RESTCONF protocol operations and content. This document defines such an access control model.This document obsoletes RFC 6536.</abstract>
|
@@ -1043,7 +1050,7 @@ OUTPUT
|
|
1043
1050
|
</name>
|
1044
1051
|
<affiliation>
|
1045
1052
|
<organization>
|
1046
|
-
<name>
|
1053
|
+
<name>Internet Engineering Task Force</name>
|
1047
1054
|
<abbreviation>IETF</abbreviation>
|
1048
1055
|
</organization>
|
1049
1056
|
</affiliation>
|
@@ -1057,12 +1064,19 @@ OUTPUT
|
|
1057
1064
|
</name>
|
1058
1065
|
<affiliation>
|
1059
1066
|
<organization>
|
1060
|
-
<name>
|
1067
|
+
<name>Internet Engineering Task Force</name>
|
1061
1068
|
<abbreviation>IETF</abbreviation>
|
1062
1069
|
</organization>
|
1063
1070
|
</affiliation>
|
1064
1071
|
</person>
|
1065
1072
|
</contributor>
|
1073
|
+
<contributor>
|
1074
|
+
<role type='publisher'/>
|
1075
|
+
<organization>
|
1076
|
+
<name>Internet Engineering Task Force</name>
|
1077
|
+
<abbreviation>IETF</abbreviation>
|
1078
|
+
</organization>
|
1079
|
+
</contributor>
|
1066
1080
|
<language>en</language>
|
1067
1081
|
<script>Latn</script>
|
1068
1082
|
<abstract format="text/plain" language="en" script="Latn">The standardization of network configuration interfaces for use with the Network Configuration Protocol (NETCONF) or the RESTCONF protocol requires a structured and secure operating environment that promotes human usability and multi-vendor interoperability. There is a need for standard mechanisms to restrict NETCONF or RESTCONF protocol access for particular users to a preconfigured subset of all available NETCONF or RESTCONF protocol operations and content. This document defines such an access control model.This document obsoletes RFC 6536.</abstract>
|
@@ -1230,7 +1244,252 @@ OUTPUT
|
|
1230
1244
|
OUTPUT
|
1231
1245
|
end
|
1232
1246
|
|
1233
|
-
|
1247
|
+
it "processes repository reference" do
|
1248
|
+
expect(xmlpp(strip_guid(Asciidoctor.convert(<<~"INPUT", backend: :standoc, header_footer: true)))).to be_equivalent_to xmlpp( <<~"OUTPUT")
|
1249
|
+
#{ISOBIB_BLANK_HDR}
|
1250
|
+
== Scope
|
1251
|
+
|
1252
|
+
<<iso123>>
|
1253
|
+
|
1254
|
+
<<iso123,clause=1>>
|
1255
|
+
|
1256
|
+
[bibliography]
|
1257
|
+
== Normative References
|
1258
|
+
|
1259
|
+
* [[[iso123,repo:(a/b,ISO 123)]]] _Standard_
|
1260
|
+
INPUT
|
1261
|
+
#{BLANK_HDR}
|
1262
|
+
<sections>
|
1263
|
+
<clause id='_' inline-header='false' obligation='normative'>
|
1264
|
+
<title>Scope</title>
|
1265
|
+
<p id='_'>
|
1266
|
+
<eref type='inline' bibitemid='iso123' citeas='ISO 123'/>
|
1267
|
+
</p>
|
1268
|
+
<p id='_'>
|
1269
|
+
<eref type='inline' bibitemid='iso123' citeas='ISO 123'>
|
1270
|
+
<localityStack>
|
1271
|
+
<locality type='clause'>
|
1272
|
+
<referenceFrom>1</referenceFrom>
|
1273
|
+
</locality>
|
1274
|
+
</localityStack>
|
1275
|
+
</eref>
|
1276
|
+
</p>
|
1277
|
+
</clause>
|
1278
|
+
</sections>
|
1279
|
+
<bibliography>
|
1280
|
+
<references id='_' normative='true' obligation='informative'>
|
1281
|
+
<title>Normative References</title>
|
1282
|
+
<p id='_'>
|
1283
|
+
The following documents are referred to in the text in such a way that
|
1284
|
+
some or all of their content constitutes requirements of this document.
|
1285
|
+
For dated references, only the edition cited applies. For undated
|
1286
|
+
references, the latest edition of the referenced document (including any
|
1287
|
+
amendments) applies.
|
1288
|
+
</p>
|
1289
|
+
<bibitem id='iso123'>
|
1290
|
+
<formattedref format='application/x-isodoc+xml'>
|
1291
|
+
<em>Standard</em>
|
1292
|
+
</formattedref>
|
1293
|
+
<docidentifier type="ISO">ISO 123</docidentifier>
|
1294
|
+
<docidentifier type="repository">a/b</docidentifier>
|
1295
|
+
<docnumber>123</docnumber>
|
1296
|
+
</bibitem>
|
1297
|
+
</references>
|
1298
|
+
</bibliography>
|
1299
|
+
</standard-document>
|
1300
|
+
OUTPUT
|
1301
|
+
end
|
1302
|
+
|
1303
|
+
it "processes hyperlink reference, ingest RXL or XML if available" do
|
1304
|
+
expect(xmlpp(strip_guid(Asciidoctor.convert(<<~"INPUT", backend: :standoc, header_footer: true)))).to be_equivalent_to xmlpp( <<~"OUTPUT")
|
1305
|
+
#{ISOBIB_BLANK_HDR}
|
1306
|
+
== Scope
|
1307
|
+
|
1308
|
+
<<iso123>>
|
1309
|
+
|
1310
|
+
<<iso124,clause=1>>
|
1311
|
+
|
1312
|
+
<<iso123,anchor=xyz>>
|
1313
|
+
|
1314
|
+
<<iso124,clause=1,anchor=xyz>>
|
1315
|
+
|
1316
|
+
[bibliography]
|
1317
|
+
== Normative References
|
1318
|
+
|
1319
|
+
* [[[iso123,path:(spec/assets/iso123,ISO 123)]]] _Standard_
|
1320
|
+
* [[[iso124,path:(a/b.adoc,ISO 124)]]] _Standard_
|
1321
|
+
INPUT
|
1322
|
+
#{BLANK_HDR}
|
1323
|
+
<sections>
|
1324
|
+
<clause id='_' inline-header='false' obligation='normative'>
|
1325
|
+
<title>Scope</title>
|
1326
|
+
<p id='_'>
|
1327
|
+
<eref type='inline' bibitemid='iso123' citeas='ISO 123 (all parts)'/>
|
1328
|
+
</p>
|
1329
|
+
<p id='_'>
|
1330
|
+
<eref type='inline' bibitemid='iso124' citeas='ISO 124'>
|
1331
|
+
<localityStack>
|
1332
|
+
<locality type='clause'>
|
1333
|
+
<referenceFrom>1</referenceFrom>
|
1334
|
+
</locality>
|
1335
|
+
</localityStack>
|
1336
|
+
</eref>
|
1337
|
+
</p>
|
1338
|
+
<p id='_'>
|
1339
|
+
<eref type='inline' bibitemid='iso123' citeas='ISO 123 (all parts)'>
|
1340
|
+
<localityStack>
|
1341
|
+
<locality type='anchor'>
|
1342
|
+
<referenceFrom>xyz</referenceFrom>
|
1343
|
+
</locality>
|
1344
|
+
</localityStack>
|
1345
|
+
</eref>
|
1346
|
+
</p>
|
1347
|
+
<p id='_'>
|
1348
|
+
<eref type='inline' bibitemid='iso124' citeas='ISO 124'>
|
1349
|
+
<localityStack>
|
1350
|
+
<locality type='clause'>
|
1351
|
+
<referenceFrom>1</referenceFrom>
|
1352
|
+
</locality>
|
1353
|
+
<locality type='anchor'>
|
1354
|
+
<referenceFrom>xyz</referenceFrom>
|
1355
|
+
</locality>
|
1356
|
+
</localityStack>
|
1357
|
+
</eref>
|
1358
|
+
</p>
|
1359
|
+
</clause>
|
1360
|
+
</sections>
|
1361
|
+
<bibliography>
|
1362
|
+
<references id='_' normative='true' obligation='informative'>
|
1363
|
+
<title>Normative References</title>
|
1364
|
+
<p id='_'>
|
1365
|
+
The following documents are referred to in the text in such a way that
|
1366
|
+
some or all of their content constitutes requirements of this document.
|
1367
|
+
For dated references, only the edition cited applies. For undated
|
1368
|
+
references, the latest edition of the referenced document (including any
|
1369
|
+
amendments) applies.
|
1370
|
+
</p>
|
1371
|
+
<bibitem id='iso123' type='standard'>
|
1372
|
+
<fetched>2020-06-12</fetched>
|
1373
|
+
<title type='title-intro' format='text/plain' language='en' script='Latn'>Rubber latex</title>
|
1374
|
+
<title type='title-main' format='text/plain' language='en' script='Latn'>Sampling</title>
|
1375
|
+
<title type='main' format='text/plain' language='en' script='Latn'>Rubber latex – Sampling</title>
|
1376
|
+
<title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc</title>
|
1377
|
+
<title type='title-main' format='text/plain' language='fr' script='Latn'>Échantillonnage</title>
|
1378
|
+
<title type='main' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc – Échantillonnage</title>
|
1379
|
+
<uri type='src'>https://www.iso.org/standard/23281.html</uri>
|
1380
|
+
<uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:23281:en</uri>
|
1381
|
+
<uri type='rss'>https://www.iso.org/contents/data/standard/02/32/23281.detail.rss</uri>
|
1382
|
+
<uri type='citation'>spec/assets/iso123</uri>
|
1383
|
+
<docidentifier type='ISO'>ISO 123 (all parts)</docidentifier>
|
1384
|
+
<docnumber>123</docnumber>
|
1385
|
+
<date type='published'>
|
1386
|
+
<on>2001</on>
|
1387
|
+
</date>
|
1388
|
+
<contributor>
|
1389
|
+
<role type='publisher'/>
|
1390
|
+
<organization>
|
1391
|
+
<name>International Organization for Standardization</name>
|
1392
|
+
<abbreviation>ISO</abbreviation>
|
1393
|
+
<uri>www.iso.org</uri>
|
1394
|
+
</organization>
|
1395
|
+
</contributor>
|
1396
|
+
<edition>3</edition>
|
1397
|
+
<language>en</language>
|
1398
|
+
<language>fr</language>
|
1399
|
+
<script>Latn</script>
|
1400
|
+
<status>
|
1401
|
+
<stage>90</stage>
|
1402
|
+
<substage>93</substage>
|
1403
|
+
</status>
|
1404
|
+
<copyright>
|
1405
|
+
<from>2001</from>
|
1406
|
+
<owner>
|
1407
|
+
<organization>
|
1408
|
+
<name>ISO</name>
|
1409
|
+
</organization>
|
1410
|
+
</owner>
|
1411
|
+
</copyright>
|
1412
|
+
<relation type='obsoletes'>
|
1413
|
+
<bibitem type='standard'>
|
1414
|
+
<formattedref format='text/plain'>ISO 123:1985</formattedref>
|
1415
|
+
</bibitem>
|
1416
|
+
</relation>
|
1417
|
+
<relation type='instance'>
|
1418
|
+
<bibitem type='standard'>
|
1419
|
+
<fetched>2020-06-12</fetched>
|
1420
|
+
<title type='title-intro' format='text/plain' language='en' script='Latn'>Rubber latex</title>
|
1421
|
+
<title type='title-main' format='text/plain' language='en' script='Latn'>Sampling</title>
|
1422
|
+
<title type='main' format='text/plain' language='en' script='Latn'>Rubber latex – Sampling</title>
|
1423
|
+
<title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc</title>
|
1424
|
+
<title type='title-main' format='text/plain' language='fr' script='Latn'>Échantillonnage</title>
|
1425
|
+
<title type='main' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc – Échantillonnage</title>
|
1426
|
+
<uri type='src'>https://www.iso.org/standard/23281.html</uri>
|
1427
|
+
<uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:23281:en</uri>
|
1428
|
+
<uri type='rss'>https://www.iso.org/contents/data/standard/02/32/23281.detail.rss</uri>
|
1429
|
+
<docidentifier type='ISO'>ISO 123:2001</docidentifier>
|
1430
|
+
<docnumber>123</docnumber>
|
1431
|
+
<date type='published'>
|
1432
|
+
<on>2001</on>
|
1433
|
+
</date>
|
1434
|
+
<contributor>
|
1435
|
+
<role type='publisher'/>
|
1436
|
+
<organization>
|
1437
|
+
<name>International Organization for Standardization</name>
|
1438
|
+
<abbreviation>ISO</abbreviation>
|
1439
|
+
<uri>www.iso.org</uri>
|
1440
|
+
</organization>
|
1441
|
+
</contributor>
|
1442
|
+
<edition>3</edition>
|
1443
|
+
<language>en</language>
|
1444
|
+
<language>fr</language>
|
1445
|
+
<script>Latn</script>
|
1446
|
+
<status>
|
1447
|
+
<stage>90</stage>
|
1448
|
+
<substage>93</substage>
|
1449
|
+
</status>
|
1450
|
+
<copyright>
|
1451
|
+
<from>2001</from>
|
1452
|
+
<owner>
|
1453
|
+
<organization>
|
1454
|
+
<name>ISO</name>
|
1455
|
+
</organization>
|
1456
|
+
</owner>
|
1457
|
+
</copyright>
|
1458
|
+
<relation type='obsoletes'>
|
1459
|
+
<bibitem type='standard'>
|
1460
|
+
<formattedref format='text/plain'>ISO 123:1985</formattedref>
|
1461
|
+
</bibitem>
|
1462
|
+
</relation>
|
1463
|
+
<place>Geneva</place>
|
1464
|
+
</bibitem>
|
1465
|
+
</relation>
|
1466
|
+
<relation type='instance'>
|
1467
|
+
<bibitem type='standard'>
|
1468
|
+
<formattedref format='text/plain'>ISO 123:1985</formattedref>
|
1469
|
+
</bibitem>
|
1470
|
+
</relation>
|
1471
|
+
<relation type='instance'>
|
1472
|
+
<bibitem type='standard'>
|
1473
|
+
<formattedref format='text/plain'>ISO 123:1974</formattedref>
|
1474
|
+
</bibitem>
|
1475
|
+
</relation>
|
1476
|
+
<place>Geneva</place>
|
1477
|
+
</bibitem>
|
1478
|
+
<bibitem id='iso124'>
|
1479
|
+
<formattedref format='application/x-isodoc+xml'>
|
1480
|
+
<em>Standard</em>
|
1481
|
+
</formattedref>
|
1482
|
+
<uri type='URI'>a/b</uri>
|
1483
|
+
<uri type='citation'>a/b</uri>
|
1484
|
+
<docidentifier type="ISO">ISO 124</docidentifier>
|
1485
|
+
<docnumber>124</docnumber>
|
1486
|
+
</bibitem>
|
1487
|
+
</references>
|
1488
|
+
</bibliography>
|
1489
|
+
</standard-document>
|
1490
|
+
OUTPUT
|
1491
|
+
end
|
1492
|
+
|
1234
1493
|
|
1235
1494
|
private
|
1236
1495
|
|