metanorma-iso 2.8.7 → 2.8.8

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.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/lib/isodoc/iso/html/html_iso_titlepage.html +6 -0
  3. data/lib/isodoc/iso/html/word_iso_titlepage-dis.html +10 -0
  4. data/lib/isodoc/iso/html/word_iso_titlepage-prf.html +10 -0
  5. data/lib/isodoc/iso/html/word_iso_titlepage.html +10 -0
  6. data/lib/isodoc/iso/i18n-de.yaml +1 -0
  7. data/lib/isodoc/iso/i18n-en.yaml +3 -0
  8. data/lib/isodoc/iso/i18n-fr.yaml +3 -0
  9. data/lib/isodoc/iso/i18n-ru.yaml +3 -0
  10. data/lib/isodoc/iso/i18n-zh-Hans.yaml +1 -0
  11. data/lib/isodoc/iso/iso.amendment.xsl +717 -140
  12. data/lib/isodoc/iso/iso.international-standard.xsl +717 -140
  13. data/lib/isodoc/iso/metadata.rb +12 -0
  14. data/lib/metanorma/iso/base.rb +3 -3
  15. data/lib/metanorma/iso/biblio-standoc.rng +13 -0
  16. data/lib/metanorma/iso/biblio.rng +19 -12
  17. data/lib/metanorma/iso/cleanup.rb +1 -1
  18. data/lib/metanorma/iso/cleanup_biblio.rb +9 -7
  19. data/lib/metanorma/iso/converter.rb +1 -1
  20. data/lib/metanorma/iso/front.rb +19 -14
  21. data/lib/metanorma/iso/front_contributor.rb +1 -1
  22. data/lib/metanorma/iso/front_id.rb +7 -3
  23. data/lib/metanorma/iso/processor.rb +3 -5
  24. data/lib/metanorma/iso/relaton-iso.rng +2 -0
  25. data/lib/metanorma/iso/section.rb +1 -1
  26. data/lib/metanorma/iso/validate.rb +3 -2
  27. data/lib/metanorma/iso/validate_image.rb +1 -1
  28. data/lib/metanorma/iso/validate_list.rb +1 -1
  29. data/lib/metanorma/iso/validate_requirements.rb +1 -1
  30. data/lib/metanorma/iso/validate_section.rb +1 -1
  31. data/lib/metanorma/iso/validate_style.rb +1 -1
  32. data/lib/metanorma/iso/validate_title.rb +1 -1
  33. data/lib/metanorma/iso/version.rb +2 -2
  34. data/metanorma-iso.gemspec +2 -2
  35. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a1decc1f961cb0dcf05ae91afaaf5af40ad2d9d1efc0d5a2ba735a4b99588fc
4
- data.tar.gz: ea50bf0571dc8897676140515cb3525823f8000c49abe40b800c9735768136e1
3
+ metadata.gz: e3feba60243e28200db99f1d58d826226b0a6db5777abce47ae4342e75198d4d
4
+ data.tar.gz: 89fd5129e4a4eafdd1397e242346daf5ae24b80f62f8d63a4feb65c533878dcf
5
5
  SHA512:
6
- metadata.gz: 49415b45e7fc9272e220effbaaca8b115225a96602f8feaa377617072f698e3b2c55e45acdf5d898372601f3c35c3c4efe41b29728a42aa1255da2b854f3b633
7
- data.tar.gz: 68b815821be72ede1dad90453dbf1943394b73aaef47df340ad08dc56b422801b45d2095930b50d9f81a69deeea47edcc9c471a034f34c38daca28d6486eb220
6
+ metadata.gz: 75e8297afc70aa9a5ae95ef2bad3178cbb9193f4ba00dee94006a3cf596493500827a14d7e35fea021bd599167412ceede99bb7c5161ce0c5e569e112f9b2ff4
7
+ data.tar.gz: '09486f7131b7f2d520aa825b59554010637d6f618f52a8b8434bf0ae924665def9838c708fa89dd77336d3ed3b4bd24930ee663fe4a77a355354227783446ff0'
@@ -40,6 +40,9 @@
40
40
  {% if doctitleamdlabel %}
