metanorma-ogc 1.2.12 → 1.2.13
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/.rubocop.yml +0 -4
- data/lib/asciidoctor/ogc/converter.rb +5 -5
- data/lib/asciidoctor/ogc/isodoc.rng +63 -0
- data/lib/isodoc/ogc/i18n-en.yaml +1 -1
- data/lib/metanorma/ogc/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fd89758a6852f556b8e3396a369e64727dd6555c062804fc29fef131fd646796
|
|
4
|
+
data.tar.gz: 2c73d25ef997c720b536b795ea4f46f17d3cf5f8f3e5367138f9e67ffe99dc5a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1b9e5efae9844487dc75ddb2b4e234f448c8c1aab778c974b34e24906b91f2abb2f1a612c50211207599c641e2134e0573a0ec8f6c27a7308b5ec9fa3c06caf0
|
|
7
|
+
data.tar.gz: 6374eb0d0cca8771262d11c06cd925429cfc3bfbf1cf9376703abd09eb79399feaba8228c232150b9f32a857e6622d032eae3572f2fa492de396743ec3d3fb5b
|
data/.rubocop.yml
CHANGED
|
@@ -87,19 +87,19 @@ module Asciidoctor
|
|
|
87
87
|
end
|
|
88
88
|
|
|
89
89
|
def insert_security(x, s)
|
|
90
|
-
|
|
91
|
-
|
|
90
|
+
doctype = s&.at("//bibdata/ext/doctype")&.text
|
|
91
|
+
description = %w(standard community-standard).include?(doctype) ? "standard" : "document"
|
|
92
|
+
preface = s.at("//preface") || s.add_previous_sibling("<preface/>").first
|
|
92
93
|
s = x&.at("//clause[@type = 'security']")&.remove ||
|
|
93
94
|
"<clause type='security' #{add_id}>"\
|
|
94
95
|
"<title>Security Considerations</title>"\
|
|
95
|
-
"<p>#{@i18n.security_empty}</p></clause>"
|
|
96
|
+
"<p>#{@i18n.security_empty.sub(/%/, description)}</p></clause>"
|
|
96
97
|
preface.add_child s
|
|
97
98
|
end
|
|
98
99
|
|
|
99
100
|
def insert_submitters(x, s)
|
|
100
101
|
if x.at("//submitters")
|
|
101
|
-
preface = s.at("//preface") ||
|
|
102
|
-
s.add_previous_sibling("<preface/>").first
|
|
102
|
+
preface = s.at("//preface") || s.add_previous_sibling("<preface/>").first
|
|
103
103
|
submitters = x.at("//submitters").remove
|
|
104
104
|
preface.add_child submitters.remove
|
|
105
105
|
end
|
|
@@ -812,6 +812,8 @@
|
|
|
812
812
|
<ref name="requirement"/>
|
|
813
813
|
<ref name="recommendation"/>
|
|
814
814
|
<ref name="permission"/>
|
|
815
|
+
<ref name="imagemap"/>
|
|
816
|
+
<ref name="svgmap"/>
|
|
815
817
|
</choice>
|
|
816
818
|
</define>
|
|
817
819
|
<define name="bibliography">
|
|
@@ -1635,4 +1637,65 @@
|
|
|
1635
1637
|
<text/>
|
|
1636
1638
|
</element>
|
|
1637
1639
|
</define>
|
|
1640
|
+
<define name="imagemap">
|
|
1641
|
+
<element name="imagemap">
|
|
1642
|
+
<ref name="figure"/>
|
|
1643
|
+
<zeroOrMore>
|
|
1644
|
+
<element name="area">
|
|
1645
|
+
<attribute name="type">
|
|
1646
|
+
<choice>
|
|
1647
|
+
<value>rect</value>
|
|
1648
|
+
<value>circle</value>
|
|
1649
|
+
<value>ellipse</value>
|
|
1650
|
+
<value>poly</value>
|
|
1651
|
+
</choice>
|
|
1652
|
+
</attribute>
|
|
1653
|
+
<choice>
|
|
1654
|
+
<ref name="xref"/>
|
|
1655
|
+
<ref name="hyperlink"/>
|
|
1656
|
+
<ref name="eref"/>
|
|
1657
|
+
</choice>
|
|
1658
|
+
<oneOrMore>
|
|
1659
|
+
<element name="coords">
|
|
1660
|
+
<attribute name="x">
|
|
1661
|
+
<data type="float"/>
|
|
1662
|
+
</attribute>
|
|
1663
|
+
<attribute name="y">
|
|
1664
|
+
<data type="float"/>
|
|
1665
|
+
</attribute>
|
|
1666
|
+
</element>
|
|
1667
|
+
</oneOrMore>
|
|
1668
|
+
<optional>
|
|
1669
|
+
<element name="radius">
|
|
1670
|
+
<attribute name="x">
|
|
1671
|
+
<data type="float"/>
|
|
1672
|
+
</attribute>
|
|
1673
|
+
<optional>
|
|
1674
|
+
<attribute name="y">
|
|
1675
|
+
<data type="float"/>
|
|
1676
|
+
</attribute>
|
|
1677
|
+
</optional>
|
|
1678
|
+
</element>
|
|
1679
|
+
</optional>
|
|
1680
|
+
</element>
|
|
1681
|
+
</zeroOrMore>
|
|
1682
|
+
</element>
|
|
1683
|
+
</define>
|
|
1684
|
+
<define name="svgmap">
|
|
1685
|
+
<element name="svgmap">
|
|
1686
|
+
<ref name="figure"/>
|
|
1687
|
+
<zeroOrMore>
|
|
1688
|
+
<element name="target">
|
|
1689
|
+
<attribute name="href">
|
|
1690
|
+
<data type="anyURI"/>
|
|
1691
|
+
</attribute>
|
|
1692
|
+
<choice>
|
|
1693
|
+
<ref name="xref"/>
|
|
1694
|
+
<ref name="hyperlink"/>
|
|
1695
|
+
<ref name="eref"/>
|
|
1696
|
+
</choice>
|
|
1697
|
+
</element>
|
|
1698
|
+
</zeroOrMore>
|
|
1699
|
+
</element>
|
|
1700
|
+
</define>
|
|
1638
1701
|
</grammar>
|
data/lib/isodoc/ogc/i18n-en.yaml
CHANGED
|
@@ -9,7 +9,7 @@ permissionclass: Permission Class
|
|
|
9
9
|
abstracttest: Abstract Test
|
|
10
10
|
conformanceclass: Conformance Class
|
|
11
11
|
example: Example
|
|
12
|
-
security_empty: No security considerations have been made for this
|
|
12
|
+
security_empty: No security considerations have been made for this %.
|
|
13
13
|
stage_dict:
|
|
14
14
|
swg-draft: Candidate SWG Draft
|
|
15
15
|
oab-review: Candidate OAB Review Draft
|
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: 1.2.
|
|
4
|
+
version: 1.2.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-02-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: metanorma-standoc
|
|
@@ -299,7 +299,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
299
299
|
- !ruby/object:Gem::Version
|
|
300
300
|
version: '0'
|
|
301
301
|
requirements: []
|
|
302
|
-
rubygems_version: 3.
|
|
302
|
+
rubygems_version: 3.1.4
|
|
303
303
|
signing_key:
|
|
304
304
|
specification_version: 4
|
|
305
305
|
summary: Metanorma for the Open Geospatial Consortium.
|