metanorma-itu 1.2.15 → 1.3.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -0
  3. data/.rubocop.yml +7 -1
  4. data/lib/asciidoctor/itu/biblio.rng +5 -6
  5. data/lib/asciidoctor/itu/cleanup.rb +9 -6
  6. data/lib/asciidoctor/itu/converter.rb +31 -27
  7. data/lib/asciidoctor/itu/front.rb +35 -23
  8. data/lib/asciidoctor/itu/isodoc.rng +305 -4
  9. data/lib/asciidoctor/itu/itu.rng +0 -30
  10. data/lib/isodoc/itu/base_convert.rb +25 -37
  11. data/lib/isodoc/itu/html/_coverpage.css +7 -0
  12. data/lib/isodoc/itu/html/header.html +8 -8
  13. data/lib/isodoc/itu/html/htmlstyle.css +14 -7
  14. data/lib/isodoc/itu/html/htmlstyle.scss +0 -9
  15. data/lib/isodoc/itu/html/itu.css +0 -7
  16. data/lib/isodoc/itu/html/itu.scss +0 -7
  17. data/lib/isodoc/itu/html_convert.rb +0 -1
  18. data/lib/isodoc/itu/i18n-ar.yaml +87 -0
  19. data/lib/isodoc/itu/i18n-de.yaml +87 -0
  20. data/lib/isodoc/itu/i18n-en.yaml +1 -0
  21. data/lib/isodoc/itu/i18n-es.yaml +88 -0
  22. data/lib/isodoc/itu/i18n-fr.yaml +88 -0
  23. data/lib/isodoc/itu/i18n-ru.yaml +88 -0
  24. data/lib/isodoc/itu/i18n-zh-Hans.yaml +81 -0
  25. data/lib/isodoc/itu/i18n.rb +14 -4
  26. data/lib/isodoc/itu/itu.implementers-guide.xsl +776 -326
  27. data/lib/isodoc/itu/itu.in-force.xsl +776 -326
  28. data/lib/isodoc/itu/itu.recommendation-annex.xsl +776 -326
  29. data/lib/isodoc/itu/itu.recommendation-supplement.xsl +776 -326
  30. data/lib/isodoc/itu/itu.recommendation.xsl +776 -326
  31. data/lib/isodoc/itu/itu.resolution.xsl +776 -326
  32. data/lib/isodoc/itu/itu.technical-paper.xsl +776 -326
  33. data/lib/isodoc/itu/itu.technical-report.xsl +776 -326
  34. data/lib/isodoc/itu/metadata.rb +3 -3
  35. data/lib/isodoc/itu/presentation_xml_convert.rb +1 -1
  36. data/lib/isodoc/itu/xref.rb +1 -2
  37. data/lib/metanorma/itu/version.rb +1 -1
  38. data/metanorma-itu.gemspec +5 -5
  39. metadata +36 -31
  40. data/lib/asciidoctor/itu/macros.rb +0 -27
@@ -234,36 +234,6 @@
234
234
  <text/>
235
235
  </element>
236
236
  </define>
237
- <define name="TextElement" combine="choice">
238
- <choice>
239
- <ref name="add"/>
240
- <ref name="del"/>
241
- </choice>
242
- </define>
243
- <define name="add">
244
- <element name="add">
245
- <choice>
246
- <ref name="PureTextElement"/>
247
- <ref name="eref"/>
248
- <ref name="stem"/>
249
- <ref name="keyword"/>
250
- <ref name="xref"/>
251
- <ref name="hyperlink"/>
252
- </choice>
253
- </element>
254
- </define>
255
- <define name="del">
256
- <element name="del">
257
- <choice>
258
- <ref name="PureTextElement"/>
259
- <ref name="eref"/>
260
- <ref name="stem"/>
261
- <ref name="keyword"/>
262
- <ref name="xref"/>
263
- <ref name="hyperlink"/>
264
- </choice>
265
- </element>
266
- </define>
267
237
  <define name="ipnoticereceived">
268
238
  <element name="ip-notice-received">
269
239
  <data type="boolean"/>
@@ -1,9 +1,9 @@
1
1
  require "isodoc"
2
2
  require "fileutils"
3
- require_relative "./ref.rb"
4
- require_relative "./xref.rb"
5
- require_relative "./terms.rb"
6
- require_relative "./cleanup.rb"
3
+ require_relative "./ref"
4
+ require_relative "./xref"
5
+ require_relative "./terms"
6
+ require_relative "./cleanup"
7
7
 
8
8
  module IsoDoc
9
9
  module ITU
@@ -14,6 +14,7 @@ module IsoDoc
14
14
  def preface(isoxml, out)
15
15
  isoxml.xpath(ns(FRONT_CLAUSE)).each do |c|
16
16
  next unless is_clause?(c.name)
17
+
17
18
  title = c&.at(ns("./title"))
18
19
  out.div **attr_code(clause_attrs(c)) do |s|
19
20
  clause_name(nil, title, s, class: "IntroTitle")
