metanorma-ogc 2.7.8 → 2.7.9
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/base_convert.rb +0 -16
- data/lib/isodoc/ogc/html/htmlstyle.css +7 -1
- data/lib/isodoc/ogc/i18n-en.yaml +1 -1
- data/lib/isodoc/ogc/ogc.abstract-specification-topic.xsl +9967 -10429
- data/lib/isodoc/ogc/ogc.best-practice.xsl +9967 -10429
- data/lib/isodoc/ogc/ogc.change-request-supporting-document.xsl +9967 -10429
- data/lib/isodoc/ogc/ogc.community-practice.xsl +9967 -10429
- data/lib/isodoc/ogc/ogc.community-standard.xsl +9967 -10429
- data/lib/isodoc/ogc/ogc.discussion-paper.xsl +9967 -10429
- data/lib/isodoc/ogc/ogc.draft-standard.xsl +9967 -10429
- data/lib/isodoc/ogc/ogc.engineering-report.xsl +9967 -10429
- data/lib/isodoc/ogc/ogc.other.xsl +9967 -10429
- data/lib/isodoc/ogc/ogc.policy.xsl +9967 -10429
- data/lib/isodoc/ogc/ogc.reference-model.xsl +9967 -10429
- data/lib/isodoc/ogc/ogc.release-notes.xsl +9967 -10429
- data/lib/isodoc/ogc/ogc.standard.xsl +9967 -10429
- data/lib/isodoc/ogc/ogc.test-suite.xsl +9967 -10429
- data/lib/isodoc/ogc/ogc.user-guide.xsl +9967 -10429
- data/lib/isodoc/ogc/ogc.white-paper.xsl +9887 -10349
- data/lib/isodoc/ogc/presentation_sections.rb +86 -1
- data/lib/isodoc/ogc/presentation_xml_convert.rb +0 -79
- data/lib/metanorma/ogc/converter.rb +0 -5
- data/lib/metanorma/ogc/version.rb +1 -1
- data/metanorma-ogc.gemspec +1 -2
- metadata +4 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2fa9ef53708efe5b381b8db3787584294fa13a492591b6099f368d5881e0a26d
|
4
|
+
data.tar.gz: 501c08ad82ba5cf86ee8f2c6fa33612cb6b782ca2e7ec4274bea5ab331229379
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46b3f612ec722edb40ba1c59f111fc004adcd4dd5197a82e3612ef49e78fd8ad519345aa18ef14501acc5ee079a04a1bd8c6904a16e9b30ed0ce6d45d005c93b
|
7
|
+
data.tar.gz: f1352eb3a3ca8c2e3c5ce03bc801dc510464d5992605370d2b8792218032c6832e02e8008f2ea3dd9b731869e76359886095dfb968cf86e37503720cf406bc53
|
@@ -5,22 +5,6 @@ require "fileutils"
|
|
5
5
|
module IsoDoc
|
6
6
|
module Ogc
|
7
7
|
module BaseConvert
|
8
|
-
# KILL
|
9
|
-
def error_parsex(node, out)
|
10
|
-
case node.name
|
11
|
-
when "hi" then hi_parse(node, out)
|
12
|
-
else
|
13
|
-
super
|
14
|
-
end
|
15
|
-
end
|
16
|
-
|
17
|
-
# KILL
|
18
|
-
def hi_parse(node, out)
|
19
|
-
out.span class: "hi" do |e|
|
20
|
-
node.children.each { |n| parse(n, e) }
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
8
|
def cleanup(docxml)
|
25
9
|
super
|
26
10
|
term_cleanup(docxml)
|
@@ -311,9 +311,15 @@ h6:hover > a.anchor,
|
|
311
311
|
padding: 0;
|
312
312
|
}
|
313
313
|
|
314
|
+
.svg-container {
|
315
|
+
width: 100%; /* or any desired width */
|
316
|
+
display: block; /* ← removes unwanted inline spacing */
|
317
|
+
}
|
318
|
+
|
314
319
|
svg {
|
315
320
|
width: 100%;
|
316
|
-
|
321
|
+
height: auto; /* ← key to maintaining aspect ratio */
|
322
|
+
display: block; /* ← removes unwanted inline spacing */
|
317
323
|
}
|
318
324
|
|
319
325
|
#standard-band {
|
data/lib/isodoc/ogc/i18n-en.yaml
CHANGED
@@ -16,7 +16,7 @@ sourcecode: Listing
|
|
16
16
|
table_of_contents: Contents
|
17
17
|
toc_figures: List of Figures
|
18
18
|
toc_tables: List of Tables
|
19
|
-
toc_recommendations: List of
|
19
|
+
toc_recommendations: List of Normative Statements
|
20
20
|
table_of_figures: Table of Figures
|
21
21
|
security_empty: No security considerations have been made for this document.
|
22
22
|
internal_terms_boilerplate: |
|