metanorma-ogc 2.4.7 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +2 -8
- data/lib/isodoc/ogc/html/htmlstyle.css +8 -0
- data/lib/isodoc/ogc/i18n-en.yaml +1 -0
- data/lib/isodoc/ogc/ogc.abstract-specification-topic.xsl +7 -4
- data/lib/isodoc/ogc/ogc.best-practice.xsl +7 -4
- data/lib/isodoc/ogc/ogc.change-request-supporting-document.xsl +7 -4
- data/lib/isodoc/ogc/ogc.community-practice.xsl +7 -4
- data/lib/isodoc/ogc/ogc.community-standard.xsl +7 -4
- data/lib/isodoc/ogc/ogc.discussion-paper.xsl +7 -4
- data/lib/isodoc/ogc/ogc.draft-standard.xsl +7 -4
- data/lib/isodoc/ogc/ogc.engineering-report.xsl +7 -4
- data/lib/isodoc/ogc/ogc.other.xsl +7 -4
- data/lib/isodoc/ogc/ogc.policy.xsl +7 -4
- data/lib/isodoc/ogc/ogc.reference-model.xsl +7 -4
- data/lib/isodoc/ogc/ogc.release-notes.xsl +7 -4
- data/lib/isodoc/ogc/ogc.standard.xsl +7 -4
- data/lib/isodoc/ogc/ogc.test-suite.xsl +7 -4
- data/lib/isodoc/ogc/ogc.user-guide.xsl +7 -4
- data/lib/isodoc/ogc/ogc.white-paper.xsl +7 -4
- data/lib/isodoc/ogc/presentation_sections.rb +112 -0
- data/lib/isodoc/ogc/presentation_xml_convert.rb +79 -104
- data/lib/metanorma/ogc/basicdoc.rng +117 -25
- data/lib/metanorma/ogc/biblio-standoc.rng +44 -1
- data/lib/metanorma/ogc/biblio.rng +11 -0
- data/lib/metanorma/ogc/cleanup.rb +9 -8
- data/lib/metanorma/ogc/converter.rb +5 -2
- data/lib/metanorma/ogc/isodoc.rng +10 -64
- data/lib/metanorma/ogc/reqt.rng +0 -16
- data/lib/metanorma/ogc/version.rb +1 -1
- data/metanorma-ogc.gemspec +1 -1
- metadata +5 -4
|
@@ -9,11 +9,42 @@
|
|
|
9
9
|
-->
|
|
10
10
|
<include href="biblio.rng">
|
|
11
11
|
<define name="BibData">
|
|
12
|
-
<ref name="
|
|
12
|
+
<ref name="StandardBibliographicItem"/>
|
|
13
13
|
<optional>
|
|
14
14
|
<ref name="ext"/>
|
|
15
15
|
</optional>
|
|
16
16
|
</define>
|
|
17
|
+
<define name="docrelation">
|
|
18
|
+
<element name="relation">
|
|
19
|
+
<attribute name="type">
|
|
20
|
+
<ref name="DocRelationType"/>
|
|
21
|
+
</attribute>
|
|
22
|
+
<optional>
|
|
23
|
+
<element name="description">
|
|
24
|
+
<ref name="FormattedString"/>
|
|
25
|
+
</element>
|
|
26
|
+
</optional>
|
|
27
|
+
<element name="bibitem">
|
|
28
|
+
<ref name="StandardReducedBibliographicItem"/>
|
|
29
|
+
</element>
|
|
30
|
+
<choice>
|
|
31
|
+
<zeroOrMore>
|
|
32
|
+
<ref name="locality"/>
|
|
33
|
+
</zeroOrMore>
|
|
34
|
+
<zeroOrMore>
|
|
35
|
+
<ref name="localityStack"/>
|
|
36
|
+
</zeroOrMore>
|
|
37
|
+
</choice>
|
|
38
|
+
<choice>
|
|
39
|
+
<zeroOrMore>
|
|
40
|
+
<ref name="sourceLocality"/>
|
|
41
|
+
</zeroOrMore>
|
|
42
|
+
<zeroOrMore>
|
|
43
|
+
<ref name="sourceLocalityStack"/>
|
|
44
|
+
</zeroOrMore>
|
|
45
|
+
</choice>
|
|
46
|
+
</element>
|
|
47
|
+
</define>
|
|
17
48
|
</include>
|
|
18
49
|
<define name="ext">
|
|
19
50
|
<element name="ext">
|
|
@@ -161,4 +192,16 @@
|
|
|
161
192
|
</optional>
|
|
162
193
|
</element>
|
|
163
194
|
</define>
|
|
195
|
+
<define name="StandardBibliographicItem">
|
|
196
|
+
<ref name="BibliographicItem"/>
|
|
197
|
+
<zeroOrMore>
|
|
198
|
+
<ref name="amend"/>
|
|
199
|
+
</zeroOrMore>
|
|
200
|
+
</define>
|
|
201
|
+
<define name="StandardReducedBibliographicItem">
|
|
202
|
+
<ref name="ReducedBibliographicItem"/>
|
|
203
|
+
<zeroOrMore>
|
|
204
|
+
<ref name="amend"/>
|
|
205
|
+
</zeroOrMore>
|
|
206
|
+
</define>
|
|
164
207
|
</grammar>
|
|
@@ -241,6 +241,9 @@
|
|
|
241
241
|
</element>
|
|
242
242
|
</define>
|
|
243
243
|
<define name="FullNameType">
|
|
244
|
+
<optional>
|
|
245
|
+
<ref name="name_abbreviation"/>
|
|
246
|
+
</optional>
|
|
244
247
|
<choice>
|
|
245
248
|
<group>
|
|
246
249
|
<zeroOrMore>
|
|
@@ -266,6 +269,11 @@
|
|
|
266
269
|
<ref name="variantname"/>
|
|
267
270
|
</zeroOrMore>
|
|
268
271
|
</define>
|
|
272
|
+
<define name="name_abbreviation">
|
|
273
|
+
<element name="abbreviation">
|
|
274
|
+
<ref name="LocalizedString"/>
|
|
275
|
+
</element>
|
|
276
|
+
</define>
|
|
269
277
|
<define name="prefix">
|
|
270
278
|
<element name="prefix">
|
|
271
279
|
<ref name="LocalizedString"/>
|
|
@@ -870,6 +878,9 @@
|
|
|
870
878
|
<optional>
|
|
871
879
|
<ref name="validity"/>
|
|
872
880
|
</optional>
|
|
881
|
+
<optional>
|
|
882
|
+
<ref name="depiction"/>
|
|
883
|
+
</optional>
|
|
873
884
|
</define>
|
|
874
885
|
<define name="btitle">
|
|
875
886
|
<element name="title">
|
|
@@ -64,11 +64,12 @@ module Metanorma
|
|
|
64
64
|
if xml.at("//submitters")
|
|
65
65
|
preface = sect.at("//preface") ||
|
|
66
66
|
sect.add_previous_sibling("<preface/>").first
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
67
|
+
xml.xpath("//submitters").each do |s|
|
|
68
|
+
s.xpath(".//table").each do |t|
|
|
69
|
+
t["unnumbered"] = true
|
|
70
|
+
end
|
|
71
|
+
preface.add_child s.remove
|
|
70
72
|
end
|
|
71
|
-
preface.add_child submitters.remove
|
|
72
73
|
end
|
|
73
74
|
end
|
|
74
75
|
|
|
@@ -225,15 +226,15 @@ module Metanorma
|
|
|
225
226
|
type: id ? id["type"] : nil }
|
|
226
227
|
end
|
|
227
228
|
|
|
228
|
-
|
|
229
|
-
# case insensitive
|
|
230
|
-
|
|
229
|
+
# Numbers sort *before* letters; we leave out using thorn to force
|
|
230
|
+
# that sort order. case insensitive
|
|
231
|
+
def symbol_key(sym)
|
|
231
232
|
@c.decode(asciimath_key(sym).text)
|
|
232
233
|
.gsub(/[\[\]{}<>()]/, "").gsub(/\s/m, "")
|
|
233
234
|
.gsub(/[[:punct:]]|[_^]/, ":\\0").gsub("`", "")
|
|
234
235
|
end
|
|
235
236
|
|
|
236
|
-
|
|
237
|
+
def symbols_cleanup(docxml)
|
|
237
238
|
docxml.xpath("//definitions/dl").each do |dl|
|
|
238
239
|
dl_out = extract_symbols_list(dl)
|
|
239
240
|
dl_out.sort! do |a, b|
|
|
@@ -88,8 +88,10 @@ module Metanorma
|
|
|
88
88
|
|
|
89
89
|
def clause_parse(attrs, xml, node)
|
|
90
90
|
case node.attr("heading")&.downcase || node.title.downcase
|
|
91
|
-
when "submitters"
|
|
91
|
+
when "submitters"
|
|
92
92
|
return submitters_parse(attrs, xml, node)
|
|
93
|
+
when "contributors"
|
|
94
|
+
return submitters_parse(attrs.merge(type: "contributors"), xml, node)
|
|
93
95
|
when "conformance" then attrs = attrs.merge(type: "conformance")
|
|
94
96
|
when "security considerations"
|
|
95
97
|
attrs = attrs.merge(type: "security")
|
|
@@ -101,7 +103,8 @@ module Metanorma
|
|
|
101
103
|
|
|
102
104
|
def submitters_parse(attrs, xml, node)
|
|
103
105
|
title = @i18n.submitters
|
|
104
|
-
doctype(node) == "engineering-report"
|
|
106
|
+
doctype(node) == "engineering-report" ||
|
|
107
|
+
attrs[:type] == "contributors" and
|
|
105
108
|
title = @i18n.contributors_clause
|
|
106
109
|
xml.submitters **attr_code(attrs) do |xml_section|
|
|
107
110
|
xml_section.title title
|
|
@@ -17,10 +17,19 @@
|
|
|
17
17
|
these elements; we just want one namespace for any child grammars
|
|
18
18
|
of this.
|
|
19
19
|
-->
|
|
20
|
-
<!-- VERSION v1.2.
|
|
20
|
+
<!-- VERSION v1.2.12 -->
|
|
21
21
|
<grammar xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
|
|
22
22
|
<include href="reqt.rng"/>
|
|
23
23
|
<include href="basicdoc.rng">
|
|
24
|
+
<define name="amend">
|
|
25
|
+
<element name="amend">
|
|
26
|
+
<ref name="BlockAttributes"/>
|
|
27
|
+
<ref name="AmendType"/>
|
|
28
|
+
<zeroOrMore>
|
|
29
|
+
<ref name="autonumber"/>
|
|
30
|
+
</zeroOrMore>
|
|
31
|
+
</element>
|
|
32
|
+
</define>
|
|
24
33
|
<define name="admonition">
|
|
25
34
|
<element name="admonition">
|
|
26
35
|
<attribute name="type">
|
|
@@ -2319,69 +2328,6 @@
|
|
|
2319
2328
|
<ref name="CitationType"/>
|
|
2320
2329
|
</element>
|
|
2321
2330
|
</define>
|
|
2322
|
-
<define name="amend">
|
|
2323
|
-
<element name="amend">
|
|
2324
|
-
<optional>
|
|
2325
|
-
<attribute name="id">
|
|
2326
|
-
<data type="ID"/>
|
|
2327
|
-
</attribute>
|
|
2328
|
-
</optional>
|
|
2329
|
-
<attribute name="change">
|
|
2330
|
-
<choice>
|
|
2331
|
-
<value>add</value>
|
|
2332
|
-
<value>modify</value>
|
|
2333
|
-
<value>delete</value>
|
|
2334
|
-
<value>replace</value>
|
|
2335
|
-
</choice>
|
|
2336
|
-
</attribute>
|
|
2337
|
-
<optional>
|
|
2338
|
-
<attribute name="path"/>
|
|
2339
|
-
</optional>
|
|
2340
|
-
<optional>
|
|
2341
|
-
<attribute name="path_end"/>
|
|
2342
|
-
</optional>
|
|
2343
|
-
<optional>
|
|
2344
|
-
<attribute name="title"/>
|
|
2345
|
-
</optional>
|
|
2346
|
-
<ref name="BlockAttributes"/>
|
|
2347
|
-
<optional>
|
|
2348
|
-
<element name="location">
|
|
2349
|
-
<zeroOrMore>
|
|
2350
|
-
<ref name="locality"/>
|
|
2351
|
-
</zeroOrMore>
|
|
2352
|
-
</element>
|
|
2353
|
-
</optional>
|
|
2354
|
-
<zeroOrMore>
|
|
2355
|
-
<ref name="autonumber"/>
|
|
2356
|
-
</zeroOrMore>
|
|
2357
|
-
<optional>
|
|
2358
|
-
<element name="description">
|
|
2359
|
-
<zeroOrMore>
|
|
2360
|
-
<ref name="BasicBlock"/>
|
|
2361
|
-
</zeroOrMore>
|
|
2362
|
-
</element>
|
|
2363
|
-
</optional>
|
|
2364
|
-
<optional>
|
|
2365
|
-
<element name="newcontent">
|
|
2366
|
-
<optional>
|
|
2367
|
-
<attribute name="id">
|
|
2368
|
-
<data type="ID"/>
|
|
2369
|
-
</attribute>
|
|
2370
|
-
</optional>
|
|
2371
|
-
<zeroOrMore>
|
|
2372
|
-
<ref name="BasicBlock"/>
|
|
2373
|
-
</zeroOrMore>
|
|
2374
|
-
</element>
|
|
2375
|
-
</optional>
|
|
2376
|
-
<optional>
|
|
2377
|
-
<element name="description">
|
|
2378
|
-
<zeroOrMore>
|
|
2379
|
-
<ref name="BasicBlock"/>
|
|
2380
|
-
</zeroOrMore>
|
|
2381
|
-
</element>
|
|
2382
|
-
</optional>
|
|
2383
|
-
</element>
|
|
2384
|
-
</define>
|
|
2385
2331
|
<define name="autonumber">
|
|
2386
2332
|
<element name="autonumber">
|
|
2387
2333
|
<attribute name="type">
|
data/lib/metanorma/ogc/reqt.rng
CHANGED
|
@@ -207,20 +207,4 @@
|
|
|
207
207
|
<value>permission</value>
|
|
208
208
|
</choice>
|
|
209
209
|
</define>
|
|
210
|
-
<define name="classification">
|
|
211
|
-
<element name="classification">
|
|
212
|
-
<ref name="classification_tag"/>
|
|
213
|
-
<ref name="classification_value"/>
|
|
214
|
-
</element>
|
|
215
|
-
</define>
|
|
216
|
-
<define name="classification_tag">
|
|
217
|
-
<element name="tag">
|
|
218
|
-
<text/>
|
|
219
|
-
</element>
|
|
220
|
-
</define>
|
|
221
|
-
<define name="classification_value">
|
|
222
|
-
<element name="value">
|
|
223
|
-
<text/>
|
|
224
|
-
</element>
|
|
225
|
-
</define>
|
|
226
210
|
</grammar>
|
data/metanorma-ogc.gemspec
CHANGED
|
@@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
|
|
|
26
26
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
|
|
27
27
|
|
|
28
28
|
spec.add_dependency "iso-639"
|
|
29
|
-
spec.add_dependency "metanorma-standoc", "~> 2.
|
|
29
|
+
spec.add_dependency "metanorma-standoc", "~> 2.8.0"
|
|
30
30
|
|
|
31
31
|
spec.add_development_dependency "debug"
|
|
32
32
|
spec.add_development_dependency "equivalent-xml", "~> 0.6"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: metanorma-ogc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-01-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: iso-639
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 2.
|
|
33
|
+
version: 2.8.0
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 2.
|
|
40
|
+
version: 2.8.0
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: debug
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -271,6 +271,7 @@ files:
|
|
|
271
271
|
- lib/isodoc/ogc/ogc.user-guide.xsl
|
|
272
272
|
- lib/isodoc/ogc/ogc.white-paper.xsl
|
|
273
273
|
- lib/isodoc/ogc/pdf_convert.rb
|
|
274
|
+
- lib/isodoc/ogc/presentation_sections.rb
|
|
274
275
|
- lib/isodoc/ogc/presentation_xml_convert.rb
|
|
275
276
|
- lib/isodoc/ogc/sections.rb
|
|
276
277
|
- lib/isodoc/ogc/word_convert.rb
|