@@ -34,12 +35,14 @@ module IsoDoc
34
35
 
35
36
  def para_class(node)
36
37
  return "supertitle" if node["class"] == "supertitle"
38
+
37
39
  super
38
40
  end
39
41
 
40
42
  def ol_depth(node)
41
- return super unless node["class"] == "steps" or
43
+ return super unless node["class"] == "steps" ||
42
44
  node.at(".//ancestor::xmlns:ol[@class = 'steps']")
45
+
43
46
  depth = node.ancestors("ul, ol").size + 1
44
47
  type = :arabic
45
48
  type = :alphabet if [2, 7].include? depth
@@ -54,19 +57,22 @@ module IsoDoc
54
57
  div.h1 **{ class: r_a ? "RecommendationAnnex" : "Annex" } do |t|
55
58
  name&.children&.each { |c2| parse(c2, t) }
56
59
  end
57
- annex_obligation_subtitle(annex, div) unless @meta.get[:doctype_original] == "resolution"
60
+ @meta.get[:doctype_original] == "resolution" or
61
+ annex_obligation_subtitle(annex, div)
58
62
  end
59
63
 
60
64
  def annex_obligation_subtitle(annex, div)
61
65
  info = annex["obligation"] == "informative"
62
- div.p **{class: "annex_obligation" } do |p|
63
- p << (info ? @i18n.inform_annex : @i18n.norm_annex).sub(/%/, @meta.get[:doctype] || "")
66
+ div.p **{ class: "annex_obligation" } do |p|
67
+ p << (info ? @i18n.inform_annex : @i18n.norm_annex)
68
+ .sub(/%/, @meta.get[:doctype] || "")
64
69
  end
65
70
  end
66
71
 
67
72
  def annex(isoxml, out)
68
73
  isoxml.xpath(ns("//annex")).each do |c|
69
- @meta.get[:doctype_original] == "recommendation-annex" or page_break(out)
74
+ @meta.get[:doctype_original] == "recommendation-annex" or
75
+ page_break(out)
70
76
  out.div **attr_code(id: c["id"], class: "Section3") do |s|
71
77
  annex_name(c, nil, s) unless c.at(ns("./title"))
72
78
  c.elements.each do |c1|
@@ -106,7 +112,8 @@ module IsoDoc
106
112
  out.p(**{ align: "center", style: "text-align:center;" }) do |p|
107
113
  p.i do |i|
108
114
  i << "("
109
- isoxml.at(ns("//bibdata/title[@type = 'resolution-placedate']")).children.each { |n| parse(n, i) }
115
+ isoxml.at(ns("//bibdata/title[@type = 'resolution-placedate']"))
116
+ .children.each { |n| parse(n, i) }
110
117
  i << ")"
111
118
  end
112
119
  isoxml.xpath(ns("//note[@type = 'title-footnote']")).each do |f|
@@ -117,7 +124,7 @@ module IsoDoc
117
124
 
118
125
  def middle_title_recommendation(isoxml, out)
119
126
  out.p(**{ class: "zzSTDTitle1" }) do |p|
120
- id = @meta.get[:docnumber] and p << "#{@meta.get[:doctype]} #{id}"
127
+ id = @meta.get[:docnumber] and p << "#{@meta.get[:doctype]} #{id}"
121
128
  end
122
129
  out.p(**{ class: "zzSTDTitle2" }) do |p|
123
130
  p << @meta.get[:doctitle]
@@ -129,27 +136,6 @@ module IsoDoc
129
136
  out.p(**{ class: "zzSTDTitle3" }) { |p| p << s }
130
137
  end
131
138
 
132
- def add_parse(node, out)
133
- out.span **{class: "addition"} do |e|
134
- node.children.each { |n| parse(n, e) }
135
- end
136
- end
137
-
138
- def del_parse(node, out)
139
- out.span **{class: "deletion"} do |e|
140
- node.children.each { |n| parse(n, e) }
141
- end
142
- end
143
-
144
- def error_parse(node, out)
145
- case node.name
146
- when "add" then add_parse(node, out)
147
- when "del" then del_parse(node, out)
148
- else
149
- super
150
- end
151
- end
152
-
153
139
  def note_p_parse(node, div)
154
140
  name = node&.at(ns("./name"))&.remove
155
141
  div.p do |p|
@@ -172,12 +158,13 @@ module IsoDoc
172
158
  node.children.each { |n| parse(n, div) }
173
159
  end
174
160
 
175
- def table_footnote_reference_format(a)
176
- a.content = a.content + ")"
161
+ def table_footnote_reference_format(node)
162
+ node.content += ")"
177
163
  end
178
164
 
179
165
  def note_parse(node, out)
180
166
  return if node["type"] == "title-footnote"
167
+
181
168
  super
182
169
  end
183
170
 
@@ -188,9 +175,9 @@ module IsoDoc
188
175
  end
189
176
  end
190
177
 
