Changeset 8823a97 for BOOK/schema
- Timestamp:
- Apr 24, 2011, 2:11:53 PM (14 years ago)
- Children:
- 3f2c36d
- Parents:
- 41fab2e
- Location:
- BOOK/schema/clfs/0.1/rng
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/schema/clfs/0.1/rng/clfs.rnc
r41fab2e r8823a97 39 39 clfs.attrib.multilib = attribute c:multilib { "true" | "false" }? 40 40 41 clfs.attrib.r = attribute c:r { text }? 42 41 43 # Inline Elements 42 44 … … 90 92 clfs.package.para = 91 93 element c:para { 92 clfs.attrib.arch, 93 clfs.attrib.bits, 94 clfs.attrib.multilib, 94 xml.attrib.base, 95 clfs.attrib.arch, 96 clfs.attrib.bits, 97 clfs.attrib.multilib, 98 clfs.attrib.r, 95 99 clfs.inline 96 100 } … … 98 102 clfs.package.note = 99 103 element c:note { 100 clfs.attrib.arch, 101 clfs.attrib.bits, 102 clfs.attrib.multilib, 104 xml.attrib.base, 105 clfs.attrib.arch, 106 clfs.attrib.bits, 107 clfs.attrib.multilib, 108 clfs.attrib.r, 103 109 (clfs.package.para | clfs.package.command)* 104 110 } … … 106 112 clfs.package.warning = 107 113 element c:note { 108 clfs.attrib.arch, 109 clfs.attrib.bits, 110 clfs.attrib.multilib, 114 xml.attrib.base, 115 clfs.attrib.arch, 116 clfs.attrib.bits, 117 clfs.attrib.multilib, 118 clfs.attrib.r, 111 119 (clfs.package.para | clfs.package.command)* 112 120 } … … 114 122 clfs.package.command = 115 123 element c:command { 116 clfs.attrib.arch, 117 clfs.attrib.bits, 118 clfs.attrib.multilib, 124 xml.attrib.base, 125 clfs.attrib.arch, 126 clfs.attrib.bits, 127 clfs.attrib.multilib, 128 clfs.attrib.r, 119 129 attribute c:nodump { 120 130 "true" | "false" -
BOOK/schema/clfs/0.1/rng/clfs.rng
r41fab2e r8823a97 85 85 </optional> 86 86 </define> 87 <define name="clfs.attrib.r"> 88 <optional> 89 <attribute name="c:r"/> 90 </optional> 91 </define> 87 92 <!-- Inline Elements --> 88 93 <define name="clfs.inline"> … … 143 148 <define name="clfs.package.para"> 144 149 <element name="c:para"> 145 <ref name="clfs.attrib.arch"/> 146 <ref name="clfs.attrib.bits"/> 147 <ref name="clfs.attrib.multilib"/> 150 <ref name="xml.attrib.base"/> 151 <ref name="clfs.attrib.arch"/> 152 <ref name="clfs.attrib.bits"/> 153 <ref name="clfs.attrib.multilib"/> 154 <ref name="clfs.attrib.r"/> 148 155 <ref name="clfs.inline"/> 149 156 </element> … … 151 158 <define name="clfs.package.note"> 152 159 <element name="c:note"> 153 <ref name="clfs.attrib.arch"/> 154 <ref name="clfs.attrib.bits"/> 155 <ref name="clfs.attrib.multilib"/> 160 <ref name="xml.attrib.base"/> 161 <ref name="clfs.attrib.arch"/> 162 <ref name="clfs.attrib.bits"/> 163 <ref name="clfs.attrib.multilib"/> 164 <ref name="clfs.attrib.r"/> 156 165 <zeroOrMore> 157 166 <choice> … … 164 173 <define name="clfs.package.warning"> 165 174 <element name="c:note"> 166 <ref name="clfs.attrib.arch"/> 167 <ref name="clfs.attrib.bits"/> 168 <ref name="clfs.attrib.multilib"/> 175 <ref name="xml.attrib.base"/> 176 <ref name="clfs.attrib.arch"/> 177 <ref name="clfs.attrib.bits"/> 178 <ref name="clfs.attrib.multilib"/> 179 <ref name="clfs.attrib.r"/> 169 180 <zeroOrMore> 170 181 <choice> … … 177 188 <define name="clfs.package.command"> 178 189 <element name="c:command"> 179 <ref name="clfs.attrib.arch"/> 180 <ref name="clfs.attrib.bits"/> 181 <ref name="clfs.attrib.multilib"/> 190 <ref name="xml.attrib.base"/> 191 <ref name="clfs.attrib.arch"/> 192 <ref name="clfs.attrib.bits"/> 193 <ref name="clfs.attrib.multilib"/> 194 <ref name="clfs.attrib.r"/> 182 195 <optional> 183 196 <attribute name="c:nodump">
Note:
See TracChangeset
for help on using the changeset viewer.