metanorma-iso 3.0.2 → 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/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 +25 -0
- data/lib/isodoc/iso/iso.amendment.xsl +146 -36
- data/lib/isodoc/iso/iso.international-standard.xsl +146 -36
- 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 +1 -126
- data/lib/isodoc/iso/word_convert.rb +5 -16
- 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 +28 -1
- data/lib/metanorma/iso/validate.rb +2 -2
- data/lib/metanorma/iso/version.rb +1 -1
- metadata +3 -2
@@ -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,12 +126,6 @@ module IsoDoc
|
|
131
126
|
TOC
|
132
127
|
end
|
133
128
|
|
134
|
-
# KILL
|
135
|
-
def footnote_reference_format(link)
|
136
|
-
link.children =
|
137
|
-
"<span class='MsoFootnoteReference'>#{to_xml(link.children)}</span>)"
|
138
|
-
end
|
139
|
-
|
140
129
|
def bibliography_attrs
|
141
130
|
{ class: "BiblioTitle" }
|
142
131
|
end
|
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">
|
@@ -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>
|
@@ -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
|