metanorma-ogc 2.9.9 → 2.9.11

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: 142079bd041b8a880cfb119263cc299b80dcb1caa59656447848113cb67dfd92
4
- data.tar.gz: '092ca544076a820250f758b93918f734cb555ac2bf7ec98abe9caaa45f8e7b41'
3
+ metadata.gz: 33728dc4126d8356b1bf0c002821f3a55bb9898d9285c67666895a524c9e8409
4
+ data.tar.gz: 700e119692d754bebed198ce44cfa168369cefbf31ae2f31c419609cb9ed26e9
5
5
  SHA512:
6
- metadata.gz: 3041ccc81ac6053f9010e9fab4788da0a199980ebd0e3fab6be800c51b0d2153df7386af5eb1ec7730835dfc705425fa4a297b90d6d1bf1e6cc1ec34fffb11f6
7
- data.tar.gz: 8a2e8df76396229db1556271de5fc752910e31cd56057b8e20ea71aca003bc4e388956cced0b7b6a46b2f2aa1bf42b2a4ead63affaff86c4bd9f3f99becf22e2
6
+ metadata.gz: c5799dd3358c104db6602d5a35669edd242504074eec37c92767f12a5f852898fbd0160f2b98c0337890430ca28eeadd83875677cab4143a753097036771d271
7
+ data.tar.gz: '038704ee24505a7832eaa2d6707dc0c0d3018324ee438a8aebdab3282962522fa2c3e4d6e94eb2f37f55c393fc63ab23b1534be77d65a7e297eda37c578371af'
data/.rubocop.yml CHANGED
@@ -2,6 +2,15 @@
2
2
  # See https://github.com/metanorma/cimas
3
3
  inherit_from:
4
4
  - https://raw.githubusercontent.com/riboseinc/oss-guides/main/ci/rubocop.yml
5
+ # .rubocop_todo.yml MUST be the last entry. inherit_from is last-wins:
6
+ # if listed before oss-guides, the shared config's stricter Metrics/
7
+ # (MethodLength, BlockLength, etc.) rules override the todo's per-file
8
+ # grandfathering, and the todo becomes inert on those cops. Empirically
9
+ # verified on suma 2026-07-06: with todo listed first, 34 Metrics/* offenses
10
+ # remained; moved last, cleared. Every gem in the metanorma-org fleet
11
+ # already ships a `.rubocop_todo.yml` on its live tree (audited 2026-07-06,
12
+ # 54/54 have it), so this reference is safe to emit unconditionally.
13
+ - .rubocop_todo.yml
5
14
 
6
15
  # Rubocop plugins enabled centrally so every metanorma-org gem picks them up
7
16
  # on cimas sync — best practice belongs at the shared-template layer, not
@@ -52,6 +52,8 @@
52
52
  <span class="label">Submission Date: </span> <span class="value">{{ receiveddate }}</span>
53
53
  <span class="label">Approval Date: </span> <span class="value">{{ issueddate }}</span>
54
54
  <span class="label">Publication Date: </span> <span class="value">{{ publisheddate }}</span>
55
+ {% assign doi = bibdata.docidentifier | where: "type", "DOI" | first %}
56
+ {% if doi %}<span class="label">DOI: <span class="docnumber value">{{ doi.content }}</span></span>{% endif %}
55
57
  <span class="label">External identifier of this OGC® document: <span class="docnumber value">{{ externalid }}</span></span>
56
58
  <span class="label">Internal identifier of this OGC® document: <span class="docnumber value">{{ docnumber }}</span></span>
57
59
  {% if url or html %}
@@ -130,6 +130,10 @@ dl dd {
130
130
  grid-column-start: 2;
131
131
  }
132
132
 
133
+ dl:has(dt .stem) {
134
+ grid-template-columns: fit-content(8em) auto;
135
+ }
136
+
133
137
  b, strong {
134
138
  font-weight: bold;
135
139
  }
@@ -143,6 +147,11 @@ a.FootnoteRef, span.FootnoteRef {
143
147
  vertical-align: super;
144
148
  }
145
149
 
150
+ a.TableFootnoteRef, a.FootnoteRef, a.footnote-number,
151
+ sup a, a:has(> sup) {
152
+ vertical-align: baseline;
153
+ }
154
+
146
155
  .addition {
147
156
  color: blue;
148
157
  }