41
41
  <div class="doctitle-part">{{ doctitleamdlabel }}{% if doctitleamd %}: {{ doctitleamd }}{% endif %}</div>
42
42
  {% endif %}
43
+ {% if doctitleaddlabel %}
44
+ <div class="doctitle-part">{{ doctitleaddlabel }}{% if doctitleadd %}: {{ doctitleadd }}{% endif %}</div>
45
+ {% endif %}
43
46
  {% if doctitlecorrlabel %}
44
47
  <div class="doctitle-part">{{ doctitlecorrlabel }}</div>
45
48
  {% endif %}
@@ -55,6 +58,9 @@
55
58
  {% if docsubtitleamdlabel %}
56
59
  <div>{{ docsubtitleamdlabel }}{% if docsubtitleamd %}: {{ docsubtitleamd }}{% endif %}</div>
57
60
  {% endif %}
61
+ {% if docsubtitleaddlabel %}
62
+ <div>{{ docsubtitleaddlabel }}{% if docsubtitleadd %}: {{ docsubtitleadd }}{% endif %}</div>
63
+ {% endif %}
58
64
  {% if docsubtitlecorrlabel %}
59
65
  <div>{{ docsubtitlecorrlabel }}</div>
60
66
  {% endif %}
@@ -30,6 +30,10 @@
30
30
  <p class="zzCover"><b>{{ doctitleamdlabel }}</b></p>
31
31
  {% endif %}
32
32
 
33
+ {% if doctitleaddlabel %}
34
+ <p class="zzCover"><b>{{ doctitleaddlabel }}</b></p>
35
+ {% endif %}
36
+
33
37
  {% if doctitlecorrlabel %}
34
38
  <p class="zzCover"><b>{{ doctitlecorrlabel }}</b></p>
35
39
  {% endif %}
@@ -45,6 +49,9 @@
45
49
  {% if doctitleamdlabel %}
46
50
  <p class="zzCover"><b>{{ doctitleamdlabel }}{% if doctitleamd %}: {{ doctitleamd }}{% endif %}</b></p>
47
51
  {% endif %}
52
+ {% if doctitleaddlabel %}
53
+ <p class="zzCover"><b>{{ doctitleaddlabel }}{% if doctitleadd %}: {{ doctitleadd }}{% endif %}</b></p>
54
+ {% endif %}
48
55
  {% if doctitlecorrlabel %}
49
56
  <p class="zzCover"><b>{{ doctitlecorrlabel }}</b></p>
50
57
  {% endif %}
@@ -53,6 +60,9 @@
53
60
  {% if docsubtitleamdlabel %}
54
61
  <p class="zzCover" style='font-weight:normal;'><i>{{ docsubtitleamdlabel }}{% if docsubtitleamd %}: {{ docsubtitleamd }}{% endif %}</i></p>
55
62
  {% endif %}
63
+ {% if docsubtitleaddlabel %}
64
+ <p class="zzCover" style='font-weight:normal;'><i>{{ docsubtitleaddlabel }}{% if docsubtitleadd %}: {{ docsubtitleadd }}{% endif %}</i></p>
65
+ {% endif %}
56
66
  {% if docsubtitlecorrlabel %}
57
67
  <p class="zzCover" style='font-weight:normal;'><i>{{ docsubtitlecorrlabel }}</i></p>
58
68
  {% endif %}
@@ -24,6 +24,10 @@
24
24
  <p class="zzCover"><b>{{ doctitleamdlabel }}</b></p>
25
25
  {% endif %}
26
26
 
27
+ {% if doctitleaddlabel %}
28
+ <p class="zzCover"><b>{{ doctitleaddlabel }}</b></p>
29
+ {% endif %}
30
+
27
31
  {% if doctitlecorrlabel %}
