metanorma-ogc 2.6.4 → 2.6.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/isodoc/ogc/base_convert.rb +2 -2
- data/lib/isodoc/ogc/html_convert.rb +1 -2
- data/lib/isodoc/ogc/init.rb +0 -9
- data/lib/isodoc/ogc/ogc.abstract-specification-topic.xsl +249 -53
- data/lib/isodoc/ogc/ogc.best-practice.xsl +249 -53
- data/lib/isodoc/ogc/ogc.change-request-supporting-document.xsl +249 -53
- data/lib/isodoc/ogc/ogc.community-practice.xsl +249 -53
- data/lib/isodoc/ogc/ogc.community-standard.xsl +249 -53
- data/lib/isodoc/ogc/ogc.discussion-paper.xsl +249 -53
- data/lib/isodoc/ogc/ogc.draft-standard.xsl +249 -53
- data/lib/isodoc/ogc/ogc.engineering-report.xsl +249 -53
- data/lib/isodoc/ogc/ogc.other.xsl +249 -53
- data/lib/isodoc/ogc/ogc.policy.xsl +249 -53
- data/lib/isodoc/ogc/ogc.reference-model.xsl +249 -53
- data/lib/isodoc/ogc/ogc.release-notes.xsl +249 -53
- data/lib/isodoc/ogc/ogc.standard.xsl +249 -53
- data/lib/isodoc/ogc/ogc.test-suite.xsl +249 -53
- data/lib/isodoc/ogc/ogc.user-guide.xsl +249 -53
- data/lib/isodoc/ogc/ogc.white-paper.xsl +249 -53
- data/lib/isodoc/ogc/presentation_xml_convert.rb +19 -1
- data/lib/isodoc/ogc/xref.rb +0 -7
- data/lib/metanorma/ogc/biblio.rng +13 -1
- data/lib/metanorma/ogc/front.rb +0 -7
- data/lib/metanorma/ogc/isodoc.rng +6 -6
- data/lib/metanorma/ogc/version.rb +1 -1
- data/metanorma-ogc.gemspec +1 -1
- metadata +4 -5
- data/lib/isodoc/ogc/html/preprocess.xslt +0 -13
data/lib/metanorma/ogc/front.rb
CHANGED
@@ -201,13 +201,6 @@ module Metanorma
|
|
201
201
|
a = node.attr("abbrev") and
|
202
202
|
xml.title a, **attr_code(at)
|
203
203
|
end
|
204
|
-
|
205
|
-
def metadata_ext(node, xml)
|
206
|
-
metadata_doctype(node, xml)
|
207
|
-
metadata_subdoctype(node, xml)
|
208
|
-
metadata_flavor(node, xml)
|
209
|
-
metadata_committee(node, xml)
|
210
|
-
end
|
211
204
|
end
|
212
205
|
end
|
213
206
|
end
|
@@ -17,7 +17,7 @@
|
|
17
17
|
these elements; we just want one namespace for any child grammars
|
18
18
|
of this.
|
19
19
|
-->
|
20
|
-
<!-- VERSION v1.
|
20
|
+
<!-- VERSION v1.4.0 -->
|
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">
|
@@ -326,7 +326,7 @@ normative or informative references, some split references into sections organiz
|
|
326
326
|
<a:documentation>Content of note</a:documentation>
|
327
327
|
<oneOrMore>
|
328
328
|
<choice>
|
329
|
-
<ref name="paragraph"/>
|
329
|
+
<ref name="paragraph-with-footnote"/>
|
330
330
|
<ref name="ul"/>
|
331
331
|
<ref name="ol"/>
|
332
332
|
<ref name="dl"/>
|
@@ -412,7 +412,7 @@ normative or informative references, some split references into sections organiz
|
|
412
412
|
<element name="note">
|
413
413
|
<ref name="OptionalId"/>
|
414
414
|
<oneOrMore>
|
415
|
-
<ref name="paragraph"/>
|
415
|
+
<ref name="paragraph-with-footnote"/>
|
416
416
|
</oneOrMore>
|
417
417
|
</element>
|
418
418
|
</define>
|
@@ -1977,7 +1977,7 @@ used in document amendments</a:documentation>
|
|
1977
1977
|
<oneOrMore>
|
1978
1978
|
<choice>
|
1979
1979
|
<a:documentation>Content of the verbal representation of the term</a:documentation>
|
1980
|
-
<ref name="paragraph"/>
|
1980
|
+
<ref name="paragraph-with-footnote"/>
|
1981
1981
|
<ref name="dl"/>
|
1982
1982
|
<ref name="ol"/>
|
1983
1983
|
<ref name="ul"/>
|
@@ -2015,7 +2015,7 @@ used in document amendments</a:documentation>
|
|
2015
2015
|
<oneOrMore>
|
2016
2016
|
<choice>
|
2017
2017
|
<a:documentation>Content of the term note</a:documentation>
|
2018
|
-
<ref name="paragraph"/>
|
2018
|
+
<ref name="paragraph-with-footnote"/>
|
2019
2019
|
<ref name="ul"/>
|
2020
2020
|
<ref name="ol"/>
|
2021
2021
|
<ref name="dl"/>
|
@@ -2037,7 +2037,7 @@ used in document amendments</a:documentation>
|
|
2037
2037
|
<ref name="dl"/>
|
2038
2038
|
<ref name="quote"/>
|
2039
2039
|
<ref name="sourcecode"/>
|
2040
|
-
<ref name="paragraph"/>
|
2040
|
+
<ref name="paragraph-with-footnote"/>
|
2041
2041
|
<ref name="figure"/>
|
2042
2042
|
</choice>
|
2043
2043
|
</oneOrMore>
|
data/metanorma-ogc.gemspec
CHANGED
@@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
|
|
26
26
|
spec.required_ruby_version = Gem::Requirement.new(">= 3.1.0")
|
27
27
|
|
28
28
|
spec.add_dependency "iso-639"
|
29
|
-
spec.add_dependency "metanorma-standoc", "~> 2.
|
29
|
+
spec.add_dependency "metanorma-standoc", "~> 2.10.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.6.
|
4
|
+
version: 2.6.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-11-11 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.10.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.10.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: debug
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -252,7 +252,6 @@ files:
|
|
252
252
|
- lib/isodoc/ogc/html/ogc.scss
|
253
253
|
- lib/isodoc/ogc/html/ogc_wp.css
|
254
254
|
- lib/isodoc/ogc/html/ogc_wp.scss
|
255
|
-
- lib/isodoc/ogc/html/preprocess.xslt
|
256
255
|
- lib/isodoc/ogc/html/rouge.css
|
257
256
|
- lib/isodoc/ogc/html/scripts.html
|
258
257
|
- lib/isodoc/ogc/html/word_ogc_intro.html
|
@@ -1,13 +0,0 @@
|
|
1
|
-
<preprocess-xslt>
|
2
|
-
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:mn="https://www.metanorma.org/ns/ogc" version="1.0">
|
3
|
-
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
|
4
|
-
<xsl:preserve-space elements="*"/>
|
5
|
-
<xsl:template match="@* | node()">
|
6
|
-
<xsl:copy><xsl:apply-templates select="@* | node()"/></xsl:copy>
|
7
|
-
</xsl:template>
|
8
|
-
<xsl:template match="mn:note/mn:name">
|
9
|
-
<xsl:copy><xsl:apply-templates select="@*|node()"/><xsl:if test="normalize-space() != ''">:<mn:tab/></xsl:if></xsl:copy>
|
10
|
-
</xsl:template>
|
11
|
-
</xsl:stylesheet>
|
12
|
-
</preprocess-xslt>
|
13
|
-
|