metanorma-iso 3.0.1 → 3.0.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 +4 -4
- data/lib/isodoc/iso/base_convert.rb +2 -0
- data/lib/isodoc/iso/html/style-human.css +7 -0
- data/lib/isodoc/iso/html/style-iso.css +7 -0
- data/lib/isodoc/iso/i18n-en.yaml +55 -0
- data/lib/isodoc/iso/i18n-fr.yaml +33 -8
- data/lib/isodoc/iso/iso.amendment.xsl +618 -248
- data/lib/isodoc/iso/iso.international-standard.xsl +618 -248
- data/lib/isodoc/iso/presentation_bibdata.rb +10 -2
- data/lib/isodoc/iso/presentation_section.rb +138 -0
- data/lib/isodoc/iso/presentation_xml_convert.rb +10 -135
- data/lib/isodoc/iso/word_convert.rb +7 -15
- data/lib/isodoc/iso/xref.rb +0 -6
- data/lib/metanorma/iso/basicdoc.rng +34 -27
- data/lib/metanorma/iso/cleanup.rb +2 -2
- data/lib/metanorma/iso/isodoc.rng +37 -1
- data/lib/metanorma/iso/relaton-iso.rng +0 -22
- data/lib/metanorma/iso/validate.rb +2 -2
- data/lib/metanorma/iso/version.rb +1 -1
- metadata +3 -2
@@ -69,8 +69,16 @@ module IsoDoc
|
|
69
69
|
i18n.get.dig("stage_dict", stage.text).is_a?(Hash) or
|
70
70
|
return hash_translate(bib, i18n.get["stage_dict"],
|
71
71
|
"./status/stage", lang)
|
72
|
-
|
73
|
-
|
72
|
+
bibdata_i18n_stage1(stage, type, lang, i18n)
|
73
|
+
end
|
74
|
+
|
75
|
+
def bibdata_i18n_stage1(stage, type, lang, i18n)
|
76
|
+
stagetype = i18n.get.dig("stage_dict", stage.text, type&.text) or return
|
77
|
+
h = i18n.get.dig("stage_draft_variants", stagetype) and h.each do |k, v|
|
78
|
+
tag_translate(stage, lang, v)
|
79
|
+
stage.next["type"] = k
|
80
|
+
end
|
81
|
+
tag_translate(stage, lang, stagetype)
|
74
82
|
end
|
75
83
|
end
|
76
84
|
end
|
@@ -0,0 +1,138 @@
|
|
1
|
+
module IsoDoc
|
2
|
+
module Iso
|
3
|
+
class PresentationXMLConvert < IsoDoc::PresentationXMLConvert
|
4
|
+
def comments(docxml)
|
5
|
+
warning_for_missing_metadata(docxml)
|
6
|
+
super
|
7
|
+
end
|
8
|
+
|
9
|
+
def warning_for_missing_metadata(docxml)
|
10
|
+
@meta.get[:unpublished] or return
|
11
|
+
ret = warning_for_missing_metadata_create(docxml)
|
12
|
+
ret.empty? and return
|
13
|
+
warning_for_missing_metadata_post(docxml, ret)
|
14
|
+
end
|
15
|
+
|
16
|
+
def warning_for_missing_metadata_create(docxml)
|
17
|
+
ret = ""
|
18
|
+
docxml.at(ns("//bibdata/ext//secretariat")) or
|
19
|
+
ret += "<p>Secretariat is missing.</p>"
|
20
|
+
docxml.at(ns("//bibdata/ext//editorialgroup")) or
|
21
|
+
ret += "<p>Editorial groups are missing.</p>"
|
22
|
+
docxml.at(ns("//bibdata/date[@type = 'published' or @type = 'issued' " \
|
23
|
+
"or @type = 'created']")) ||
|
24
|
+
docxml.at(ns("//bibdata/version/revision-date")) or
|
25
|
+
ret += "<p>Document date is missing.</p>"
|
26
|
+
ret
|
27
|
+
end
|
28
|
+
|
29
|
+
def warning_for_missing_metadata_post(docxml, ret)
|
30
|
+
from = docxml.at(ns("//sections/*/@id"))&.text or return
|
31
|
+
id = UUIDTools::UUID.random_create
|
32
|
+
ret = <<~REVIEW
|
33
|
+
<review date='#{Date.today}' reviewer='Metanorma' id='_#{id}' from='#{from}' to='#{from}'>
|
34
|
+
<p><strong>Metadata warnings:</strong></p> #{ret}
|
35
|
+
</review>
|
36
|
+
REVIEW
|
37
|
+
unless ins = docxml.at(ns("//review-container"))
|
38
|
+
docxml.root << "<review-container></review-container>"
|
39
|
+
ins = docxml.at(ns("//review-container"))
|
40
|
+
end
|
41
|
+
ins.add_first_child ret
|
42
|
+
end
|
43
|
+
|
44
|
+
# Redo Amendment annex titles as numbered
|
45
|
+
def annex(isoxml)
|
46
|
+
amd?(isoxml) and @suppressheadingnumbers = @oldsuppressheadingnumbers
|
47
|
+
super
|
48
|
+
amd?(isoxml) and @suppressheadingnumbers = true
|
49
|
+
end
|
50
|
+
|
51
|
+
# Redo Amendment annex subclause titles as numbered
|
52
|
+
def clause(docxml)
|
53
|
+
super
|
54
|
+
docxml.xpath(ns("//annex//appendix")).each { |f| clause1(f) }
|
55
|
+
amd?(docxml) or return
|
56
|
+
@suppressheadingnumbers = @oldsuppressheadingnumbers
|
57
|
+
docxml.xpath(ns("//annex//clause | //annex//appendix")).each do |f|
|
58
|
+
f.xpath(ns("./fmt-title | ./fmt-xref-label")).each(&:remove)
|
59
|
+
clause1(f)
|
60
|
+
end
|
61
|
+
@suppressheadingnumbers = true
|
62
|
+
end
|
63
|
+
|
64
|
+
def clause1(node)
|
65
|
+
!node.at(ns("./title")) &&
|
66
|
+
!%w(sections preface bibliography).include?(node.parent.name) and
|
67
|
+
node["inline-header"] = "true"
|
68
|
+
super
|
69
|
+
clause1_section_prefix(node)
|
70
|
+
end
|
71
|
+
|
72
|
+
def clause1_section_prefix(node)
|
73
|
+
if node["type"] == "section" &&
|
74
|
+
c = node.at(ns("./fmt-title//span[@class = 'fmt-caption-delim']"))
|
75
|
+
c.add_first_child(":")
|
76
|
+
t = node.at(ns("./fmt-title"))
|
77
|
+
# French l10n needs tab to be treated as space
|
78
|
+
t.replace @i18n.l10n(to_xml(t).gsub("<tab/>", "<tab> </tab>"))
|
79
|
+
.gsub(%r{<tab>[^<]+</tab>}, "<tab/>")
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
def toc_title(docxml)
|
84
|
+
%w(amendment technical-corrigendum).include?(@doctype) and return
|
85
|
+
super
|
86
|
+
end
|
87
|
+
|
88
|
+
def middle_title(docxml)
|
89
|
+
@meta.get[:doctitlemain].nil? || @meta.get[:doctitlemain].empty? and
|
90
|
+
return
|
91
|
+
s = docxml.at(ns("//sections")) or return
|
92
|
+
ret = "#{middle_title_main}#{middle_title_amd}"
|
93
|
+
s.add_first_child ret
|
94
|
+
end
|
95
|
+
|
96
|
+
def middle_title_main
|
97
|
+
ret = "<span class='boldtitle'>#{@meta.get[:doctitleintro]}"
|
98
|
+
@meta.get[:doctitleintro] && @meta.get[:doctitlemain] and
|
99
|
+
ret += " — "
|
100
|
+
ret += @meta.get[:doctitlemain]
|
101
|
+
@meta.get[:doctitlemain] && @meta.get[:doctitlepart] and
|
102
|
+
ret += " — "
|
103
|
+
ret += "</span>#{middle_title_part}"
|
104
|
+
"<p class='zzSTDTitle1'>#{ret}</p>"
|
105
|
+
end
|
106
|
+
|
107
|
+
def middle_title_part
|
108
|
+
ret = ""
|
109
|
+
if a = @meta.get[:doctitlepart]
|
110
|
+
b = @meta.get[:doctitlepartlabel] and
|
111
|
+
ret += "<span class='nonboldtitle'>#{b}:</span> "
|
112
|
+
ret += "<span class='boldtitle'>#{a}</span>"
|
113
|
+
end
|
114
|
+
ret
|
115
|
+
end
|
116
|
+
|
117
|
+
def middle_title_amd
|
118
|
+
ret = ""
|
119
|
+
if a = @meta.get[:doctitleamdlabel]
|
120
|
+
ret += "<p class='zzSTDTitle2'>#{a}"
|
121
|
+
a = @meta.get[:doctitleamd] and ret += ": #{a}"
|
122
|
+
ret += "</p>"
|
123
|
+
end
|
124
|
+
a = @meta.get[:doctitlecorrlabel] and
|
125
|
+
ret += "<p class='zzSTDTitle2'>#{a}</p>"
|
126
|
+
ret
|
127
|
+
end
|
128
|
+
|
129
|
+
def move_norm_ref_to_sections(docxml)
|
130
|
+
amd?(docxml) or super
|
131
|
+
end
|
132
|
+
|
133
|
+
def enable_indexsect
|
134
|
+
true
|
135
|
+
end
|
136
|
+
end
|
137
|
+
end
|
138
|
+
end
|
@@ -2,6 +2,7 @@ require_relative "init"
|
|
2
2
|
require "isodoc"
|
3
3
|
require_relative "presentation_xref"
|
4
4
|
require_relative "presentation_bibdata"
|
5
|
+
require_relative "presentation_section"
|
5
6
|
require_relative "presentation_terms"
|
6
7
|
require_relative "../../relaton/render/general"
|
7
8
|
|
@@ -22,39 +23,6 @@ module IsoDoc
|
|
22
23
|
super
|
23
24
|
end
|
24
25
|
|
25
|
-
def section(docxml)
|
26
|
-
super
|
27
|
-
warning_for_missing_metadata(docxml)
|
28
|
-
end
|
29
|
-
|
30
|
-
def warning_for_missing_metadata(docxml)
|
31
|
-
@meta.get[:unpublished] or return
|
32
|
-
ret = warning_for_missing_metadata_create(docxml)
|
33
|
-
ret.empty? and return
|
34
|
-
warning_for_missing_metadata_post(docxml, ret)
|
35
|
-
end
|
36
|
-
|
37
|
-
def warning_for_missing_metadata_create(docxml)
|
38
|
-
ret = ""
|
39
|
-
docxml.at(ns("//bibdata/ext//secretariat")) or
|
40
|
-
ret += "<p>Secretariat is missing.</p>"
|
41
|
-
docxml.at(ns("//bibdata/ext//editorialgroup")) or
|
42
|
-
ret += "<p>Editorial groups are missing.</p>"
|
43
|
-
docxml.at(ns("//bibdata/date[@type = 'published' or @type = 'issued' " \
|
44
|
-
"or @type = 'created']")) ||
|
45
|
-
docxml.at(ns("//bibdata/version/revision-date")) or
|
46
|
-
ret += "<p>Document date is missing.</p>"
|
47
|
-
ret
|
48
|
-
end
|
49
|
-
|
50
|
-
def warning_for_missing_metadata_post(docxml, ret)
|
51
|
-
id = UUIDTools::UUID.random_create
|
52
|
-
ret = "<review date='#{Date.today}' reviewer='Metanorma' id='_#{id}'>" \
|
53
|
-
"<p><strong>Metadata warnings:<strong></p> #{ret}</review>"
|
54
|
-
ins = docxml.at(ns("//sections//fmt-title")) or return
|
55
|
-
ins.add_first_child ret
|
56
|
-
end
|
57
|
-
|
58
26
|
def block(docxml)
|
59
27
|
amend docxml
|
60
28
|
figure docxml
|
@@ -79,26 +47,6 @@ module IsoDoc
|
|
79
47
|
note docxml
|
80
48
|
end
|
81
49
|
|
82
|
-
# Redo Amendment annex titles as numbered
|
83
|
-
def annex(isoxml)
|
84
|
-
amd?(isoxml) and @suppressheadingnumbers = @oldsuppressheadingnumbers
|
85
|
-
super
|
86
|
-
amd?(isoxml) and @suppressheadingnumbers = true
|
87
|
-
end
|
88
|
-
|
89
|
-
# Redo Amendment annex subclause titles as numbered
|
90
|
-
def clause(docxml)
|
91
|
-
super
|
92
|
-
docxml.xpath(ns("//annex//appendix")).each { |f| clause1(f) }
|
93
|
-
amd?(docxml) or return
|
94
|
-
@suppressheadingnumbers = @oldsuppressheadingnumbers
|
95
|
-
docxml.xpath(ns("//annex//clause | //annex//appendix")).each do |f|
|
96
|
-
f.xpath(ns("./fmt-title | ./fmt-xref-label")).each(&:remove)
|
97
|
-
clause1(f)
|
98
|
-
end
|
99
|
-
@suppressheadingnumbers = true
|
100
|
-
end
|
101
|
-
|
102
50
|
def subfigure_delim
|
103
51
|
"<span class='fmt-label-delim'>)</span>"
|
104
52
|
end
|
@@ -123,35 +71,6 @@ module IsoDoc
|
|
123
71
|
end
|
124
72
|
end
|
125
73
|
|
126
|
-
def clause1(node)
|
127
|
-
!node.at(ns("./title")) &&
|
128
|
-
!%w(sections preface bibliography).include?(node.parent.name) and
|
129
|
-
node["inline-header"] = "true"
|
130
|
-
super
|
131
|
-
clause1_section_prefix(node)
|
132
|
-
end
|
133
|
-
|
134
|
-
def clause1_section_prefix(node)
|
135
|
-
if node["type"] == "section" &&
|
136
|
-
c = node.at(ns("./fmt-title//span[@class = 'fmt-caption-delim']"))
|
137
|
-
c.add_first_child(":")
|
138
|
-
t = node.at(ns("./fmt-title"))
|
139
|
-
# French l10n needs tab to be treated as space
|
140
|
-
t.replace @i18n.l10n(to_xml(t).gsub("<tab/>", "<tab> </tab>"))
|
141
|
-
.gsub(%r{<tab>[^<]+</tab>}, "<tab/>")
|
142
|
-
end
|
143
|
-
end
|
144
|
-
|
145
|
-
# def clause(docxml)
|
146
|
-
# docxml.xpath(ns("//clause[not(ancestor::annex)] | " \
|
147
|
-
# "//terms | //definitions | //references | " \
|
148
|
-
# "//preface/introduction[clause]")).each do |f|
|
149
|
-
# f.parent.name == "annex" &&
|
150
|
-
# @xrefs.klass.single_term_clause?(f.parent) and next
|
151
|
-
# clause1(f)
|
152
|
-
# end
|
153
|
-
# end
|
154
|
-
|
155
74
|
def admonition1(elem)
|
156
75
|
super
|
157
76
|
admonition_outside_clauses(elem)
|
@@ -209,7 +128,7 @@ module IsoDoc
|
|
209
128
|
if elem["class"] == "modspec"
|
210
129
|
if n = elem.at(ns(".//fmt-name"))
|
211
130
|
n.remove.name = "name"
|
212
|
-
|
131
|
+
elem.add_first_child(n)
|
213
132
|
end
|
214
133
|
elem.at(ns("./thead"))&.remove
|
215
134
|
super
|
@@ -241,56 +160,6 @@ module IsoDoc
|
|
241
160
|
super
|
242
161
|
end
|
243
162
|
|
244
|
-
def toc_title(docxml)
|
245
|
-
%w(amendment technical-corrigendum).include?(@doctype) and return
|
246
|
-
super
|
247
|
-
end
|
248
|
-
|
249
|
-
def middle_title(docxml)
|
250
|
-
@meta.get[:doctitlemain].nil? || @meta.get[:doctitlemain].empty? and
|
251
|
-
return
|
252
|
-
s = docxml.at(ns("//sections")) or return
|
253
|
-
ret = "#{middle_title_main}#{middle_title_amd}"
|
254
|
-
s.add_first_child ret
|
255
|
-
end
|
256
|
-
|
257
|
-
def middle_title_main
|
258
|
-
ret = "<span class='boldtitle'>#{@meta.get[:doctitleintro]}"
|
259
|
-
@meta.get[:doctitleintro] && @meta.get[:doctitlemain] and
|
260
|
-
ret += " — "
|
261
|
-
ret += @meta.get[:doctitlemain]
|
262
|
-
@meta.get[:doctitlemain] && @meta.get[:doctitlepart] and
|
263
|
-
ret += " — "
|
264
|
-
ret += "</span>#{middle_title_part}"
|
265
|
-
"<p class='zzSTDTitle1'>#{ret}</p>"
|
266
|
-
end
|
267
|
-
|
268
|
-
def middle_title_part
|
269
|
-
ret = ""
|
270
|
-
if a = @meta.get[:doctitlepart]
|
271
|
-
b = @meta.get[:doctitlepartlabel] and
|
272
|
-
ret += "<span class='nonboldtitle'>#{b}:</span> "
|
273
|
-
ret += "<span class='boldtitle'>#{a}</span>"
|
274
|
-
end
|
275
|
-
ret
|
276
|
-
end
|
277
|
-
|
278
|
-
def middle_title_amd
|
279
|
-
ret = ""
|
280
|
-
if a = @meta.get[:doctitleamdlabel]
|
281
|
-
ret += "<p class='zzSTDTitle2'>#{a}"
|
282
|
-
a = @meta.get[:doctitleamd] and ret += ": #{a}"
|
283
|
-
ret += "</p>"
|
284
|
-
end
|
285
|
-
a = @meta.get[:doctitlecorrlabel] and
|
286
|
-
ret += "<p class='zzSTDTitle2'>#{a}</p>"
|
287
|
-
ret
|
288
|
-
end
|
289
|
-
|
290
|
-
def move_norm_ref_to_sections(docxml)
|
291
|
-
amd?(docxml) or super
|
292
|
-
end
|
293
|
-
|
294
163
|
def twitter_cldr_localiser_symbols
|
295
164
|
{ group: " ", fraction_group: " ",
|
296
165
|
fraction_group_digits: 3 }
|
@@ -315,8 +184,14 @@ module IsoDoc
|
|
315
184
|
end
|
316
185
|
end
|
317
186
|
|
318
|
-
def
|
319
|
-
|
187
|
+
def fn_ref_label(fnote)
|
188
|
+
if fnote.ancestors("table, figure").empty? ||
|
189
|
+
!fnote.ancestors("name, fmt-name").empty?
|
190
|
+
"<sup>#{fn_label(fnote)}" \
|
191
|
+
"<span class='fmt-label-delim'>)</span></sup>"
|
192
|
+
else
|
193
|
+
super
|
194
|
+
end
|
320
195
|
end
|
321
196
|
|
322
197
|
include Init
|
@@ -21,9 +21,8 @@ module IsoDoc
|
|
21
21
|
end
|
22
22
|
|
23
23
|
def font_choice(options)
|
24
|
-
|
25
|
-
|
26
|
-
end
|
24
|
+
options[:script] == "Hans" and return '"Source Han Sans",serif'
|
25
|
+
'"Cambria",serif'
|
27
26
|
end
|
28
27
|
|
29
28
|
def default_fonts(options)
|
@@ -55,8 +54,7 @@ module IsoDoc
|
|
55
54
|
if @dis && use_dis?(input_filename, file)
|
56
55
|
swap_renderer(self, @dis, file, input_filename, debug)
|
57
56
|
@dis.convert(input_filename, file, debug, output_filename)
|
58
|
-
else
|
59
|
-
super
|
57
|
+
else super
|
60
58
|
end
|
61
59
|
end
|
62
60
|
|
@@ -90,17 +88,14 @@ module IsoDoc
|
|
90
88
|
|
91
89
|
def colophon_section(_isoxml, out)
|
92
90
|
stage = @meta.get[:stage_int]
|
93
|
-
|
94
|
-
|
91
|
+
!stage.nil? && stage < 60 and return
|
95
92
|
br(out, "left")
|
96
93
|
out.div class: "colophon" do |div|
|
97
94
|
end
|
98
95
|
end
|
99
96
|
|
100
97
|
def indexsect_section(isoxml, out)
|
101
|
-
isoxml.xpath(ns("//indexsect")).each
|
102
|
-
indexsect(i, out)
|
103
|
-
end
|
98
|
+
isoxml.xpath(ns("//indexsect")).each { |i| indexsect(i, out) }
|
104
99
|
end
|
105
100
|
|
106
101
|
def indexsect(elem, out)
|
@@ -131,11 +126,6 @@ module IsoDoc
|
|
131
126
|
TOC
|
132
127
|
end
|
133
128
|
|
134
|
-
def footnote_reference_format(link)
|
135
|
-
link.children =
|
136
|
-
"<span class='MsoFootnoteReference'>#{to_xml(link.children)}</span>)"
|
137
|
-
end
|
138
|
-
|
139
129
|
def bibliography_attrs
|
140
130
|
{ class: "BiblioTitle" }
|
141
131
|
end
|
@@ -249,6 +239,8 @@ module IsoDoc
|
|
249
239
|
node.xpath(ns("./source")).each { |n| parse(n, out) }
|
250
240
|
node.xpath(ns("./note[not(@type = 'units')]"))
|
251
241
|
.each { |n| parse(n, out) }
|
242
|
+
node.xpath(ns("./fmt-footnote-container/fmt-fn-body"))
|
243
|
+
.each { |n| parse(n, out) }
|
252
244
|
end
|
253
245
|
|
254
246
|
include BaseConvert
|
data/lib/isodoc/iso/xref.rb
CHANGED
@@ -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">
|
@@ -43,8 +43,8 @@ module Metanorma
|
|
43
43
|
|
44
44
|
TERM_CLAUSE =
|
45
45
|
"//sections/terms | " \
|
46
|
-
"//sections
|
47
|
-
"//sections//clause[
|
46
|
+
"//sections//terms[not(preceding-sibling::clause)] | " \
|
47
|
+
"//sections//clause[@type = 'terms'][not(descendant::definitions)] | " \
|
48
48
|
"//sections/clause[not(@type = 'terms')][not(descendant::definitions)]//terms".freeze
|
49
49
|
|
50
50
|
def sections_cleanup(xml)
|
@@ -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">
|
@@ -33,6 +33,15 @@
|
|
33
33
|
</zeroOrMore>
|
34
34
|
</element>
|
35
35
|
</define>
|
36
|
+
<define name="fn" combine="interleave">
|
37
|
+
<optional>
|
38
|
+
<attribute name="hiddenref">
|
39
|
+
<a:documentation>If true, number the footnote as normal, but suppress display of the footnote reference in the document body.
|
40
|
+
This is done if the footnote reference is already presented in some other form, e.g. within a figure image.</a:documentation>
|
41
|
+
<data type="boolean"/>
|
42
|
+
</attribute>
|
43
|
+
</optional>
|
44
|
+
</define>
|
36
45
|
<define name="index-primary">
|
37
46
|
<element name="primary">
|
38
47
|
<oneOrMore>
|
@@ -414,6 +423,21 @@ normative or informative references, some split references into sections organiz
|
|
414
423
|
</oneOrMore>
|
415
424
|
</choice>
|
416
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>
|
417
441
|
<define name="table-note">
|
418
442
|
<element name="note">
|
419
443
|
<ref name="OptionalId"/>
|
@@ -1263,6 +1287,11 @@ numbers</a:documentation>
|
|
1263
1287
|
<a:documentation>Colophon or postface material</a:documentation>
|
1264
1288
|
</ref>
|
1265
1289
|
</optional>
|
1290
|
+
<optional>
|
1291
|
+
<ref name="review-container">
|
1292
|
+
<a:documentation>Annotations to the document</a:documentation>
|
1293
|
+
</ref>
|
1294
|
+
</optional>
|
1266
1295
|
</element>
|
1267
1296
|
</define>
|
1268
1297
|
<define name="misccontainer">
|
@@ -1273,6 +1302,13 @@ numbers</a:documentation>
|
|
1273
1302
|
</oneOrMore>
|
1274
1303
|
</element>
|
1275
1304
|
</define>
|
1305
|
+
<define name="review-container">
|
1306
|
+
<element name="review-container">
|
1307
|
+
<oneOrMore>
|
1308
|
+
<ref name="review"/>
|
1309
|
+
</oneOrMore>
|
1310
|
+
</element>
|
1311
|
+
</define>
|
1276
1312
|
<define name="preface">
|
1277
1313
|
<element name="preface">
|
1278
1314
|
<oneOrMore>
|
@@ -63,14 +63,6 @@
|
|
63
63
|
</choice>
|
64
64
|
</element>
|
65
65
|
</define>
|
66
|
-
<define name="organization">
|
67
|
-
<element name="organization">
|
68
|
-
<choice>
|
69
|
-
<ref name="OrganizationType"/>
|
70
|
-
<ref name="IsoOrganizationType"/>
|
71
|
-
</choice>
|
72
|
-
</element>
|
73
|
-
</define>
|
74
66
|
<define name="DocumentType">
|
75
67
|
<choice>
|
76
68
|
<value>international-standard</value>
|
@@ -219,18 +211,4 @@
|
|
219
211
|
<text/>
|
220
212
|
</element>
|
221
213
|
</define>
|
222
|
-
<define name="IsoOrganizationType">
|
223
|
-
<optional>
|
224
|
-
<ref name="technical-committee"/>
|
225
|
-
</optional>
|
226
|
-
<optional>
|
227
|
-
<ref name="subcommittee"/>
|
228
|
-
</optional>
|
229
|
-
<optional>
|
230
|
-
<ref name="workgroup"/>
|
231
|
-
</optional>
|
232
|
-
<optional>
|
233
|
-
<ref name="secretariat"/>
|
234
|
-
</optional>
|
235
|
-
</define>
|
236
214
|
</grammar>
|
@@ -92,11 +92,11 @@ module Metanorma
|
|
92
92
|
|
93
93
|
def term_xrefs_validate1(xref, termids)
|
94
94
|
closest_id = xref.xpath("./ancestor::*[@id]")&.last or return
|
95
|
-
|
95
|
+
termids[xref["target"]] && !termids[closest_id["id"]] and
|
96
96
|
@log.add("Style", xref,
|
97
97
|
"only terms clauses can cross-reference terms clause " \
|
98
98
|
"(#{xref['target']})")
|
99
|
-
|
99
|
+
!termids[xref["target"]] && termids[closest_id["id"]] and
|
100
100
|
@log.add("Style", xref,
|
101
101
|
"non-terms clauses cannot cross-reference terms clause " \
|
102
102
|
"(#{xref['target']})")
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: metanorma-iso
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.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: 2025-03-
|
11
|
+
date: 2025-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: metanorma-standoc
|
@@ -352,6 +352,7 @@ files:
|
|
352
352
|
- lib/isodoc/iso/metadata.rb
|
353
353
|
- lib/isodoc/iso/pdf_convert.rb
|
354
354
|
- lib/isodoc/iso/presentation_bibdata.rb
|
355
|
+
- lib/isodoc/iso/presentation_section.rb
|
355
356
|
- lib/isodoc/iso/presentation_terms.rb
|
356
357
|
- lib/isodoc/iso/presentation_xml_convert.rb
|
357
358
|
- lib/isodoc/iso/presentation_xref.rb
|