metanorma-ogc 2.3.12 → 2.3.14
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/lib/isodoc/ogc/html/htmlstyle.css +9 -5
- data/lib/isodoc/ogc/html/htmlstyle.scss +2 -2
- data/lib/isodoc/ogc/i18n-en.yaml +11 -0
- data/lib/isodoc/ogc/ogc.abstract-specification-topic.xsl +250 -102
- data/lib/isodoc/ogc/ogc.best-practice.xsl +250 -102
- data/lib/isodoc/ogc/ogc.change-request-supporting-document.xsl +250 -102
- data/lib/isodoc/ogc/ogc.community-practice.xsl +250 -102
- data/lib/isodoc/ogc/ogc.community-standard.xsl +250 -102
- data/lib/isodoc/ogc/ogc.discussion-paper.xsl +250 -102
- data/lib/isodoc/ogc/ogc.draft-standard.xsl +250 -102
- data/lib/isodoc/ogc/ogc.engineering-report.xsl +250 -102
- data/lib/isodoc/ogc/ogc.other.xsl +250 -102
- data/lib/isodoc/ogc/ogc.policy.xsl +250 -102
- data/lib/isodoc/ogc/ogc.reference-model.xsl +250 -102
- data/lib/isodoc/ogc/ogc.release-notes.xsl +250 -102
- data/lib/isodoc/ogc/ogc.standard.xsl +250 -102
- data/lib/isodoc/ogc/ogc.test-suite.xsl +250 -102
- data/lib/isodoc/ogc/ogc.user-guide.xsl +250 -102
- data/lib/isodoc/ogc/ogc.white-paper.xsl +214 -99
- data/lib/isodoc/ogc/presentation_xml_convert.rb +23 -18
- data/lib/isodoc/ogc/xref.rb +17 -6
- data/lib/metanorma/ogc/converter.rb +6 -2
- data/lib/metanorma/ogc/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 49d48dcb669ad25c0c130f4ef75fc39afed2c9982eb93474d7765bda627ea7f0
|
|
4
|
+
data.tar.gz: 5fef51b685daa9d1ccbead3b3699d51dae50c0bee4ac2d620f9efebf6ad9f084
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f39f3a19fe8f189591774f29b76ca050810ef9826a19a42e636bda5eebf729d1c070f7a040f8ae09d0384c58d059161567a7e38d1fc10edc9eee3043f09837bb
|
|
7
|
+
data.tar.gz: 5f22ab9c29f36ec4748f08ed5ef8cb83275078072dbc1d03144526337b4300302b4729c3bde5d11844fdb36b0cb6809102c22c6f042dbe32ebd3b97f6116450c
|
|
@@ -90,7 +90,7 @@ h1, h2, h3, h4, h5, h6 {
|
|
|
90
90
|
|
|
91
91
|
blockquote, q {
|
|
92
92
|
quotes: none; }
|
|
93
|
-
blockquote
|
|
93
|
+
blockquote::before, blockquote::after, q::before, q::after {
|
|
94
94
|
content: '';
|
|
95
95
|
content: none; }
|
|
96
96
|
|
|
@@ -113,14 +113,18 @@ b, strong {
|
|
|
113
113
|
div.document-stage-band, div.document-type-band {
|
|
114
114
|
background-color: #333333; }
|
|
115
115
|
|
|
116
|
-
a.FootnoteRef + a.FootnoteRef
|
|
116
|
+
a.FootnoteRef + a.FootnoteRef::before {
|
|
117
117
|
content: ", ";
|
|
118
118
|
vertical-align: super; }
|
|
119
119
|
|
|
120
|
-
a.TableFootnoteRef + a.TableFootnoteRef
|
|
120
|
+
a.TableFootnoteRef + a.TableFootnoteRef::before {
|
|
121
121
|
content: ", ";
|
|
122
122
|
vertical-align: super; }
|
|
123
123
|
|
|
124
|
+
a.TableFootnoteRef, span.TableFootnoteRef,
|
|
125
|
+
a.FootnoteRef, span.FootnoteRef {
|
|
126
|
+
vertical-align: super; }
|
|
127
|
+
|
|
124
128
|
.addition {
|
|
125
129
|
color: blue; }
|
|
126
130
|
|
|
@@ -600,7 +604,7 @@ dl {
|
|
|
600
604
|
#toc li a, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) li a {
|
|
601
605
|
font-size: 14px; }
|
|
602
606
|
|
|
603
|
-
#toc li
|
|
607
|
+
#toc li::before, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) li::before {
|
|
604
608
|
content: " ";
|
|
605
609
|
display: none; }
|
|
606
610
|
|
|
@@ -851,7 +855,7 @@ ul, ol {
|
|
|
851
855
|
|
|
852
856
|
ul > li {
|
|
853
857
|
list-style: none; }
|
|
854
|
-
ul > li
|
|
858
|
+
ul > li::before {
|
|
855
859
|
content: "\2014";
|
|
856
860
|
display: inline-block;
|
|
857
861
|
width: 1em;
|
|
@@ -72,7 +72,7 @@ dl {
|
|
|
72
72
|
font-size: 14px;
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
-
li
|
|
75
|
+
li::before {
|
|
76
76
|
content: " ";
|
|
77
77
|
display: none;
|
|
78
78
|
}
|
|
@@ -271,7 +271,7 @@ ul {
|
|
|
271
271
|
> li {
|
|
272
272
|
list-style: none;
|
|
273
273
|
|
|
274
|
-
|
|
274
|
+
&::before {
|
|
275
275
|
content: "\2014";
|
|
276
276
|
display: inline-block;
|
|
277
277
|
width: 1em;
|
data/lib/isodoc/ogc/i18n-en.yaml
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
admitted: ADMITTED
|
|
2
2
|
foreword: Preface
|
|
3
3
|
submitters: Submitters
|
|
4
|
+
contributors_clause: Contributors
|
|
4
5
|
recommendationtest: Recommendation test
|
|
5
6
|
requirementtest: Requirement test
|
|
6
7
|
permissiontest: Permission test
|
|
@@ -11,6 +12,10 @@ abstracttest: Abstract test
|
|
|
11
12
|
conformanceclass: Conformance class
|
|
12
13
|
example: Example
|
|
13
14
|
table_of_contents: Contents
|
|
15
|
+
toc_figures: List of Figures
|
|
16
|
+
toc_tables: List of Tables
|
|
17
|
+
toc_recommendations: List of Recommendations
|
|
18
|
+
table_of_figures: Table of Figures
|
|
14
19
|
security_empty: No security considerations have been made for this document.
|
|
15
20
|
internal_terms_boilerplate: |
|
|
16
21
|
<p>This document uses the terms defined in <link target="https://portal.ogc.org/public_ogc/directives/directives.php">OGC Policy Directive 49</link>, which is based on the ISO/IEC Directives, Part 2, Rules for the structure and drafting of International Standards. In particular, the word “shall” (not “must”) is the verb form used to indicate a requirement to be strictly followed to conform to this document and OGC documents do not use the equivalent phrases in the ISO/IEC Directives, Part 2.</p>
|
|
@@ -25,6 +30,12 @@ internal_external_terms_boilerplate: |
|
|
|
25
30
|
<p>This document also uses terms defined in the OGC Standard for Modular specifications (<link target="https://portal.opengeospatial.org/files/?artifact_id=34762">OGC 08-131r3</link>), also known as the 'ModSpec'. The definitions of terms such as standard, specification, requirement, and conformance test are provided in the ModSpec.</p>
|
|
26
31
|
<p>For the purposes of this document, the terms and definitions given in % and the following additionally apply.</p>
|
|
27
32
|
term_defined_in: "(%)"
|
|
33
|
+
submission_date: Submission Date
|
|
34
|
+
approval_date: Approval Date
|
|
35
|
+
publication_date: Publication Date
|
|
36
|
+
author: Author
|
|
37
|
+
editor: Editor
|
|
38
|
+
contributor: Contributor
|
|
28
39
|
stage_dict:
|
|
29
40
|
draft: Draft
|
|
30
41
|
work-item-draft: Work Item Draft
|