metanorma-utils 1.6.2 → 1.6.3

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: 240c5f31b6dad1797c4beba192aee96bd27bb1102c0204f5519e352732e57e6e
4
- data.tar.gz: 35ca70ee292b96c4fc707ea8a921da6376fa4b5b1742b9e1dbd01f440573da5f
3
+ metadata.gz: cbe101c56bac70e6543c03f11abc88c0a1ea7645220c0b4f375f679956d507ae
4
+ data.tar.gz: f9d7c68df7145fa585c6af6a253ccc1e587b841cbdc619fe4ace584026723623
5
5
  SHA512:
6
- metadata.gz: 58d0a2622468e63bf96d5248d07adcc76064db527a42029b5e559f58cddd8644340d7304dfc18c1537d411e37be51e0953acc08d23c665286646aa0725d184b1
7
- data.tar.gz: e45e4a67bfde7aad5bf8e6935fade99ee40db4c6e6d0bb41045dc12344aea5a2ab1c999f2713e1a939643221c632e69e86e729cd982ea50d0014053da01af6d1
6
+ metadata.gz: 5c2cf454f5fdf77753856c0e353b265b0f113a5adfd69cf17d654c774045c0a3623f34fb12255603da238f04448a68160d6c28a87c9ee4f0b2202a4ea4d7a01a
7
+ data.tar.gz: d851a8005f82a55211329bce7fe957e126a8e913d249919a542a525bbb8119fae9fdb34d243364530db174e7e256dc2286f7c66f112bd274b3648e496e84c5d4
data/lib/utils/image.rb CHANGED
@@ -128,19 +128,14 @@ module Metanorma
128
128
  # Check whether just the local path or the other specified relative path
129
129
  # works.
130
130
  def datauri(uri, local_dir = ".")
131
- return uri if datauri?(uri) || url?(uri)
132
-
133
- options = absolute_path?(uri) ? [uri] : [uri, File.join(local_dir, uri)]
131
+ (datauri?(uri) || url?(uri)) and return uri
132
+ options = absolute_path?(uri) ? [uri] : [uri, File.join(local_dir, uri)]
134
133
  path = options.detect do |p|
135
134
  File.exist?(p) ? p : nil
136
135
  end
137
-
138
- unless path
139
- warn "Image specified at `#{uri}` does not exist."
140
- return uri # Return original provided location
141
- end
142
-
143
- encode_datauri(path)
136
+ path and return encode_datauri(path)
137
+ warn "Image specified at `#{uri}` does not exist."
138
+ uri # Return original provided location
144
139
  end
145
140
 
146
141
  def encode_datauri(path)
data/lib/utils/log.rb CHANGED
@@ -17,7 +17,11 @@ module Metanorma
17
17
  item = create_entry(loc, msg)
18
18
  @log[category] << item
19
19
  loc = loc.nil? ? "" : "(#{current_location(loc)}): "
20
- warn "#{category}: #{loc}#{msg}"
20
+ suppress_display?(category, loc, msg) or warn "#{category}: #{loc}#{msg}"
21
+ end
22
+
23
+ def suppress_display?(category, loc, msg)
24
+ ["Metanorma XML Syntax"].include?(category)
21
25
  end
22
26
 
23
27
  def create_entry(loc, msg)
data/lib/utils/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module Utils
3
- VERSION = "1.6.2".freeze
3
+ VERSION = "1.6.3".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.2
4
+ version: 1.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-03 00:00:00.000000000 Z
11
+ date: 2023-11-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: asciidoctor