relaton-calconnect 1.13.1 → 1.14.0

Sign up to get free protection for your applications and to get access to all the features.
data/grammars/csd.rng DELETED
@@ -1,132 +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
- default namespace = "http://riboseinc.com/csd"
5
- Currently we inherit from a namespaced grammar, isostandard. Until we inherit from isodoc,
6
- we cannot have a new default namespace: we will end up with a grammar with two different
7
- namespaces, one for isostandard and one for csd additions. And we do not want that.
8
- -->
9
- <include href="isodoc.rng">
10
- <start>
11
- <ref name="csd-standard"/>
12
- </start>
13
- <define name="figure">
14
- <element name="figure">
15
- <attribute name="id">
16
- <data type="ID"/>
17
- </attribute>
18
- <optional>
19
- <attribute name="unnumbered">
20
- <data type="boolean"/>
21
- </attribute>
22
- </optional>
23
- <optional>
24
- <attribute name="number"/>
25
- </optional>
26
- <optional>
27
- <attribute name="subsequence"/>
28
- </optional>
29
- <optional>
30
- <attribute name="class"/>
31
- </optional>
32
- <optional>
33
- <ref name="source"/>
34
- </optional>
35
- <optional>
36
- <ref name="tname"/>
37
- </optional>
38
- <choice>
39
- <oneOrMore>
40
- <ref name="figure"/>
41
- </oneOrMore>
42
- <group>
43
- <choice>
44
- <zeroOrMore>
45
- <ref name="TextElement"/>
46
- </zeroOrMore>
47
- <ref name="pre"/>
48
- </choice>
49
- <zeroOrMore>
50
- <ref name="note"/>
51
- </zeroOrMore>
52
- <optional>
53
- <ref name="dl"/>
54
- </optional>
55
- </group>
56
- </choice>
57
- </element>
58
- </define>
59
- <define name="DocumentType">
60
- <choice>
61
- <value>directive</value>
62
- <value>guide</value>
63
- <value>specification</value>
64
- <value>standard</value>
65
- <value>report</value>
66
- <value>administrative</value>
67
- <value>amendment</value>
68
- <value>technical corrigendum</value>
69
- <value>advisory</value>
70
- </choice>
71
- </define>
72
- <define name="BibDataExtensionType">
73
- <optional>
74
- <ref name="doctype"/>
75
- </optional>
76
- <optional>
77
- <ref name="docsubtype"/>
78
- </optional>
79
- <ref name="editorialgroup"/>
80
- <zeroOrMore>
81
- <ref name="ics"/>
82
- </zeroOrMore>
83
- </define>
84
- <define name="editorialgroup">
85
- <element name="editorialgroup">
86
- <oneOrMore>
87
- <ref name="technical-committee"/>
88
- </oneOrMore>
89
- </element>
90
- </define>
91
- <define name="technical-committee">
92
- <element name="committee">
93
- <optional>
94
- <attribute name="type"/>
95
- </optional>
96
- <text/>
97
- </element>
98
- </define>
99
- </include>
100
- <define name="csd-standard">
101
- <element name="csd-standard">
102
- <attribute name="version"/>
103
- <attribute name="type">
104
- <choice>
105
- <value>semantic</value>
106
- <value>presentation</value>
107
- </choice>
108
- </attribute>
109
- <ref name="bibdata"/>
110
- <zeroOrMore>
111
- <ref name="termdocsource"/>
112
- </zeroOrMore>
113
- <optional>
114
- <ref name="misccontainer"/>
115
- </optional>
116
- <optional>
117
- <ref name="boilerplate"/>
118
- </optional>
119
- <ref name="preface"/>
120
- <oneOrMore>
121
- <ref name="sections"/>
122
- </oneOrMore>
123
- <zeroOrMore>
124
- <ref name="annex"/>
125
- </zeroOrMore>
126
- <ref name="bibliography"/>
127
- <zeroOrMore>
128
- <ref name="indexsect"/>
129
- </zeroOrMore>
130
- </element>
131
- </define>
132
- </grammar>