metanorma 1.5.4 → 1.5.5

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: 758d48f89ac77f45c22c5982eb021778e27649e6bedb4e59093f4c54bb03e752
4
- data.tar.gz: 0714c39311ab9125cff1e7049410e615b597b033d38de4f4722ed766da4eb51f
3
+ metadata.gz: 6b89c521393022873c1869075ea123a814f157c5bf37cbd4f8b9f34076396a0e
4
+ data.tar.gz: b289b1718e6b24dd672ec758210ac483370b5fd56d583d8e6c7d06d3bfceca9d
5
5
  SHA512:
6
- metadata.gz: d49ff8e5dabd1a92f1ad9c1ef23f285ac23e6491cab5779105a05ab2d5b6a93879fce50e25ff2baf0bd95ea41af4b61f0481aa4c23bc462e9c6cee61a5c6221d
7
- data.tar.gz: 06c86d497292b5a70e3bb55abf4d2de9d672b36b380362a402bd2324c02a6e668b5186ccac5b068f1946a5b2607844bee62d01adbc5388e5519fb00f61e4b0f1
6
+ metadata.gz: e914e35240ed44db0d6b822d83e9bfca1fb0573c37b054ba0f343df5378364a41c3f1f7f37634b5cc592111eea696128909c2c2f78667ba96da8ea86fea3f1d4
7
+ data.tar.gz: a74dedfd28fb9281a729a26de8c020d560cbc298ec23172db5d6425298094f085a79ee08c76d67da7af3f1b524eb20001f9e5b9e16b63e2c286fb041e0124edd
@@ -119,10 +119,7 @@ module Metanorma
119
119
 
120
120
  def add_document_suffix(identifier, doc)
121
121
  document_suffix = Metanorma::Utils::to_ncname(identifier)
122
- [%w[* id], %w[* bibitemid], %w[review from],
123
- %w[review to], %w[index to], %w[xref target],
124
- %w[callout target]]
125
- .each do |(tag_name, attribute_name)|
122
+ Metanorma::Utils::anchor_attributes.each do |(tag_name, attribute_name)|
126
123
  add_suffix_to_attributes(doc, document_suffix, tag_name, attribute_name)
127
124
  end
128
125
  end
@@ -42,7 +42,7 @@ module Metanorma
42
42
  when ".adoc" then process_input_adoc(filename, options)
43
43
  when ".xml" then process_input_xml(filename, options)
44
44
  else
45
- Util.log("[metanorma] Error: file extension #{extname} "\
45
+ Util.log("[metanorma] Error: file extension #{extname} " \
46
46
  "is not supported.", :error)
47
47
  nil
48
48
  end
@@ -150,7 +150,8 @@ module Metanorma
150
150
  isodoc_options1)
151
151
  wrap_html(options1, fnames1[:ext], fnames1[:out])
152
152
  rescue StandardError => e
153
- isodoc_error_process(e)
153
+ strict = ext == :presentation || isodoc_options1[:strict] == "true"
154
+ isodoc_error_process(e, strict)
154
155
  end
155
156
 
156
157
  def process_output_unthreaded(ext, fnames, isodoc, isodoc_options)
@@ -158,18 +159,19 @@ module Metanorma
158
159
  isodoc_options)
159
160
  nil # return as Thread
160
161
  rescue StandardError => e
161
- isodoc_error_process(e)
162
+ strict = ext == :presentation || isodoc_options[:strict] == "true"
163
+ isodoc_error_process(e, strict)
162
164
  end
163
165
 
164
166
  private
165
167
 
166
- def isodoc_error_process(err)
167
- if err.message.include? "Fatal:"
168
+ def isodoc_error_process(err, strict)
169
+ if strict || err.message.include?("Fatal:")
168
170
  @errors << err.message
169
171
  else
170
172
  puts err.message
171
- puts err.backtrace.join("\n")
172
173
  end
174
+ puts err.backtrace.join("\n")
173
175
  end
174
176
 
175
177
  # @param options [Hash]
@@ -72,7 +72,7 @@ module Metanorma
72
72
  ret[:datauriimage] = true if options[:datauriimage]
73
73
  ret[:sourcefilename] = options[:filename]
74
74
  %i(bare sectionsplit no_install_fonts baseassetpath aligncrosselements
75
- tocfigures toctables tocrecommendations)
75
+ tocfigures toctables tocrecommendations strict)
76
76
  .each { |x| ret[x] ||= options[x] }
77
77
  ext == :pdf && FontistUtils.has_fonts_manifest?(@processor, options) and
78
78
  ret[:mn2pdf] =
@@ -1,3 +1,3 @@
1
1
  module Metanorma
2
- VERSION = "1.5.4".freeze
2
+ VERSION = "1.5.5".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.4
4
+ version: 1.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-19 00:00:00.000000000 Z
11
+ date: 2023-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: asciidoctor