metanorma-standoc 3.0.3 → 3.0.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/isodoc/html/htmlstyle.css +7 -0
- data/lib/metanorma/standoc/basicdoc.rng +34 -27
- data/lib/metanorma/standoc/cleanup.rb +1 -0
- data/lib/metanorma/standoc/cleanup_block.rb +1 -1
- data/lib/metanorma/standoc/cleanup_inline.rb +4 -6
- data/lib/metanorma/standoc/cleanup_section.rb +16 -22
- data/lib/metanorma/standoc/cleanup_section_names.rb +25 -0
- data/lib/metanorma/standoc/cleanup_table.rb +22 -0
- data/lib/metanorma/standoc/converter.rb +2 -0
- data/lib/metanorma/standoc/isodoc.rng +28 -1
- data/lib/metanorma/standoc/macros_inline.rb +24 -0
- data/lib/metanorma/standoc/section.rb +1 -1
- data/lib/metanorma/standoc/version.rb +1 -1
- data/metanorma-standoc.gemspec +2 -2
- metadata +6 -7
- data/Gemfile.devel +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 86e5f93e957beab663c8b30d6ea82cc211b158a6bf8b9f0e49a9843c21e910d2
|
4
|
+
data.tar.gz: 3b98332cd095ac90319145032f637b3fc1388ddc0f5ccbb6b1599d0b331cdd35
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2e8aa9bd17082e4e9a06f26635282cb4eb3088ecf636c7144299b57d547cfb2ef2913f286bf67aa40557670b46abd0625d9545f9a8812b77cb597c2e00ef3af4
|
7
|
+
data.tar.gz: ec6148203ca15276fe22bcad392a30e1adb581791f6c4577f20fffaa401998f46384b0f374625dc34c40cc02f53695777eb974b1f678c942598d4efdafaf7885
|
@@ -382,33 +382,7 @@ in a document (e.g. sourcecode annotations)</a:documentation>
|
|
382
382
|
<a:documentation>Block intended to capture reviewer comments about some text in the document</a:documentation>
|
383
383
|
<element name="review">
|
384
384
|
<ref name="RequiredId"/>
|
385
|
-
<
|
386
|
-
<a:documentation>The party who has offered the comment</a:documentation>
|
387
|
-
</attribute>
|
388
|
-
<optional>
|
389
|
-
<attribute name="type">
|
390
|
-
<a:documentation>The type of reviewer comment</a:documentation>
|
391
|
-
</attribute>
|
392
|
-
</optional>
|
393
|
-
<optional>
|
394
|
-
<attribute name="date">
|
395
|
-
<a:documentation>The date when the comment was made</a:documentation>
|
396
|
-
<data type="dateTime"/>
|
397
|
-
</attribute>
|
398
|
-
</optional>
|
399
|
-
<optional>
|
400
|
-
<attribute name="from">
|
401
|
-
<a:documentation>Identifier for the start of the text or point in the text to which the comment applies.
|
402
|
-
If not provided, the comment applies in the vicinity of the place it has been inserted into the text</a:documentation>
|
403
|
-
<data type="IDREF"/>
|
404
|
-
</attribute>
|
405
|
-
</optional>
|
406
|
-
<optional>
|
407
|
-
<attribute name="to">
|
408
|
-
<a:documentation>Identifier for the end of the text to which the comment applies</a:documentation>
|
409
|
-
<data type="IDREF"/>
|
410
|
-
</attribute>
|
411
|
-
</optional>
|
385
|
+
<ref name="ReviewAttributes"/>
|
412
386
|
<oneOrMore>
|
413
387
|
<ref name="paragraph">
|
414
388
|
<a:documentation>Reviewer comments content</a:documentation>
|
@@ -416,6 +390,35 @@ If not provided, the comment applies in the vicinity of the place it has been in
|
|
416
390
|
</oneOrMore>
|
417
391
|
</element>
|
418
392
|
</define>
|
393
|
+
<define name="ReviewAttributes">
|
394
|
+
<attribute name="reviewer">
|
395
|
+
<a:documentation>The party who has offered the comment</a:documentation>
|
396
|
+
</attribute>
|
397
|
+
<optional>
|
398
|
+
<attribute name="type">
|
399
|
+
<a:documentation>The type of reviewer comment</a:documentation>
|
400
|
+
</attribute>
|
401
|
+
</optional>
|
402
|
+
<optional>
|
403
|
+
<attribute name="date">
|
404
|
+
<a:documentation>The date when the comment was made</a:documentation>
|
405
|
+
<data type="dateTime"/>
|
406
|
+
</attribute>
|
407
|
+
</optional>
|
408
|
+
<optional>
|
409
|
+
<attribute name="from">
|
410
|
+
<a:documentation>Identifier for the start of the text or point in the text to which the comment applies.
|
411
|
+
If not provided, the comment applies in the vicinity of the place it has been inserted into the text</a:documentation>
|
412
|
+
<data type="IDREF"/>
|
413
|
+
</attribute>
|
414
|
+
</optional>
|
415
|
+
<optional>
|
416
|
+
<attribute name="to">
|
417
|
+
<a:documentation>Identifier for the end of the text to which the comment applies</a:documentation>
|
418
|
+
<data type="IDREF"/>
|
419
|
+
</attribute>
|
420
|
+
</optional>
|
421
|
+
</define>
|
419
422
|
<define name="NumberingAttributes">
|
420
423
|
<optional>
|
421
424
|
<attribute name="unnumbered">
|
@@ -857,6 +860,7 @@ in case the table cannot be rendered accessibly (HTML 5)</a:documentation>
|
|
857
860
|
<define name="tr">
|
858
861
|
<a:documentation>Sequence of cells to be displayed as a row in a table</a:documentation>
|
859
862
|
<element name="tr">
|
863
|
+
<ref name="TrAttributes"/>
|
860
864
|
<oneOrMore>
|
861
865
|
<choice>
|
862
866
|
<ref name="td">
|
@@ -869,6 +873,9 @@ in case the table cannot be rendered accessibly (HTML 5)</a:documentation>
|
|
869
873
|
</oneOrMore>
|
870
874
|
</element>
|
871
875
|
</define>
|
876
|
+
<define name="TrAttributes">
|
877
|
+
<empty/>
|
878
|
+
</define>
|
872
879
|
<define name="tr-no-id">
|
873
880
|
<a:documentation>Sequence of cells to be displayed as a row in a table: optional ID attributes recursively (for use in Relaton, metadata)</a:documentation>
|
874
881
|
<element name="tr">
|
@@ -82,6 +82,7 @@ module Metanorma
|
|
82
82
|
boilerplate_cleanup(xmldoc) # feeds: xref_cleanup for new <<>> introduced
|
83
83
|
xref_cleanup(xmldoc)
|
84
84
|
svgmap_cleanup(xmldoc) # feeds: img_cleanup
|
85
|
+
review_cleanup(xmldoc)
|
85
86
|
toc_cleanup(xmldoc)
|
86
87
|
smartquotes_cleanup(xmldoc)
|
87
88
|
linebreak_cleanup(xmldoc)
|
@@ -145,10 +145,9 @@ module Metanorma
|
|
145
145
|
elem.xpath(IDREF).each do |s|
|
146
146
|
if (ret = Metanorma::Utils::to_ncname(s.value)) != (orig = s.value)
|
147
147
|
s.value = ret
|
148
|
-
output = s.parent.dup
|
149
|
-
output.children.remove
|
150
148
|
@log.add("Anchors", s.parent,
|
151
|
-
"normalised identifier
|
149
|
+
"normalised identifier to #{ret} from #{orig}",
|
150
|
+
display: false)
|
152
151
|
end
|
153
152
|
end
|
154
153
|
end
|
@@ -157,10 +156,9 @@ module Metanorma
|
|
157
156
|
elem.xpath("//xref/@target").each do |s|
|
158
157
|
if (ret = to_xreftarget(s.value)) != (orig = s.value)
|
159
158
|
s.value = ret
|
160
|
-
output = s.parent.dup
|
161
|
-
output.children.remove
|
162
159
|
@log.add("Anchors", s.parent,
|
163
|
-
"normalised identifier
|
160
|
+
"normalised identifier to #{ret} from #{orig}",
|
161
|
+
display: false)
|
164
162
|
end
|
165
163
|
end
|
166
164
|
end
|
@@ -192,7 +192,7 @@ module Metanorma
|
|
192
192
|
xmldoc.at("//sections") or return
|
193
193
|
ins = insert_before(xmldoc, "//sections")
|
194
194
|
xmldoc.xpath("//sections//*[@beforeclauses = 'true']")
|
195
|
-
.
|
195
|
+
.reverse_each do |x|
|
196
196
|
x.delete("beforeclauses")
|
197
197
|
ins.previous = x.remove
|
198
198
|
end
|
@@ -201,7 +201,7 @@ module Metanorma
|
|
201
201
|
|
202
202
|
# only move clausebefore notes at the very end of preface
|
203
203
|
def endofpreface_clausebefore(xml, ins)
|
204
|
-
xml.xpath("//preface//*[@beforeclauses = 'true']").
|
204
|
+
xml.xpath("//preface//*[@beforeclauses = 'true']").reverse_each do |x|
|
205
205
|
textafter = xml.xpath("//preface//*") & x.xpath("./following::*")
|
206
206
|
textafter.text.strip.empty? or break
|
207
207
|
x.delete("beforeclauses")
|
@@ -217,29 +217,23 @@ module Metanorma
|
|
217
217
|
ins
|
218
218
|
end
|
219
219
|
|
220
|
-
def
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
found = false
|
228
|
-
xmldoc.xpath("//floating-title").each do |t|
|
229
|
-
t.next_element.nil? or next
|
230
|
-
%w(sections annex preface).include? t.parent.name and next
|
231
|
-
t.parent.next = t
|
232
|
-
found = true
|
233
|
-
end
|
234
|
-
break unless found
|
220
|
+
def review_cleanup(xmldoc)
|
221
|
+
reviews = xmldoc.xpath("//review")
|
222
|
+
reviews.empty? and return
|
223
|
+
ctr = xmldoc.root.add_child("<review-container/>").first
|
224
|
+
reviews.each do |r|
|
225
|
+
review_set_location(r)
|
226
|
+
ctr << r
|
235
227
|
end
|
236
228
|
end
|
237
229
|
|
238
|
-
def
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
230
|
+
def review_set_location(review)
|
231
|
+
unless review["from"]
|
232
|
+
id = "_#{UUIDTools::UUID.random_create}"
|
233
|
+
review.previous = "<bookmark id='#{id}'/>"
|
234
|
+
review["from"] = id
|
235
|
+
end
|
236
|
+
review["to"] ||= review["from"]
|
243
237
|
end
|
244
238
|
end
|
245
239
|
end
|
@@ -156,6 +156,31 @@ module Metanorma
|
|
156
156
|
end
|
157
157
|
end
|
158
158
|
end
|
159
|
+
|
160
|
+
def floatingtitle_cleanup(xmldoc)
|
161
|
+
pop_floating_title(xmldoc) # done again, after endofpreface_clausebefore
|
162
|
+
floating_title_preface2sections(xmldoc)
|
163
|
+
end
|
164
|
+
|
165
|
+
def pop_floating_title(xmldoc)
|
166
|
+
loop do
|
167
|
+
found = false
|
168
|
+
xmldoc.xpath("//floating-title").each do |t|
|
169
|
+
t.next_element.nil? or next
|
170
|
+
%w(sections annex preface).include? t.parent.name and next
|
171
|
+
t.parent.next = t
|
172
|
+
found = true
|
173
|
+
end
|
174
|
+
break unless found
|
175
|
+
end
|
176
|
+
end
|
177
|
+
|
178
|
+
def floating_title_preface2sections(xmldoc)
|
179
|
+
t = xmldoc.at("//preface/floating-title") or return
|
180
|
+
s = xmldoc.at("//sections")
|
181
|
+
t.next_element or
|
182
|
+
s.children.first.previous = t.remove
|
183
|
+
end
|
159
184
|
end
|
160
185
|
end
|
161
186
|
end
|
@@ -47,6 +47,8 @@ module Metanorma
|
|
47
47
|
sources_table_cleanup(xmldoc)
|
48
48
|
notes_table_cleanup(xmldoc)
|
49
49
|
header_rows_cleanup(xmldoc)
|
50
|
+
tr_style_cleanup(xmldoc)
|
51
|
+
td_style_cleanup(xmldoc)
|
50
52
|
end
|
51
53
|
|
52
54
|
def sources_table_cleanup(xmldoc)
|
@@ -75,6 +77,26 @@ module Metanorma
|
|
75
77
|
end
|
76
78
|
end
|
77
79
|
end
|
80
|
+
|
81
|
+
def tr_style_cleanup(xmldoc)
|
82
|
+
xmldoc.xpath("//tr[.//tr-style]").each do |tr|
|
83
|
+
ret = tr.xpath(".//tr-style").each_with_object([]) do |s, m|
|
84
|
+
m << s.text
|
85
|
+
end
|
86
|
+
tr["style"] = ret.join(";")
|
87
|
+
end
|
88
|
+
xmldoc.xpath(".//tr-style").each(&:remove)
|
89
|
+
end
|
90
|
+
|
91
|
+
def td_style_cleanup(xmldoc)
|
92
|
+
xmldoc.xpath("//td[.//td-style] | //th[.//td-style]").each do |tr|
|
93
|
+
ret = tr.xpath(".//td-style").each_with_object([]) do |s, m|
|
94
|
+
m << s.text
|
95
|
+
end
|
96
|
+
tr["style"] = ret.join(";")
|
97
|
+
end
|
98
|
+
xmldoc.xpath(".//td-style").each(&:remove)
|
99
|
+
end
|
78
100
|
end
|
79
101
|
end
|
80
102
|
end
|
@@ -71,6 +71,8 @@ module Metanorma
|
|
71
71
|
inline_macro Metanorma::Standoc::PassInlineMacro
|
72
72
|
inline_macro Metanorma::Standoc::StdLinkInlineMacro
|
73
73
|
inline_macro Metanorma::Standoc::NumberInlineMacro
|
74
|
+
inline_macro Metanorma::Standoc::TrStyleInlineMacro
|
75
|
+
inline_macro Metanorma::Standoc::TdStyleInlineMacro
|
74
76
|
block Metanorma::Standoc::ToDoAdmonitionBlock
|
75
77
|
block Metanorma::Standoc::EditorAdmonitionBlock
|
76
78
|
treeprocessor Metanorma::Standoc::EditorInlineAdmonitionBlock
|
@@ -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 v2.0.
|
20
|
+
<!-- VERSION v2.0.2 -->
|
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">
|
@@ -423,6 +423,21 @@ normative or informative references, some split references into sections organiz
|
|
423
423
|
</oneOrMore>
|
424
424
|
</choice>
|
425
425
|
</define>
|
426
|
+
<define name="TdAttributes" combine="interleave">
|
427
|
+
<attribute name="style">
|
428
|
+
<a:documentation>CSS style: only background-color supported</a:documentation>
|
429
|
+
</attribute>
|
430
|
+
</define>
|
431
|
+
<define name="ThAttributes" combine="interleave">
|
432
|
+
<attribute name="style">
|
433
|
+
<a:documentation>CSS style: only background-color supported</a:documentation>
|
434
|
+
</attribute>
|
435
|
+
</define>
|
436
|
+
<define name="TrAttributes">
|
437
|
+
<attribute name="style">
|
438
|
+
<a:documentation>CSS style: only background-color supported</a:documentation>
|
439
|
+
</attribute>
|
440
|
+
</define>
|
426
441
|
<define name="table-note">
|
427
442
|
<element name="note">
|
428
443
|
<ref name="OptionalId"/>
|
@@ -1272,6 +1287,11 @@ numbers</a:documentation>
|
|
1272
1287
|
<a:documentation>Colophon or postface material</a:documentation>
|
1273
1288
|
</ref>
|
1274
1289
|
</optional>
|
1290
|
+
<optional>
|
1291
|
+
<ref name="review-container">
|
1292
|
+
<a:documentation>Annotations to the document</a:documentation>
|
1293
|
+
</ref>
|
1294
|
+
</optional>
|
1275
1295
|
</element>
|
1276
1296
|
</define>
|
1277
1297
|
<define name="misccontainer">
|
@@ -1282,6 +1302,13 @@ numbers</a:documentation>
|
|
1282
1302
|
</oneOrMore>
|
1283
1303
|
</element>
|
1284
1304
|
</define>
|
1305
|
+
<define name="review-container">
|
1306
|
+
<element name="review-container">
|
1307
|
+
<oneOrMore>
|
1308
|
+
<ref name="review"/>
|
1309
|
+
</oneOrMore>
|
1310
|
+
</element>
|
1311
|
+
</define>
|
1285
1312
|
<define name="preface">
|
1286
1313
|
<element name="preface">
|
1287
1314
|
<oneOrMore>
|
@@ -147,6 +147,30 @@ module Metanorma
|
|
147
147
|
end
|
148
148
|
end
|
149
149
|
|
150
|
+
class TrStyleInlineMacro < Asciidoctor::Extensions::InlineMacroProcessor
|
151
|
+
use_dsl
|
152
|
+
named :"tr-style"
|
153
|
+
parse_content_as :text
|
154
|
+
using_format :short
|
155
|
+
|
156
|
+
def process(parent, _target, attrs)
|
157
|
+
out = Asciidoctor::Inline.new(parent, :quoted, attrs["text"]).convert
|
158
|
+
%{<tr-style>#{out}</tr-style>}
|
159
|
+
end
|
160
|
+
end
|
161
|
+
|
162
|
+
class TdStyleInlineMacro < Asciidoctor::Extensions::InlineMacroProcessor
|
163
|
+
use_dsl
|
164
|
+
named :"td-style"
|
165
|
+
parse_content_as :text
|
166
|
+
using_format :short
|
167
|
+
|
168
|
+
def process(parent, _target, attrs)
|
169
|
+
out = Asciidoctor::Inline.new(parent, :quoted, attrs["text"]).convert
|
170
|
+
%{<td-style>#{out}</td-style>}
|
171
|
+
end
|
172
|
+
end
|
173
|
+
|
150
174
|
class NumberInlineMacro < Asciidoctor::Extensions::InlineMacroProcessor
|
151
175
|
include ::Metanorma::Standoc::Utils
|
152
176
|
|
@@ -52,7 +52,7 @@ module Metanorma
|
|
52
52
|
|
53
53
|
PREFACE_CLAUSE_NAMES =
|
54
54
|
%w(abstract foreword introduction metanorma-extension termdocsource
|
55
|
-
misc-container acknowledgements).freeze
|
55
|
+
misc-container metanorma-extension acknowledgements).freeze
|
56
56
|
|
57
57
|
MAIN_CLAUSE_NAMES =
|
58
58
|
["normative references", "terms and definitions", "scope",
|
data/metanorma-standoc.gemspec
CHANGED
@@ -32,10 +32,10 @@ Gem::Specification.new do |spec|
|
|
32
32
|
spec.add_dependency "asciidoctor", "~> 2.0.0"
|
33
33
|
spec.add_dependency "crass", "~> 1.0.0"
|
34
34
|
spec.add_dependency "iev", "~> 0.3.5"
|
35
|
-
spec.add_dependency "isodoc", "~> 3.1.
|
35
|
+
spec.add_dependency "isodoc", "~> 3.1.4"
|
36
36
|
spec.add_dependency "metanorma", ">= 1.6.0"
|
37
37
|
spec.add_dependency "metanorma-plugin-datastruct", "~> 0.3.0"
|
38
|
-
spec.add_dependency "metanorma-plugin-glossarist", "~> 0.2.
|
38
|
+
spec.add_dependency "metanorma-plugin-glossarist", "~> 0.2.3"
|
39
39
|
spec.add_dependency "metanorma-plugin-lutaml", "~> 0.7.0"
|
40
40
|
spec.add_dependency "metanorma-utils", "~> 1.10.0"
|
41
41
|
spec.add_dependency "ruby-jing"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: metanorma-standoc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|
@@ -72,14 +72,14 @@ dependencies:
|
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: 3.1.
|
75
|
+
version: 3.1.4
|
76
76
|
type: :runtime
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: 3.1.
|
82
|
+
version: 3.1.4
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: metanorma
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -114,14 +114,14 @@ dependencies:
|
|
114
114
|
requirements:
|
115
115
|
- - "~>"
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version: 0.2.
|
117
|
+
version: 0.2.3
|
118
118
|
type: :runtime
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
122
|
- - "~>"
|
123
123
|
- !ruby/object:Gem::Version
|
124
|
-
version: 0.2.
|
124
|
+
version: 0.2.3
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
126
|
name: metanorma-plugin-lutaml
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
@@ -434,7 +434,6 @@ files:
|
|
434
434
|
- ".tex"
|
435
435
|
- CODE_OF_CONDUCT.md
|
436
436
|
- Gemfile
|
437
|
-
- Gemfile.devel
|
438
437
|
- LICENSE
|
439
438
|
- Makefile
|
440
439
|
- README.adoc
|
data/Gemfile.devel
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
gem "html2doc", git: "https://github.com/metanorma/html2doc", branch: "main"
|