metanorma-itu 1.3.1 → 1.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ec972a8e77e6d6289ea5deeab70878100d83a19a1a6a50964641f7c5609a4c9e
4
- data.tar.gz: 226acd90020445ce770d718c91139664f000d314e1109886e591fcb31852fdfa
3
+ metadata.gz: be8a108bcea630f0b812a6c99fd6856768f7bb31441f2dcfe95f8ea69580e7e0
4
+ data.tar.gz: ef418557eb4ac1de9ee734564f211f553dae4846702da54cf529e2e7f6e31c67
5
5
  SHA512:
6
- metadata.gz: 4a2e037212cad45cb12f5f2ced99ddd6b6ef3f552c80c0159a2a3704d8055373033c17fc3146e677b569dd93964b45f1cd7aaf40b7e1bb8c99751c2abdacb36d
7
- data.tar.gz: 3c922fc248475914a45d560d1d2dfca5557bbdd2789d4a72fccd41601ba5305ac9dfd3f667ad66b890ad3e5448a21940f1548b0557b6182af9c0071ce892fed1
6
+ metadata.gz: 0d463ab638c7ceea4a7931ee659533ec5bd56dbdf9081b2043eb1ab2d697b95676dd0f61a812f23e024b60461d673de4e059dedf9a45ca104adb469077f35ed4
7
+ data.tar.gz: a03396267cf45da78de575a0fa12b7b94ecea9c81f45693bd5bb9e523e7dfb4f2e8ab0ebf9dbdcd63035412e1d7d05fd49f1be00127a1a80141b3b6f3c4c2a6b
data/.rubocop.yml CHANGED
@@ -10,5 +10,3 @@ AllCops:
10
10
  DisplayCopNames: false
11
11
  StyleGuideCopsOnly: false
12
12
  TargetRubyVersion: 2.4
13
- Rails:
14
- Enabled: true
@@ -48,14 +48,14 @@ module Asciidoctor
48
48
  end
49
49
 
50
50
  def outputs(node, ret)
