relaton-itu 1.0.2 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ubuntu.yml +1 -0
- data/.rubocop.yml +2 -2
- data/README.adoc +9 -69
- data/grammars/biblio.rng +89 -32
- data/grammars/isodoc.rng +580 -25
- data/lib/relaton_itu/editorial_group.rb +18 -1
- data/lib/relaton_itu/hash_converter.rb +2 -2
- data/lib/relaton_itu/itu_bibliographic_item.rb +3 -4
- data/lib/relaton_itu/itu_bibliography.rb +1 -9
- data/lib/relaton_itu/itu_group.rb +21 -0
- data/lib/relaton_itu/scrapper.rb +6 -27
- data/lib/relaton_itu/structured_identifier.rb +14 -0
- data/lib/relaton_itu/version.rb +1 -1
- data/lib/relaton_itu/xml_parser.rb +1 -1
- data/relaton-itu.gemspec +2 -2
- metadata +8 -9
- data/grammars/isostandard.rng +0 -522
@@ -25,8 +25,13 @@ module RelatonItu
|
|
25
25
|
@workgroup = workgroup.is_a?(Hash) ? ItuGroup.new(workgroup) : workgroup
|
26
26
|
end
|
27
27
|
|
28
|
+
# @return [true]
|
29
|
+
def presence?
|
30
|
+
true
|
31
|
+
end
|
32
|
+
|
28
33
|
# @param builder [Nokogiri::XML::Builder]
|
29
|
-
def to_xml(builder)
|
34
|
+
def to_xml(builder) # rubocop:disable Metrics/AbcSize
|
30
35
|
builder.editorialgroup do
|
31
36
|
builder.bureau bureau
|
32
37
|
builder.group { |b| group.to_xml b } if group
|
@@ -43,5 +48,17 @@ module RelatonItu
|
|
43
48
|
hash["workgroup"] = workgroup.to_hash if workgroup
|
44
49
|
hash
|
45
50
|
end
|
51
|
+
|
52
|
+
# @param prefix [String]
|
53
|
+
# @return [String]
|
54
|
+
def to_asciibib(prefix) # rubocop:disable Metrics/AbcSize
|
55
|
+
pref = prefix.empty? ? prefix : prefix + "."
|
56
|
+
pref += "editorialgroup"
|
57
|
+
out = "#{pref}.bureau:: #{bureau}\n"
|
58
|
+
out += group.to_asciibib "#{pref}.group" if group
|
59
|
+
out += subgroup.to_asciibib "#{pref}.subgroup" if subgroup
|
60
|
+
out += workgroup.to_asciibib "#{pref}.workgroup" if workgroup
|
61
|
+
out
|
62
|
+
end
|
46
63
|
end
|
47
64
|
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module RelatonItu
|
2
|
-
class HashConverter <
|
2
|
+
class HashConverter < RelatonBib::HashConverter
|
3
3
|
class << self
|
4
4
|
private
|
5
5
|
|
@@ -15,7 +15,7 @@ module RelatonItu
|
|
15
15
|
return unless ret[:structuredidentifier]
|
16
16
|
|
17
17
|
ret[:structuredidentifier] = StructuredIdentifier.new(
|
18
|
-
ret[:structuredidentifier]
|
18
|
+
ret[:structuredidentifier]
|
19
19
|
)
|
20
20
|
end
|
21
21
|
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module RelatonItu
|
2
|
-
class ItuBibliographicItem <
|
2
|
+
class ItuBibliographicItem < RelatonBib::BibliographicItem
|
3
3
|
TYPES = %w[
|
4
4
|
recommendation recommendation-supplement recommendation-amendment
|
5
5
|
recommendation-corrigendum recommendation-errata recommendation-annex
|
@@ -9,9 +9,8 @@ module RelatonItu
|
|
9
9
|
|
10
10
|
# @params structuredidentifier [RelatonItu::StructuredIdentifier]
|
11
11
|
def initialize(**args)
|
12
|
-
|
13
|
-
|
14
|
-
warn "[relaton-itu] WARNING: invalid doctype: #{doctype}"
|
12
|
+
if args[:doctype] && !TYPES.include?(args[:doctype])
|
13
|
+
warn "[relaton-itu] WARNING: invalid doctype: #{args[:doctype]}"
|
15
14
|
end
|
16
15
|
super
|
17
16
|
end
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require "
|
3
|
+
require "relaton_bib"
|
4
4
|
require "relaton_itu/itu_bibliographic_item"
|
5
5
|
require "relaton_itu/editorial_group"
|
6
6
|
require "relaton_itu/structured_identifier"
|
@@ -67,14 +67,6 @@ module RelatonItu
|
|
67
67
|
nil
|
68
68
|
end
|
69
69
|
|
70
|
-
# def fetch_pages(hits, threads)
|
71
|
-
# workers = RelatonBib::WorkersPool.new threads
|
72
|
-
# workers.worker { |w| { i: w[:i], hit: w[:hit].fetch } }
|
73
|
-
# hits.each_with_index { |hit, i| workers << { i: i, hit: hit } }
|
74
|
-
# workers.end
|
75
|
-
# workers.result.sort_by { |a| a[:i] }.map { |x| x[:hit] }
|
76
|
-
# end
|
77
|
-
|
78
70
|
def search_filter(code)
|
79
71
|
docidrx = %r{\w+\.\d+|\w\sSuppl\.\s\d+} # %r{^ITU-T\s[^\s]+}
|
80
72
|
c = code.sub(/Imp\s?/, "").match(docidrx).to_s
|
@@ -28,6 +28,16 @@ module RelatonItu
|
|
28
28
|
hash["finish"] = finish if finish
|
29
29
|
hash
|
30
30
|
end
|
31
|
+
|
32
|
+
# @param prefix [String]
|
33
|
+
# @return [String]
|
34
|
+
def to_asciibib(prefix)
|
35
|
+
pref = prefix.empty? ? prefix : prefix + "."
|
36
|
+
pref += "period"
|
37
|
+
out = "#{pref}.start:: #{start}\n"
|
38
|
+
out += "#{pref}.finish:: #{finish}\n" if finish
|
39
|
+
out
|
40
|
+
end
|
31
41
|
end
|
32
42
|
|
33
43
|
TYPES = %w[tsag study-group work-group].freeze
|
@@ -72,5 +82,16 @@ module RelatonItu
|
|
72
82
|
hash["period"] = period.to_hash if period
|
73
83
|
hash
|
74
84
|
end
|
85
|
+
|
86
|
+
# @param prefix [String]
|
87
|
+
# @return [String]
|
88
|
+
def to_asciibib(prefix)
|
89
|
+
pref = prefix.empty? ? prefix : prefix + "."
|
90
|
+
out = "#{pref}name:: #{name}\n"
|
91
|
+
out += "#{pref}type:: #{type}\n" if type
|
92
|
+
out += "#{pref}acronym:: #{acronym}\n" if acronym
|
93
|
+
out += period.to_asciibib prefix if period
|
94
|
+
out
|
95
|
+
end
|
75
96
|
end
|
76
97
|
end
|
data/lib/relaton_itu/scrapper.rb
CHANGED
@@ -43,6 +43,7 @@ module RelatonItu
|
|
43
43
|
|
44
44
|
ItuBibliographicItem.new(
|
45
45
|
fetched: Date.today.to_s,
|
46
|
+
type: "standard",
|
46
47
|
docid: fetch_docid(doc),
|
47
48
|
edition: edition,
|
48
49
|
language: ["en"],
|
@@ -170,7 +171,7 @@ module RelatonItu
|
|
170
171
|
doc.xpath('//div[contains(@id, "tab_sup")]//table/tr[position()>2]').map do |r|
|
171
172
|
ref = r.at('./td/span[contains(@id, "title_e")]/nobr/a')
|
172
173
|
fref = RelatonBib::FormattedRef.new(content: ref.text, language: "en", script: "Latn")
|
173
|
-
bibitem =
|
174
|
+
bibitem = ItuBibliographicItem.new(formattedref: fref, type: "standard")
|
174
175
|
{ type: "complements", bibitem: bibitem }
|
175
176
|
end
|
176
177
|
end
|
@@ -183,30 +184,7 @@ module RelatonItu
|
|
183
184
|
t = doc.at("//td[@class='title']|//div/table[1]/tr[4]/td/strong")
|
184
185
|
return [] unless t
|
185
186
|
|
186
|
-
|
187
|
-
case titles.size
|
188
|
-
when 0
|
189
|
-
intro, main, part = nil, "", nil
|
190
|
-
when 1
|
191
|
-
intro, main, part = nil, titles[0], nil
|
192
|
-
when 2
|
193
|
-
if /^(Part|Partie) \d+:/ =~ titles[1]
|
194
|
-
intro, main, part = nil, titles[0], titles[1]
|
195
|
-
else
|
196
|
-
intro, main, part = titles[0], titles[1], nil
|
197
|
-
end
|
198
|
-
when 3
|
199
|
-
intro, main, part = titles[0], titles[1], titles[2]
|
200
|
-
else
|
201
|
-
intro, main, part = titles[0], titles[1], titles[2..-1]&.join(" -- ")
|
202
|
-
end
|
203
|
-
[{
|
204
|
-
title_intro: intro,
|
205
|
-
title_main: main,
|
206
|
-
title_part: part,
|
207
|
-
language: "en",
|
208
|
-
script: "Latn",
|
209
|
-
}]
|
187
|
+
RelatonBib::TypedTitleString.from_string t.text, "en", "Latn"
|
210
188
|
end
|
211
189
|
|
212
190
|
# Fetch dates
|
@@ -284,7 +262,7 @@ module RelatonItu
|
|
284
262
|
# Fetch copyright.
|
285
263
|
# @param code [String]
|
286
264
|
# @param doc [Nokogiri::HTML::Document]
|
287
|
-
# @return [Hash]
|
265
|
+
# @return [Array<Hash>]
|
288
266
|
def fetch_copyright(code, doc)
|
289
267
|
abbreviation = code.match(/^[^-]+/).to_s
|
290
268
|
case abbreviation
|
@@ -294,7 +272,8 @@ module RelatonItu
|
|
294
272
|
end
|
295
273
|
fdate = doc.at("//table/tr/td/span[contains(@id, 'Label5')]")
|
296
274
|
from = fdate&.text || ob_date(doc)
|
297
|
-
{ owner: { name: name, abbreviation: abbreviation, url: url },
|
275
|
+
[{ owner: [{ name: name, abbreviation: abbreviation, url: url }],
|
276
|
+
from: from }]
|
298
277
|
end
|
299
278
|
end
|
300
279
|
end
|
@@ -33,5 +33,19 @@ module RelatonItu
|
|
33
33
|
hash[:annexid] = annexid if annexid
|
34
34
|
hash
|
35
35
|
end
|
36
|
+
|
37
|
+
# @param prefix [String]
|
38
|
+
# @return [String]
|
39
|
+
def to_asciibib(prefix)
|
40
|
+
pref = prefix.empty? ? prefix : prefix + "."
|
41
|
+
pref += "structuredidentifier"
|
42
|
+
out = "#{pref}.bureau:: #{bureau}\n#{pref}.docnumber:: #{docnumber}\n"
|
43
|
+
out += "#{pref}.annexid:: #{annexid}\n" if annexid
|
44
|
+
out
|
45
|
+
end
|
46
|
+
|
47
|
+
def presence?
|
48
|
+
true
|
49
|
+
end
|
36
50
|
end
|
37
51
|
end
|
data/lib/relaton_itu/version.rb
CHANGED
data/relaton-itu.gemspec
CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
|
|
18
18
|
|
19
19
|
# Specify which files should be added to the gem when it is released.
|
20
20
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
21
|
-
spec.files = Dir.chdir(File.expand_path(
|
21
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
22
22
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
23
23
|
end
|
24
24
|
spec.bindir = "exe"
|
@@ -37,5 +37,5 @@ Gem::Specification.new do |spec|
|
|
37
37
|
spec.add_development_dependency "vcr", "~> 5.0.0"
|
38
38
|
spec.add_development_dependency "webmock"
|
39
39
|
|
40
|
-
spec.add_dependency "relaton-
|
40
|
+
spec.add_dependency "relaton-bib", "~> 1.4.0"
|
41
41
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: relaton-itu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-09-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: debase
|
@@ -151,19 +151,19 @@ dependencies:
|
|
151
151
|
- !ruby/object:Gem::Version
|
152
152
|
version: '0'
|
153
153
|
- !ruby/object:Gem::Dependency
|
154
|
-
name: relaton-
|
154
|
+
name: relaton-bib
|
155
155
|
requirement: !ruby/object:Gem::Requirement
|
156
156
|
requirements:
|
157
157
|
- - "~>"
|
158
158
|
- !ruby/object:Gem::Version
|
159
|
-
version: 1.
|
159
|
+
version: 1.4.0
|
160
160
|
type: :runtime
|
161
161
|
prerelease: false
|
162
162
|
version_requirements: !ruby/object:Gem::Requirement
|
163
163
|
requirements:
|
164
164
|
- - "~>"
|
165
165
|
- !ruby/object:Gem::Version
|
166
|
-
version: 1.
|
166
|
+
version: 1.4.0
|
167
167
|
description: 'RelatonItu: retrieve ITU Standards for bibliographic use using the BibliographicItem
|
168
168
|
model'
|
169
169
|
email:
|
@@ -187,7 +187,6 @@ files:
|
|
187
187
|
- grammars/basicdoc.rng
|
188
188
|
- grammars/biblio.rng
|
189
189
|
- grammars/isodoc.rng
|
190
|
-
- grammars/isostandard.rng
|
191
190
|
- grammars/itu.rng
|
192
191
|
- grammars/reqt.rng
|
193
192
|
- lib/relaton_itu.rb
|
@@ -208,7 +207,7 @@ homepage: https://github.com/metanorma/relaton-itu
|
|
208
207
|
licenses:
|
209
208
|
- MIT
|
210
209
|
metadata: {}
|
211
|
-
post_install_message:
|
210
|
+
post_install_message:
|
212
211
|
rdoc_options: []
|
213
212
|
require_paths:
|
214
213
|
- lib
|
@@ -224,7 +223,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
224
223
|
version: '0'
|
225
224
|
requirements: []
|
226
225
|
rubygems_version: 3.0.6
|
227
|
-
signing_key:
|
226
|
+
signing_key:
|
228
227
|
specification_version: 4
|
229
228
|
summary: 'RelatonItu: retrieve ITU Standards for bibliographic use using the BibliographicItem
|
230
229
|
model'
|
data/grammars/isostandard.rng
DELETED
@@ -1,522 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
|
3
|
-
<!-- default namespace isostandard = "https://www.metanorma.com/ns/iso" -->
|
4
|
-
<include href="isodoc.rng">
|
5
|
-
<start>
|
6
|
-
<ref name="iso-standard"/>
|
7
|
-
</start>
|
8
|
-
<define name="organization">
|
9
|
-
<element name="organization">
|
10
|
-
<oneOrMore>
|
11
|
-
<ref name="orgname"/>
|
12
|
-
</oneOrMore>
|
13
|
-
<optional>
|
14
|
-
<ref name="abbreviation"/>
|
15
|
-
</optional>
|
16
|
-
<optional>
|
17
|
-
<ref name="uri"/>
|
18
|
-
</optional>
|
19
|
-
<zeroOrMore>
|
20
|
-
<ref name="org-identifier"/>
|
21
|
-
</zeroOrMore>
|
22
|
-
<zeroOrMore>
|
23
|
-
<ref name="contact"/>
|
24
|
-
</zeroOrMore>
|
25
|
-
<optional>
|
26
|
-
<ref name="technical-committee"/>
|
27
|
-
</optional>
|
28
|
-
<optional>
|
29
|
-
<ref name="subcommittee"/>
|
30
|
-
</optional>
|
31
|
-
<optional>
|
32
|
-
<ref name="workgroup"/>
|
33
|
-
</optional>
|
34
|
-
<optional>
|
35
|
-
<ref name="secretariat"/>
|
36
|
-
</optional>
|
37
|
-
</element>
|
38
|
-
</define>
|
39
|
-
<define name="BibDataExtensionType">
|
40
|
-
<ref name="doctype"/>
|
41
|
-
<ref name="editorialgroup"/>
|
42
|
-
<zeroOrMore>
|
43
|
-
<ref name="ics"/>
|
44
|
-
</zeroOrMore>
|
45
|
-
<ref name="structuredidentifier"/>
|
46
|
-
<optional>
|
47
|
-
<ref name="stagename"/>
|
48
|
-
</optional>
|
49
|
-
</define>
|
50
|
-
<define name="bdate">
|
51
|
-
<element name="date">
|
52
|
-
<attribute name="type">
|
53
|
-
<choice>
|
54
|
-
<ref name="BibliographicDateType"/>
|
55
|
-
<text/>
|
56
|
-
</choice>
|
57
|
-
</attribute>
|
58
|
-
<choice>
|
59
|
-
<group>
|
60
|
-
<element name="from">
|
61
|
-
<ref name="ISO8601Date"/>
|
62
|
-
</element>
|
63
|
-
<optional>
|
64
|
-
<element name="to">
|
65
|
-
<ref name="ISO8601Date"/>
|
66
|
-
</element>
|
67
|
-
</optional>
|
68
|
-
</group>
|
69
|
-
<element name="on">
|
70
|
-
<choice>
|
71
|
-
<ref name="ISO8601Date"/>
|
72
|
-
<value>--</value>
|
73
|
-
<value>–</value>
|
74
|
-
</choice>
|
75
|
-
</element>
|
76
|
-
</choice>
|
77
|
-
</element>
|
78
|
-
</define>
|
79
|
-
<define name="ul">
|
80
|
-
<element name="ul">
|
81
|
-
<attribute name="id">
|
82
|
-
<data type="ID"/>
|
83
|
-
</attribute>
|
84
|
-
<oneOrMore>
|
85
|
-
<ref name="ul_li"/>
|
86
|
-
</oneOrMore>
|
87
|
-
<zeroOrMore>
|
88
|
-
<ref name="note"/>
|
89
|
-
</zeroOrMore>
|
90
|
-
</element>
|
91
|
-
</define>
|
92
|
-
<define name="sections">
|
93
|
-
<element name="sections">
|
94
|
-
<ref name="clause"/>
|
95
|
-
<optional>
|
96
|
-
<choice>
|
97
|
-
<ref name="term-clause"/>
|
98
|
-
<ref name="terms"/>
|
99
|
-
</choice>
|
100
|
-
</optional>
|
101
|
-
<optional>
|
102
|
-
<ref name="definitions"/>
|
103
|
-
</optional>
|
104
|
-
<oneOrMore>
|
105
|
-
<ref name="clause"/>
|
106
|
-
</oneOrMore>
|
107
|
-
</element>
|
108
|
-
</define>
|
109
|
-
<define name="Clause-Section">
|
110
|
-
<optional>
|
111
|
-
<attribute name="id">
|
112
|
-
<data type="ID"/>
|
113
|
-
</attribute>
|
114
|
-
</optional>
|
115
|
-
<optional>
|
116
|
-
<attribute name="language"/>
|
117
|
-
</optional>
|
118
|
-
<optional>
|
119
|
-
<attribute name="script"/>
|
120
|
-
</optional>
|
121
|
-
<optional>
|
122
|
-
<attribute name="inline-header">
|
123
|
-
<data type="boolean"/>
|
124
|
-
</attribute>
|
125
|
-
</optional>
|
126
|
-
<optional>
|
127
|
-
<attribute name="obligation">
|
128
|
-
<choice>
|
129
|
-
<value>normative</value>
|
130
|
-
<value>informative</value>
|
131
|
-
</choice>
|
132
|
-
</attribute>
|
133
|
-
</optional>
|
134
|
-
<optional>
|
135
|
-
<ref name="section-title"/>
|
136
|
-
</optional>
|
137
|
-
<choice>
|
138
|
-
<group>
|
139
|
-
<oneOrMore>
|
140
|
-
<ref name="BasicBlock"/>
|
141
|
-
</oneOrMore>
|
142
|
-
<zeroOrMore>
|
143
|
-
<ref name="note"/>
|
144
|
-
</zeroOrMore>
|
145
|
-
</group>
|
146
|
-
<oneOrMore>
|
147
|
-
<ref name="clause-subsection"/>
|
148
|
-
</oneOrMore>
|
149
|
-
</choice>
|
150
|
-
</define>
|
151
|
-
<define name="term">
|
152
|
-
<element name="term">
|
153
|
-
<optional>
|
154
|
-
<attribute name="id">
|
155
|
-
<data type="ID"/>
|
156
|
-
</attribute>
|
157
|
-
</optional>
|
158
|
-
<ref name="preferred"/>
|
159
|
-
<zeroOrMore>
|
160
|
-
<ref name="admitted"/>
|
161
|
-
</zeroOrMore>
|
162
|
-
<zeroOrMore>
|
163
|
-
<ref name="deprecates"/>
|
164
|
-
</zeroOrMore>
|
165
|
-
<optional>
|
166
|
-
<ref name="termdomain"/>
|
167
|
-
</optional>
|
168
|
-
<ref name="definition"/>
|
169
|
-
<zeroOrMore>
|
170
|
-
<ref name="termnote"/>
|
171
|
-
</zeroOrMore>
|
172
|
-
<zeroOrMore>
|
173
|
-
<ref name="termexample"/>
|
174
|
-
</zeroOrMore>
|
175
|
-
<zeroOrMore>
|
176
|
-
<ref name="termsource"/>
|
177
|
-
</zeroOrMore>
|
178
|
-
</element>
|
179
|
-
</define>
|
180
|
-
<define name="definition">
|
181
|
-
<element name="definition">
|
182
|
-
<oneOrMore>
|
183
|
-
<choice>
|
184
|
-
<ref name="paragraph"/>
|
185
|
-
<ref name="figure"/>
|
186
|
-
<ref name="formula"/>
|
187
|
-
</choice>
|
188
|
-
</oneOrMore>
|
189
|
-
</element>
|
190
|
-
</define>
|
191
|
-
<define name="annex">
|
192
|
-
<element name="annex">
|
193
|
-
<optional>
|
194
|
-
<attribute name="id">
|
195
|
-
<data type="ID"/>
|
196
|
-
</attribute>
|
197
|
-
</optional>
|
198
|
-
<optional>
|
199
|
-
<attribute name="language"/>
|
200
|
-
</optional>
|
201
|
-
<optional>
|
202
|
-
<attribute name="script"/>
|
203
|
-
</optional>
|
204
|
-
<optional>
|
205
|
-
<attribute name="inline-header">
|
206
|
-
<data type="boolean"/>
|
207
|
-
</attribute>
|
208
|
-
</optional>
|
209
|
-
<optional>
|
210
|
-
<attribute name="obligation">
|
211
|
-
<choice>
|
212
|
-
<value>normative</value>
|
213
|
-
<value>informative</value>
|
214
|
-
</choice>
|
215
|
-
</attribute>
|
216
|
-
</optional>
|
217
|
-
<optional>
|
218
|
-
<ref name="section-title"/>
|
219
|
-
</optional>
|
220
|
-
<zeroOrMore>
|
221
|
-
<!--
|
222
|
-
allow hanging paragraps in annexes: they introduce lists
|
223
|
-
( paragraph-with-footnote | table | note | formula | admonition | ol | ul | dl | figure | quote | sourcecode | review | example )*,
|
224
|
-
-->
|
225
|
-
<ref name="BasicBlock"/>
|
226
|
-
</zeroOrMore>
|
227
|
-
<zeroOrMore>
|
228
|
-
<ref name="note"/>
|
229
|
-
</zeroOrMore>
|
230
|
-
<zeroOrMore>
|
231
|
-
<ref name="clause-hanging-paragraph-with-footnote"/>
|
232
|
-
</zeroOrMore>
|
233
|
-
<zeroOrMore>
|
234
|
-
<ref name="annex-appendix"/>
|
235
|
-
</zeroOrMore>
|
236
|
-
</element>
|
237
|
-
</define>
|
238
|
-
<define name="AdmonitionType">
|
239
|
-
<choice>
|
240
|
-
<value>danger</value>
|
241
|
-
<value>caution</value>
|
242
|
-
<value>warning</value>
|
243
|
-
<value>important</value>
|
244
|
-
<value>safety precautions</value>
|
245
|
-
</choice>
|
246
|
-
</define>
|
247
|
-
<define name="preface">
|
248
|
-
<element name="preface">
|
249
|
-
<optional>
|
250
|
-
<ref name="preface_abstract"/>
|
251
|
-
</optional>
|
252
|
-
<ref name="foreword"/>
|
253
|
-
<optional>
|
254
|
-
<ref name="introduction"/>
|
255
|
-
</optional>
|
256
|
-
</element>
|
257
|
-
</define>
|
258
|
-
<define name="DocumentType">
|
259
|
-
<choice>
|
260
|
-
<value>international-standard</value>
|
261
|
-
<value>technical-specification</value>
|
262
|
-
<value>technical-report</value>
|
263
|
-
<value>publicly-available-specification</value>
|
264
|
-
<value>international-workshop-agreement</value>
|
265
|
-
<value>guide</value>
|
266
|
-
</choice>
|
267
|
-
</define>
|
268
|
-
<define name="structuredidentifier">
|
269
|
-
<element name="structuredidentifier">
|
270
|
-
<optional>
|
271
|
-
<attribute name="type"/>
|
272
|
-
</optional>
|
273
|
-
<group>
|
274
|
-
<ref name="documentnumber"/>
|
275
|
-
<optional>
|
276
|
-
<ref name="tc-documentnumber"/>
|
277
|
-
</optional>
|
278
|
-
</group>
|
279
|
-
</element>
|
280
|
-
</define>
|
281
|
-
<define name="foreword">
|
282
|
-
<element name="foreword">
|
283
|
-
<ref name="Basic-Section"/>
|
284
|
-
</element>
|
285
|
-
</define>
|
286
|
-
<define name="introduction">
|
287
|
-
<element name="introduction">
|
288
|
-
<ref name="Content-Section"/>
|
289
|
-
</element>
|
290
|
-
</define>
|
291
|
-
<define name="editorialgroup">
|
292
|
-
<element name="editorialgroup">
|
293
|
-
<oneOrMore>
|
294
|
-
<ref name="technical-committee"/>
|
295
|
-
</oneOrMore>
|
296
|
-
<zeroOrMore>
|
297
|
-
<ref name="subcommittee"/>
|
298
|
-
</zeroOrMore>
|
299
|
-
<zeroOrMore>
|
300
|
-
<ref name="workgroup"/>
|
301
|
-
</zeroOrMore>
|
302
|
-
<optional>
|
303
|
-
<ref name="secretariat"/>
|
304
|
-
</optional>
|
305
|
-
</element>
|
306
|
-
</define>
|
307
|
-
<define name="Content-Section">
|
308
|
-
<optional>
|
309
|
-
<attribute name="id">
|
310
|
-
<data type="ID"/>
|
311
|
-
</attribute>
|
312
|
-
</optional>
|
313
|
-
<optional>
|
314
|
-
<attribute name="language"/>
|
315
|
-
</optional>
|
316
|
-
<optional>
|
317
|
-
<attribute name="script"/>
|
318
|
-
</optional>
|
319
|
-
<optional>
|
320
|
-
<attribute name="obligation">
|
321
|
-
<choice>
|
322
|
-
<value>normative</value>
|
323
|
-
<value>informative</value>
|
324
|
-
</choice>
|
325
|
-
</attribute>
|
326
|
-
</optional>
|
327
|
-
<optional>
|
328
|
-
<ref name="section-title"/>
|
329
|
-
</optional>
|
330
|
-
<choice>
|
331
|
-
<group>
|
332
|
-
<zeroOrMore>
|
333
|
-
<ref name="BasicBlock"/>
|
334
|
-
</zeroOrMore>
|
335
|
-
<zeroOrMore>
|
336
|
-
<ref name="note"/>
|
337
|
-
</zeroOrMore>
|
338
|
-
</group>
|
339
|
-
<oneOrMore>
|
340
|
-
<ref name="content-subsection"/>
|
341
|
-
</oneOrMore>
|
342
|
-
</choice>
|
343
|
-
</define>
|
344
|
-
<define name="table">
|
345
|
-
<element name="table">
|
346
|
-
<attribute name="id">
|
347
|
-
<data type="ID"/>
|
348
|
-
</attribute>
|
349
|
-
<optional>
|
350
|
-
<attribute name="width"/>
|
351
|
-
</optional>
|
352
|
-
<optional>
|
353
|
-
<attribute name="unnumbered">
|
354
|
-
<data type="boolean"/>
|
355
|
-
</attribute>
|
356
|
-
</optional>
|
357
|
-
<optional>
|
358
|
-
<attribute name="subsequence"/>
|
359
|
-
</optional>
|
360
|
-
<optional>
|
361
|
-
<attribute name="alt"/>
|
362
|
-
</optional>
|
363
|
-
<optional>
|
364
|
-
<attribute name="summary"/>
|
365
|
-
</optional>
|
366
|
-
<optional>
|
367
|
-
<attribute name="uri">
|
368
|
-
<data type="anyURI"/>
|
369
|
-
</attribute>
|
370
|
-
</optional>
|
371
|
-
<optional>
|
372
|
-
<ref name="tname"/>
|
373
|
-
</optional>
|
374
|
-
<optional>
|
375
|
-
<ref name="thead"/>
|
376
|
-
</optional>
|
377
|
-
<ref name="tbody"/>
|
378
|
-
<optional>
|
379
|
-
<ref name="tfoot"/>
|
380
|
-
</optional>
|
381
|
-
<zeroOrMore>
|
382
|
-
<ref name="table-note"/>
|
383
|
-
</zeroOrMore>
|
384
|
-
<optional>
|
385
|
-
<ref name="dl"/>
|
386
|
-
</optional>
|
387
|
-
</element>
|
388
|
-
</define>
|
389
|
-
</include>
|
390
|
-
<!-- end overrides -->
|
391
|
-
<!--
|
392
|
-
We display the Normative References between scope and terms; but to keep the
|
393
|
-
grammar simple, we keep the references together
|
394
|
-
-->
|
395
|
-
<define name="iso-standard">
|
396
|
-
<element name="iso-standard">
|
397
|
-
<ref name="bibdata"/>
|
398
|
-
<zeroOrMore>
|
399
|
-
<ref name="termdocsource"/>
|
400
|
-
</zeroOrMore>
|
401
|
-
<optional>
|
402
|
-
<ref name="boilerplate"/>
|
403
|
-
</optional>
|
404
|
-
<ref name="preface"/>
|
405
|
-
<oneOrMore>
|
406
|
-
<ref name="sections"/>
|
407
|
-
</oneOrMore>
|
408
|
-
<zeroOrMore>
|
409
|
-
<ref name="annex"/>
|
410
|
-
</zeroOrMore>
|
411
|
-
<ref name="bibliography"/>
|
412
|
-
</element>
|
413
|
-
</define>
|
414
|
-
<define name="documentnumber">
|
415
|
-
<element name="project-number">
|
416
|
-
<optional>
|
417
|
-
<attribute name="part">
|
418
|
-
<data type="int"/>
|
419
|
-
</attribute>
|
420
|
-
</optional>
|
421
|
-
<optional>
|
422
|
-
<attribute name="subpart">
|
423
|
-
<data type="int"/>
|
424
|
-
</attribute>
|
425
|
-
</optional>
|
426
|
-
<text/>
|
427
|
-
</element>
|
428
|
-
</define>
|
429
|
-
<define name="tc-documentnumber">
|
430
|
-
<element name="tc-document-number">
|
431
|
-
<data type="int"/>
|
432
|
-
</element>
|
433
|
-
</define>
|
434
|
-
<define name="subcommittee">
|
435
|
-
<element name="subcommittee">
|
436
|
-
<ref name="IsoWorkgroup"/>
|
437
|
-
</element>
|
438
|
-
</define>
|
439
|
-
<define name="workgroup">
|
440
|
-
<element name="workgroup">
|
441
|
-
<ref name="IsoWorkgroup"/>
|
442
|
-
</element>
|
443
|
-
</define>
|
444
|
-
<define name="secretariat">
|
445
|
-
<element name="secretariat">
|
446
|
-
<text/>
|
447
|
-
</element>
|
448
|
-
</define>
|
449
|
-
<define name="clause-hanging-paragraph-with-footnote">
|
450
|
-
<element name="clause">
|
451
|
-
<optional>
|
452
|
-
<attribute name="id">
|
453
|
-
<data type="ID"/>
|
454
|
-
</attribute>
|
455
|
-
</optional>
|
456
|
-
<optional>
|
457
|
-
<attribute name="language"/>
|
458
|
-
</optional>
|
459
|
-
<optional>
|
460
|
-
<attribute name="script"/>
|
461
|
-
</optional>
|
462
|
-
<optional>
|
463
|
-
<attribute name="inline-header">
|
464
|
-
<data type="boolean"/>
|
465
|
-
</attribute>
|
466
|
-
</optional>
|
467
|
-
<optional>
|
468
|
-
<attribute name="obligation">
|
469
|
-
<choice>
|
470
|
-
<value>normative</value>
|
471
|
-
<value>informative</value>
|
472
|
-
</choice>
|
473
|
-
</attribute>
|
474
|
-
</optional>
|
475
|
-
<optional>
|
476
|
-
<ref name="section-title"/>
|
477
|
-
</optional>
|
478
|
-
<zeroOrMore>
|
479
|
-
<!-- allow hanging paragraphs in annexes: they introduce lists -->
|
480
|
-
<ref name="BasicBlock"/>
|
481
|
-
</zeroOrMore>
|
482
|
-
<zeroOrMore>
|
483
|
-
<ref name="note"/>
|
484
|
-
</zeroOrMore>
|
485
|
-
<zeroOrMore>
|
486
|
-
<ref name="clause-hanging-paragraph-with-footnote"/>
|
487
|
-
</zeroOrMore>
|
488
|
-
</element>
|
489
|
-
</define>
|
490
|
-
<define name="annex-appendix">
|
491
|
-
<element name="appendix">
|
492
|
-
<ref name="Clause-Section"/>
|
493
|
-
</element>
|
494
|
-
</define>
|
495
|
-
<define name="ul_li">
|
496
|
-
<element name="li">
|
497
|
-
<optional>
|
498
|
-
<attribute name="id">
|
499
|
-
<data type="ID"/>
|
500
|
-
</attribute>
|
501
|
-
</optional>
|
502
|
-
<optional>
|
503
|
-
<attribute name="uncheckedcheckbox">
|
504
|
-
<data type="boolean"/>
|
505
|
-
</attribute>
|
506
|
-
</optional>
|
507
|
-
<optional>
|
508
|
-
<attribute name="checkedcheckbox">
|
509
|
-
<data type="boolean"/>
|
510
|
-
</attribute>
|
511
|
-
</optional>
|
512
|
-
<oneOrMore>
|
513
|
-
<ref name="paragraph-with-footnote"/>
|
514
|
-
</oneOrMore>
|
515
|
-
</element>
|
516
|
-
</define>
|
517
|
-
<define name="stagename">
|
518
|
-
<element name="stagename">
|
519
|
-
<text/>
|
520
|
-
</element>
|
521
|
-
</define>
|
522
|
-
</grammar>
|