28
32
  <p class="zzCover"><b>{{ doctitlecorrlabel }}</b></p>
29
33
  {% endif %}
@@ -39,6 +43,9 @@
39
43
  {% if doctitleamdlabel %}
40
44
  <p class="zzCover"><b>{{ doctitleamdlabel }}{% if doctitleamd %}: {{ doctitleamd }}{% endif %}</b></p>
41
45
  {% endif %}
46
+ {% if doctitleaddlabel %}
47
+ <p class="zzCover"><b>{{ doctitleaddlabel }}{% if doctitleadd %}: {{ doctitleadd }}{% endif %}</b></p>
48
+ {% endif %}
42
49
  {% if doctitlecorrlabel %}
43
50
  <p class="zzCover"><b>{{ doctitlecorrlabel }}</b></p>
44
51
  {% endif %}
@@ -48,6 +55,9 @@
48
55
  {% if docsubtitleamdlabel %}
49
56
  <p class="zzCover" style='font-weight:normal;'><i>{{ docsubtitleamdlabel }}{% if docsubtitleamd %}: {{ docsubtitleamd }}{% endif %}</i></p>
50
57
  {% endif %}
58
+ {% if docsubtitleaddlabel %}
59
+ <p class="zzCover" style='font-weight:normal;'><i>{{ docsubtitleaddlabel }}{% if docsubtitleadd %}: {{ docsubtitleadd }}{% endif %}</i></p>
60
+ {% endif %}
51
61
  {% if docsubtitlecorrlabel %}
52
62
  <p class="zzCover" style='font-weight:normal;'><i>{{ docsubtitlecorrlabel }}</i></p>
53
63
  {% endif %}
@@ -18,6 +18,10 @@ style='mso-bidi-font-weight:normal'><span lang="EN-GB" style='font-size:14.0pt'>
18
18
  <p class="MsoNormal" align="right" style='text-align:right'><b>{{ doctitleamdlabel }}</b></p>
19
19
  {% endif %}
20
20
 
21
+ {% if doctitleaddlabel %}
22
+ <p class="MsoNormal" align="right" style='text-align:right'><b>{{ doctitleaddlabel }}</b></p>
23
+ {% endif %}
24
+
21
25
  {% if doctitlecorrlabel %}
22
26
  <p class="MsoNormal" align="right" style='text-align:right'><b>{{ doctitlecorrlabel }}</b></p>
23
27
  {% endif %}
@@ -51,6 +55,9 @@ style='mso-no-proof:yes'>{{ editorialgroup }}</span></p>
51
55
  {% if doctitleamdlabel %}
52
56
  <p class="MsoNormal" style='text-align:left;line-height:18.0pt;margin-bottom:0.0pt;margin-top:6.0pt;font-size:16.0pt'>{{ doctitleamdlabel }}{% if doctitleamd %}: {{ doctitleamd }}{% endif %}</p>
53
57
  {% endif %}
58
+ {% if doctitleaddlabel %}
59
+ <p class="MsoNormal" style='text-align:left;line-height:18.0pt;margin-bottom:0.0pt;margin-top:6.0pt;font-size:16.0pt'>{{ doctitleaddlabel }}{% if doctitleadd %}: {{ doctitleadd }}{% endif %}</p>
60
+ {% endif %}
54
61
  {% if doctitlecorrlabel %}
55
62
  <p class="MsoNormal" style='text-align:left;line-height:18.0pt;margin-bottom:0.0pt;margin-top:6.0pt;font-size:16.0pt'>{{ doctitlecorrlabel }}</p>
56
63
  {% endif %}
@@ -68,6 +75,9 @@ style='mso-no-proof:yes'>{{ editorialgroup }}</span></p>
68
75
  {% if docsubtitleamdlabel %}
69
76
  <p class="MsoNormal" style='text-align:left;line-height:18.0pt;margin-bottom:0.0pt;margin-top:6.0pt;font-size:16.0pt'>{{ docsubtitleamdlabel }}{% if docsubtitleamd %}: {{ docsubtitleamd }}{% endif %}</p>