51
- File.open(@filename + ".xml", "w:UTF-8") { |f| f.write(ret) }
52
- presentation_xml_converter(node).convert(@filename + ".xml")
53
- html_converter(node).convert(@filename + ".presentation.xml",
51
+ File.open("#{@filename}.xml", "w:UTF-8") { |f| f.write(ret) }
52
+ presentation_xml_converter(node).convert("#{@filename}.xml")
53
+ html_converter(node).convert("#{@filename}.presentation.xml",
54
54
  nil, false, "#{@filename}.html")
55
- doc_converter(node).convert(@filename + ".presentation.xml",
55
+ doc_converter(node).convert("#{@filename}.presentation.xml",
56
56
  nil, false, "#{@filename}.doc")
57
57
  node.attr("no-pdf") or
58
- pdf_converter(node)&.convert(@filename + ".presentation.xml",
58
+ pdf_converter(node)&.convert("#{@filename}.presentation.xml",
59
59
  nil, false, "#{@filename}.pdf")
60
60
  end
61
61
 
@@ -65,8 +65,8 @@ module Asciidoctor
65
65
  File.join(File.dirname(__FILE__), "itu.rng"))
66
66
  end
67
67
 
68
- def style(n, t)
69
- return
68
+ def style(_node, _text)
69
+ nil
70
70
  end
71
71
 
72
72
  def sectiontype_streamline(ret)
@@ -84,16 +84,16 @@ module Asciidoctor
84
84
  def sectiontype(node, level = true)
85
85
  ret = super
86
86
  hdr = sectiontype_streamline(node&.attr("heading")&.downcase)
87
- return nil if ret == "terms and definitions" &&
87
+ return nil if ret == "terms and definitions" &&
88
88
  hdr != "terms and definitions" && node.level > 1
89
- return nil if ret == "symbols and abbreviated terms" &&
89
+ return nil if ret == "symbols and abbreviated terms" &&
90
90
  hdr != "symbols and abbreviated terms" && node.level > 1
91
91
 
92
92
  ret
93
93
  end
94
94
 
95
95
  def term_def_subclause_parse(attrs, xml, node)
96
- case clausetype = sectiontype1(node)
96
+ case sectiontype1(node)
97
97
  when "terms defined in this recommendation"
98
98
  term_def_parse(attrs.merge(type: "internal"), xml, node, false)
99
99
  when "terms defined elsewhere"
@@ -106,11 +106,17 @@ module Asciidoctor
106
106
  def metadata_keywords(node, xml)
107
107
  return unless node.attr("keywords")
108
108
 
109
- node.attr("keywords").split(/,[ ]*/).sort.each_with_index do |kw, i|
110
- xml.keyword (i == 0 ? kw.capitalize : kw)
109
+ node.attr("keywords").split(/, */).sort.each_with_index do |kw, i|
110
+ xml.keyword (i.zero? ? strict_capitalize(kw) : kw)
111
111
  end
112
112
  end
113
113
 
114
+ def strict_capitalize(str)
115
+ letters = str.split("")
116
+ letters.first.upcase!
117
+ letters.join
118
+ end
119
+
114
120
  def clause_parse(attrs, xml, node)
115
121
  node.option?("unnumbered") and attrs[:unnumbered] = true
116
122
  case sectiontype1(node)
@@ -876,6 +876,18 @@
876
876
  </zeroOrMore>
877
877
  </element>
878
878
  </define>
879
+ <define name="pagebreak">
880
+ <element name="pagebreak">
881
+ <optional>
882
+ <attribute name="orientation">
883
+ <choice>
884
+ <value>landscape</value>
885
+ <value>portrait</value>
886
+ </choice>
887
+ </attribute>
888
+ </optional>
889
+ </element>
890
+ </define>
879
891
  </include>
880
892
  <!-- end overrides -->
881
893
  <define name="colgroup">
@@ -943,8 +955,170 @@
943
955
  <ref name="permission"/>
944
956
  <ref name="imagemap"/>
945
957
  <ref name="svgmap"/>
958
+ <ref name="inputform"/>
959
+ </choice>
960
+ </define>
961
+ <define name="inputform">
962
+ <element name="form">
963
+ <attribute name="id">
964
+ <data type="ID"/>
965
+ </attribute>
966
+ <attribute name="name"/>
967
+ <attribute name="action"/>
968
+ <zeroOrMore>
969
+ <choice>
970
+ <ref name="TextElement"/>
971
+ <ref name="FormInput"/>
972
+ </choice>
973
+ </zeroOrMore>
974
+ </element>
975
+ </define>
976
+ <define name="FormInput">
977
+ <choice>
978
+ <ref name="input"/>
979
+ <ref name="formlabel"/>
980
+ <ref name="select"/>
981
+ <ref name="textarea"/>
982
+ </choice>
983
+ </define>
984
+ <define name="InputType">
985
+ <choice>
986
+ <value>button</value>
987
+ <value>checkbox</value>
988
+ <value>date</value>
989
+ <value>file</value>
990
+ <value>password</value>
991
+ <value>radio</value>
992
+ <value>submit</value>
993
+ <value>text</value>
946
994
  </choice>
947
995
  </define>
996
+ <define name="input">
997
+ <element name="input">
998
+ <attribute name="type">
999
+ <ref name="InputType"/>
1000
+ </attribute>
1001
+ <optional>
1002
+ <attribute name="checked">
1003
+ <data type="boolean"/>
1004
+ </attribute>
1005
+ </optional>
1006
+ <optional>
1007
+ <attribute name="disabled">
1008
+ <data type="boolean"/>
1009
+ </attribute>
1010
+ </optional>
1011
+ <optional>
1012
+ <attribute name="readonly">
1013
+ <data type="boolean"/>
1014
+ </attribute>
1015
+ </optional>
1016
+ <optional>
1017
+ <attribute name="maxlength">
1018
+ <data type="int"/>
1019
+ </attribute>
1020
+ </optional>
1021
+ <optional>
1022
+ <attribute name="minlength">
1023
+ <data type="int"/>
1024
+ </attribute>
1025
+ </optional>
1026
+ <optional>
1027
+ <attribute name="name"/>
1028
+ </optional>
1029
+ <optional>
1030
+ <attribute name="value"/>
1031
+ </optional>
1032
+ <optional>
1033
+ <attribute name="id">
1034
+ <data type="ID"/>
1035
+ </attribute>
1036
+ </optional>
1037
+ </element>
1038
+ </define>
1039
+ <define name="formlabel">
1040
+ <element name="label">
1041
+ <attribute name="for">
1042
+ <data type="IDREF"/>
1043
+ </attribute>
1044
+ <zeroOrMore>
1045
+ <ref name="PureTextElement"/>
1046
+ </zeroOrMore>
1047
+ </element>
1048
+ </define>
1049
+ <define name="select">
1050
+ <element name="select">
1051
+ <optional>
1052
+ <attribute name="name"/>
1053
+ </optional>
1054
+ <optional>
1055
+ <attribute name="value"/>
1056
+ </optional>
1057
+ <optional>
1058
+ <attribute name="id">
1059
+ <data type="ID"/>
1060
+ </attribute>
1061
+ </optional>
1062
+ <optional>
1063
+ <attribute name="disabled">
1064
+ <data type="boolean"/>
1065
+ </attribute>
1066
+ </optional>
1067
+ <optional>
1068
+ <attribute name="multiple">
1069
+ <data type="boolean"/>
1070
+ </attribute>
1071
+ </optional>
1072
+ <optional>
1073
+ <attribute name="size">
1074
+ <data type="int"/>
1075
+ </attribute>
1076
+ </optional>
1077
+ <oneOrMore>
1078
+ <ref name="option"/>
1079
+ </oneOrMore>
1080
+ </element>
1081
+ </define>
1082
+ <define name="option">
1083
+ <element name="option">
1084
+ <optional>
1085
+ <attribute name="disabled">
1086
+ <data type="boolean"/>
1087
+ </attribute>
1088
+ </optional>
1089
+ <optional>
1090
+ <attribute name="value"/>
1091
+ </optional>
1092
+ <zeroOrMore>
1093
+ <ref name="PureTextElement"/>
1094
+ </zeroOrMore>
1095
+ </element>
1096
+ </define>
1097
+ <define name="textarea">
1098
+ <element name="textarea">
1099
+ <optional>
1100
+ <attribute name="name"/>
1101
+ </optional>
1102
+ <optional>
1103
+ <attribute name="value"/>
1104
+ </optional>
1105
+ <optional>
1106
+ <attribute name="id">
1107
+ <data type="ID"/>
1108
+ </attribute>
1109
+ </optional>
1110
+ <optional>
1111
+ <attribute name="rows">
1112
+ <data type="int"/>
1113
+ </attribute>
1114
+ </optional>
1115
+ <optional>
1116
+ <attribute name="cols">
1117
+ <data type="int"/>
1118
+ </attribute>
1119
+ </optional>
1120
+ </element>
1121
+ </define>
948
1122
  <define name="bibliography">
949
1123
  <element name="bibliography">
950
1124
  <oneOrMore>
@@ -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
@@ -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,88 @@
1
+ termsdef: Definitions
2
+ termsdefsymbolsabbrev: Definitions
3
+ termsdefsymbols: Definitions
4
+ termsdefabbrev: Definitions
5
+ termnote: NOTE %
6
+ normref: References
7
+ symbolsabbrev: Abbreviations and acronyms
8
+ abbrev: Abbreviations and acronyms
9
+ symbols: Abbreviations and acronyms
10
+ conventions: Conventions
11
+ elsewhere_terms: >-
12
+ This Recommendation uses the following terms defined elsewhere:
13
+ here_terms: >-
14
+ This Recommendation defines the following terms:
15
+ norm_annex: (This annex forms an integral part of this %.)
16
+ inform_annex: (This appendix does not form an integral part of this %.)
17
+ formula: Equation
18
+ inequality: Inequality
19
+ clause: clause
20
+ section: Section
21
+ annex_subclause: clause
22
+ in: in
23
+ to: to
24
+ where: "where:"
25
+ blankclause: This clause is intentionally left blank.
26
+ norm_with_refs_pref:
27
+ The following ITU-T Recommendations and other references contain provisions which, through reference in this text, constitute provisions of this Recommendation. At the time of publication, the editions indicated were valid. All Recommendations and other references are subject to revision; users of this Recommendation are therefore encouraged to investigate the possibility of applying the most recent edition of the Recommendations and other references listed below. A list of the currently valid ITU-T Recommendations is regularly published. The reference to a document within this Recommendation does not give it, as a stand-alone document, the status of a Recommendation.
28
+ internal_termsdef: Terms defined in this recommendation
29
+ external_termsdef: Terms defined elsewhere
30
+ term_def_boilerplate:
31
+ "This Recommendation defines the following terms:"
32
+ internal_terms_boilerplate:
33
+ "This Recommendation defines the following terms:"
34
+ external_terms_boilerplate:
35
+ "This Recommendation uses the following terms defined elsewhere:"
36
+ no_terms_boilerplate:
37
+ None.
38
+ symbols_boilerplate:
39
+ "This Recommendation uses the following abbreviations and acronyms:"
40
+ norm_empty_pref:
41
+ None.
42
+ clause_empty:
43
+ None.
44
+ amendment: Amendment
45
+ corrigendum: Corrigendum
46
+ table_of_contents: Table of Contents
47
+ page: Page
48
+ placedate: Geneva, %
49
+ annex_to_itu_ob: Annex to ITU Operational Bulletin
50
+ number_abbrev: No.
51
+ annex_to_itu_ob_abbrev: Annex to ITU OB %
52
+ international_telecommunication_union: International Telecommunication Union
53
+ position_on: (Position on %)
54
+ revision_abbreviation: Rev.
55
+ tsb: TSB
56
+ br: BR
57
+ bdt: BDT
58
+ tsb_full: Telecommunication<br/>Standardization Bureau<br/>of ITU
59
+ br_full: Radiocommunication Bureau<br/>of ITU
60
+ bdt_full: Telecommunication<br/>Development Bureau<br/>of ITU
61
+ prepub: Prepublished version
62
+ doctype_dict:
63
+ resolution: Resolution
64
+ recommendation: Recommendation
65
+ recommendation-supplement: Recommendation Supplement
66
+ recommendation-amendment: Recommendation Amendment
67
+ recommendation-corrigendum: Recommendation Corrigendum
68
+ recommendation-errata: Recommendation Errata
69
+ recommendation-annex: Recommendation Annex
70
+ focus-group: Focus Group
71
+ implementers-guide: Implementers’ Guide
72
+ technical-paper: Technical Paper
73
+ technical-report: Technical Report
74
+ joint-itu-iso-iec: Joint ITU/ISO/IEC
75
+ service-publication: Service Publication
76
+ doctype_abbrev:
77
+ recommendation: Rec.
78
+ recommendation-supplement: Rec.
79
+ recommendation-amendment: Rec.
80
+ recommendation-corrigendum: Rec.
81
+ recommendation-errata: Rec.
82
+ recommendation-annex: Rec.
83
+ focus-group: FG
84
+ implementers-guide: Imp.
85
+ technical-paper: TP
86
+ technical-report: TR
87
+ joint-itu-iso-iec: ITU/ISO/IEC
88
+ service-publication: