metanorma-ogc 0.2.13 → 1.0.0
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7fb3db1e041457d27cb1d34f5971ba9dcaf10dbe7f9d47a04672bb20b58a7005
|
|
4
|
+
data.tar.gz: b47173282caad08a607cd043af6524a217291adefa21c2b1ecc2738bb313fc6c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 91997178e22d73ff0c38689485c94f0089f64aaa7e30c39ec3d2b215a724f3c576f3cc707d0bd90e8c9649290a134359f15178aef4d69ef5db8aa87d523925f9
|
|
7
|
+
data.tar.gz: 0fe1fa3a18a7ec534d32658094d6822f0d345161bec505fb422736f60359936ed511a8eaec5d6c4163d94faef1c25c5ddbc87fbc05a24eb44841feecdcb3bc71
|
data/lib/asciidoctor/ogc/ogc.rng
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<grammar ns="https://www.metanorma.
|
|
2
|
+
<grammar ns="https://www.metanorma.org/ns/ogc" xmlns="http://relaxng.org/ns/structure/1.0">
|
|
3
3
|
<!--
|
|
4
4
|
Currently we inherit from a namespaced grammar, isostandard. Until we inherit from isodoc,
|
|
5
5
|
we cannot have a new default namespace: we will end up with a grammar with two different
|
|
@@ -33,6 +33,13 @@ body {
|
|
|
33
33
|
@include sidebarNavContainer(360px);
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
+
// Scroll too wide source code
|
|
37
|
+
dl {
|
|
38
|
+
grid-template-columns: minmax(0, 1fr) 93%;
|
|
39
|
+
pre {
|
|
40
|
+
overflow-x: scroll;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
36
43
|
|
|
37
44
|
#toc {
|
|
38
45
|
@include toc($colorLink: #00335b, $colorLinkActiveBg: #00335b, $colorLinkActiveFg: white);
|
|
@@ -227,7 +234,7 @@ ul {
|
|
|
227
234
|
|
|
228
235
|
&:before {
|
|
229
236
|
content: "\2014";
|
|
230
|
-
display: inline-block;
|
|
237
|
+
display: inline-block;
|
|
231
238
|
width: 1em;
|
|
232
239
|
margin-left: -1em;
|
|
233
240
|
}
|
data/lib/isodoc/ogc/metadata.rb
CHANGED
|
@@ -32,9 +32,6 @@ module IsoDoc
|
|
|
32
32
|
set(:externalid, isoxml&.at(ns("//bibdata/docidentifier[@type = 'ogc-external']"))&.text)
|
|
33
33
|
end
|
|
34
34
|
|
|
35
|
-
def status_abbr(status)
|
|
36
|
-
end
|
|
37
|
-
|
|
38
35
|
def keywords(isoxml, _out)
|
|
39
36
|
keywords = []
|
|
40
37
|
isoxml.xpath(ns("//bibdata/keyword | //bibdata/ext/keyword")).each do |kw|
|
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: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-02-
|
|
11
|
+
date: 2020-02-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: htmlentities
|