191
- def clause_core(c, out)
192
- out.div **attr_code(clause_attrs(c)) do |s|
193
- c.elements.each do |c1|
178
+ def clause_core(clause, out)
179
+ out.div **attr_code(clause_attrs(clause)) do |s|
180
+ clause.elements.each do |c1|
194
181
  if c1.name == "title" then clause_name(nil, c1, s, nil)
195
182
  else
196
183
  parse(c1, s)
@@ -201,6 +188,7 @@ module IsoDoc
201
188
 
202
189
  def scope(isoxml, out, num)
203
190
  return super unless @meta.get[:doctype_original] == "resolution"
191
+
204
192
  f = isoxml.at(ns("//clause[@type = 'scope']")) or return num
205
193
  clause_core(f, out)
206
194
  num + 1
@@ -108,6 +108,13 @@ a.FootnoteRef + a.FootnoteRef:before {
108
108
  content: ", ";
109
109
  vertical-align: super; }
110
110
 
111
+ .addition {
112
+ color: blue; }
113
+
114
+ .deletion {
115
+ color: red;
116
+ text-decoration: line-through; }
117
+
111
118
  #standard-band {
112
119
  background-color: #0AC442; }
113
120
 
@@ -115,7 +115,7 @@ MERGEFORMAT </span><span lang=EN-GB style='font-weight:normal'><span
115
115
  style='mso-element:field-separator'></span></span><![endif]--><span lang=FR-CH
116
116
  style='mso-ansi-language:FR-CH;font-weight:normal;mso-no-proof:yes'>ii</span><!--[if supportFields]><span
117
117
  lang=EN-GB style='font-weight:normal'><span style='mso-element:field-end'></span></span><![endif]--><span
118
- lang=FR-CH style='mso-ansi-language:FR-CH'><span style='mso-tab-count:1'>              </span>{% if doctype == "Resolution" %}{{ meeting_acronym }} &#x2013; {{ doctype }} {{ docnumeric}}{% else %}{% if doctype_abbreviated %}{{ doctype_abbreviated }} {% endif %}{% if docnumber_lang %}{{docnumber_lang}}{% else %}{{ docnumber }}{% endif %} {% if amendmentid %}{{ amendmentid }}{% endif %} {% if corrigendumid %}{{ corrigendumid }}{% endif %} ({{ pubdate_monthyear }}){% endif %}<o:p></o:p></span></p>
118
+ lang=FR-CH style='mso-ansi-language:FR-CH'><span style='mso-tab-count:1'>              </span>{% if doctype == "Resolution" %}{{ meeting_acronym }} &#x2013; {{ doctype }} {{ docnumeric}}{% else %}{% if doctype_abbreviated %}{{ doctype_abbreviated }} {% endif %}{% if docnumber_lang %}{{docnumber_lang}}{% else %}{{ docnumber }}{% endif %} {% if amendmentid %}{{ amendmentid }}{% endif %} {% if corrigendumid %}{{ corrigendumid }}{% endif %} ({{ pubdate_monthyear }}){% if unpublished %} &#x2013; {{ labels["prepub"] }}{% endif %}{% endif %}<o:p></o:p></span></p>
119
119
  </div>
120
120
 
121
121
  <div style='mso-element:footer' id=ef2l>
@@ -127,11 +127,11 @@ MERGEFORMAT </span><span lang=EN-GB style='font-weight:normal'><span
127
127
  style='mso-element:field-separator'></span></span><![endif]--><span lang=FR-CH
128
128
  style='mso-ansi-language:FR-CH;font-weight:normal;mso-no-proof:yes'>ii</span><!--[if supportFields]><span
129
129
  lang=EN-GB style='font-weight:normal'><span style='mso-element:field-end'></span></span><![endif]--><span
130
- lang=FR-CH style='mso-ansi-language:FR-CH'><span style='mso-tab-count:1'>              </span>{% if doctype == "Resolution" %}{{ meeting_acronym }} &#x2013; {{ doctype }} {{ docnumeric}}{% else %}{% if doctype_abbreviated %}{{ doctype_abbreviated }} {% endif %}{% if docnumber_lang %}{{docnumber_lang}}{% else %}{{ docnumber }}{% endif %} {% if amendmentid %}{{ amendmentid }}{% endif %} {% if corrigendumid %}{{ corrigendumid }}{% endif %} ({{ pubdate_monthyear }}){% endif %}</span></p>
130
+ lang=FR-CH style='mso-ansi-language:FR-CH'><span style='mso-tab-count:1'>              </span>{% if doctype == "Resolution" %}{{ meeting_acronym }} &#x2013; {{ doctype }} {{ docnumeric}}{% else %}{% if doctype_abbreviated %}{{ doctype_abbreviated }} {% endif %}{% if docnumber_lang %}{{docnumber_lang}}{% else %}{{ docnumber }}{% endif %} {% if amendmentid %}{{ amendmentid }}{% endif %} {% if corrigendumid %}{{ corrigendumid }}{% endif %} ({{ pubdate_monthyear }}){% if unpublished %} &#x2013; {{ labels["prepub"] }}{% endif %}{% endif %}</span></p>
131
131
  </div>