70
77
  {% endif %}
78
+ {% if docsubtitleaddlabel %}
79
+ <p class="MsoNormal" style='text-align:left;line-height:18.0pt;margin-bottom:0.0pt;margin-top:6.0pt;font-size:16.0pt'>{{ docsubtitleaddlabel }}{% if docsubtitleadd %}: {{ docsubtitleadd }}{% endif %}</p>
80
+ {% endif %}
71
81
  {% if docsubtitlecorrlabel %}
72
82
  <p class="MsoNormal" style='text-align:left;line-height:18.0pt;margin-bottom:0.0pt;margin-top:6.0pt;font-size:16.0pt'>{{ docsubtitlecorrlabel }}</p>
73
83
  {% endif %}
@@ -39,6 +39,7 @@ doctype_dict:
39
39
  international-workshop-agreement: Internationales Workshop-Vereinbarung
40
40
  guide: Leitfaden
41
41
  amendment: Änderung
42
+ addendum: Nachtrag
42
43
  technical-corrigendum: Technische Berichtigung
43
44
  directive: Richtlinie
44
45
  committee-document: Ausschussdokument
@@ -34,6 +34,8 @@ multiple_and: "%1 and %2"
34
34
  multiple_or: "%1 or %2"
35
35
  classification-UDC: UDC
36
36
  website: website
37
+ formerly_id: "(formerly %)"
38
+ was_developed_by: "%1 was developed by %2"
37
39
  doctype_dict:
38
40
  international-standard: International Standard
39
41
  technical-specification: Technical Specification
@@ -42,6 +44,7 @@ doctype_dict:
42
44
  international-workshop-agreement: International Workshop Agreement
43
45
  guide: Guide
44
46
  amendment: Amendment
47
+ addendum: Addendum
45
48
  technical-corrigendum: Technical Corrigendum
46
49
  directive: Directive
47
50
  committee-document: Committee Document
@@ -31,6 +31,8 @@ voting_terminates_on: Le vote se termine le
31
31
  corrected_version: Version corrigée
32
32
  fast-track-procedure: Procédure accélérée
33
33
  classification-UDC: CDU
34
+ formerly_id: "(précédemment %)"
35
+ was_developed_by: "%1 a été élaboré par %2"
34
36
  website: site web
35
37
  doctype_dict:
36
38
  international-standard: Norme internationale
@@ -40,6 +42,7 @@ doctype_dict:
40
42
  international-workshop-agreement: Accord internationale d’atelier
41
43
  guide: Guide
42
44
  amendment: Amendement
45
+ amendment: Additif
43
46
  technical-corrigendum: Rectificatif technique
44
47
  directive: Directive
45
48
  committee-document: Document du comité
@@ -31,6 +31,8 @@ voting_terminates_on: Голосование заканчивается в
31
31
  corrected_version: Исправленная версия
32
32
  fast-track-procedure: Ускоренная процедура
33
33
  classification-UDC: УДК
34
+ formerly_id: "(прежде обозначенное %)"
35
+ was_developed_by: "%1 было разработано %2"
34
36
  website: веб-сайт
35
37
  doctype_dict:
36
38
  international-standard: Международный Стандарт
@@ -40,6 +42,7 @@ doctype_dict:
40
42
  international-workshop-agreement: Соглашение Международного Семинара
41
43
  guide: Руководство
42
44
  amendment: Поправка
45
+ addendum: Дополнение
43
46
  technical-corrigendum: Техническое Исправление
44
47
  directive: Директива
45
48
  committee-document: Документ комитета
@@ -33,6 +33,7 @@ doctype_dict:
33
33
  international-workshop-agreement: 国际研讨会协议
34
34
  guide: 指南
35
35
  amendment: 修正
36
+ addendum: 附录
36
37
  technical-corrigendum: 技术勘误
37
38
  directive: 指令
38
39
  committee-document: 委员会文件