relaton-ietf 1.13.10 → 1.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.adoc +31 -37
- data/grammars/basicdoc.rng +3 -27
- data/grammars/biblio-standoc.rng +164 -0
- data/grammars/biblio.rng +82 -19
- data/grammars/relaton-ietf-compile.rng +11 -0
- data/grammars/relaton-ietf.rng +318 -0
- data/lib/relaton_ietf/bibxml_parser.rb +3 -0
- data/lib/relaton_ietf/ietf_bibliographic_item.rb +9 -0
- data/lib/relaton_ietf/version.rb +1 -1
- data/lib/relaton_ietf.rb +0 -3
- data/relaton_ietf.gemspec +1 -1
- metadata +7 -7
- data/grammars/ietf.rng +0 -925
- data/grammars/isodoc.rng +0 -2807
- data/grammars/reqt.rng +0 -223
data/grammars/ietf.rng
DELETED
@@ -1,925 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
|
3
|
-
<!--
|
4
|
-
Currently we inherit from a namespaced grammar, isostandard. Until we inherit from isodoc,
|
5
|
-
we cannot have a new default namespace: we will end up with a grammar with two different
|
6
|
-
namespaces, one for isostandard and one for ietf additions. And we do not want that.
|
7
|
-
-->
|
8
|
-
<include href="isodoc.rng">
|
9
|
-
<start>
|
10
|
-
<ref name="ietf-standard"/>
|
11
|
-
</start>
|
12
|
-
<define name="DocumentType">
|
13
|
-
<choice>
|
14
|
-
<value>rfc</value>
|
15
|
-
<value>internet-draft</value>
|
16
|
-
</choice>
|
17
|
-
</define>
|
18
|
-
<define name="BibDataExtensionType">
|
19
|
-
<optional>
|
20
|
-
<ref name="doctype"/>
|
21
|
-
</optional>
|
22
|
-
<optional>
|
23
|
-
<ref name="docsubtype"/>
|
24
|
-
</optional>
|
25
|
-
<zeroOrMore>
|
26
|
-
<ref name="editorialgroup"/>
|
27
|
-
</zeroOrMore>
|
28
|
-
<zeroOrMore>
|
29
|
-
<ref name="ics"/>
|
30
|
-
</zeroOrMore>
|
31
|
-
<zeroOrMore>
|
32
|
-
<ref name="area"/>
|
33
|
-
</zeroOrMore>
|
34
|
-
<optional>
|
35
|
-
<ref name="ipr"/>
|
36
|
-
</optional>
|
37
|
-
<optional>
|
38
|
-
<ref name="consensus"/>
|
39
|
-
</optional>
|
40
|
-
<optional>
|
41
|
-
<ref name="index-include"/>
|
42
|
-
</optional>
|
43
|
-
<optional>
|
44
|
-
<ref name="ipr-extract"/>
|
45
|
-
</optional>
|
46
|
-
<optional>
|
47
|
-
<ref name="sort-refs"/>
|
48
|
-
</optional>
|
49
|
-
<optional>
|
50
|
-
<ref name="sym-refs"/>
|
51
|
-
</optional>
|
52
|
-
<optional>
|
53
|
-
<ref name="toc-include"/>
|
54
|
-
</optional>
|
55
|
-
<optional>
|
56
|
-
<ref name="toc-depth"/>
|
57
|
-
</optional>
|
58
|
-
<optional>
|
59
|
-
<ref name="show-on-front-page"/>
|
60
|
-
</optional>
|
61
|
-
<optional>
|
62
|
-
<ref name="processing-instructions"/>
|
63
|
-
</optional>
|
64
|
-
</define>
|
65
|
-
<define name="ParagraphType">
|
66
|
-
<attribute name="id">
|
67
|
-
<data type="ID"/>
|
68
|
-
</attribute>
|
69
|
-
<optional>
|
70
|
-
<attribute name="align">
|
71
|
-
<ref name="Alignments"/>
|
72
|
-
</attribute>
|
73
|
-
</optional>
|
74
|
-
<optional>
|
75
|
-
<attribute name="keep-with-next">
|
76
|
-
<data type="boolean"/>
|
77
|
-
</attribute>
|
78
|
-
</optional>
|
79
|
-
<optional>
|
80
|
-
<attribute name="keep-with-previous">
|
81
|
-
<data type="boolean"/>
|
82
|
-
</attribute>
|
83
|
-
</optional>
|
84
|
-
<zeroOrMore>
|
85
|
-
<ref name="TextElement"/>
|
86
|
-
</zeroOrMore>
|
87
|
-
<zeroOrMore>
|
88
|
-
<ref name="note"/>
|
89
|
-
</zeroOrMore>
|
90
|
-
</define>
|
91
|
-
<define name="paragraph-with-footnote">
|
92
|
-
<element name="p">
|
93
|
-
<attribute name="id">
|
94
|
-
<data type="ID"/>
|
95
|
-
</attribute>
|
96
|
-
<optional>
|
97
|
-
<attribute name="align">
|
98
|
-
<ref name="Alignments"/>
|
99
|
-
</attribute>
|
100
|
-
</optional>
|
101
|
-
<zeroOrMore>
|
102
|
-
<choice>
|
103
|
-
<ref name="TextElement"/>
|
104
|
-
<ref name="fn"/>
|
105
|
-
</choice>
|
106
|
-
</zeroOrMore>
|
107
|
-
<zeroOrMore>
|
108
|
-
<ref name="note"/>
|
109
|
-
</zeroOrMore>
|
110
|
-
</element>
|
111
|
-
</define>
|
112
|
-
<define name="ul">
|
113
|
-
<element name="ul">
|
114
|
-
<attribute name="id">
|
115
|
-
<data type="ID"/>
|
116
|
-
</attribute>
|
117
|
-
<optional>
|
118
|
-
<attribute name="nobullet"/>
|
119
|
-
</optional>
|
120
|
-
<optional>
|
121
|
-
<attribute name="spacing"/>
|
122
|
-
</optional>
|
123
|
-
<oneOrMore>
|
124
|
-
<ref name="li"/>
|
125
|
-
</oneOrMore>
|
126
|
-
<zeroOrMore>
|
127
|
-
<ref name="note"/>
|
128
|
-
</zeroOrMore>
|
129
|
-
</element>
|
130
|
-
</define>
|
131
|
-
<define name="ol">
|
132
|
-
<element name="ol">
|
133
|
-
<attribute name="id">
|
134
|
-
<data type="ID"/>
|
135
|
-
</attribute>
|
136
|
-
<attribute name="type">
|
137
|
-
<choice>
|
138
|
-
<value>roman</value>
|
139
|
-
<value>alphabet</value>
|
140
|
-
<value>arabic</value>
|
141
|
-
<value>roman_upper</value>
|
142
|
-
<value>alphabet_upper</value>
|
143
|
-
<value>text</value>
|
144
|
-
</choice>
|
145
|
-
</attribute>
|
146
|
-
<optional>
|
147
|
-
<attribute name="group"/>
|
148
|
-
</optional>
|
149
|
-
<optional>
|
150
|
-
<attribute name="spacing"/>
|
151
|
-
</optional>
|
152
|
-
<optional>
|
153
|
-
<attribute name="start"/>
|
154
|
-
</optional>
|
155
|
-
<oneOrMore>
|
156
|
-
<ref name="li"/>
|
157
|
-
</oneOrMore>
|
158
|
-
<zeroOrMore>
|
159
|
-
<ref name="note"/>
|
160
|
-
</zeroOrMore>
|
161
|
-
</element>
|
162
|
-
</define>
|
163
|
-
<define name="dl">
|
164
|
-
<element name="dl">
|
165
|
-
<attribute name="id">
|
166
|
-
<data type="ID"/>
|
167
|
-
</attribute>
|
168
|
-
<optional>
|
169
|
-
<attribute name="newline"/>
|
170
|
-
</optional>
|
171
|
-
<optional>
|
172
|
-
<attribute name="indent"/>
|
173
|
-
</optional>
|
174
|
-
<optional>
|
175
|
-
<attribute name="spacing"/>
|
176
|
-
</optional>
|
177
|
-
<oneOrMore>
|
178
|
-
<ref name="dt"/>
|
179
|
-
<ref name="dd"/>
|
180
|
-
</oneOrMore>
|
181
|
-
<zeroOrMore>
|
182
|
-
<ref name="note"/>
|
183
|
-
</zeroOrMore>
|
184
|
-
</element>
|
185
|
-
</define>
|
186
|
-
<define name="review">
|
187
|
-
<element name="review">
|
188
|
-
<attribute name="id">
|
189
|
-
<data type="ID"/>
|
190
|
-
</attribute>
|
191
|
-
<attribute name="reviewer"/>
|
192
|
-
<optional>
|
193
|
-
<attribute name="date">
|
194
|
-
<data type="dateTime"/>
|
195
|
-
</attribute>
|
196
|
-
</optional>
|
197
|
-
<attribute name="from">
|
198
|
-
<data type="IDREF"/>
|
199
|
-
</attribute>
|
200
|
-
<optional>
|
201
|
-
<attribute name="to">
|
202
|
-
<data type="IDREF"/>
|
203
|
-
</attribute>
|
204
|
-
</optional>
|
205
|
-
<optional>
|
206
|
-
<attribute name="display"/>
|
207
|
-
</optional>
|
208
|
-
<oneOrMore>
|
209
|
-
<ref name="paragraph"/>
|
210
|
-
</oneOrMore>
|
211
|
-
</element>
|
212
|
-
</define>
|
213
|
-
<define name="note">
|
214
|
-
<element name="note">
|
215
|
-
<attribute name="id">
|
216
|
-
<data type="ID"/>
|
217
|
-
</attribute>
|
218
|
-
<optional>
|
219
|
-
<attribute name="removeInRFC"/>
|
220
|
-
</optional>
|
221
|
-
<optional>
|
222
|
-
<ref name="tname"/>
|
223
|
-
</optional>
|
224
|
-
<oneOrMore>
|
225
|
-
<ref name="paragraph"/>
|
226
|
-
</oneOrMore>
|
227
|
-
</element>
|
228
|
-
</define>
|
229
|
-
<define name="pre">
|
230
|
-
<element name="pre">
|
231
|
-
<attribute name="id">
|
232
|
-
<data type="ID"/>
|
233
|
-
</attribute>
|
234
|
-
<optional>
|
235
|
-
<attribute name="alt"/>
|
236
|
-
</optional>
|
237
|
-
<optional>
|
238
|
-
<attribute name="align"/>
|
239
|
-
</optional>
|
240
|
-
<optional>
|
241
|
-
<ref name="tname"/>
|
242
|
-
</optional>
|
243
|
-
<text/>
|
244
|
-
<zeroOrMore>
|
245
|
-
<ref name="note"/>
|
246
|
-
</zeroOrMore>
|
247
|
-
</element>
|
248
|
-
</define>
|
249
|
-
<define name="image">
|
250
|
-
<element name="image">
|
251
|
-
<attribute name="id">
|
252
|
-
<data type="ID"/>
|
253
|
-
</attribute>
|
254
|
-
<attribute name="src">
|
255
|
-
<data type="anyURI"/>
|
256
|
-
</attribute>
|
257
|
-
<attribute name="mimetype"/>
|
258
|
-
<optional>
|
259
|
-
<attribute name="filename"/>
|
260
|
-
</optional>
|
261
|
-
<optional>
|
262
|
-
<attribute name="width">
|
263
|
-
<choice>
|
264
|
-
<data type="int"/>
|
265
|
-
<value>auto</value>
|
266
|
-
</choice>
|
267
|
-
</attribute>
|
268
|
-
</optional>
|
269
|
-
<optional>
|
270
|
-
<attribute name="height">
|
271
|
-
<choice>
|
272
|
-
<data type="int"/>
|
273
|
-
<value>auto</value>
|
274
|
-
</choice>
|
275
|
-
</attribute>
|
276
|
-
</optional>
|
277
|
-
<optional>
|
278
|
-
<attribute name="alt"/>
|
279
|
-
</optional>
|
280
|
-
<optional>
|
281
|
-
<attribute name="title"/>
|
282
|
-
</optional>
|
283
|
-
<optional>
|
284
|
-
<attribute name="longdesc">
|
285
|
-
<data type="anyURI"/>
|
286
|
-
</attribute>
|
287
|
-
</optional>
|
288
|
-
<optional>
|
289
|
-
<attribute name="align"/>
|
290
|
-
</optional>
|
291
|
-
</element>
|
292
|
-
</define>
|
293
|
-
<define name="sourcecode">
|
294
|
-
<element name="sourcecode">
|
295
|
-
<attribute name="id">
|
296
|
-
<data type="ID"/>
|
297
|
-
</attribute>
|
298
|
-
<optional>
|
299
|
-
<attribute name="unnumbered">
|
300
|
-
<data type="boolean"/>
|
301
|
-
</attribute>
|
302
|
-
</optional>
|
303
|
-
<optional>
|
304
|
-
<attribute name="number"/>
|
305
|
-
</optional>
|
306
|
-
<optional>
|
307
|
-
<attribute name="subsequence"/>
|
308
|
-
</optional>
|
309
|
-
<optional>
|
310
|
-
<attribute name="lang"/>
|
311
|
-
</optional>
|
312
|
-
<optional>
|
313
|
-
<attribute name="markers"/>
|
314
|
-
</optional>
|
315
|
-
<optional>
|
316
|
-
<ref name="tname"/>
|
317
|
-
</optional>
|
318
|
-
<oneOrMore>
|
319
|
-
<choice>
|
320
|
-
<text/>
|
321
|
-
<ref name="callout"/>
|
322
|
-
</choice>
|
323
|
-
</oneOrMore>
|
324
|
-
<zeroOrMore>
|
325
|
-
<ref name="annotation"/>
|
326
|
-
</zeroOrMore>
|
327
|
-
<zeroOrMore>
|
328
|
-
<ref name="note"/>
|
329
|
-
</zeroOrMore>
|
330
|
-
</element>
|
331
|
-
</define>
|
332
|
-
<define name="xref">
|
333
|
-
<element name="xref">
|
334
|
-
<attribute name="target">
|
335
|
-
<data type="IDREF"/>
|
336
|
-
</attribute>
|
337
|
-
<optional>
|
338
|
-
<attribute name="type">
|
339
|
-
<ref name="ReferenceFormat"/>
|
340
|
-
</attribute>
|
341
|
-
</optional>
|
342
|
-
<optional>
|
343
|
-
<attribute name="alt"/>
|
344
|
-
</optional>
|
345
|
-
<optional>
|
346
|
-
<attribute name="format"/>
|
347
|
-
</optional>
|
348
|
-
<ref name="XrefBody"/>
|
349
|
-
</element>
|
350
|
-
</define>
|
351
|
-
<define name="erefType">
|
352
|
-
<optional>
|
353
|
-
<attribute name="normative">
|
354
|
-
<data type="boolean"/>
|
355
|
-
</attribute>
|
356
|
-
</optional>
|
357
|
-
<attribute name="citeas"/>
|
358
|
-
<attribute name="type">
|
359
|
-
<ref name="ReferenceFormat"/>
|
360
|
-
</attribute>
|
361
|
-
<optional>
|
362
|
-
<attribute name="alt"/>
|
363
|
-
</optional>
|
364
|
-
<optional>
|
365
|
-
<attribute name="displayFormat"/>
|
366
|
-
</optional>
|
367
|
-
<optional>
|
368
|
-
<attribute name="relative"/>
|
369
|
-
</optional>
|
370
|
-
<ref name="CitationType"/>
|
371
|
-
<text/>
|
372
|
-
</define>
|
373
|
-
<define name="quote-source">
|
374
|
-
<element name="source">
|
375
|
-
<ref name="erefTypeURI"/>
|
376
|
-
</element>
|
377
|
-
</define>
|
378
|
-
<define name="table">
|
379
|
-
<element name="table">
|
380
|
-
<attribute name="id">
|
381
|
-
<data type="ID"/>
|
382
|
-
</attribute>
|
383
|
-
<optional>
|
384
|
-
<attribute name="unnumbered">
|
385
|
-
<data type="boolean"/>
|
386
|
-
</attribute>
|
387
|
-
</optional>
|
388
|
-
<optional>
|
389
|
-
<attribute name="number"/>
|
390
|
-
</optional>
|
391
|
-
<optional>
|
392
|
-
<attribute name="subsequence"/>
|
393
|
-
</optional>
|
394
|
-
<optional>
|
395
|
-
<attribute name="alt"/>
|
396
|
-
</optional>
|
397
|
-
<optional>
|
398
|
-
<attribute name="summary"/>
|
399
|
-
</optional>
|
400
|
-
<optional>
|
401
|
-
<attribute name="uri">
|
402
|
-
<data type="anyURI"/>
|
403
|
-
</attribute>
|
404
|
-
</optional>
|
405
|
-
<optional>
|
406
|
-
<attribute name="align"/>
|
407
|
-
</optional>
|
408
|
-
<optional>
|
409
|
-
<ref name="tname"/>
|
410
|
-
</optional>
|
411
|
-
<optional>
|
412
|
-
<ref name="thead"/>
|
413
|
-
</optional>
|
414
|
-
<ref name="tbody"/>
|
415
|
-
<optional>
|
416
|
-
<ref name="tfoot"/>
|
417
|
-
</optional>
|
418
|
-
<zeroOrMore>
|
419
|
-
<ref name="table-note"/>
|
420
|
-
</zeroOrMore>
|
421
|
-
<optional>
|
422
|
-
<ref name="dl"/>
|
423
|
-
</optional>
|
424
|
-
</element>
|
425
|
-
</define>
|
426
|
-
<define name="Clause-Section">
|
427
|
-
<optional>
|
428
|
-
<attribute name="id">
|
429
|
-
<data type="ID"/>
|
430
|
-
</attribute>
|
431
|
-
</optional>
|
432
|
-
<optional>
|
433
|
-
<attribute name="language"/>
|
434
|
-
</optional>
|
435
|
-
<optional>
|
436
|
-
<attribute name="script"/>
|
437
|
-
</optional>
|
438
|
-
<optional>
|
439
|
-
<attribute name="numbered"/>
|
440
|
-
</optional>
|
441
|
-
<optional>
|
442
|
-
<attribute name="removeInRFC"/>
|
443
|
-
</optional>
|
444
|
-
<optional>
|
445
|
-
<attribute name="toc"/>
|
446
|
-
</optional>
|
447
|
-
<optional>
|
448
|
-
<attribute name="inline-header">
|
449
|
-
<data type="boolean"/>
|
450
|
-
</attribute>
|
451
|
-
</optional>
|
452
|
-
<attribute name="obligation">
|
453
|
-
<choice>
|
454
|
-
<value>normative</value>
|
455
|
-
<value>informative</value>
|
456
|
-
</choice>
|
457
|
-
</attribute>
|
458
|
-
<optional>
|
459
|
-
<ref name="section-title"/>
|
460
|
-
</optional>
|
461
|
-
<group>
|
462
|
-
<zeroOrMore>
|
463
|
-
<ref name="BasicBlock"/>
|
464
|
-
</zeroOrMore>
|
465
|
-
<zeroOrMore>
|
466
|
-
<choice>
|
467
|
-
<ref name="clause-subsection"/>
|
468
|
-
<ref name="terms"/>
|
469
|
-
<ref name="definitions"/>
|
470
|
-
</choice>
|
471
|
-
</zeroOrMore>
|
472
|
-
</group>
|
473
|
-
</define>
|
474
|
-
<define name="annex">
|
475
|
-
<element name="annex">
|
476
|
-
<optional>
|
477
|
-
<attribute name="id">
|
478
|
-
<data type="ID"/>
|
479
|
-
</attribute>
|
480
|
-
</optional>
|
481
|
-
<optional>
|
482
|
-
<attribute name="language"/>
|
483
|
-
</optional>
|
484
|
-
<optional>
|
485
|
-
<attribute name="script"/>
|
486
|
-
</optional>
|
487
|
-
<attribute name="obligation">
|
488
|
-
<choice>
|
489
|
-
<value>normative</value>
|
490
|
-
<value>informative</value>
|
491
|
-
</choice>
|
492
|
-
</attribute>
|
493
|
-
<optional>
|
494
|
-
<attribute name="numbered"/>
|
495
|
-
</optional>
|
496
|
-
<optional>
|
497
|
-
<attribute name="removeInRFC"/>
|
498
|
-
</optional>
|
499
|
-
<optional>
|
500
|
-
<attribute name="toc"/>
|
501
|
-
</optional>
|
502
|
-
<optional>
|
503
|
-
<ref name="section-title"/>
|
504
|
-
</optional>
|
505
|
-
<group>
|
506
|
-
<zeroOrMore>
|
507
|
-
<ref name="BasicBlock"/>
|
508
|
-
</zeroOrMore>
|
509
|
-
<zeroOrMore>
|
510
|
-
<ref name="clause-subsection"/>
|
511
|
-
</zeroOrMore>
|
512
|
-
</group>
|
513
|
-
</element>
|
514
|
-
</define>
|
515
|
-
<define name="Content-Section">
|
516
|
-
<optional>
|
517
|
-
<attribute name="id">
|
518
|
-
<data type="ID"/>
|
519
|
-
</attribute>
|
520
|
-
</optional>
|
521
|
-
<optional>
|
522
|
-
<attribute name="language"/>
|
523
|
-
</optional>
|
524
|
-
<optional>
|
525
|
-
<attribute name="script"/>
|
526
|
-
</optional>
|
527
|
-
<optional>
|
528
|
-
<attribute name="numbered"/>
|
529
|
-
</optional>
|
530
|
-
<optional>
|
531
|
-
<attribute name="removeInRFC"/>
|
532
|
-
</optional>
|
533
|
-
<optional>
|
534
|
-
<attribute name="toc"/>
|
535
|
-
</optional>
|
536
|
-
<optional>
|
537
|
-
<ref name="section-title"/>
|
538
|
-
</optional>
|
539
|
-
<group>
|
540
|
-
<zeroOrMore>
|
541
|
-
<ref name="BasicBlock"/>
|
542
|
-
</zeroOrMore>
|
543
|
-
<zeroOrMore>
|
544
|
-
<ref name="content-subsection"/>
|
545
|
-
</zeroOrMore>
|
546
|
-
</group>
|
547
|
-
</define>
|
548
|
-
<define name="editorialgroup">
|
549
|
-
<element name="editorialgroup">
|
550
|
-
<zeroOrMore>
|
551
|
-
<ref name="committee"/>
|
552
|
-
</zeroOrMore>
|
553
|
-
</element>
|
554
|
-
</define>
|
555
|
-
<define name="index">
|
556
|
-
<element name="index">
|
557
|
-
<optional>
|
558
|
-
<attribute name="to">
|
559
|
-
<data type="IDREF"/>
|
560
|
-
</attribute>
|
561
|
-
</optional>
|
562
|
-
<optional>
|
563
|
-
<attribute name="primary">
|
564
|
-
<data type="boolean"/>
|
565
|
-
</attribute>
|
566
|
-
</optional>
|
567
|
-
<element name="primary">
|
568
|
-
<oneOrMore>
|
569
|
-
<ref name="PureTextElement"/>
|
570
|
-
</oneOrMore>
|
571
|
-
</element>
|
572
|
-
<optional>
|
573
|
-
<element name="secondary">
|
574
|
-
<oneOrMore>
|
575
|
-
<ref name="PureTextElement"/>
|
576
|
-
</oneOrMore>
|
577
|
-
</element>
|
578
|
-
</optional>
|
579
|
-
<optional>
|
580
|
-
<element name="tertiary">
|
581
|
-
<oneOrMore>
|
582
|
-
<ref name="PureTextElement"/>
|
583
|
-
</oneOrMore>
|
584
|
-
</element>
|
585
|
-
</optional>
|
586
|
-
</element>
|
587
|
-
</define>
|
588
|
-
</include>
|
589
|
-
<define name="TextElement" combine="choice">
|
590
|
-
<choice>
|
591
|
-
<ref name="bcp14"/>
|
592
|
-
<ref name="review"/>
|
593
|
-
</choice>
|
594
|
-
</define>
|
595
|
-
<define name="bcp14">
|
596
|
-
<element name="bcp14">
|
597
|
-
<text/>
|
598
|
-
</element>
|
599
|
-
</define>
|
600
|
-
<define name="committee">
|
601
|
-
<element name="committee">
|
602
|
-
<ref name="IsoWorkgroup"/>
|
603
|
-
</element>
|
604
|
-
</define>
|
605
|
-
<define name="area">
|
606
|
-
<element name="area">
|
607
|
-
<choice>
|
608
|
-
<value>art</value>
|
609
|
-
<value>gen</value>
|
610
|
-
<value>int</value>
|
611
|
-
<value>ops</value>
|
612
|
-
<value>rtg</value>
|
613
|
-
<value>sec</value>
|
614
|
-
<value>tsv</value>
|
615
|
-
<value>Applications and Real-Time</value>
|
616
|
-
<value>General</value>
|
617
|
-
<value>Internet</value>
|
618
|
-
<value>Operations and Management</value>
|
619
|
-
<value>Routing</value>
|
620
|
-
<value>Security</value>
|
621
|
-
<value>Transport</value>
|
622
|
-
</choice>
|
623
|
-
</element>
|
624
|
-
</define>
|
625
|
-
<define name="comment">
|
626
|
-
<element name="comment">
|
627
|
-
<text/>
|
628
|
-
</element>
|
629
|
-
</define>
|
630
|
-
<define name="ipr">
|
631
|
-
<element name="ipr">
|
632
|
-
<text/>
|
633
|
-
</element>
|
634
|
-
</define>
|
635
|
-
<define name="consensus">
|
636
|
-
<element name="consensus">
|
637
|
-
<text/>
|
638
|
-
</element>
|
639
|
-
</define>
|
640
|
-
<define name="index-include">
|
641
|
-
<element name="indexInclude">
|
642
|
-
<text/>
|
643
|
-
</element>
|
644
|
-
</define>
|
645
|
-
<define name="ipr-extract">
|
646
|
-
<element name="iprExtract">
|
647
|
-
<text/>
|
648
|
-
</element>
|
649
|
-
</define>
|
650
|
-
<define name="sort-refs">
|
651
|
-
<element name="sortRefs">
|
652
|
-
<text/>
|
653
|
-
</element>
|
654
|
-
</define>
|
655
|
-
<define name="sym-refs">
|
656
|
-
<element name="symRefs">
|
657
|
-
<text/>
|
658
|
-
</element>
|
659
|
-
</define>
|
660
|
-
<define name="toc-include">
|
661
|
-
<element name="tocInclude">
|
662
|
-
<text/>
|
663
|
-
</element>
|
664
|
-
</define>
|
665
|
-
<define name="toc-depth">
|
666
|
-
<element name="tocDepth">
|
667
|
-
<text/>
|
668
|
-
</element>
|
669
|
-
</define>
|
670
|
-
<define name="show-on-front-page">
|
671
|
-
<element name="showOnFrontPage">
|
672
|
-
<text/>
|
673
|
-
</element>
|
674
|
-
</define>
|
675
|
-
<define name="processing-instructions">
|
676
|
-
<element name="pi">
|
677
|
-
<optional>
|
678
|
-
<element name="artworkdelimiter">
|
679
|
-
<text/>
|
680
|
-
</element>
|
681
|
-
</optional>
|
682
|
-
<optional>
|
683
|
-
<element name="artworklines">
|
684
|
-
<text/>
|
685
|
-
</element>
|
686
|
-
</optional>
|
687
|
-
<optional>
|
688
|
-
<element name="authorship">
|
689
|
-
<text/>
|
690
|
-
</element>
|
691
|
-
</optional>
|
692
|
-
<optional>
|
693
|
-
<element name="autobreaks">
|
694
|
-
<text/>
|
695
|
-
</element>
|
696
|
-
</optional>
|
697
|
-
<optional>
|
698
|
-
<element name="background">
|
699
|
-
<text/>
|
700
|
-
</element>
|
701
|
-
</optional>
|
702
|
-
<optional>
|
703
|
-
<element name="colonspace">
|
704
|
-
<text/>
|
705
|
-
</element>
|
706
|
-
</optional>
|
707
|
-
<optional>
|
708
|
-
<element name="comments">
|
709
|
-
<text/>
|
710
|
-
</element>
|
711
|
-
</optional>
|
712
|
-
<optional>
|
713
|
-
<element name="docmapping">
|
714
|
-
<text/>
|
715
|
-
</element>
|
716
|
-
</optional>
|
717
|
-
<optional>
|
718
|
-
<element name="editing">
|
719
|
-
<text/>
|
720
|
-
</element>
|
721
|
-
</optional>
|
722
|
-
<optional>
|
723
|
-
<element name="emoticonic">
|
724
|
-
<text/>
|
725
|
-
</element>
|
726
|
-
</optional>
|
727
|
-
<optional>
|
728
|
-
<element name="footer">
|
729
|
-
<text/>
|
730
|
-
</element>
|
731
|
-
</optional>
|
732
|
-
<optional>
|
733
|
-
<element name="header">
|
734
|
-
<text/>
|
735
|
-
</element>
|
736
|
-
</optional>
|
737
|
-
<optional>
|
738
|
-
<element name="inline">
|
739
|
-
<text/>
|
740
|
-
</element>
|
741
|
-
</optional>
|
742
|
-
<optional>
|
743
|
-
<element name="iprnotified">
|
744
|
-
<text/>
|
745
|
-
</element>
|
746
|
-
</optional>
|
747
|
-
<optional>
|
748
|
-
<element name="linkmailto">
|
749
|
-
<text/>
|
750
|
-
</element>
|
751
|
-
</optional>
|
752
|
-
<optional>
|
753
|
-
<element name="linefile">
|
754
|
-
<text/>
|
755
|
-
</element>
|
756
|
-
</optional>
|
757
|
-
<optional>
|
758
|
-
<element name="notedraftinprogress">
|
759
|
-
<text/>
|
760
|
-
</element>
|
761
|
-
</optional>
|
762
|
-
<optional>
|
763
|
-
<element name="private">
|
764
|
-
<text/>
|
765
|
-
</element>
|
766
|
-
</optional>
|
767
|
-
<optional>
|
768
|
-
<element name="refparent">
|
769
|
-
<text/>
|
770
|
-
</element>
|
771
|
-
</optional>
|
772
|
-
<optional>
|
773
|
-
<element name="rfcedstyle">
|
774
|
-
<text/>
|
775
|
-
</element>
|
776
|
-
</optional>
|
777
|
-
<optional>
|
778
|
-
<element name="slides">
|
779
|
-
<text/>
|
780
|
-
</element>
|
781
|
-
</optional>
|
782
|
-
<optional>
|
783
|
-
<element name="text-list-symbols">
|
784
|
-
<text/>
|
785
|
-
</element>
|
786
|
-
</optional>
|
787
|
-
<optional>
|
788
|
-
<element name="tocappendix">
|
789
|
-
<text/>
|
790
|
-
</element>
|
791
|
-
</optional>
|
792
|
-
<optional>
|
793
|
-
<element name="tocindent">
|
794
|
-
<text/>
|
795
|
-
</element>
|
796
|
-
</optional>
|
797
|
-
<optional>
|
798
|
-
<element name="tocnarrow">
|
799
|
-
<text/>
|
800
|
-
</element>
|
801
|
-
</optional>
|
802
|
-
<optional>
|
803
|
-
<element name="tocompact">
|
804
|
-
<text/>
|
805
|
-
</element>
|
806
|
-
</optional>
|
807
|
-
<optional>
|
808
|
-
<element name="topblock">
|
809
|
-
<text/>
|
810
|
-
</element>
|
811
|
-
</optional>
|
812
|
-
<optional>
|
813
|
-
<element name="useobject">
|
814
|
-
<text/>
|
815
|
-
</element>
|
816
|
-
</optional>
|
817
|
-
<optional>
|
818
|
-
<element name="strict">
|
819
|
-
<text/>
|
820
|
-
</element>
|
821
|
-
</optional>
|
822
|
-
<optional>
|
823
|
-
<element name="compact">
|
824
|
-
<text/>
|
825
|
-
</element>
|
826
|
-
</optional>
|
827
|
-
<optional>
|
828
|
-
<element name="subcompact">
|
829
|
-
<text/>
|
830
|
-
</element>
|
831
|
-
</optional>
|
832
|
-
<optional>
|
833
|
-
<element name="tocinclude">
|
834
|
-
<text/>
|
835
|
-
</element>
|
836
|
-
</optional>
|
837
|
-
<optional>
|
838
|
-
<element name="tocdepth">
|
839
|
-
<text/>
|
840
|
-
</element>
|
841
|
-
</optional>
|
842
|
-
<optional>
|
843
|
-
<element name="symrefs">
|
844
|
-
<text/>
|
845
|
-
</element>
|
846
|
-
</optional>
|
847
|
-
<optional>
|
848
|
-
<element name="sortrefs">
|
849
|
-
<text/>
|
850
|
-
</element>
|
851
|
-
</optional>
|
852
|
-
</element>
|
853
|
-
</define>
|
854
|
-
<define name="erefTypeURI">
|
855
|
-
<optional>
|
856
|
-
<attribute name="normative">
|
857
|
-
<data type="boolean"/>
|
858
|
-
</attribute>
|
859
|
-
</optional>
|
860
|
-
<optional>
|
861
|
-
<attribute name="citeas"/>
|
862
|
-
</optional>
|
863
|
-
<attribute name="type">
|
864
|
-
<ref name="ReferenceFormat"/>
|
865
|
-
</attribute>
|
866
|
-
<optional>
|
867
|
-
<attribute name="alt"/>
|
868
|
-
</optional>
|
869
|
-
<optional>
|
870
|
-
<attribute name="displayFormat"/>
|
871
|
-
</optional>
|
872
|
-
<optional>
|
873
|
-
<attribute name="relative"/>
|
874
|
-
</optional>
|
875
|
-
<optional>
|
876
|
-
<attribute name="bibitemid">
|
877
|
-
<data type="IDREF"/>
|
878
|
-
</attribute>
|
879
|
-
</optional>
|
880
|
-
<optional>
|
881
|
-
<attribute name="uri">
|
882
|
-
<data type="anyURI"/>
|
883
|
-
</attribute>
|
884
|
-
</optional>
|
885
|
-
<zeroOrMore>
|
886
|
-
<ref name="locality"/>
|
887
|
-
</zeroOrMore>
|
888
|
-
<optional>
|
889
|
-
<ref name="date"/>
|
890
|
-
</optional>
|
891
|
-
<text/>
|
892
|
-
</define>
|
893
|
-
<define name="ietf-standard">
|
894
|
-
<element name="ietf-standard">
|
895
|
-
<attribute name="version"/>
|
896
|
-
<attribute name="type">
|
897
|
-
<choice>
|
898
|
-
<value>semantic</value>
|
899
|
-
<value>presentation</value>
|
900
|
-
</choice>
|
901
|
-
</attribute>
|
902
|
-
<ref name="bibdata"/>
|
903
|
-
<zeroOrMore>
|
904
|
-
<ref name="termdocsource"/>
|
905
|
-
</zeroOrMore>
|
906
|
-
<optional>
|
907
|
-
<ref name="misccontainer"/>
|
908
|
-
</optional>
|
909
|
-
<optional>
|
910
|
-
<ref name="boilerplate"/>
|
911
|
-
</optional>
|
912
|
-
<ref name="preface"/>
|
913
|
-
<oneOrMore>
|
914
|
-
<ref name="sections"/>
|
915
|
-
</oneOrMore>
|
916
|
-
<zeroOrMore>
|
917
|
-
<ref name="annex"/>
|
918
|
-
</zeroOrMore>
|
919
|
-
<ref name="bibliography"/>
|
920
|
-
<zeroOrMore>
|
921
|
-
<ref name="indexsect"/>
|
922
|
-
</zeroOrMore>
|
923
|
-
</element>
|
924
|
-
</define>
|
925
|
-
</grammar>
|