132
132
 
133
133
  <div style='mso-element:footer' id=f2>
134
- <p class=FooterQP style='line-height:12.0pt'><span lang=EN-GB><span style='mso-tab-count:2'>                                                                                                       </span>{% if doctype == "Resolution" %}{{ meeting_acronym }} &#x2013; {{ doctype }} {{ docnumeric}}{% else %}{% if doctype_abbreviated %}{{ doctype_abbreviated }} {% endif %}{% if docnumber_lang %}{{docnumber_lang}}{% else %}{{ docnumber }}{% endif %} {% if amendmentid %}{{ amendmentid }}{% endif %} {% if corrigendumid %}{{ corrigendumid }}{% endif %} ({{ pubdate_monthyear }}){% endif %}
134
+ <p class=FooterQP style='line-height:12.0pt'><span lang=EN-GB><span style='mso-tab-count:2'>                                                                                                       </span>{% if doctype == "Resolution" %}{{ meeting_acronym }} &#x2013; {{ doctype }} {{ docnumeric}}{% else %}{% if doctype_abbreviated %}{{ doctype_abbreviated }} {% endif %}{% if docnumber_lang %}{{docnumber_lang}}{% else %}{{ docnumber }}{% endif %} {% if amendmentid %}{{ amendmentid }}{% endif %} {% if corrigendumid %}{{ corrigendumid }}{% endif %} ({{ pubdate_monthyear }}){% if unpublished %} &#x2013; {{ labels["prepub"] }}{% endif %}{% endif %}
135
135
  <span style='mso-tab-count:1'>             </span></span><!--[if supportFields]><span
136
136
  lang=EN-GB style='font-weight:normal'><span style='mso-element:field-begin'></span>
137
137
  PAGE<span style='mso-spacerun:yes'>  </span>\* MERGEFORMAT <span
@@ -142,7 +142,7 @@ lang=EN-GB style='font-weight:normal'><o:p></o:p></span></p>
142
142
  </div>
143
143
 
144
144
  <div style='mso-element:footer' id=f2l>
145
- <p class=FooterQPLandscape style='line-height:12.0pt'><span lang=EN-GB><span style='mso-tab-count:2'>                                                                                                       </span>{% if doctype == "Resolution" %}{{ meeting_acronym }} &#x2013; {{ doctype }} {{ docnumeric}}{% else %}{% if doctype_abbreviated %}{{ doctype_abbreviated }} {% endif %}{% if docnumber_lang %}{{docnumber_lang}}{% else %}{{ docnumber }}{% endif %} {% if amendmentid %}{{ amendmentid }}{% endif %} {% if corrigendumid %}{{ corrigendumid }}{% endif %} ({{ pubdate_monthyear }}){% endif %}
145
+ <p class=FooterQPLandscape style='line-height:12.0pt'><span lang=EN-GB><span style='mso-tab-count:2'>                                                                                                       </span>{% if doctype == "Resolution" %}{{ meeting_acronym }} &#x2013; {{ doctype }} {{ docnumeric}}{% else %}{% if doctype_abbreviated %}{{ doctype_abbreviated }} {% endif %}{% if docnumber_lang %}{{docnumber_lang}}{% else %}{{ docnumber }}{% endif %} {% if amendmentid %}{{ amendmentid }}{% endif %} {% if corrigendumid %}{{ corrigendumid }}{% endif %} ({{ pubdate_monthyear }}){% if unpublished %} &#x2013; {{ labels["prepub"] }}{% endif %}{% endif %}
146
146
  <span style='mso-tab-count:1'>             </span></span><!--[if supportFields]><span
147
147
  lang=EN-GB style='font-weight:normal'><span style='mso-element:field-begin'></span>
148
148
  PAGE<span style='mso-spacerun:yes'>  </span>\* MERGEFORMAT <span
@@ -161,7 +161,7 @@ MERGEFORMAT </span><span lang=EN-GB style='font-weight:normal'><span
161
161
  style='mso-element:field-separator'></span></span><![endif]--><span lang=FR-CH
162
162
  style='mso-ansi-language:FR-CH;font-weight:normal;mso-no-proof:yes'>ii</span><!--[if supportFields]><span
163
163
  lang=EN-GB style='font-weight:normal'><span style='mso-element:field-end'></span></span><![endif]--><span
