metanorma-nist 1.0.5 → 1.0.10
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 +12 -9
- data/.github/workflows/windows.yml +8 -8
- data/README.adoc +22 -0
- data/lib/asciidoctor/nist/biblio.rng +89 -32
- data/lib/asciidoctor/nist/cleanup.rb +5 -4
- data/lib/asciidoctor/nist/converter.rb +8 -31
- data/lib/asciidoctor/nist/front.rb +15 -9
- data/lib/asciidoctor/nist/front_id.rb +73 -23
- data/lib/asciidoctor/nist/isodoc.rng +475 -2
- data/lib/asciidoctor/nist/reqt.rng +23 -0
- data/lib/isodoc/nist/base_convert.rb +44 -62
- data/lib/isodoc/nist/common.xsl +1246 -0
- data/lib/isodoc/nist/html/nist.scss +1 -1
- data/lib/isodoc/nist/html/nist_cswp.scss +1 -1
- data/lib/isodoc/nist/html/scripts.html +14 -27
- data/lib/isodoc/nist/html_convert.rb +29 -60
- data/lib/isodoc/nist/metadata.rb +0 -12
- data/lib/isodoc/nist/nist.cswp.xsl +3936 -0
- data/lib/isodoc/nist/nist.sp.xsl +4804 -0
- data/lib/isodoc/nist/pdf_convert.rb +13 -146
- data/lib/isodoc/nist/refs.rb +47 -3
- data/lib/isodoc/nist/section.rb +55 -0
- data/lib/isodoc/nist/word_convert.rb +2 -38
- data/lib/isodoc/nist/xrefs.rb +0 -21
- data/lib/metanorma/nist/processor.rb +7 -0
- data/lib/metanorma/nist/version.rb +1 -1
- data/metanorma-nist.gemspec +2 -1
- metadata +22 -5
- data/lib/isodoc/nist/html/scripts.pdf.html +0 -72
@@ -20,6 +20,7 @@ module Asciidoctor
|
|
20
20
|
def metadata_version(node, xml)
|
21
21
|
xml.edition node.attr("edition") if node.attr("edition")
|
22
22
|
xml.edition "Revision #{node.attr("revision")}" if node.attr("revision")
|
23
|
+
xml.edition "Version #{node.attr("version")}" if node.attr("version")
|
23
24
|
xml.version do |v|
|
24
25
|
v.revision_date node.attr("revdate") if node.attr("revdate")
|
25
26
|
v.draft node.attr("draft") if node.attr("draft")
|
@@ -46,7 +47,7 @@ module Asciidoctor
|
|
46
47
|
|
47
48
|
def title_main(node, t, at)
|
48
49
|
t.title(**attr_code(at.merge(type: "main"))) do |t1|
|
49
|
-
t1 << Asciidoctor::Standoc::Utils::asciidoc_sub(node.attr("title-main") || node.title)
|
50
|
+
t1 << (Asciidoctor::Standoc::Utils::asciidoc_sub(node.attr("title-main")) || node.title)
|
50
51
|
end
|
51
52
|
node.attr("title-main-short") and
|
52
53
|
t.title(**attr_code(at.merge(type: "short-title"))) do |t1|
|
@@ -163,7 +164,7 @@ module Asciidoctor
|
|
163
164
|
|
164
165
|
def metadata_superseding_doc(node, xml)
|
165
166
|
xml.relation **{ type: "obsoletedBy" } do |r|
|
166
|
-
r.bibitem do |b|
|
167
|
+
r.bibitem **{ type: "standard" } do |b|
|
167
168
|
metadata_superseding_titles(b, node)
|
168
169
|
doi = node.attr("superseding-doi") and
|
169
170
|
b.uri doi, **{ type: "doi" }
|
@@ -203,16 +204,21 @@ module Asciidoctor
|
|
203
204
|
|
204
205
|
def metadata_superseding_titles(b, node)
|
205
206
|
if node.attr("superseding-title")
|
206
|
-
b.title
|
207
|
-
|
207
|
+
b.title **{ type: "main" } do |t|
|
208
|
+
t << Asciidoctor::Standoc::Utils::asciidoc_sub(node.attr("superseding-title"))
|
209
|
+
end
|
208
210
|
node.attr("superseding-subtitle") and
|
209
|
-
b.title
|
210
|
-
|
211
|
+
b.title **{ type: "subtitle" } do |t|
|
212
|
+
t << Asciidoctor::Standoc::Utils::asciidoc_sub(node.attr("superseding-subtitle"))
|
213
|
+
end
|
211
214
|
else
|
212
|
-
b.title
|
213
|
-
|
215
|
+
b.title **{ type: "main" } do |t|
|
216
|
+
t << (Asciidoctor::Standoc::Utils::asciidoc_sub(node.attr("title-main")) || node.title)
|
217
|
+
end
|
214
218
|
node.attr("title-sub") and
|
215
|
-
b.title
|
219
|
+
b.title **{ type: "subtitle" } do |t|
|
220
|
+
t << Asciidoctor::Standoc::Utils::asciidoc_sub(node.attr("title-sub"))
|
221
|
+
end
|
216
222
|
end
|
217
223
|
end
|
218
224
|
|
@@ -1,17 +1,16 @@
|
|
1
|
+
require "iso-639"
|
2
|
+
|
1
3
|
module Asciidoctor
|
2
4
|
module NIST
|
3
5
|
class Converter < Standoc::Converter
|
4
6
|
def metadata_id(node, xml)
|
5
7
|
did = node.attr("docidentifier")
|
6
8
|
dn = node.attr("docnumber")
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
metadata_id_compose(node, xml, dn)
|
13
|
-
end
|
14
|
-
xml.docnumber node.attr("docnumber")
|
9
|
+
@series == "nist-cswp" && !node.attr("docnumber") and
|
10
|
+
dn = Iso690Render.MMMddyyyy(node.attr("issued-date"))
|
11
|
+
metadata_id_compose(node, xml, dn, did)
|
12
|
+
xml.docnumber node.attr("docnumber") ||
|
13
|
+
did&.sub(/^[^0-9]*/, "")&.sub(/[ -].*$/, "")
|
15
14
|
end
|
16
15
|
|
17
16
|
def unabbreviate(did)
|
@@ -21,26 +20,42 @@ module Asciidoctor
|
|
21
20
|
end
|
22
21
|
|
23
22
|
def id_args(node, dn0)
|
23
|
+
return nil unless dn0
|
24
24
|
{
|
25
25
|
id: dn0,
|
26
26
|
series: node.attr("series"),
|
27
|
+
edition: node.attr("edition"),
|
28
|
+
version: node.attr("version"),
|
27
29
|
revision: node.attr("revision"),
|
30
|
+
update: node.attr("update"),
|
31
|
+
year: (node.attr("copyright-year") || node.attr("updated-date") ||
|
32
|
+
node.attr("revdate") || node.attr("circulated-date") ||
|
33
|
+
Date.today.year.to_s).sub(/^(....).*$/, "\\1"),
|
28
34
|
vol: node.attr("volume"),
|
35
|
+
part: node.attr("part") || node.attr("part-number"),
|
36
|
+
section: node.attr("section") || node.attr("section-number"),
|
37
|
+
supplement: node.attr("supplement") || node.attr("supplement-number"),
|
38
|
+
index: node.attr("index") || node.attr("index-number"),
|
29
39
|
stage: node.attr("status") || node.attr("docstage"),
|
30
40
|
iter: node.attr("iteration"),
|
41
|
+
language: node.attr("language") || "en",
|
31
42
|
date: /^draft/.match(node.attr("status") || node.attr("docstage")) ?
|
32
43
|
(node.attr("circulated-date") || node.attr("revdate")) :
|
33
44
|
node.attr("updated-date")
|
34
45
|
}
|
35
46
|
end
|
36
47
|
|
37
|
-
def metadata_id_compose(node, xml, dn0)
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
48
|
+
def metadata_id_compose(node, xml, dn0, did)
|
49
|
+
if did
|
50
|
+
xml.docidentifier did, **attr_code(type: "NIST")
|
51
|
+
xml.docidentifier unabbreviate(did), **attr_code(type: "nist-long")
|
52
|
+
else
|
53
|
+
args = id_args(node, dn0) || return
|
54
|
+
xml.docidentifier add_id_parts(args, false), **attr_code(type: "NIST")
|
55
|
+
xml.docidentifier add_id_parts(args, true),
|
56
|
+
**attr_code(type: "nist-long")
|
57
|
+
xml.docidentifier add_id_parts_mr(args), **attr_code(type: "nist-mr")
|
58
|
+
end
|
44
59
|
end
|
45
60
|
|
46
61
|
def MMMddyyyy(isodate)
|
@@ -48,26 +63,61 @@ module Asciidoctor
|
|
48
63
|
Date.parse(isodate).strftime("%B %d, %Y")
|
49
64
|
end
|
50
65
|
|
66
|
+
def status_abbr(stage, iter)
|
67
|
+
IsoDoc::NIST::Metadata.new(nil, nil, {}).status_abbr(stage, iter)
|
68
|
+
end
|
69
|
+
|
51
70
|
def add_id_parts(args, long)
|
52
|
-
vol_delim = " Volume "
|
53
|
-
ed_delim = " Revision "
|
54
71
|
args[:series] and series_name = long ?
|
55
72
|
SERIES.dig(args[:series].to_sym) :
|
56
73
|
SERIES_ABBR.dig(args[:series].to_sym)
|
57
74
|
dn = (series_name || "NIST #{args[:series]}") + " " + args[:id]
|
58
|
-
dn += "#{
|
75
|
+
dn += " Volume #{args[:vol]}" if args[:vol]
|
59
76
|
dn += "," if args[:vol] && args[:revision]
|
60
|
-
dn += "#{
|
61
|
-
|
62
|
-
dn += " (#{stage})"
|
77
|
+
dn += " Revision #{args[:revision]}" if args[:revision]
|
78
|
+
dn += "/Upd #{args[:update]}:#{args[:year]}" if args[:update]
|
79
|
+
stage = status_abbr(args[:stage], args[:iter]) and dn += " (#{stage})"
|
63
80
|
dn += " (#{MMMddyyyy(args[:date])})" if args[:date]
|
64
81
|
dn
|
65
82
|
end
|
66
83
|
|
84
|
+
def id_parts_mr(args)
|
85
|
+
part = []
|
86
|
+
part << "v-#{args[:vol]}" if args[:vol]
|
87
|
+
part << "pt-#{args[:part]}" if args[:part]
|
88
|
+
part << "sec-#{args[:section]}" if args[:section]
|
89
|
+
part << "sup-#{args[:supplement]}" if args[:supplement]
|
90
|
+
part << "indx-#{args[:index]}" if args[:index]
|
91
|
+
part
|
92
|
+
end
|
93
|
+
|
94
|
+
def id_editions_mr(args)
|
95
|
+
part = []
|
96
|
+
part << "e-#{args[:edition]}" if args[:edition]
|
97
|
+
part << "r-#{args[:revision]}" if args[:revision]
|
98
|
+
part << "ver-#{args[:version]}" if args[:version]
|
99
|
+
part
|
100
|
+
end
|
101
|
+
|
102
|
+
def id_lang_mr(args)
|
103
|
+
ret = args[:language].split(/,\s*/).map do |l|
|
104
|
+
ISO_639.find(l).alpha3
|
105
|
+
end.join(",")
|
106
|
+
end
|
107
|
+
|
67
108
|
def add_id_parts_mr(args)
|
109
|
+
ret = ["NIST"]
|
68
110
|
args[:series] and
|
69
|
-
|
70
|
-
|
111
|
+
ret << SERIES_ABBR&.dig(args[:series].to_sym)&.sub(/^NIST /, "")
|
112
|
+
stage = status_abbr(args[:stage], nil) || ""
|
113
|
+
stage += "[-#{args[:iter]}]" if args[:iter]
|
114
|
+
ret << stage unless stage.empty?
|
115
|
+
ret << args[:id]
|
116
|
+
ret += id_parts_mr(args)
|
117
|
+
ret += id_editions_mr(args)
|
118
|
+
ret << id_lang_mr(args)
|
119
|
+
args[:update] and ret << "upd-#{args[:update]}:#{args[:year]}"
|
120
|
+
ret.join(".")
|
71
121
|
end
|
72
122
|
end
|
73
123
|
end
|
@@ -53,9 +53,96 @@
|
|
53
53
|
<optional>
|
54
54
|
<attribute name="alt"/>
|
55
55
|
</optional>
|
56
|
+
<optional>
|
57
|
+
<attribute name="case">
|
58
|
+
<choice>
|
59
|
+
<value>capital</value>
|
60
|
+
<value>lowercase</value>
|
61
|
+
</choice>
|
62
|
+
</attribute>
|
63
|
+
</optional>
|
56
64
|
<text/>
|
57
65
|
</element>
|
58
66
|
</define>
|
67
|
+
<define name="ul">
|
68
|
+
<element name="ul">
|
69
|
+
<attribute name="id">
|
70
|
+
<data type="ID"/>
|
71
|
+
</attribute>
|
72
|
+
<optional>
|
73
|
+
<attribute name="keep-with-next">
|
74
|
+
<data type="boolean"/>
|
75
|
+
</attribute>
|
76
|
+
</optional>
|
77
|
+
<optional>
|
78
|
+
<attribute name="keep-lines-together">
|
79
|
+
<data type="boolean"/>
|
80
|
+
</attribute>
|
81
|
+
</optional>
|
82
|
+
<oneOrMore>
|
83
|
+
<ref name="li"/>
|
84
|
+
</oneOrMore>
|
85
|
+
<zeroOrMore>
|
86
|
+
<ref name="note"/>
|
87
|
+
</zeroOrMore>
|
88
|
+
</element>
|
89
|
+
</define>
|
90
|
+
<define name="ol">
|
91
|
+
<element name="ol">
|
92
|
+
<attribute name="id">
|
93
|
+
<data type="ID"/>
|
94
|
+
</attribute>
|
95
|
+
<optional>
|
96
|
+
<attribute name="keep-with-next">
|
97
|
+
<data type="boolean"/>
|
98
|
+
</attribute>
|
99
|
+
</optional>
|
100
|
+
<optional>
|
101
|
+
<attribute name="keep-lines-together">
|
102
|
+
<data type="boolean"/>
|
103
|
+
</attribute>
|
104
|
+
</optional>
|
105
|
+
<attribute name="type">
|
106
|
+
<choice>
|
107
|
+
<value>roman</value>
|
108
|
+
<value>alphabet</value>
|
109
|
+
<value>arabic</value>
|
110
|
+
<value>roman_upper</value>
|
111
|
+
<value>alphabet_upper</value>
|
112
|
+
</choice>
|
113
|
+
</attribute>
|
114
|
+
<oneOrMore>
|
115
|
+
<ref name="li"/>
|
116
|
+
</oneOrMore>
|
117
|
+
<zeroOrMore>
|
118
|
+
<ref name="note"/>
|
119
|
+
</zeroOrMore>
|
120
|
+
</element>
|
121
|
+
</define>
|
122
|
+
<define name="dl">
|
123
|
+
<element name="dl">
|
124
|
+
<attribute name="id">
|
125
|
+
<data type="ID"/>
|
126
|
+
</attribute>
|
127
|
+
<optional>
|
128
|
+
<attribute name="keep-with-next">
|
129
|
+
<data type="boolean"/>
|
130
|
+
</attribute>
|
131
|
+
</optional>
|
132
|
+
<optional>
|
133
|
+
<attribute name="keep-lines-together">
|
134
|
+
<data type="boolean"/>
|
135
|
+
</attribute>
|
136
|
+
</optional>
|
137
|
+
<oneOrMore>
|
138
|
+
<ref name="dt"/>
|
139
|
+
<ref name="dd"/>
|
140
|
+
</oneOrMore>
|
141
|
+
<zeroOrMore>
|
142
|
+
<ref name="note"/>
|
143
|
+
</zeroOrMore>
|
144
|
+
</element>
|
145
|
+
</define>
|
59
146
|
<define name="example">
|
60
147
|
<element name="example">
|
61
148
|
<attribute name="id">
|
@@ -69,6 +156,19 @@
|
|
69
156
|
<optional>
|
70
157
|
<attribute name="subsequence"/>
|
71
158
|
</optional>
|
159
|
+
<optional>
|
160
|
+
<attribute name="number"/>
|
161
|
+
</optional>
|
162
|
+
<optional>
|
163
|
+
<attribute name="keep-with-next">
|
164
|
+
<data type="boolean"/>
|
165
|
+
</attribute>
|
166
|
+
</optional>
|
167
|
+
<optional>
|
168
|
+
<attribute name="keep-lines-together">
|
169
|
+
<data type="boolean"/>
|
170
|
+
</attribute>
|
171
|
+
</optional>
|
72
172
|
<optional>
|
73
173
|
<ref name="tname"/>
|
74
174
|
</optional>
|
@@ -89,6 +189,296 @@
|
|
89
189
|
</zeroOrMore>
|
90
190
|
</element>
|
91
191
|
</define>
|
192
|
+
<define name="table">
|
193
|
+
<element name="table">
|
194
|
+
<attribute name="id">
|
195
|
+
<data type="ID"/>
|
196
|
+
</attribute>
|
197
|
+
<optional>
|
198
|
+
<attribute name="unnumbered">
|
199
|
+
<data type="boolean"/>
|
200
|
+
</attribute>
|
201
|
+
</optional>
|
202
|
+
<optional>
|
203
|
+
<attribute name="number"/>
|
204
|
+
</optional>
|
205
|
+
<optional>
|
206
|
+
<attribute name="subsequence"/>
|
207
|
+
</optional>
|
208
|
+
<optional>
|
209
|
+
<attribute name="alt"/>
|
210
|
+
</optional>
|
211
|
+
<optional>
|
212
|
+
<attribute name="summary"/>
|
213
|
+
</optional>
|
214
|
+
<optional>
|
215
|
+
<attribute name="uri">
|
216
|
+
<data type="anyURI"/>
|
217
|
+
</attribute>
|
218
|
+
</optional>
|
219
|
+
<optional>
|
220
|
+
<attribute name="keep-with-next">
|
221
|
+
<data type="boolean"/>
|
222
|
+
</attribute>
|
223
|
+
</optional>
|
224
|
+
<optional>
|
225
|
+
<attribute name="keep-lines-together">
|
226
|
+
<data type="boolean"/>
|
227
|
+
</attribute>
|
228
|
+
</optional>
|
229
|
+
<optional>
|
230
|
+
<ref name="tname"/>
|
231
|
+
</optional>
|
232
|
+
<optional>
|
233
|
+
<ref name="thead"/>
|
234
|
+
</optional>
|
235
|
+
<ref name="tbody"/>
|
236
|
+
<optional>
|
237
|
+
<ref name="tfoot"/>
|
238
|
+
</optional>
|
239
|
+
<zeroOrMore>
|
240
|
+
<ref name="table-note"/>
|
241
|
+
</zeroOrMore>
|
242
|
+
<optional>
|
243
|
+
<ref name="dl"/>
|
244
|
+
</optional>
|
245
|
+
</element>
|
246
|
+
</define>
|
247
|
+
<define name="figure">
|
248
|
+
<element name="figure">
|
249
|
+
<attribute name="id">
|
250
|
+
<data type="ID"/>
|
251
|
+
</attribute>
|
252
|
+
<optional>
|
253
|
+
<attribute name="unnumbered">
|
254
|
+
<data type="boolean"/>
|
255
|
+
</attribute>
|
256
|
+
</optional>
|
257
|
+
<optional>
|
258
|
+
<attribute name="number"/>
|
259
|
+
</optional>
|
260
|
+
<optional>
|
261
|
+
<attribute name="subsequence"/>
|
262
|
+
</optional>
|
263
|
+
<optional>
|
264
|
+
<attribute name="keep-with-next">
|
265
|
+
<data type="boolean"/>
|
266
|
+
</attribute>
|
267
|
+
</optional>
|
268
|
+
<optional>
|
269
|
+
<attribute name="keep-lines-together">
|
270
|
+
<data type="boolean"/>
|
271
|
+
</attribute>
|
272
|
+
</optional>
|
273
|
+
<optional>
|
274
|
+
<attribute name="class"/>
|
275
|
+
</optional>
|
276
|
+
<optional>
|
277
|
+
<ref name="source"/>
|
278
|
+
</optional>
|
279
|
+
<optional>
|
280
|
+
<ref name="tname"/>
|
281
|
+
</optional>
|
282
|
+
<choice>
|
283
|
+
<ref name="image"/>
|
284
|
+
<ref name="video"/>
|
285
|
+
<ref name="audio"/>
|
286
|
+
<ref name="pre"/>
|
287
|
+
<oneOrMore>
|
288
|
+
<ref name="paragraph-with-footnote"/>
|
289
|
+
</oneOrMore>
|
290
|
+
<zeroOrMore>
|
291
|
+
<ref name="figure"/>
|
292
|
+
</zeroOrMore>
|
293
|
+
</choice>
|
294
|
+
<zeroOrMore>
|
295
|
+
<ref name="fn"/>
|
296
|
+
</zeroOrMore>
|
297
|
+
<optional>
|
298
|
+
<ref name="dl"/>
|
299
|
+
</optional>
|
300
|
+
<zeroOrMore>
|
301
|
+
<ref name="note"/>
|
302
|
+
</zeroOrMore>
|
303
|
+
</element>
|
304
|
+
</define>
|
305
|
+
<define name="sourcecode">
|
306
|
+
<element name="sourcecode">
|
307
|
+
<attribute name="id">
|
308
|
+
<data type="ID"/>
|
309
|
+
</attribute>
|
310
|
+
<optional>
|
311
|
+
<attribute name="unnumbered">
|
312
|
+
<data type="boolean"/>
|
313
|
+
</attribute>
|
314
|
+
</optional>
|
315
|
+
<optional>
|
316
|
+
<attribute name="number"/>
|
317
|
+
</optional>
|
318
|
+
<optional>
|
319
|
+
<attribute name="subsequence"/>
|
320
|
+
</optional>
|
321
|
+
<optional>
|
322
|
+
<attribute name="keep-with-next">
|
323
|
+
<data type="boolean"/>
|
324
|
+
</attribute>
|
325
|
+
</optional>
|
326
|
+
<optional>
|
327
|
+
<attribute name="keep-lines-together">
|
328
|
+
<data type="boolean"/>
|
329
|
+
</attribute>
|
330
|
+
</optional>
|
331
|
+
<optional>
|
332
|
+
<attribute name="lang"/>
|
333
|
+
</optional>
|
334
|
+
<optional>
|
335
|
+
<ref name="tname"/>
|
336
|
+
</optional>
|
337
|
+
<oneOrMore>
|
338
|
+
<choice>
|
339
|
+
<text/>
|
340
|
+
<ref name="callout"/>
|
341
|
+
</choice>
|
342
|
+
</oneOrMore>
|
343
|
+
<zeroOrMore>
|
344
|
+
<ref name="annotation"/>
|
345
|
+
</zeroOrMore>
|
346
|
+
<zeroOrMore>
|
347
|
+
<ref name="note"/>
|
348
|
+
</zeroOrMore>
|
349
|
+
</element>
|
350
|
+
</define>
|
351
|
+
<define name="formula">
|
352
|
+
<element name="formula">
|
353
|
+
<attribute name="id">
|
354
|
+
<data type="ID"/>
|
355
|
+
</attribute>
|
356
|
+
<optional>
|
357
|
+
<attribute name="unnumbered">
|
358
|
+
<data type="boolean"/>
|
359
|
+
</attribute>
|
360
|
+
</optional>
|
361
|
+
<optional>
|
362
|
+
<attribute name="number"/>
|
363
|
+
</optional>
|
364
|
+
<optional>
|
365
|
+
<attribute name="subsequence"/>
|
366
|
+
</optional>
|
367
|
+
<optional>
|
368
|
+
<attribute name="keep-with-next">
|
369
|
+
<data type="boolean"/>
|
370
|
+
</attribute>
|
371
|
+
</optional>
|
372
|
+
<optional>
|
373
|
+
<attribute name="keep-lines-together">
|
374
|
+
<data type="boolean"/>
|
375
|
+
</attribute>
|
376
|
+
</optional>
|
377
|
+
<optional>
|
378
|
+
<attribute name="inequality">
|
379
|
+
<data type="boolean"/>
|
380
|
+
</attribute>
|
381
|
+
</optional>
|
382
|
+
<ref name="stem"/>
|
383
|
+
<optional>
|
384
|
+
<ref name="dl"/>
|
385
|
+
</optional>
|
386
|
+
<zeroOrMore>
|
387
|
+
<ref name="note"/>
|
388
|
+
</zeroOrMore>
|
389
|
+
</element>
|
390
|
+
</define>
|
391
|
+
<define name="ParagraphType">
|
392
|
+
<attribute name="id">
|
393
|
+
<data type="ID"/>
|
394
|
+
</attribute>
|
395
|
+
<optional>
|
396
|
+
<attribute name="align">
|
397
|
+
<ref name="Alignments"/>
|
398
|
+
</attribute>
|
399
|
+
</optional>
|
400
|
+
<optional>
|
401
|
+
<attribute name="keep-with-next">
|
402
|
+
<data type="boolean"/>
|
403
|
+
</attribute>
|
404
|
+
</optional>
|
405
|
+
<optional>
|
406
|
+
<attribute name="keep-lines-together">
|
407
|
+
<data type="boolean"/>
|
408
|
+
</attribute>
|
409
|
+
</optional>
|
410
|
+
<zeroOrMore>
|
411
|
+
<ref name="TextElement"/>
|
412
|
+
</zeroOrMore>
|
413
|
+
<zeroOrMore>
|
414
|
+
<ref name="note"/>
|
415
|
+
</zeroOrMore>
|
416
|
+
</define>
|
417
|
+
<define name="paragraph-with-footnote">
|
418
|
+
<element name="p">
|
419
|
+
<attribute name="id">
|
420
|
+
<data type="ID"/>
|
421
|
+
</attribute>
|
422
|
+
<optional>
|
423
|
+
<attribute name="align">
|
424
|
+
<ref name="Alignments"/>
|
425
|
+
</attribute>
|
426
|
+
</optional>
|
427
|
+
<optional>
|
428
|
+
<attribute name="keep-with-next">
|
429
|
+
<data type="boolean"/>
|
430
|
+
</attribute>
|
431
|
+
</optional>
|
432
|
+
<optional>
|
433
|
+
<attribute name="keep-lines-together">
|
434
|
+
<data type="boolean"/>
|
435
|
+
</attribute>
|
436
|
+
</optional>
|
437
|
+
<zeroOrMore>
|
438
|
+
<choice>
|
439
|
+
<ref name="TextElement"/>
|
440
|
+
<ref name="fn"/>
|
441
|
+
</choice>
|
442
|
+
</zeroOrMore>
|
443
|
+
<zeroOrMore>
|
444
|
+
<ref name="note"/>
|
445
|
+
</zeroOrMore>
|
446
|
+
</element>
|
447
|
+
</define>
|
448
|
+
<define name="quote">
|
449
|
+
<element name="quote">
|
450
|
+
<attribute name="id">
|
451
|
+
<data type="ID"/>
|
452
|
+
</attribute>
|
453
|
+
<optional>
|
454
|
+
<attribute name="alignment">
|
455
|
+
<ref name="Alignments"/>
|
456
|
+
</attribute>
|
457
|
+
</optional>
|
458
|
+
<optional>
|
459
|
+
<attribute name="keep-with-next">
|
460
|
+
<data type="boolean"/>
|
461
|
+
</attribute>
|
462
|
+
</optional>
|
463
|
+
<optional>
|
464
|
+
<attribute name="keep-lines-together">
|
465
|
+
<data type="boolean"/>
|
466
|
+
</attribute>
|
467
|
+
</optional>
|
468
|
+
<optional>
|
469
|
+
<ref name="quote-source"/>
|
470
|
+
</optional>
|
471
|
+
<optional>
|
472
|
+
<ref name="quote-author"/>
|
473
|
+
</optional>
|
474
|
+
<oneOrMore>
|
475
|
+
<ref name="paragraph-with-footnote"/>
|
476
|
+
</oneOrMore>
|
477
|
+
<zeroOrMore>
|
478
|
+
<ref name="note"/>
|
479
|
+
</zeroOrMore>
|
480
|
+
</element>
|
481
|
+
</define>
|
92
482
|
<define name="BibDataExtensionType">
|
93
483
|
<ref name="doctype"/>
|
94
484
|
<optional>
|
@@ -129,6 +519,9 @@
|
|
129
519
|
</choice>
|
130
520
|
</attribute>
|
131
521
|
</optional>
|
522
|
+
<attribute name="normative">
|
523
|
+
<data type="boolean"/>
|
524
|
+
</attribute>
|
132
525
|
<optional>
|
133
526
|
<ref name="section-title"/>
|
134
527
|
</optional>
|
@@ -154,6 +547,30 @@
|
|
154
547
|
<attribute name="id">
|
155
548
|
<data type="ID"/>
|
156
549
|
</attribute>
|
550
|
+
<optional>
|
551
|
+
<attribute name="unnumbered">
|
552
|
+
<data type="boolean"/>
|
553
|
+
</attribute>
|
554
|
+
</optional>
|
555
|
+
<optional>
|
556
|
+
<attribute name="number"/>
|
557
|
+
</optional>
|
558
|
+
<optional>
|
559
|
+
<attribute name="subsequence"/>
|
560
|
+
</optional>
|
561
|
+
<optional>
|
562
|
+
<attribute name="keep-with-next">
|
563
|
+
<data type="boolean"/>
|
564
|
+
</attribute>
|
565
|
+
</optional>
|
566
|
+
<optional>
|
567
|
+
<attribute name="keep-lines-together">
|
568
|
+
<data type="boolean"/>
|
569
|
+
</attribute>
|
570
|
+
</optional>
|
571
|
+
<optional>
|
572
|
+
<attribute name="type"/>
|
573
|
+
</optional>
|
157
574
|
<oneOrMore>
|
158
575
|
<choice>
|
159
576
|
<ref name="paragraph"/>
|
@@ -305,6 +722,21 @@
|
|
305
722
|
</define>
|
306
723
|
</include>
|
307
724
|
<!-- end overrides -->
|
725
|
+
<define name="TextElement" combine="choice">
|
726
|
+
<ref name="concept"/>
|
727
|
+
</define>
|
728
|
+
<define name="concept">
|
729
|
+
<element name="concept">
|
730
|
+
<optional>
|
731
|
+
<attribute name="term"/>
|
732
|
+
</optional>
|
733
|
+
<choice>
|
734
|
+
<ref name="eref"/>
|
735
|
+
<ref name="xref"/>
|
736
|
+
<ref name="termref"/>
|
737
|
+
</choice>
|
738
|
+
</element>
|
739
|
+
</define>
|
308
740
|
<define name="BasicBlock" combine="choice">
|
309
741
|
<choice>
|
310
742
|
<ref name="requirement"/>
|
@@ -884,7 +1316,36 @@
|
|
884
1316
|
<attribute name="id">
|
885
1317
|
<data type="ID"/>
|
886
1318
|
</attribute>
|
887
|
-
<
|
1319
|
+
<optional>
|
1320
|
+
<attribute name="unnumbered">
|
1321
|
+
<data type="boolean"/>
|
1322
|
+
</attribute>
|
1323
|
+
</optional>
|
1324
|
+
<optional>
|
1325
|
+
<attribute name="number"/>
|
1326
|
+
</optional>
|
1327
|
+
<optional>
|
1328
|
+
<attribute name="subsequence"/>
|
1329
|
+
</optional>
|
1330
|
+
<optional>
|
1331
|
+
<attribute name="keep-with-next">
|
1332
|
+
<data type="boolean"/>
|
1333
|
+
</attribute>
|
1334
|
+
</optional>
|
1335
|
+
<optional>
|
1336
|
+
<attribute name="keep-lines-together">
|
1337
|
+
<data type="boolean"/>
|
1338
|
+
</attribute>
|
1339
|
+
</optional>
|
1340
|
+
<oneOrMore>
|
1341
|
+
<choice>
|
1342
|
+
<ref name="paragraph"/>
|
1343
|
+
<ref name="ul"/>
|
1344
|
+
<ref name="ol"/>
|
1345
|
+
<ref name="dl"/>
|
1346
|
+
<ref name="formula"/>
|
1347
|
+
</choice>
|
1348
|
+
</oneOrMore>
|
888
1349
|
</element>
|
889
1350
|
</define>
|
890
1351
|
<define name="termexample">
|
@@ -911,7 +1372,10 @@
|
|
911
1372
|
</define>
|
912
1373
|
<define name="origin">
|
913
1374
|
<element name="origin">
|
914
|
-
<
|
1375
|
+
<choice>
|
1376
|
+
<ref name="erefType"/>
|
1377
|
+
<ref name="termref"/>
|
1378
|
+
</choice>
|
915
1379
|
</element>
|
916
1380
|
</define>
|
917
1381
|
<define name="modification">
|
@@ -919,6 +1383,15 @@
|
|
919
1383
|
<ref name="paragraph"/>
|
920
1384
|
</element>
|
921
1385
|
</define>
|
1386
|
+
<define name="termref">
|
1387
|
+
<element name="termref">
|
1388
|
+
<attribute name="base"/>
|
1389
|
+
<attribute name="target"/>
|
1390
|
+
<optional>
|
1391
|
+
<text/>
|
1392
|
+
</optional>
|
1393
|
+
</element>
|
1394
|
+
</define>
|
922
1395
|
<define name="structuredidentifier">
|
923
1396
|
<element name="structuredidentifier">
|
924
1397
|
<optional>
|