relaton-itu 2.1.1 → 2.2.0.pre.alpha.1
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/Gemfile +8 -0
- data/lib/relaton/itu/version.rb +1 -1
- data/relaton-itu.gemspec +4 -4
- metadata +9 -15
- data/.rubocop.yml +0 -12
- data/grammars/basicdoc.rng +0 -2140
- data/grammars/biblio-standoc.rng +0 -268
- data/grammars/biblio.rng +0 -2125
- data/grammars/relaton-itu-compile.rng +0 -11
- data/grammars/relaton-itu.rng +0 -239
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<grammar xmlns="http://relaxng.org/ns/structure/1.0">
|
|
3
|
-
<include href="basicdoc.rng"/>
|
|
4
|
-
<include href="relaton-itu.rng"/>
|
|
5
|
-
<start>
|
|
6
|
-
<choice>
|
|
7
|
-
<ref name="bibitem"/>
|
|
8
|
-
<ref name="bibdata"/>
|
|
9
|
-
</choice>
|
|
10
|
-
</start>
|
|
11
|
-
</grammar>
|
data/grammars/relaton-itu.rng
DELETED
|
@@ -1,239 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<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">
|
|
3
|
-
<include href="biblio-standoc.rng">
|
|
4
|
-
<define name="DocumentType">
|
|
5
|
-
<choice>
|
|
6
|
-
<value>recommendation</value>
|
|
7
|
-
<value>recommendation-supplement</value>
|
|
8
|
-
<value>recommendation-amendment</value>
|
|
9
|
-
<value>recommendation-corrigendum</value>
|
|
10
|
-
<value>recommendation-errata</value>
|
|
11
|
-
<value>recommendation-annex</value>
|
|
12
|
-
<value>focus-group</value>
|
|
13
|
-
<value>implementers-guide</value>
|
|
14
|
-
<value>technical-paper</value>
|
|
15
|
-
<value>technical-report</value>
|
|
16
|
-
<value>joint-itu-iso-iec</value>
|
|
17
|
-
<value>resolution</value>
|
|
18
|
-
<value>service-publication</value>
|
|
19
|
-
<value>handbook</value>
|
|
20
|
-
<value>question</value>
|
|
21
|
-
<value>contribution</value>
|
|
22
|
-
</choice>
|
|
23
|
-
</define>
|
|
24
|
-
<define name="structuredidentifier">
|
|
25
|
-
<element name="structuredidentifier">
|
|
26
|
-
<ref name="bureau"/>
|
|
27
|
-
<element name="docnumber">
|
|
28
|
-
<text/>
|
|
29
|
-
</element>
|
|
30
|
-
<optional>
|
|
31
|
-
<element name="annexid">
|
|
32
|
-
<text/>
|
|
33
|
-
</element>
|
|
34
|
-
</optional>
|
|
35
|
-
<optional>
|
|
36
|
-
<element name="amendment">
|
|
37
|
-
<data type="int"/>
|
|
38
|
-
</element>
|
|
39
|
-
</optional>
|
|
40
|
-
<optional>
|
|
41
|
-
<element name="corrigendum">
|
|
42
|
-
<data type="int"/>
|
|
43
|
-
</element>
|
|
44
|
-
</optional>
|
|
45
|
-
</element>
|
|
46
|
-
</define>
|
|
47
|
-
</include>
|
|
48
|
-
<define name="BibDataExtensionType" combine="interleave">
|
|
49
|
-
<zeroOrMore>
|
|
50
|
-
<ref name="question">
|
|
51
|
-
<a:documentation>The Questions that the document addresses. A document can address multiple questions</a:documentation>
|
|
52
|
-
</ref>
|
|
53
|
-
</zeroOrMore>
|
|
54
|
-
<optional>
|
|
55
|
-
<ref name="recommendationstatus">
|
|
56
|
-
<a:documentation>Status of approval of Recommendation status</a:documentation>
|
|
57
|
-
</ref>
|
|
58
|
-
</optional>
|
|
59
|
-
<optional>
|
|
60
|
-
<ref name="ipnoticereceived">
|
|
61
|
-
<a:documentation>ITU has received a notice of intellectual property, protected by patents, which may be required to implement this Recommendation</a:documentation>
|
|
62
|
-
</ref>
|
|
63
|
-
</optional>
|
|
64
|
-
<optional>
|
|
65
|
-
<ref name="studyperiod">
|
|
66
|
-
<a:documentation>Study period that the editorial groups working on this document fall under</a:documentation>
|
|
67
|
-
</ref>
|
|
68
|
-
</optional>
|
|
69
|
-
<optional>
|
|
70
|
-
<ref name="meeting">
|
|
71
|
-
<a:documentation>Name of meeting that generated this document (for resolutions, technical reports, technical papers, implementers guides) </a:documentation>
|
|
72
|
-
</ref>
|
|
73
|
-
</optional>
|
|
74
|
-
<optional>
|
|
75
|
-
<ref name="meeting-place">
|
|
76
|
-
<a:documentation>Place of meeting that generated this document (for resolutions, technical reports, technical papers, implementers guides)</a:documentation>
|
|
77
|
-
</ref>
|
|
78
|
-
</optional>
|
|
79
|
-
<optional>
|
|
80
|
-
<ref name="meeting-date">
|
|
81
|
-
<a:documentation>Date of meeting that generated this document (for resolutions, technical reports, technical papers, implementers guides)</a:documentation>
|
|
82
|
-
</ref>
|
|
83
|
-
</optional>
|
|
84
|
-
<optional>
|
|
85
|
-
<ref name="intended-type">
|
|
86
|
-
<a:documentation>Intended type for this document (for technical reports) (`R`, `C`, `TD`) </a:documentation>
|
|
87
|
-
</ref>
|
|
88
|
-
</optional>
|
|
89
|
-
<optional>
|
|
90
|
-
<ref name="ext_source">
|
|
91
|
-
<a:documentation>Source for this document (for technical reports, technical papers, implementers guides) </a:documentation>
|
|
92
|
-
</ref>
|
|
93
|
-
</optional>
|
|
94
|
-
</define>
|
|
95
|
-
<define name="meeting">
|
|
96
|
-
<element name="meeting">
|
|
97
|
-
<optional>
|
|
98
|
-
<attribute name="acronym"/>
|
|
99
|
-
</optional>
|
|
100
|
-
<text/>
|
|
101
|
-
</element>
|
|
102
|
-
</define>
|
|
103
|
-
<define name="meeting-place">
|
|
104
|
-
<element name="meeting-place">
|
|
105
|
-
<text/>
|
|
106
|
-
</element>
|
|
107
|
-
</define>
|
|
108
|
-
<define name="meeting-date">
|
|
109
|
-
<element name="meeting-date">
|
|
110
|
-
<choice>
|
|
111
|
-
<group>
|
|
112
|
-
<element name="from">
|
|
113
|
-
<ref name="ISO8601Date"/>
|
|
114
|
-
</element>
|
|
115
|
-
<optional>
|
|
116
|
-
<element name="to">
|
|
117
|
-
<ref name="ISO8601Date"/>
|
|
118
|
-
</element>
|
|
119
|
-
</optional>
|
|
120
|
-
</group>
|
|
121
|
-
<element name="on">
|
|
122
|
-
<ref name="ISO8601Date"/>
|
|
123
|
-
</element>
|
|
124
|
-
</choice>
|
|
125
|
-
</element>
|
|
126
|
-
</define>
|
|
127
|
-
<define name="intended-type">
|
|
128
|
-
<element name="intended-type">
|
|
129
|
-
<choice>
|
|
130
|
-
<value>R</value>
|
|
131
|
-
<value>C</value>
|
|
132
|
-
<value>TD</value>
|
|
133
|
-
</choice>
|
|
134
|
-
</element>
|
|
135
|
-
</define>
|
|
136
|
-
<define name="ext_source">
|
|
137
|
-
<element name="source">
|
|
138
|
-
<text/>
|
|
139
|
-
</element>
|
|
140
|
-
</define>
|
|
141
|
-
<define name="ipnoticereceived">
|
|
142
|
-
<element name="ip-notice-received">
|
|
143
|
-
<data type="boolean"/>
|
|
144
|
-
</element>
|
|
145
|
-
</define>
|
|
146
|
-
<define name="recommendationstatus">
|
|
147
|
-
<element name="recommendationstatus">
|
|
148
|
-
<element name="from">
|
|
149
|
-
<ref name="ISO8601Date"/>
|
|
150
|
-
</element>
|
|
151
|
-
<element name="to">
|
|
152
|
-
<ref name="ISO8601Date"/>
|
|
153
|
-
</element>
|
|
154
|
-
<optional>
|
|
155
|
-
<ref name="approvalstage"/>
|
|
156
|
-
</optional>
|
|
157
|
-
</element>
|
|
158
|
-
</define>
|
|
159
|
-
<define name="approvalstage">
|
|
160
|
-
<element name="approvalstage">
|
|
161
|
-
<attribute name="process">
|
|
162
|
-
<choice>
|
|
163
|
-
<value>tap</value>
|
|
164
|
-
<value>aap</value>
|
|
165
|
-
</choice>
|
|
166
|
-
</attribute>
|
|
167
|
-
<choice>
|
|
168
|
-
<value>determined</value>
|
|
169
|
-
<value>in-force</value>
|
|
170
|
-
<value>a</value>
|
|
171
|
-
<value>lc</value>
|
|
172
|
-
<value>ac</value>
|
|
173
|
-
<value>lj</value>
|
|
174
|
-
<value>aj</value>
|
|
175
|
-
<value>na</value>
|
|
176
|
-
<value>ar</value>
|
|
177
|
-
<value>ri</value>
|
|
178
|
-
<value>at</value>
|
|
179
|
-
<value>sg</value>
|
|
180
|
-
<value>c</value>
|
|
181
|
-
<value>tap</value>
|
|
182
|
-
</choice>
|
|
183
|
-
</element>
|
|
184
|
-
</define>
|
|
185
|
-
<define name="bureau">
|
|
186
|
-
<element name="bureau">
|
|
187
|
-
<choice>
|
|
188
|
-
<value>T</value>
|
|
189
|
-
<value>D</value>
|
|
190
|
-
<value>R</value>
|
|
191
|
-
</choice>
|
|
192
|
-
</element>
|
|
193
|
-
</define>
|
|
194
|
-
<define name="ItuGroupType">
|
|
195
|
-
<choice>
|
|
196
|
-
<value>tsag</value>
|
|
197
|
-
<value>study-group</value>
|
|
198
|
-
<value>focus-group</value>
|
|
199
|
-
<value>adhoc-group</value>
|
|
200
|
-
<value>correspondence-group</value>
|
|
201
|
-
<value>joint-coordination-activity</value>
|
|
202
|
-
<value>working-party</value>
|
|
203
|
-
<value>working-group</value>
|
|
204
|
-
<value>rapporteur-group</value>
|
|
205
|
-
<value>intersector-rapporteur-group</value>
|
|
206
|
-
<value>regional-group</value>
|
|
207
|
-
</choice>
|
|
208
|
-
</define>
|
|
209
|
-
<define name="studyperiod">
|
|
210
|
-
<element name="studyperiod">
|
|
211
|
-
<ref name="groupperiodstart"/>
|
|
212
|
-
<optional>
|
|
213
|
-
<ref name="groupperiodend"/>
|
|
214
|
-
</optional>
|
|
215
|
-
</element>
|
|
216
|
-
</define>
|
|
217
|
-
<define name="groupperiodstart">
|
|
218
|
-
<element name="start">
|
|
219
|
-
<data type="gYear"/>
|
|
220
|
-
</element>
|
|
221
|
-
</define>
|
|
222
|
-
<define name="groupperiodend">
|
|
223
|
-
<element name="end">
|
|
224
|
-
<data type="gYear"/>
|
|
225
|
-
</element>
|
|
226
|
-
</define>
|
|
227
|
-
<define name="question">
|
|
228
|
-
<element name="question">
|
|
229
|
-
<element name="identifier">
|
|
230
|
-
<text/>
|
|
231
|
-
</element>
|
|
232
|
-
<optional>
|
|
233
|
-
<element name="name">
|
|
234
|
-
<text/>
|
|
235
|
-
</element>
|
|
236
|
-
</optional>
|
|
237
|
-
</element>
|
|
238
|
-
</define>
|
|
239
|
-
</grammar>
|