164
- lang=FR-CH style='mso-ansi-language:FR-CH'><span style='mso-tab-count:1'>              </span>{% if doctype == "Resolution" %}{{ meeting_acronym }} &#x2013; {{ doctype }} {{ docnumeric}}{% else %}{% if doctype_abbreviated %}{{ doctype_abbreviated }} {% endif %}{% if docnumber_lang %}{{docnumber_lang}}{% else %}{{ docnumber }}{% endif %} {% if amendmentid %}{{ amendmentid }}{% endif %} {% if corrigendumid %}{{ corrigendumid }}{% endif %} ({{ pubdate_monthyear }}){% endif %}</span></p>
164
+ lang=FR-CH style='mso-ansi-language:FR-CH'><span style='mso-tab-count:1'>              </span>{% if doctype == "Resolution" %}{{ meeting_acronym }} &#x2013; {{ doctype }} {{ docnumeric}}{% else %}{% if doctype_abbreviated %}{{ doctype_abbreviated }} {% endif %}{% if docnumber_lang %}{{docnumber_lang}}{% else %}{{ docnumber }}{% endif %} {% if amendmentid %}{{ amendmentid }}{% endif %} {% if corrigendumid %}{{ corrigendumid }}{% endif %} ({{ pubdate_monthyear }}){% if unpublished %} &#x2013; {{ labels["prepub"] }}{% endif %}{% endif %}</span></p>
165
165
  </div>
166
166
 
167
167
  <div style='mso-element:footer' id=ef3l>
@@ -173,11 +173,11 @@ MERGEFORMAT </span><span lang=EN-GB style='font-weight:normal'><span
173
173
  style='mso-element:field-separator'></span></span><![endif]--><span lang=FR-CH
174
174
  style='mso-ansi-language:FR-CH;font-weight:normal;mso-no-proof:yes'>ii</span><!--[if supportFields]><span
175
175
  lang=EN-GB style='font-weight:normal'><span style='mso-element:field-end'></span></span><![endif]--><span
176
- lang=FR-CH style='mso-ansi-language:FR-CH'><span style='mso-tab-count:1'>              </span>{% if doctype == "Resolution" %}{{ meeting_acronym }} &#x2013; {{ doctype }} {{ docnumeric}}{% else %}{% if doctype_abbreviated %}{{ doctype_abbreviated }} {% endif %}{% if docnumber_lang %}{{docnumber_lang}}{% else %}{{ docnumber }}{% endif %} {% if amendmentid %}{{ amendmentid }}{% endif %} {% if corrigendumid %}{{ corrigendumid }}{% endif %} ({{ pubdate_monthyear }}){% endif %}</span></p>
176
+ lang=FR-CH style='mso-ansi-language:FR-CH'><span style='mso-tab-count:1'>              </span>{% if doctype == "Resolution" %}{{ meeting_acronym }} &#x2013; {{ doctype }} {{ docnumeric}}{% else %}{% if doctype_abbreviated %}{{ doctype_abbreviated }} {% endif %}{% if docnumber_lang %}{{docnumber_lang}}{% else %}{{ docnumber }}{% endif %} {% if amendmentid %}{{ amendmentid }}{% endif %} {% if corrigendumid %}{{ corrigendumid }}{% endif %} ({{ pubdate_monthyear }}){% if unpublished %} &#x2013; {{ labels["prepub"] }}{% endif %}{% endif %}</span></p>
177
177
  </div>
178
178
 
179
179
  <div style='mso-element:footer' id=f3>
180
- <p class=FooterQP style='line-height:12.0pt'><span lang=EN-GB><span style='mso-tab-count:2'>                                                                                                       </span>{% if doctype == "Resolution" %}{{ meeting_acronym }} &#x2013; {{ doctype }} {{ docnumeric}}{% else %}{% if doctype_abbreviated %}{{ doctype_abbreviated }} {% endif %}{% if docnumber_lang %}{{docnumber_lang}}{% else %}{{ docnumber }}{% endif %} {% if amendmentid %}{{ amendmentid }}{% endif %} {% if corrigendumid %}{{ corrigendumid }}{% endif %} ({{ pubdate_monthyear }}){% endif %}
180
+ <p class=FooterQP style='line-height:12.0pt'><span lang=EN-GB><span style='mso-tab-count:2'>                                                                                                       </span>{% if doctype == "Resolution" %}{{ meeting_acronym }} &#x2013; {{ doctype }} {{ docnumeric}}{% else %}{% if doctype_abbreviated %}{{ doctype_abbreviated }} {% endif %}{% if docnumber_lang %}{{docnumber_lang}}{% else %}{{ docnumber }}{% endif %} {% if amendmentid %}{{ amendmentid }}{% endif %} {% if corrigendumid %}{{ corrigendumid }}{% endif %} ({{ pubdate_monthyear }}){% if unpublished %} &#x2013; {{ labels["prepub"] }}{% endif %}{% endif %}
181
181
  <span style='mso-tab-count:1'>             </span></span><!--[if supportFields]><span
182
182
  lang=EN-GB style='font-weight:normal'><span style='mso-element:field-begin'></span>
183
183
  PAGE<span style='mso-spacerun:yes'>  </span>\* MERGEFORMAT <span
@@ -188,7 +188,7 @@ lang=EN-GB style='font-weight:normal'><o:p></o:p></span></p>
188
188
  </div>
189
189
 
190
190
  <div style='mso-element:footer' id=f3l>
