metanorma-generic 3.2.1 → 3.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 612b2975e8d6a1884052d9cac7af493ebd1fe1de013524f7baa511eb0ffa620a
4
- data.tar.gz: 0ac333266ae8ed70ac3adbb3e01a46b817393dc44410c63dd726a7a74bd891c9
3
+ metadata.gz: 142ff668c810de695105351da5b83f38d1c50d5d97889389fd91c9aa85748443
4
+ data.tar.gz: 9fc97bedaaae979ed280274b9faa0d3cb777a7380a01c8ed00a7dad5483a081a
5
5
  SHA512:
6
- metadata.gz: 992917cef52052efc53fbd3799f5c703d140c9c8d33fabef331116e4e68a726be58a53e81df4c9fefc1ca948a36a6b068de39c702709d87eae92caeb87569373
7
- data.tar.gz: 6d75f39b8b7f89db43a5d03f413fd3f659e00876421d0f8c94df81969c3e8b739c1a7209604d27d79f1ac7b64a3772456cfbad55d5d1fada9c35af33a65d4fc8
6
+ metadata.gz: e014e23fd479eee366d9fa16954e482dd2d7a34e3e52a9fcfa62fa41e3ccf1f4bd0421b57b357db15828c241c1f53fa4b7fb30b7774ecdb4a8a8014e32910383
7
+ data.tar.gz: 50c472c1c2ad288c7845b9a38af6c9de9022fa9b2a641f5104066c0869e03f3f9c42bcc570a3f868b7e3e59e6b88277c0dbc95afac4067343db5d1491c5f2df3
@@ -31,18 +31,6 @@ end
31
31
  module IsoDoc
32
32
  module Generic
33
33
  class Metadata < IsoDoc::Metadata
34
- def initialize(lang, script, locale, labels)
35
- super
36
- here = File.dirname(__FILE__)
37
- default_logo_path =
38
- File.expand_path(File.join(here, "html", "logo.jpg"))
39
- set(:logo, baselocation(configuration.logo_path) || default_logo_path)
40
- unless configuration.logo_paths.nil?
41
- set(:logo_paths,
42
- Array(configuration.logo_paths).map { |p| baselocation(p) })
43
- end
44
- end
45
-
46
34
  class << self
47
35
  attr_accessor :_file
48
36
  end
@@ -51,6 +39,16 @@ module IsoDoc
51
39
  klass._file = caller_locations(1..1).first.absolute_path
52
40
  end
53
41
 
42
+ def images(isoxml, out)
43
+ default_logo_path =
44
+ File.expand_path(File.join(File.dirname(__FILE__), "html", "logo.jpg"))
45
+ set(:logo, baselocation(configuration.logo_path) || default_logo_path)
46
+ unless configuration.logo_paths.nil?
47
+ set(:logo_paths,
48
+ Array(configuration.logo_paths).map { |p| baselocation(p) })
49
+ end
50
+ end
51
+
54
52
  def author(isoxml, _out)
55
53
  super
56
54
  tc = isoxml.at(ns("//bibdata/contributor[role/description = 'committee']/organization/subdivision[@type = 'Committee']/name"))
@@ -466,11 +466,11 @@ Editorial and advisory groups are represented as consecutive subdivisions of the
466
466
  <a:documentation>Contact information for the organization, including address, phone number, and email</a:documentation>
467
467
  </ref>
468
468
  </optional>
469
- <optional>
469
+ <zeroOrMore>
470
470
  <ref name="logo">
471
471
  <a:documentation>A logo for the organization</a:documentation>
472
472
  </ref>
473
- </optional>
473
+ </zeroOrMore>
474
474
  </define>
475
475
  <define name="orgname">
476
476
  <element name="name">
@@ -502,6 +502,11 @@ Editorial and advisory groups are represented as consecutive subdivisions of the
502
502
  </define>
503
503
  <define name="logo">
504
504
  <element name="logo">
505
+ <optional>
506
+ <attribute name="type">
507
+ <a:documentation>The type of logo</a:documentation>
508
+ </attribute>
509
+ </optional>
505
510
  <ref name="image-no-id"/>
506
511
  </element>
507
512
  </define>
@@ -513,6 +518,11 @@ Editorial and advisory groups are represented as consecutive subdivisions of the
513
518
  <a:documentation>Description of what is being depicted</a:documentation>
514
519
  </attribute>
515
520
  </optional>
521
+ <optional>
522
+ <attribute name="type">
523
+ <a:documentation>Description of what kind of depiction this</a:documentation>
524
+ </attribute>
525
+ </optional>
516
526
  <zeroOrMore>
517
527
  <ref name="image-no-id">
518
528
  <a:documentation>A visual depiction of the bibliographic item</a:documentation>
@@ -1236,9 +1246,9 @@ Refer to `BibliographicItem` for definitions</a:documentation>
1236
1246
  <optional>
1237
1247
  <ref name="validity"/>
1238
1248
  </optional>
1239
- <optional>
1249
+ <zeroOrMore>
1240
1250
  <ref name="depiction"/>
1241
- </optional>
1251
+ </zeroOrMore>
1242
1252
  </define>
1243
1253
  <define name="btitle">
1244
1254
  <a:documentation>A title of a bibliographic item, associated with a type of title</a:documentation>
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <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">
3
- <!-- VERSION v2.1.4 -->
3
+ <!-- VERSION v2.1.5 -->
4
4
 
5
5
  <!--
6
6
  ALERT: cannot have root comments, because of https://github.com/metanorma/metanorma/issues/437
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module Generic
3
- VERSION = "3.2.1".freeze
3
+ VERSION = "3.2.2".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-generic
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.1
4
+ version: 3.2.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-17 00:00:00.000000000 Z
11
+ date: 2025-12-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: metanorma-standoc