metanorma-ogc 2.7.0 → 2.7.2
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/_coverpage.css +132 -91
- data/lib/isodoc/ogc/html/_coverpage.scss +2 -0
- data/lib/isodoc/ogc/html/htmlstyle.css +772 -580
- data/lib/isodoc/ogc/html/htmlstyle.scss +3 -3
- data/lib/isodoc/ogc/html/ogc.css +272 -205
- data/lib/isodoc/ogc/html/ogc_wp.css +244 -181
- data/lib/isodoc/ogc/html/wordstyle.css +480 -411
- data/lib/isodoc/ogc/html/wordstyle_wp.css +404 -344
- data/lib/isodoc/ogc/ogc.abstract-specification-topic.xsl +468 -223
- data/lib/isodoc/ogc/ogc.best-practice.xsl +468 -223
- data/lib/isodoc/ogc/ogc.change-request-supporting-document.xsl +468 -223
- data/lib/isodoc/ogc/ogc.community-practice.xsl +468 -223
- data/lib/isodoc/ogc/ogc.community-standard.xsl +468 -223
- data/lib/isodoc/ogc/ogc.discussion-paper.xsl +468 -223
- data/lib/isodoc/ogc/ogc.draft-standard.xsl +468 -223
- data/lib/isodoc/ogc/ogc.engineering-report.xsl +468 -223
- data/lib/isodoc/ogc/ogc.other.xsl +468 -223
- data/lib/isodoc/ogc/ogc.policy.xsl +468 -223
- data/lib/isodoc/ogc/ogc.reference-model.xsl +468 -223
- data/lib/isodoc/ogc/ogc.release-notes.xsl +468 -223
- data/lib/isodoc/ogc/ogc.standard.xsl +468 -223
- data/lib/isodoc/ogc/ogc.test-suite.xsl +468 -223
- data/lib/isodoc/ogc/ogc.user-guide.xsl +468 -223
- data/lib/isodoc/ogc/ogc.white-paper.xsl +465 -221
- data/lib/isodoc/ogc/presentation_sections.rb +0 -8
- data/lib/isodoc/ogc/presentation_xml_convert.rb +0 -23
- data/lib/isodoc/ogc/xref.rb +0 -12
- data/lib/metanorma/ogc/basicdoc.rng +37 -32
- data/lib/metanorma/ogc/isodoc.rng +32 -17
- data/lib/metanorma/ogc/version.rb +1 -1
- data/metanorma-ogc.gemspec +3 -2
- metadata +24 -10
@@ -91,14 +91,6 @@ module IsoDoc
|
|
91
91
|
"<br/>"
|
92
92
|
end
|
93
93
|
|
94
|
-
# KILL
|
95
|
-
def annex1x(elem)
|
96
|
-
lbl = @xrefs.anchor(elem["id"], :label)
|
97
|
-
t = elem.at(ns("./title")) and
|
98
|
-
t.children = "<strong>#{to_xml(t.children)}</strong>"
|
99
|
-
prefix_name(elem, { caption: "<br/>" }, lbl, "title")
|
100
|
-
end
|
101
|
-
|
102
94
|
def clause(docxml)
|
103
95
|
super
|
104
96
|
docxml.xpath(ns("//submitters")).each { |f| clause1(f) }
|
@@ -20,13 +20,6 @@ module IsoDoc
|
|
20
20
|
File.read(File.join(@libdir, "html", "rouge.css"))
|
21
21
|
end
|
22
22
|
|
23
|
-
# KILL
|
24
|
-
def example1x(elem)
|
25
|
-
lbl = @xrefs.anchor(elem["id"], :label, false)
|
26
|
-
prefix_name(elem, block_delim, l10n("#{@i18n.example} #{lbl}"),
|
27
|
-
"name")
|
28
|
-
end
|
29
|
-
|
30
23
|
def bibdata(docxml)
|
31
24
|
docxml.xpath(ns("//bibdata/contributor[@type = 'author']")).each do |a|
|
32
25
|
a.at(ns("./description"))&.text == "contributor" and
|
@@ -145,15 +138,6 @@ module IsoDoc
|
|
145
138
|
%i(arabic alphabet roman alphabet_upper roman_upper)[(idx - 1) % 5]
|
146
139
|
end
|
147
140
|
|
148
|
-
# KILL
|
149
|
-
def termsource1xx(elem)
|
150
|
-
while elem&.next_element&.name == "termsource"
|
151
|
-
elem << "; #{to_xml(elem.next_element.remove.children)}"
|
152
|
-
end
|
153
|
-
elem.children = l10n("[<strong>#{@i18n.source}:</strong> " \
|
154
|
-
"#{to_xml(elem.children).strip}]")
|
155
|
-
end
|
156
|
-
|
157
141
|
def termsource_label(elem, sources)
|
158
142
|
elem.replace(l10n("[<strong>#{@i18n.source}:</strong> " \
|
159
143
|
"#{sources}]"))
|
@@ -167,13 +151,6 @@ module IsoDoc
|
|
167
151
|
|
168
152
|
def bibrender_formattedref(formattedref, xml); end
|
169
153
|
|
170
|
-
def bibrender_relaton(xml, renderings)
|
171
|
-
f = renderings[xml["id"]][:formattedref]
|
172
|
-
f &&= "<formattedref>#{f}</formattedref>"
|
173
|
-
keep = "./docidentifier | ./uri | ./note | ./status | ./biblio-tag"
|
174
|
-
xml.children = "#{f}#{xml.xpath(ns(keep)).to_xml}"
|
175
|
-
end
|
176
|
-
|
177
154
|
def norm_ref_entry_code(_ordinal, _idents, _ids, _standard, _datefn, _bib)
|
178
155
|
""
|
179
156
|
end
|
data/lib/isodoc/ogc/xref.rb
CHANGED
@@ -92,18 +92,6 @@ module IsoDoc
|
|
92
92
|
end
|
93
93
|
end
|
94
94
|
|
95
|
-
# KILL
|
96
|
-
def sequential_permission_bodyx(id, block, label, klass, model, container: false)
|
97
|
-
@anchors[block["id"]] = model.postprocess_anchor_struct(
|
98
|
-
block, anchor_struct(id, container ? block : nil,
|
99
|
-
label, klass, block["unnumbered"])
|
100
|
-
)
|
101
|
-
model.permission_parts(block, id, label, klass).each do |n|
|
102
|
-
@anchors[n[:id]] = anchor_struct(n[:number], n[:elem], n[:label],
|
103
|
-
n[:klass], { unnumb: false, container: container })
|
104
|
-
end
|
105
|
-
end
|
106
|
-
|
107
95
|
FIGURE_NO_CLASS = ".//figure[not(@class)]".freeze
|
108
96
|
|
109
97
|
LISTING = <<~XPATH.freeze
|
@@ -599,17 +599,9 @@ It is included for convenience, in case processing the citation to extract the a
|
|
599
599
|
<a:documentation>The caption of the block</a:documentation>
|
600
600
|
</ref>
|
601
601
|
</optional>
|
602
|
-
<
|
603
|
-
<
|
604
|
-
|
605
|
-
<a:documentation>The computer code or other such text presented in the block, as a single unformatted string.
|
606
|
-
(The string should be treated as pre-formatted text, with whitespace treated as significant)</a:documentation>
|
607
|
-
</text>
|
608
|
-
<ref name="callout">
|
609
|
-
<a:documentation>Zero or more cross-references; these are intended to be embedded within the content string, and link to annotations</a:documentation>
|
610
|
-
</ref>
|
611
|
-
</choice>
|
612
|
-
</oneOrMore>
|
602
|
+
<ref name="sourcecodebody">
|
603
|
+
<a:documentation>The sourcecode content</a:documentation>
|
604
|
+
</ref>
|
613
605
|
<zeroOrMore>
|
614
606
|
<ref name="annotation">
|
615
607
|
<a:documentation>Annotations to the source code; each annotation consists of zero or more paragraphs,
|
@@ -628,17 +620,9 @@ and is intended to be referenced by a callout within the source code</a:document
|
|
628
620
|
<a:documentation>The caption of the block</a:documentation>
|
629
621
|
</ref>
|
630
622
|
</optional>
|
631
|
-
<
|
632
|
-
<
|
633
|
-
|
634
|
-
<a:documentation>The computer code or other such text presented in the block, as a single unformatted string.
|
635
|
-
(The string should be treated as pre-formatted text, with whitespace treated as significant)</a:documentation>
|
636
|
-
</text>
|
637
|
-
<ref name="callout">
|
638
|
-
<a:documentation>Zero or more cross-references; these are intended to be embedded within the content string, and link to annotations</a:documentation>
|
639
|
-
</ref>
|
640
|
-
</choice>
|
641
|
-
</oneOrMore>
|
623
|
+
<ref name="sourcecodebody">
|
624
|
+
<a:documentation>The sourcecode content</a:documentation>
|
625
|
+
</ref>
|
642
626
|
<zeroOrMore>
|
643
627
|
<ref name="annotation">
|
644
628
|
<a:documentation>Annotations to the source code; each annotation consists of zero or more paragraphs,
|
@@ -651,6 +635,20 @@ and is intended to be referenced by a callout within the source code</a:document
|
|
651
635
|
</ref>
|
652
636
|
</zeroOrMore>
|
653
637
|
</define>
|
638
|
+
<define name="sourcecodebody">
|
639
|
+
<a:documentation>The computer code or other such text presented in the block, as a single unformatted string.
|
640
|
+
(The string should be treated as pre-formatted text, with whitespace treated as significant)</a:documentation>
|
641
|
+
<element name="body">
|
642
|
+
<oneOrMore>
|
643
|
+
<choice>
|
644
|
+
<text/>
|
645
|
+
<ref name="callout">
|
646
|
+
<a:documentation>Zero or more cross-references; these are intended to be embedded within the content string, and link to annotations</a:documentation>
|
647
|
+
</ref>
|
648
|
+
</choice>
|
649
|
+
</oneOrMore>
|
650
|
+
</element>
|
651
|
+
</define>
|
654
652
|
<define name="pre">
|
655
653
|
<a:documentation>Pre-formatted block. Wrapper for text to be rendered with fixed-width typeface, and preserving spaces including line breaks.
|
656
654
|
They are intended for a restricted number of functions, most typically ASCII Art (which is still in prominent use in some
|
@@ -1672,18 +1670,25 @@ which can be bookmarks as well as block or section references</a:documentation>
|
|
1672
1670
|
</optional>
|
1673
1671
|
</define>
|
1674
1672
|
<define name="XrefBody">
|
1675
|
-
<
|
1676
|
-
|
1677
|
-
|
1678
|
-
|
1679
|
-
|
1673
|
+
<a:documentation>The textual content of the element. The `text` is what we wish to show the link as (e.g., the "content" of `<xx>my link text</xx>`)</a:documentation>
|
1674
|
+
<optional>
|
1675
|
+
<element name="display-text">
|
1676
|
+
<oneOrMore>
|
1677
|
+
<ref name="PureTextElement"/>
|
1678
|
+
</oneOrMore>
|
1679
|
+
</element>
|
1680
|
+
</optional>
|
1680
1681
|
</define>
|
1681
1682
|
<define name="ErefBody">
|
1682
|
-
<
|
1683
|
-
<
|
1684
|
-
<
|
1685
|
-
|
1686
|
-
|
1683
|
+
<optional>
|
1684
|
+
<element name="display-text">
|
1685
|
+
<oneOrMore>
|
1686
|
+
<ref name="PureTextElement">
|
1687
|
+
<a:documentation>The textual content of the element. The `text` is what we wish to show the link as (e.g., the "content" of `<xx>my link text</xx>`)</a:documentation>
|
1688
|
+
</ref>
|
1689
|
+
</oneOrMore>
|
1690
|
+
</element>
|
1691
|
+
</optional>
|
1687
1692
|
</define>
|
1688
1693
|
<define name="fn">
|
1689
1694
|
<a:documentation>Inline reference to a paragraph or paragraphs, appearing as a footnote.
|
@@ -33,6 +33,15 @@
|
|
33
33
|
</zeroOrMore>
|
34
34
|
</element>
|
35
35
|
</define>
|
36
|
+
<define name="fn" combine="interleave">
|
37
|
+
<optional>
|
38
|
+
<attribute name="hiddenref">
|
39
|
+
<a:documentation>If true, number the footnote as normal, but suppress display of the footnote reference in the document body.
|
40
|
+
This is done if the footnote reference is already presented in some other form, e.g. within a figure image.</a:documentation>
|
41
|
+
<data type="boolean"/>
|
42
|
+
</attribute>
|
43
|
+
</optional>
|
44
|
+
</define>
|
36
45
|
<define name="index-primary">
|
37
46
|
<element name="primary">
|
38
47
|
<oneOrMore>
|
@@ -245,23 +254,9 @@
|
|
245
254
|
<a:documentation>The caption of the block</a:documentation>
|
246
255
|
</ref>
|
247
256
|
</optional>
|
248
|
-
<
|
249
|
-
<
|
250
|
-
|
251
|
-
<a:documentation>The computer code or other such text presented in the block, as a single unformatted string.
|
252
|
-
(The string should be treated as pre-formatted text, with whitespace treated as significant)</a:documentation>
|
253
|
-
</text>
|
254
|
-
<ref name="callout">
|
255
|
-
<a:documentation>Zero or more cross-references; these are intended to be embedded within the content string, and link to annotations</a:documentation>
|
256
|
-
</ref>
|
257
|
-
<ref name="xref">
|
258
|
-
<a:documentation>Hyperlink of code segment to another part of the document</a:documentation>
|
259
|
-
</ref>
|
260
|
-
<ref name="eref">
|
261
|
-
<a:documentation>Hyperlink of code segment to external bibliographic resource</a:documentation>
|
262
|
-
</ref>
|
263
|
-
</choice>
|
264
|
-
</oneOrMore>
|
257
|
+
<ref name="sourcecodebody">
|
258
|
+
<a:documentation>The sourcecode content</a:documentation>
|
259
|
+
</ref>
|
265
260
|
<zeroOrMore>
|
266
261
|
<ref name="annotation">
|
267
262
|
<a:documentation>Annotations to the source code; each annotation consists of zero or more paragraphs,
|
@@ -277,6 +272,26 @@ and is intended to be referenced by a callout within the source code</a:document
|
|
277
272
|
<a:documentation>A source for the block</a:documentation>
|
278
273
|
</ref>
|
279
274
|
</define>
|
275
|
+
<define name="sourcecodebody">
|
276
|
+
<a:documentation>The computer code or other such text presented in the block, as a single unformatted string.
|
277
|
+
(The string should be treated as pre-formatted text, with whitespace treated as significant)</a:documentation>
|
278
|
+
<element name="body">
|
279
|
+
<oneOrMore>
|
280
|
+
<choice>
|
281
|
+
<text/>
|
282
|
+
<ref name="callout">
|
283
|
+
<a:documentation>Zero or more cross-references; these are intended to be embedded within the content string, and link to annotations</a:documentation>
|
284
|
+
</ref>
|
285
|
+
<ref name="xref">
|
286
|
+
<a:documentation>Hyperlink of code segment to another part of the document</a:documentation>
|
287
|
+
</ref>
|
288
|
+
<ref name="eref">
|
289
|
+
<a:documentation>Hyperlink of code segment to external bibliographic resource</a:documentation>
|
290
|
+
</ref>
|
291
|
+
</choice>
|
292
|
+
</oneOrMore>
|
293
|
+
</element>
|
294
|
+
</define>
|
280
295
|
<define name="sections">
|
281
296
|
<element name="sections">
|
282
297
|
<oneOrMore>
|
data/metanorma-ogc.gemspec
CHANGED
@@ -34,8 +34,9 @@ Gem::Specification.new do |spec|
|
|
34
34
|
spec.add_development_dependency "guard-rspec", "~> 4.7"
|
35
35
|
spec.add_development_dependency "rake", "~> 13.0"
|
36
36
|
spec.add_development_dependency "rspec", "~> 3.6"
|
37
|
-
spec.add_development_dependency "rubocop", "~> 1
|
38
|
-
|
37
|
+
spec.add_development_dependency "rubocop", "~> 1"
|
38
|
+
spec.add_development_dependency "rubocop-performance"
|
39
|
+
spec.add_development_dependency "sassc-embedded", "~> 1"
|
39
40
|
spec.add_development_dependency "simplecov", "~> 0.15"
|
40
41
|
spec.add_development_dependency "timecop", "~> 0.9"
|
41
42
|
spec.add_development_dependency "vcr", "~> 6.1.0"
|
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.7.
|
4
|
+
version: 2.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: iso-639
|
@@ -128,28 +128,42 @@ dependencies:
|
|
128
128
|
requirements:
|
129
129
|
- - "~>"
|
130
130
|
- !ruby/object:Gem::Version
|
131
|
-
version: 1
|
131
|
+
version: '1'
|
132
132
|
type: :development
|
133
133
|
prerelease: false
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
135
135
|
requirements:
|
136
136
|
- - "~>"
|
137
137
|
- !ruby/object:Gem::Version
|
138
|
-
version: 1
|
138
|
+
version: '1'
|
139
139
|
- !ruby/object:Gem::Dependency
|
140
|
-
name:
|
140
|
+
name: rubocop-performance
|
141
141
|
requirement: !ruby/object:Gem::Requirement
|
142
142
|
requirements:
|
143
|
-
- -
|
143
|
+
- - ">="
|
144
144
|
- !ruby/object:Gem::Version
|
145
|
-
version:
|
145
|
+
version: '0'
|
146
146
|
type: :development
|
147
147
|
prerelease: false
|
148
148
|
version_requirements: !ruby/object:Gem::Requirement
|
149
149
|
requirements:
|
150
|
-
- -
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: sassc-embedded
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - "~>"
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '1'
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - "~>"
|
151
165
|
- !ruby/object:Gem::Version
|
152
|
-
version:
|
166
|
+
version: '1'
|
153
167
|
- !ruby/object:Gem::Dependency
|
154
168
|
name: simplecov
|
155
169
|
requirement: !ruby/object:Gem::Requirement
|
@@ -330,7 +344,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
330
344
|
- !ruby/object:Gem::Version
|
331
345
|
version: '0'
|
332
346
|
requirements: []
|
333
|
-
rubygems_version: 3.
|
347
|
+
rubygems_version: 3.5.22
|
334
348
|
signing_key:
|
335
349
|
specification_version: 4
|
336
350
|
summary: Metanorma for the Open Geospatial Consortium.
|