191
- <p class=FooterQPLandscape style='line-height:12.0pt'><span lang=EN-GB><span style='mso-tab-count:2'>                                                                                                       </span>{% if doctype == "Resolution" %}{{ meeting_acronym }} &#x2013; {{ doctype }} {{ docnumeric}}{% else %}{% if doctype_abbreviated %}{{ doctype_abbreviated }} {% endif %}{% if docnumber_lang %}{{docnumber_lang}}{% else %}{{ docnumber }}{% endif %} {% if amendmentid %}{{ amendmentid }}{% endif %} {% if corrigendumid %}{{ corrigendumid }}{% endif %} ({{ pubdate_monthyear }}){% endif %}
191
+ <p class=FooterQPLandscape style='line-height:12.0pt'><span lang=EN-GB><span style='mso-tab-count:2'>                                                                                                       </span>{% if doctype == "Resolution" %}{{ meeting_acronym }} &#x2013; {{ doctype }} {{ docnumeric}}{% else %}{% if doctype_abbreviated %}{{ doctype_abbreviated }} {% endif %}{% if docnumber_lang %}{{docnumber_lang}}{% else %}{{ docnumber }}{% endif %} {% if amendmentid %}{{ amendmentid }}{% endif %} {% if corrigendumid %}{{ corrigendumid }}{% endif %} ({{ pubdate_monthyear }}){% if unpublished %} &#x2013; {{ labels["prepub"] }}{% endif %}{% endif %}
192
192
  <span style='mso-tab-count:1'>             </span></span><!--[if supportFields]><span
193
193
  lang=EN-GB style='font-weight:normal'><span style='mso-element:field-begin'></span>
194
194
  PAGE<span style='mso-spacerun:yes'>  </span>\* MERGEFORMAT <span
@@ -108,6 +108,13 @@ a.FootnoteRef + a.FootnoteRef:before {
108
108
  content: ", ";
109
109
  vertical-align: super; }
110
110
 
111
+ .addition {
112
+ color: blue; }
113
+
114
+ .deletion {
115
+ color: red;
116
+ text-decoration: line-through; }
117
+
111
118
  #recommendation-band {
112
119
  background-color: #a3d88f; }
113
120
 
@@ -338,6 +345,13 @@ a.FootnoteRef + a.FootnoteRef:before {
338
345
  content: ", ";
339
346
  vertical-align: super; }
340
347
 
348
+ .addition {
349
+ color: blue; }
350
+
351
+ .deletion {
352
+ color: red;
353
+ text-decoration: line-through; }
354
+
341
355
  #recommendation-band {
342
356
  background-color: #a3d88f; }
343
357
 
@@ -1158,13 +1172,6 @@ p {
1158
1172
  margin-top: 1em;
1159
1173
  margin-bottom: 1em; }
1160
1174
 
1161
- .addition {
1162
- color: blue; }
1163
-
1164
- .deletion {
1165
- color: red;
1166
- text-decoration: line-through; }
1167
-
1168
1175
  #myBtn {
1169
1176
  font-family: {{monospacefont}};
1170
1177
  font-variant-ligatures: none;
@@ -551,15 +551,6 @@ p {
551
551
  margin-bottom: 1em;
552
552
  }
553
553
 
554
- .addition {
555
- color: blue;
556
- }
557
-
558
- .deletion {
559
- color: red;
560
- text-decoration: line-through;
561
- }
562
-
563
554
  #myBtn {
