metanorma-ietf 3.2.0 → 3.2.1

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: 04fd898116e48263444f530446a4099229d32151da9937ed2524ce51004cb79a
4
- data.tar.gz: 17e58309364f9f812b8daa409d781a0b078615bda69ab0c92b9bb2f868f09d16
3
+ metadata.gz: 0caa70c59e0b00b7eaf785a68d24b0ec9368c4c0c45c1dee96ef973b0d8c0150
4
+ data.tar.gz: fcc948fcdb7b9e4b05596b741659052789c595deaf65798a517929bc30173faf
5
5
  SHA512:
6
- metadata.gz: 0f2e66094b3dc68c6bdf07bea94be7a1e84297af218d40ac1e0566179595c3261d0768eea9f11c4faa0337927111f28c80487111d47d3d9595df265d046f6759
7
- data.tar.gz: 90a2b51f517cc109b918b7fdab717c0376d11294be3bdc518d79f934edb2e92b06bddb31ccb1c9d89c91f173f4ef70352110a955c9cff4981152d1ae7936bd93
6
+ metadata.gz: 4699fae2fcb874453ca24a16295b72efe450f03dbb16f002884002b7b324f0f5bf03c843f0424a1a8395914d3db9d031f37b2ffb221d0fa2317e0a63c487b0cc
7
+ data.tar.gz: ba585e9aa3859230b9bf0ff1f574a33ded9268620e40c4438495c8b5a1731b0f8a89e2628b9e1d8a942b9a6d25bcecaba8e0557fc0ea943bebd5eed2c6265280
@@ -1,5 +1,3 @@
1
- require "mathml2asciimath"
2
-
3
1
  module IsoDoc
4
2
  module Ietf
5
3
  class RfcConvert < ::IsoDoc::Convert
@@ -60,7 +58,8 @@ module IsoDoc
60
58
 
61
59
  def stem_parse(node, out)
62
60
  stem = case node["type"]
63
- when "MathML" then MathML2AsciiMath.m2a(node.children.to_xml)
61
+ when "MathML" then Plurimath::Math
62
+ .parse(node.children.to_xml, "mathml").to_asciimath
64
63
  else HTMLEntities.new.encode(node.text)
65
64
  end
66
65
  out << "#{@openmathdelim} #{stem} #{@closemathdelim}"
@@ -82,12 +81,15 @@ module IsoDoc
82
81
  end
83
82
  end
84
83
 
84
+ def image_parse_attrs(node)
85
+ { src: node["src"], title: node["title"],
86
+ align: node["align"], name: node["filename"],
87
+ anchor: node["id"], type: "svg",
88
+ alt: node["alt"] }
89
+ end
90
+
85
91
  def image_parse(node, out, caption)
86
- attrs = { src: node["src"], title: node["title"],
87
- align: node["align"], name: node["filename"],
88
- anchor: node["id"], type: "svg",
89
- alt: node["alt"] }
90
- out.artwork **attr_code(attrs)
92
+ out.artwork **attr_code(image_parse_attrs(node))
91
93
  image_title_parse(out, caption)
92
94
  end
93
95
 
@@ -102,14 +104,10 @@ module IsoDoc
102
104
  def svg_parse(node, out)
103
105
  if node.parent.name == "image" then super
104
106
  else
105
- attrs = { src: node["src"], title: node["title"],
106
- align: node["align"], name: node["filename"],
107
- anchor: node["id"], type: "svg",
108
- alt: node["alt"] }
109
- out.artwork **attr_code(attrs) do |x|
110
- out = x
111
- super
112
- end
107
+ out.artwork **attr_code(image_parse_attrs(node)) do |x|
108
+ out = x
109
+ super
110
+ end
113
111
  end
114
112
  end
115
113
 
@@ -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.2.3 -->
20
+ <!-- VERSION v1.2.4 -->
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">
@@ -2068,6 +2068,9 @@
2068
2068
  </define>
2069
2069
  <define name="termdefinition">
2070
2070
  <element name="definition">
2071
+ <optional>
2072
+ <attribute name="type"/>
2073
+ </optional>
2071
2074
  <choice>
2072
2075
  <ref name="verbaldefinition"/>
2073
2076
  <ref name="nonverbalrep"/>
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module Ietf
3
- VERSION = "3.2.0".freeze
3
+ VERSION = "3.2.1".freeze
4
4
  end
5
5
  end
@@ -36,9 +36,8 @@ Gem::Specification.new do |spec|
36
36
  spec.require_paths = ["lib"]
37
37
  spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
38
38
 
39
- spec.add_dependency "mathml2asciimath"
40
39
  spec.add_dependency "metanorma-ietf-data"
41
- spec.add_dependency "metanorma-standoc", "~> 2.5.0"
40
+ spec.add_dependency "metanorma-standoc", "~> 2.5.4"
42
41
 
43
42
  spec.add_development_dependency "debug"
44
43
  spec.add_development_dependency "equivalent-xml", "~> 0.6"
metadata CHANGED
@@ -1,29 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-ietf
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0
4
+ version: 3.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-08-07 00:00:00.000000000 Z
11
+ date: 2023-08-28 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: mathml2asciimath
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - ">="
18
- - !ruby/object:Gem::Version
19
- version: '0'
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - ">="
25
- - !ruby/object:Gem::Version
26
- version: '0'
27
13
  - !ruby/object:Gem::Dependency
28
14
  name: metanorma-ietf-data
29
15
  requirement: !ruby/object:Gem::Requirement
@@ -44,14 +30,14 @@ dependencies:
44
30
  requirements:
45
31
  - - "~>"
46
32
  - !ruby/object:Gem::Version
47
- version: 2.5.0
33
+ version: 2.5.4
48
34
  type: :runtime
49
35
  prerelease: false
50
36
  version_requirements: !ruby/object:Gem::Requirement
51
37
  requirements:
52
38
  - - "~>"
53
39
  - !ruby/object:Gem::Version
54
- version: 2.5.0
40
+ version: 2.5.4
55
41
  - !ruby/object:Gem::Dependency
56
42
  name: debug
57
43
  requirement: !ruby/object:Gem::Requirement