metanorma-plugin-lutaml 0.2.4.alpha → 0.2.4
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 +4 -4
- data/lib/metanorma/plugin/lutaml/express_remarks_decorator.rb +6 -2
- data/lib/metanorma/plugin/lutaml/lutaml_preprocessor.rb +23 -12
- data/lib/metanorma/plugin/lutaml/lutaml_uml_attributes_table_preprocessor.rb +1 -0
- data/lib/metanorma/plugin/lutaml/utils.rb +3 -1
- data/lib/metanorma/plugin/lutaml/version.rb +1 -1
- data/metanorma-plugin-lutaml.gemspec +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fedcbe218c7a2e414eeac2dff54a798c0fcb2df287f8c516c81cb2cf8484848b
|
4
|
+
data.tar.gz: 343ba55ae29367376bae9c0175698fe241e8d2c533d420d0becab9cc2f1fdfe9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 38554d8cef5c12bb9650bbbbf270be3f34f4f4672868a6625966fc2c356bd686bb8e0b585cd9cb466acdc765abc7facce5ef6752ba632014910f1c7f0bc333b1
|
7
|
+
data.tar.gz: 46a0bd0c726fdb101783b376a79b633db26ece0b10272d934f4a349a62e8d4f99d5fe881728ed1713599d9e33dcc706ddfcd51205708a4762a1f44f1e236fbeb
|
@@ -2,7 +2,7 @@ module Metanorma
|
|
2
2
|
module Plugin
|
3
3
|
module Lutaml
|
4
4
|
class ExpressRemarksDecorator
|
5
|
-
RELATIVE_PREFIX_MACRO_REGEXP = /^(
|
5
|
+
RELATIVE_PREFIX_MACRO_REGEXP = /^(link|image|video|audio|include)(:+)?(?![^\/:]+:\/\/|[A-Z]:\/|\/)([^:\[]+)(\[.*\])?$/.freeze
|
6
6
|
|
7
7
|
attr_reader :remark, :options
|
8
8
|
|
@@ -45,7 +45,11 @@ module Metanorma
|
|
45
45
|
def prefix_relative_paths(line, path_prefix)
|
46
46
|
line.gsub(RELATIVE_PREFIX_MACRO_REGEXP) do |_match|
|
47
47
|
prefixed_path = File.join(path_prefix, $3.strip)
|
48
|
-
|
48
|
+
# When we are dealing with arelative path of a template: ../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}"
|
49
53
|
end
|
50
54
|
end
|
51
55
|
|
@@ -27,10 +27,11 @@ module Metanorma
|
|
27
27
|
|
28
28
|
protected
|
29
29
|
|
30
|
-
def
|
31
|
-
|
32
|
-
|
33
|
-
|
30
|
+
def content_from_files(document, file_paths)
|
31
|
+
file_list = file_paths.map do |file_path|
|
32
|
+
File.new(Utils.relative_file_path(document, file_path), encoding: "UTF-8")
|
33
|
+
end
|
34
|
+
::Lutaml::Parser.parse(file_list)
|
34
35
|
end
|
35
36
|
|
36
37
|
private
|
@@ -72,28 +73,38 @@ module Metanorma
|
|
72
73
|
|
73
74
|
def contexts_items(block_match, document, express_indexes)
|
74
75
|
contexts_names = block_match[1].split(";").map(&:strip)
|
75
|
-
|
76
|
+
file_paths = []
|
77
|
+
result = contexts_names.each_with_object([]) do |path, res|
|
76
78
|
if express_indexes[path]
|
77
79
|
res.push(*express_indexes[path])
|
78
80
|
else
|
79
|
-
|
81
|
+
file_paths.push(path)
|
80
82
|
end
|
81
83
|
end
|
84
|
+
if !file_paths.empty?
|
85
|
+
from_files = content_from_files(document, file_paths)
|
86
|
+
.map do |n|
|
87
|
+
n.to_liquid.map { |j| j.merge('relative_path_prefix' => Utils.relative_file_path(document, File.dirname(j['file']))) }
|
88
|
+
end
|
89
|
+
.flatten
|
90
|
+
result += from_files
|
91
|
+
end
|
92
|
+
result
|
82
93
|
end
|
83
94
|
|
84
95
|
def parse_template(document, current_block, block_match, express_indexes)
|
85
96
|
options = parse_options(block_match[3])
|
86
|
-
.merge("relative_path_prefix" => File.dirname(block_match[1]))
|
87
97
|
contexts_items(block_match, document, express_indexes)
|
88
|
-
.map do |
|
98
|
+
.map do |items|
|
99
|
+
opts = options.merge('relative_path_prefix' => items['relative_path_prefix'])
|
89
100
|
parse_context_block(document: document,
|
90
101
|
context_lines: current_block,
|
91
|
-
context_items: decorate_context_items(
|
102
|
+
context_items: decorate_context_items(items, opts),
|
92
103
|
context_name: block_match[2].strip)
|
93
104
|
end.flatten
|
94
|
-
rescue StandardError => e
|
95
|
-
|
96
|
-
|
105
|
+
# rescue StandardError => e
|
106
|
+
# document.logger.warn("Failed to parse lutaml block: #{e.message}")
|
107
|
+
# []
|
97
108
|
end
|
98
109
|
|
99
110
|
def parse_options(options_string)
|
@@ -38,8 +38,10 @@ module Metanorma
|
|
38
38
|
next if [".", ".."].include?(path)
|
39
39
|
|
40
40
|
begin
|
41
|
+
parsed = ::Lutaml::Parser.parse(File.new(path, encoding: "UTF-8"))
|
42
|
+
parsed = parsed.map { |n| n.to_liquid.map { |j| j.merge('relative_path_prefix' => Utils.relative_file_path(document, File.dirname(j['file']))) } }.flatten
|
41
43
|
idxs[name]
|
42
|
-
.push(
|
44
|
+
.push(*parsed)
|
43
45
|
rescue StandardError => e
|
44
46
|
document.logger.warn("Failed to load #{path}: #{e.message}")
|
45
47
|
end
|
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
|
|
24
24
|
spec.require_paths = ["lib"]
|
25
25
|
|
26
26
|
spec.add_dependency "liquid"
|
27
|
-
spec.add_dependency "lutaml", "0.4.1.pre.alpha"
|
27
|
+
spec.add_dependency "lutaml", "0.4.1.pre.alpha.2"
|
28
28
|
spec.add_dependency "lutaml-uml", "~> 0.2.0"
|
29
29
|
spec.add_dependency "metanorma"
|
30
30
|
spec.add_dependency "relaton-cli"
|
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.2.4
|
4
|
+
version: 0.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-03-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: liquid
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.4.1.pre.alpha
|
33
|
+
version: 0.4.1.pre.alpha.2
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.4.1.pre.alpha
|
40
|
+
version: 0.4.1.pre.alpha.2
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: lutaml-uml
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -274,9 +274,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
274
274
|
version: '0'
|
275
275
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
276
276
|
requirements:
|
277
|
-
- - "
|
277
|
+
- - ">="
|
278
278
|
- !ruby/object:Gem::Version
|
279
|
-
version:
|
279
|
+
version: '0'
|
280
280
|
requirements: []
|
281
281
|
rubygems_version: 3.0.3
|
282
282
|
signing_key:
|