564
555
  @include toTopBtn($color: white, $colorBg: #00539F);
565
556
 
@@ -887,13 +887,6 @@ p.draftwarningHdr {
887
887
  font-size: 16.0pt;
888
888
  font-style: italic; }
889
889
 
890
- span.addition {
891
- color: blue; }
892
-
893
- span.deletion {
894
- color: red;
895
- text-decoration: line-through; }
896
-
897
890
  @page {
898
891
  mso-page-border-surround-header: no;
899
892
  mso-page-border-surround-footer: no;
@@ -849,13 +849,6 @@ font-weight:bold;
849
849
  font-size:16.0pt;
850
850
  font-style:italic;
851
851
  }
852
- span.addition {
853
- color: blue;
854
- }
855
- span.deletion {
856
- color: red;
857
- text-decoration: line-through;
858
- }
859
852
 
860
853
  @page {
861
854
  mso-page-border-surround-header:no;
@@ -33,7 +33,6 @@ module IsoDoc
33
33
  htmlstylesheet: html_doc_path("htmlstyle.scss"),
34
34
  htmlcoverpage: html_doc_path("html_itu_titlepage.html"),
35
35
  htmlintropage: html_doc_path("html_itu_intro.html"),
36
- scripts: html_doc_path("scripts.html"),
37
36
  }
38
37
  end
39
38
 
@@ -0,0 +1,87 @@
1
+ termsdef: مصطلحات معرفة
2
+ termsdefsymbolsabbrev: تعريف
3
+ termsdefsymbols: تعريف
4
+ termsdefabbrev: تعريف
5
+ termnote: ملاحظة
6
+ normref: المراجع المعيارية
7
+ symbolsabbrev: اختصار
8
+ abbrev: اختصار
9
+ symbols: اختصار
10
+ conventions: الاصطلاحات
11
+ elsewhere_terms: >-
12
+ المصطلحات المعرَّفة في أماكن (وثائق) أخرى
13
+ here_terms: >-
14
+ المصطلحات المعرَّفة في هذه التوصية
15
+ norm_annex: (يشكل هذا الملحق جزءاً أساسياً من هذه التوصية)
16
+ inform_annex: (لا يشكل هذا التذييل جزءاً أساسياً من هذه التوصية)
17
+ formula: معادلة
18
+ inequality: عدم مساواة
19
+ clause: فقرة
20
+ section: قسم
21
+ annex_subclause: فقرة
22
+ in: في
23
+ to: إلى
24
+ where: حيث,
25
+ blankclause: This clause is intentionally left blank.
26
+ norm_with_refs_pref: تتضمن التوصيات التالية لقطاع تقييس الاتصالات وغيرها من المراجع أحكاماً تشكل من خلال الإشارة إليها في هذا النص جزءاً لا يتجزأ من هذه التوصية. وقدكانت جميع الطبعات المذكورة سارية الصلاحية في وقت النشر. ولماكانت جميع التوصيات والمراجع الأخرى تخضع للمراجعة، نحث جميع المستعملين لهذه التوصية على السعي إلى تطبيق أحدث طبعة للتوصيات والمراجع الواردة أدناه. وتُنشر بانتظام قائمة توصيات قطاع تقييس الاتصالات السارية الصلاحية. والإشارة إلى وثيقة في هذه التوصية لا يضفي على الوثيقة في حد ذاتها صفة التوصية.
27
+ internal_termsdef: مصطلحات معّرفة في هذه التوصية
28
+ external_termsdef: المصطلحات المعَّرفة في وثائق أخرى
29
+ term_def_boilerplate:
30
+ "تعّرف هذه التوصية المصطلحات التالية:"
31
+ internal_terms_boilerplate:
32
+ "تعّرف هذه التوصية المصطلحات التالية:"
33
+ external_terms_boilerplate:
34
+ "وتستخدم هذه التوصية المصطلح التالي المعّرف في أماكن أخرى:"
35
+ no_terms_boilerplate:
36
+ لا توجد.
37
+ symbols_boilerplate:
38
+ "تستخدم هذه التوصية المختصرات التالية:"
39
+ norm_empty_pref:
40
+ لا توجد.
41
+ clause_empty:
42
+ لا توجد.
43
+ amendment: تصويب
44
+ corrigendum: تصويب
45
+ table_of_contents: جدول المحتويات
46
+ page: الصفحة
47
+ placedate: "جنيف، %"
48
+ annex_to_itu_ob: ملحق بالنشرة التشغيلية للاتحاد
49
+ number_abbrev: رقم
50
+ annex_to_itu_ob_abbrev: ملحق بالنشرة التشغيلية للاتحاد رقم
51
+ international_telecommunication_union: الاتحاد الدولي للاتصالات
52
+ position_on: الوضع في
53
+ revision_abbreviation: المراجعة
54
+ tsb: TSB
55
+ br: BR
56
+ bdt: BDT
57
+ tsb_full: مكتب تقييس الاتصالات
58
+ br_full: مكتب الاتصالات الراديوية
59
+ bdt_full: مكتب تنمية الاتصالات
60
+ prepub: نسخة منشورة مسبقا
61
+ doctype_dict:
62
+ resolution: قرار
63
+ recommendation: توصية
64
+ recommendation-supplement: مكمل التوصية
65
+ recommendation-amendment: تعديل التوصية
66
+ recommendation-corrigendum: تصويب التوصية
67
+ recommendation-errata: أخطاء التوصية
68
+ recommendation-annex: ملحق التوصية
69
+ focus-group: الأفرقة المتخصصة
70
+ implementers-guide: دليل المنفذين
71
+ technical-paper: ورقة فنية
72
+ technical-report: تقرير فني
73
+ joint-itu-iso-iec: ITU/ISO/IEC مشترك
74
+ service-publication: منشور خدمي
75
+ doctype_abbrev:
76
+ recommendation: Rec.
77
+ recommendation-supplement: Rec.
78
+ recommendation-amendment: Rec.
79
+ recommendation-corrigendum: Rec.
80
+ recommendation-errata: Rec.
81
+ recommendation-annex: Rec.
82
+ focus-group: FG
83
+ implementers-guide: Imp.
84
+ technical-paper: TP
85
+ technical-report: TR
86
+ joint-itu-iso-iec: ITU/ISO/IEC
87
+ service-publication:
@@ -0,0 +1,87 @@
1
+ termsdef: Definitionen
2
+ termsdefsymbolsabbrev: Definitionen
3
+ termsdefsymbols: Definitionen
4
+ termsdefabbrev: Definitionen
5
+ termnote: HINWEIS %
6
+ normref: Referenzen
7
+ symbolsabbrev: Abkürzungen und Akronyme
8
+ abbrev: Abkürzungen und Akronyme
9
+ symbols: Abkürzungen und Akronyme
10
+ conventions: Konventionen
11
+ elsewhere_terms: "In dieser Empfehlung werden die folgenden, an anderer Stelle definierten Begriffe verwendet:"
12
+ here_terms: >-
13
+ "In dieser Empfehlung werden die folgenden definierten Begriffe verwendet:"
14
+ norm_annex: (Dieser Anhang ist ein integraler Bestandteil dieses %.)
15
+ inform_annex: (Dieser Anhang ist nicht Bestandteil dieses %.)
16
+ formula: Gleichung
17
+ inequality: Ungleichheit
18
+ clause: Klausel
19
+ section: Abschnitt
20
+ annex_subclause: Klausel
21
+ in: in
22
+ to: bis
23
+ where: "wobei:"
24
+ blankclause: Diese Klausel ist absichtlich leer gelassen
25
+ norm_with_refs_pref:
26
+ Die folgenden ITU-T-Empfehlungen und andere Verweise enthalten Bestimmungen, die durch Verweis in diesem Text Bestimmungen dieser Empfehlung darstellen. Zum Zeitpunkt der Veröffentlichung waren die angegebenen Bearbeitungen gültig. Alle Empfehlungen und sonstigen Verweise unterliegen einer Überarbeitung; die Benutzer dieser Empfehlung werden daher aufgefordert, die Möglichkeit der Anwendung der neuesten Ausgabe der unten aufgeführten Empfehlungen und sonstigen Verweise zu prüfen. Eine Liste der aktuell gültigen ITU-T-Empfehlungen wird regelmäßig veröffentlicht. Der Verweis auf ein Dokument innerhalb dieser Empfehlung verleiht ihm als eigenständiges Dokument nicht den Status einer Empfehlung.
27
+ internal_termsdef: In dieser Empfehlung definierte Begriffe
28
+ external_termsdef: An anderer Stelle definierte Begriffe
29
+ term_def_boilerplate:
30
+ "Diese Empfehlung definiert die folgenden Begriffe:"
31
+ internal_terms_boilerplate:
32
+ "Diese Empfehlung definiert die folgenden Begriffe:"
33
+ external_terms_boilerplate:
34
+ "In dieser Empfehlung werden die folgenden, an anderer Stelle definierten Begriffe verwendet:"
35
+ no_terms_boilerplate:
36
+ Keine.
37
+ symbols_boilerplate:
38
+ "In dieser Empfehlung werden die folgenden, an anderer Stelle definierten Begriffe verwendet:"
39
+ norm_empty_pref:
40
+ Keine.
41
+ clause_empty:
42
+ Keine.
43
+ amendment: Abänderung
44
+ corrigendum: Berichtigung
45
+ table_of_contents: Inhaltsverzeichnis
46
+ page: Seite
47
+ placedate: Genf, %
48
+ annex_to_itu_ob: Anhang zum ITU Operational Bulletin
49
+ number_abbrev: Nr.
50
+ annex_to_itu_ob_abbrev: Anhang zum ITU OB %
51
+ international_telecommunication_union: Internationale Fernmeldeunion
52
+ position_on: (Position auf %)
53
+ revision_abbreviation: Rev.
54
+ tsb: TSB
55
+ br: BR
56
+ bdt: BDT
57
+ tsb_full: Büro für Telekommunikations-<br/>Standardisierung<br/>der ITU
58
+ br_full: Büro für Funkkommunikation<br/>der ITU
59
+ bdt_full: Büro für Entwicklungen<br/>in der Telekommunikation<br/>der ITU
60
+ prepub: Vorveröffentlichte Version
61
+ doctype_dict:
62
+ resolution: Auflösung
63
+ recommendation: Empfehlung
64
+ recommendation-supplement: Empfehlungszusatz
65
+ recommendation-amendment: Empfehlungsänderung
66
+ recommendation-corrigendum: Empfehlungsberichtigung
67
+ recommendation-errata: Empfehlungserrata
68
+ recommendation-annex: Empfehlungsanhang
69
+ focus-group: Fokusgruppe
70
+ implementers-guide: Leitfaden für Implementierer
71
+ technical-paper: Technisches Papier
72
+ technical-report: Technischer Bericht
73
+ joint-itu-iso-iec: Gemeinsame ITU/ISO/IEC
74
+ service-publication: Service Veröffentlichung
75
+ doctype_abbrev:
76
+ recommendation: Empf.
77
+ recommendation-supplement: Empf.
78
+ recommendation-amendment: Empf.
79
+ recommendation-corrigendum: Empf.
80
+ recommendation-errata: Empf.
81
+ recommendation-annex: Empf.
82
+ focus-group: FG
83
+ implementers-guide: Imp.
84
+ technical-paper: TP
85
+ technical-report: TR
86
+ joint-itu-iso-iec: ITU/ISO/IEC
87
+ service-publication: