metanorma-plugin-lutaml 0.7.25 → 0.7.26

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: 3f52cc174af4c2cd486067a47ca4c2d48093f2bc9a4030ddbc55d9bd0629b60c
4
- data.tar.gz: f657c5a57479b998913adce1a8147cbd53cdfe10b52d97d7a2a9dfc4198b21af
3
+ metadata.gz: 11c7ed6c66e1e49c97e462af575998e21c1fbac9290b110e6be6a39df00c5aa7
4
+ data.tar.gz: 7c082ce22cd9acd3236c2f1c3bd604108efb7df89ae271babf3413b0e6e93750
5
5
  SHA512:
6
- metadata.gz: 3677d003d961777f01889f4d7db189d43f236aa8a8fd0a29dfd29fbb765bb79dd101aa9fb00bc844986f1f09d23a8b3746f3c8eca88d4da5b9ed4532c3314605
7
- data.tar.gz: 6f2562fa121c7b33e699412bdd70a3b68eb56916254c83b6baba1ab8cac4e286079f21b65b34213774eff761989c0d01c1e2e158a3b54ce3b0387df455c99dbf
6
+ metadata.gz: cf4d394563023fd9c0e22992b408dd7c042e9c8aed11939b0fbfa00c229f28c10e941c0262704eddeeee63640e567ae1f3ccb97b51916a6a218f3f881da3dea4
7
+ data.tar.gz: 281e3c374a832537e697f9bc012286bfca4ff2cd1ab937ec871fc0fa5127ea4fe124c834262908bbfd1048df7dec5263485e5766840bb6020e9ea518d38b4193
@@ -0,0 +1,58 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Metanorma
4
+ module Plugin
5
+ module Lutaml
6
+ class ExpressRemarksDecorator
7
+ RELATIVE_PREFIX_MACRO_REGEXP = /^(link|image|video|audio|include)(:+)?(?![^\/:]+:\/\/|[A-Z]:\/|\/)([^:\[]+)(\[.*\])?$/.freeze
8
+
9
+ attr_reader :remark, :options
10
+
11
+ def self.call(remark, options)
12
+ new(remark, options).call
13
+ end
14
+
15
+ def initialize(remark, options)
16
+ @remark = remark
17
+ @options = options
18
+ end
19
+
20
+ def call
21
+ result = remark
22
+ if options["relative_path_prefix"]
23
+ result = update_relative_paths(result,
24
+ options["relative_path_prefix"])
25
+ end
26
+ result
27
+ end
28
+
29
+ private
30
+
31
+ def update_relative_paths(string, path_prefix)
32
+ string
33
+ .split("\n")
34
+ .map do |line|
35
+ if line.match?(RELATIVE_PREFIX_MACRO_REGEXP)
36
+ prefix_relative_paths(line, path_prefix)
37
+ else
38
+ line
39
+ end
40
+ end
41
+ .join("\n")
42
+ end
43
+
44
+ def prefix_relative_paths(line, path_prefix)
45
+ line.gsub(RELATIVE_PREFIX_MACRO_REGEXP) do |_match|
46
+ prefixed_path = File.join(path_prefix, $3.strip)
47
+ # When we are dealing with a relative path of a template:
48
+ # ../path/to/file we need to transform it into
49
+ # the absolute one because `image::` macro wont understand it other way
50
+ prefixed_path = File.absolute_path(prefixed_path) if prefixed_path.start_with?("../")
51
+ full_path = File.expand_path(prefixed_path)
52
+ "#{$1}#{$2}#{full_path}#{$4}"
53
+ end
54
+ end
55
+ end
56
+ end
57
+ end
58
+ end
@@ -6,6 +6,7 @@ require "asciidoctor/reader"
6
6
  require "lutaml"
7
7
  require "metanorma/plugin/lutaml/utils"
8
8
  require "metanorma/plugin/lutaml/asciidoctor/preprocessor"
9
+ require "metanorma/plugin/lutaml/express_remarks_decorator"
9
10
 
10
11
  module Metanorma
11
12
  module Plugin
@@ -139,7 +140,7 @@ module Metanorma
139
140
  update_schema_selection(schema, options)
140
141
  options["relative_path_prefix"] =
141
142
  relative_path_prefix(options, schema)
142
- update_schema_remarks(schema, options)
143
+ update_remarks(schema, options)
143
144
  end
144
145
 
145
146
  repo
@@ -152,16 +153,17 @@ module Metanorma
152
153
  options["selected_schemas"].include?(schema.id)
153
154
  end
154
155
 
155
- def update_schema_remarks(schema, options)
156
- # Update schema-level remarks
157
- schema.remarks = decorate_remarks(options, schema.remarks)
158
-
159
- # Update remark items
160
- return unless schema.remark_items
161
-
162
- schema.remark_items.each do |ri|
156
+ def update_remarks(model, options)
157
+ model.remarks = decorate_remarks(options, model.remarks)
158
+ model.remark_items&.each do |ri|
163
159
  ri.remarks = decorate_remarks(options, ri.remarks)
164
160
  end
161
+
162
+ model.children.each do |child|
163
+ if child.respond_to?(:remarks) && child.respond_to?(:remark_items)
164
+ update_remarks(child, options)
165
+ end
166
+ end
165
167
  end
166
168
 
167
169
  def relative_path_prefix(options, model)
@@ -181,7 +183,7 @@ module Metanorma
181
183
  return [] unless remarks
182
184
 
183
185
  remarks.map do |remark|
184
- ::Expressir::Express::ExpressRemarksDecorator
186
+ ::Metanorma::Plugin::Lutaml::ExpressRemarksDecorator
185
187
  .call(remark, options)
186
188
  end
187
189
  end
@@ -1,7 +1,7 @@
1
1
  module Metanorma
2
2
  module Plugin
3
3
  module Lutaml
4
- VERSION = "0.7.25".freeze
4
+ VERSION = "0.7.26".freeze
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-plugin-lutaml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.25
4
+ version: 0.7.26
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-04-02 00:00:00.000000000 Z
11
+ date: 2025-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: asciidoctor
@@ -135,6 +135,7 @@ files:
135
135
  - lib/metanorma/plugin/lutaml/config/guidance_klass.rb
136
136
  - lib/metanorma/plugin/lutaml/config/package.rb
137
137
  - lib/metanorma/plugin/lutaml/config/root.rb
138
+ - lib/metanorma/plugin/lutaml/express_remarks_decorator.rb
138
139
  - lib/metanorma/plugin/lutaml/liquid/custom_filters.rb
139
140
  - lib/metanorma/plugin/lutaml/liquid/multiply_local_file_system.rb
140
141
  - lib/metanorma/plugin/lutaml/liquid_drops/gml_dictionary_drop.rb