source: stylesheets/lfs-xsl/docbook-xsl-1.78.1/slides/schema/xsd/callouts.xsd@ c158fe6

7.5-systemd 7.6-systemd 7.7-systemd 7.8-systemd 7.9-systemd
Last change on this file since c158fe6 was b1a51ac1, checked in by Krejzi <krejzi@…>, 11 years ago

Import new branch

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd/BOOK@10389 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 16.2 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 This file is part of DocBook V5.0
4
5 Copyright 1992-2008 HaL Computer Systems, Inc.,
6 O'Reilly & Associates, Inc., ArborText, Inc., Fujitsu Software
7 Corporation, Norman Walsh, Sun Microsystems, Inc., and the
8 Organization for the Advancement of Structured Information
9 Standards (OASIS).
10
11 Release: $Id: callouts.rnc 8931 2010-10-20 13:29:20Z nwalsh $
12
13 Permission to use, copy, modify and distribute the DocBook schema
14 and its accompanying documentation for any purpose and without fee
15 is hereby granted in perpetuity, provided that the above copyright
16 notice and this paragraph appear in all copies. The copyright
17 holders make no representation about the suitability of the schema
18 for any purpose. It is provided "as is" without expressed or implied
19 warranty.
20
21 If you modify the DocBook schema in any way, label your schema as a
22 variant of DocBook. See the reference documentation
23 (http://docbook.org/tdg5/en/html/ch05.html#s-notdocbook)
24 for more information.
25
26 Please direct all questions, bug reports, or suggestions for changes
27 to the docbook@lists.oasis-open.org mailing list. For more
28 information, see http://www.oasis-open.org/docbook/.
29
30 ======================================================================
31-->
32<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://docbook.org/ns/docbook" xmlns:dbs="http://docbook.org/ns/docbook-slides" xmlns:db="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
33 <xs:import namespace="http://docbook.org/ns/docbook-slides" schemaLocation="slides.xsd"/>
34 <xs:import namespace="http://www.w3.org/1999/xlink" schemaLocation="xlink.xsd"/>
35 <xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="xml.xsd"/>
36 <xs:group name="db.computeroutput.inlines">
37 <xs:choice>
38 <xs:element ref="db:co"/>
39 <xs:element ref="db:db.markup.inlines"/>
40 <xs:choice minOccurs="0">
41 <xs:group ref="db:db.ubiq.inlines"/>
42 <xs:element ref="db:db.os.inlines"/>
43 <xs:element ref="db:db.technical.inlines"/>
44 </xs:choice>
45 </xs:choice>
46 </xs:group>
47 <xs:group name="db.prompt.inlines">
48 <xs:choice>
49 <xs:element ref="db:co"/>
50 <xs:group ref="db:db._text"/>
51 </xs:choice>
52 </xs:group>
53 <xs:group name="db.systemitem.inlines">
54 <xs:choice>
55 <xs:element ref="db:co"/>
56 <xs:group ref="db:db._text"/>
57 </xs:choice>
58 </xs:group>
59 <xs:group name="db.userinput.inlines">
60 <xs:choice>
61 <xs:element ref="db:co"/>
62 <xs:element ref="db:db.markup.inlines"/>
63 <xs:group ref="db:db.gui.inlines"/>
64 <xs:group ref="db:db.keyboard.inlines"/>
65 <xs:choice minOccurs="0">
66 <xs:group ref="db:db.ubiq.inlines"/>
67 <xs:element ref="db:db.os.inlines"/>
68 <xs:element ref="db:db.technical.inlines"/>
69 </xs:choice>
70 </xs:choice>
71 </xs:group>
72 <!-- ====================================================================== -->
73 <xs:simpleType name="db.area.units.enumeration">
74 <xs:restriction base="xs:token">
75 <xs:enumeration value="calspair">
76 <xs:annotation>
77 <xs:documentation>Coordinates expressed as a pair of CALS graphic coordinates.</xs:documentation>
78 </xs:annotation>
79 </xs:enumeration>
80 <xs:enumeration value="linecolumn">
81 <xs:annotation>
82 <xs:documentation>Coordinates expressed as a line and column.</xs:documentation>
83 </xs:annotation>
84 </xs:enumeration>
85 <xs:enumeration value="linecolumnpair">
86 <xs:annotation>
87 <xs:documentation>Coordinates expressed as a pair of lines and columns.</xs:documentation>
88 </xs:annotation>
89 </xs:enumeration>
90 <xs:enumeration value="linerange">
91 <xs:annotation>
92 <xs:documentation>Coordinates expressed as a line range.</xs:documentation>
93 </xs:annotation>
94 </xs:enumeration>
95 </xs:restriction>
96 </xs:simpleType>
97 <xs:attributeGroup name="db.area.units-enum.attribute">
98 <xs:attribute name="units" type="db:db.area.units.enumeration"/>
99 </xs:attributeGroup>
100 <xs:attributeGroup name="db.area.units-other.attributes">
101 <xs:attribute name="units">
102 <xs:simpleType>
103 <xs:restriction base="xs:token">
104 <xs:enumeration value="other">
105 <xs:annotation>
106 <xs:documentation>Coordinates expressed in some non-standard units.</xs:documentation>
107 </xs:annotation>
108 </xs:enumeration>
109 </xs:restriction>
110 </xs:simpleType>
111 </xs:attribute>
112 <xs:attribute name="otherunits" use="required" type="xs:NMTOKEN"/>
113 </xs:attributeGroup>
114 <xs:attributeGroup name="db.area.units.attribute">
115 <xs:attribute name="units">
116 <xs:simpleType>
117 <xs:union memberTypes="db:db.area.units.enumeration">
118 <xs:simpleType>
119 <xs:restriction base="xs:token">
120 <xs:enumeration value="other">
121 <xs:annotation>
122 <xs:documentation>Coordinates expressed in some non-standard units.</xs:documentation>
123 </xs:annotation>
124 </xs:enumeration>
125 </xs:restriction>
126 </xs:simpleType>
127 </xs:union>
128 </xs:simpleType>
129 </xs:attribute>
130 <xs:attribute name="otherunits" type="xs:NMTOKEN"/>
131 </xs:attributeGroup>
132 <!-- ====================================================================== -->
133 <xs:attributeGroup name="db.calloutlist.role.attribute">
134 <xs:attribute name="role" use="required"/>
135 </xs:attributeGroup>
136 <xs:attributeGroup name="db.calloutlist.attlist">
137 <xs:attribute name="role"/>
138 <xs:attributeGroup ref="dbs:db.common.attributes"/>
139 <xs:attributeGroup ref="db:db.common.linking.attributes"/>
140 </xs:attributeGroup>
141 <xs:group name="db.calloutlist.info">
142 <xs:sequence>
143 <xs:group ref="db:db._info.title.only"/>
144 </xs:sequence>
145 </xs:group>
146 <xs:element name="calloutlist">
147 <xs:complexType>
148 <xs:sequence>
149 <xs:group ref="db:db.calloutlist.info"/>
150 <xs:group minOccurs="0" maxOccurs="unbounded" ref="db:db.all.blocks"/>
151 <xs:element maxOccurs="unbounded" ref="db:callout"/>
152 </xs:sequence>
153 <xs:attributeGroup ref="db:db.calloutlist.attlist"/>
154 </xs:complexType>
155 </xs:element>
156 <!-- ====================================================================== -->
157 <xs:attributeGroup name="db.callout.role.attribute">
158 <xs:attribute name="role" use="required"/>
159 </xs:attributeGroup>
160 <xs:attributeGroup name="db.callout.arearefs.attribute">
161 <xs:attribute name="arearefs" use="required" type="xs:IDREFS"/>
162 </xs:attributeGroup>
163 <xs:attributeGroup name="db.callout.attlist">
164 <xs:attribute name="role"/>
165 <xs:attributeGroup ref="dbs:db.common.attributes"/>
166 <xs:attributeGroup ref="db:db.callout.arearefs.attribute"/>
167 </xs:attributeGroup>
168 <xs:element name="callout">
169 <xs:complexType>
170 <xs:group maxOccurs="unbounded" ref="db:db.all.blocks"/>
171 <xs:attributeGroup ref="db:db.callout.attlist"/>
172 </xs:complexType>
173 </xs:element>
174 <!-- ====================================================================== -->
175 <xs:attributeGroup name="db.programlistingco.role.attribute">
176 <xs:attribute name="role" use="required"/>
177 </xs:attributeGroup>
178 <xs:attributeGroup name="db.programlistingco.attlist">
179 <xs:attribute name="role"/>
180 <xs:attributeGroup ref="dbs:db.common.attributes"/>
181 <xs:attributeGroup ref="db:db.common.linking.attributes"/>
182 </xs:attributeGroup>
183 <xs:group name="db.programlistingco.info">
184 <xs:sequence>
185 <xs:group ref="db:db._info.title.forbidden"/>
186 </xs:sequence>
187 </xs:group>
188 <xs:element name="programlistingco" substitutionGroup="db:db.verbatim.blocks">
189 <xs:complexType>
190 <xs:sequence>
191 <xs:group ref="db:db.programlistingco.info"/>
192 <xs:element ref="db:areaspec"/>
193 <xs:element ref="db:programlisting"/>
194 <xs:element minOccurs="0" maxOccurs="unbounded" ref="db:calloutlist"/>
195 </xs:sequence>
196 <xs:attributeGroup ref="db:db.programlistingco.attlist"/>
197 </xs:complexType>
198 </xs:element>
199 <!-- ====================================================================== -->
200 <xs:attributeGroup name="db.areaspec.role.attribute">
201 <xs:attribute name="role" use="required"/>
202 </xs:attributeGroup>
203 <xs:attributeGroup name="db.areaspec.attlist">
204 <xs:attribute name="role"/>
205 <xs:attributeGroup ref="dbs:db.common.attributes"/>
206 <xs:attributeGroup ref="db:db.common.linking.attributes"/>
207 <xs:attributeGroup ref="db:db.area.units.attribute"/>
208 </xs:attributeGroup>
209 <xs:element name="areaspec">
210 <xs:complexType>
211 <xs:choice maxOccurs="unbounded">
212 <xs:group ref="db:db.area"/>
213 <xs:element ref="db:areaset"/>
214 </xs:choice>
215 <xs:attributeGroup ref="db:db.areaspec.attlist"/>
216 </xs:complexType>
217 </xs:element>
218 <!-- ====================================================================== -->
219 <xs:attributeGroup name="db.area.role.attribute">
220 <xs:attribute name="role" use="required"/>
221 </xs:attributeGroup>
222 <xs:attributeGroup name="db.area.linkends.attribute">
223 <xs:attribute name="linkends" use="required" type="xs:IDREFS"/>
224 </xs:attributeGroup>
225 <xs:attributeGroup name="db.area.label.attribute">
226 <xs:attribute name="label" use="required"/>
227 </xs:attributeGroup>
228 <xs:attributeGroup name="db.area.coords.attribute">
229 <xs:attribute name="coords" use="required"/>
230 </xs:attributeGroup>
231 <xs:attributeGroup name="db.area.attlist">
232 <xs:attribute name="role"/>
233 <xs:attributeGroup ref="db:db.common.idreq.attributes"/>
234 <xs:attributeGroup ref="db:db.area.units.attribute"/>
235 <xs:attribute name="linkends" type="xs:IDREFS"/>
236 <xs:attribute ref="xlink:href"/>
237 <xs:attributeGroup ref="xlink:type"/>
238 <xs:attribute ref="xlink:role"/>
239 <xs:attribute ref="xlink:arcrole"/>
240 <xs:attribute ref="xlink:title"/>
241 <xs:attribute ref="xlink:show"/>
242 <xs:attribute ref="xlink:actuate"/>
243 <xs:attribute name="label"/>
244 <xs:attributeGroup ref="db:db.area.coords.attribute"/>
245 </xs:attributeGroup>
246 <xs:group name="db.area">
247 <xs:sequence>
248 <xs:element name="area">
249 <xs:complexType>
250 <xs:sequence>
251 <xs:element minOccurs="0" ref="db:alt"/>
252 </xs:sequence>
253 <xs:attributeGroup ref="db:db.area.attlist"/>
254 </xs:complexType>
255 </xs:element>
256 </xs:sequence>
257 </xs:group>
258 <!-- ====================================================================== -->
259 <!-- The only difference is that xml:id is optional -->
260 <xs:attributeGroup name="db.area.inareaset.attlist">
261 <xs:attribute name="role"/>
262 <xs:attributeGroup ref="dbs:db.common.attributes"/>
263 <xs:attributeGroup ref="db:db.area.units.attribute"/>
264 <xs:attribute name="linkends" type="xs:IDREFS"/>
265 <xs:attribute ref="xlink:href"/>
266 <xs:attributeGroup ref="xlink:type"/>
267 <xs:attribute ref="xlink:role"/>
268 <xs:attribute ref="xlink:arcrole"/>
269 <xs:attribute ref="xlink:title"/>
270 <xs:attribute ref="xlink:show"/>
271 <xs:attribute ref="xlink:actuate"/>
272 <xs:attribute name="label"/>
273 <xs:attributeGroup ref="db:db.area.coords.attribute"/>
274 </xs:attributeGroup>
275 <xs:group name="db.area.inareaset">
276 <xs:sequence>
277 <xs:element name="area">
278 <xs:complexType>
279 <xs:sequence>
280 <xs:element minOccurs="0" ref="db:alt"/>
281 </xs:sequence>
282 <xs:attributeGroup ref="db:db.area.inareaset.attlist"/>
283 </xs:complexType>
284 </xs:element>
285 </xs:sequence>
286 </xs:group>
287 <!-- ====================================================================== -->
288 <xs:attributeGroup name="db.areaset.role.attribute">
289 <xs:attribute name="role" use="required"/>
290 </xs:attributeGroup>
291 <xs:attributeGroup name="db.areaset.linkends.attribute">
292 <xs:attributeGroup ref="db:db.linkends.attribute"/>
293 </xs:attributeGroup>
294 <xs:attributeGroup name="db.areaset.label.attribute">
295 <xs:attributeGroup ref="db:db.label.attribute"/>
296 </xs:attributeGroup>
297 <xs:attributeGroup name="db.areaset.attlist">
298 <xs:attribute name="role"/>
299 <xs:attributeGroup ref="db:db.common.idreq.attributes"/>
300 <xs:attributeGroup ref="db:db.area.units.attribute"/>
301 <xs:attribute name="linkends" type="xs:IDREFS"/>
302 <xs:attribute ref="xlink:href"/>
303 <xs:attributeGroup ref="xlink:type"/>
304 <xs:attribute ref="xlink:role"/>
305 <xs:attribute ref="xlink:arcrole"/>
306 <xs:attribute ref="xlink:title"/>
307 <xs:attribute ref="xlink:show"/>
308 <xs:attribute ref="xlink:actuate"/>
309 <xs:attribute name="label"/>
310 </xs:attributeGroup>
311 <xs:element name="areaset">
312 <xs:complexType>
313 <xs:group maxOccurs="unbounded" ref="db:db.area.inareaset"/>
314 <xs:attributeGroup ref="db:db.areaset.attlist"/>
315 </xs:complexType>
316 </xs:element>
317 <!-- ====================================================================== -->
318 <xs:attributeGroup name="db.screenco.role.attribute">
319 <xs:attribute name="role" use="required"/>
320 </xs:attributeGroup>
321 <xs:attributeGroup name="db.screenco.attlist">
322 <xs:attribute name="role"/>
323 <xs:attributeGroup ref="dbs:db.common.attributes"/>
324 <xs:attributeGroup ref="db:db.common.linking.attributes"/>
325 </xs:attributeGroup>
326 <xs:group name="db.screenco.info">
327 <xs:sequence>
328 <xs:group ref="db:db._info.title.forbidden"/>
329 </xs:sequence>
330 </xs:group>
331 <xs:element name="screenco" substitutionGroup="db:db.verbatim.blocks">
332 <xs:complexType>
333 <xs:sequence>
334 <xs:group ref="db:db.screenco.info"/>
335 <xs:element ref="db:areaspec"/>
336 <xs:element ref="db:screen"/>
337 <xs:element minOccurs="0" maxOccurs="unbounded" ref="db:calloutlist"/>
338 </xs:sequence>
339 <xs:attributeGroup ref="db:db.screenco.attlist"/>
340 </xs:complexType>
341 </xs:element>
342 <!-- ====================================================================== -->
343 <xs:attributeGroup name="db.imageobjectco.role.attribute">
344 <xs:attribute name="role" use="required"/>
345 </xs:attributeGroup>
346 <xs:attributeGroup name="db.imageobjectco.attlist">
347 <xs:attribute name="role"/>
348 <xs:attributeGroup ref="dbs:db.common.attributes"/>
349 <xs:attributeGroup ref="db:db.common.linking.attributes"/>
350 </xs:attributeGroup>
351 <xs:group name="db.imageobjectco.info">
352 <xs:sequence>
353 <xs:group ref="db:db._info.title.forbidden"/>
354 </xs:sequence>
355 </xs:group>
356 <xs:element name="imageobjectco" substitutionGroup="db:db.mediaobject.content">
357 <xs:complexType>
358 <xs:sequence>
359 <xs:group ref="db:db.imageobjectco.info"/>
360 <xs:element ref="db:areaspec"/>
361 <xs:element maxOccurs="unbounded" ref="db:imageobject"/>
362 <xs:element minOccurs="0" maxOccurs="unbounded" ref="db:calloutlist"/>
363 </xs:sequence>
364 <xs:attributeGroup ref="db:db.imageobjectco.attlist"/>
365 </xs:complexType>
366 </xs:element>
367 <!-- ====================================================================== -->
368 <xs:attributeGroup name="db.co.role.attribute">
369 <xs:attribute name="role" use="required"/>
370 </xs:attributeGroup>
371 <xs:attributeGroup name="db.co.linkends.attribute">
372 <xs:attributeGroup ref="db:db.linkends.attribute"/>
373 </xs:attributeGroup>
374 <xs:attributeGroup name="db.co.label.attribute">
375 <xs:attributeGroup ref="db:db.label.attribute"/>
376 </xs:attributeGroup>
377 <xs:attributeGroup name="db.co.attlist">
378 <xs:attribute name="role"/>
379 <xs:attributeGroup ref="db:db.common.idreq.attributes"/>
380 <xs:attribute name="linkends" type="xs:IDREFS"/>
381 <xs:attribute name="label"/>
382 </xs:attributeGroup>
383 <xs:element name="co">
384 <xs:complexType>
385 <xs:attributeGroup ref="db:db.co.attlist"/>
386 </xs:complexType>
387 </xs:element>
388 <!-- ====================================================================== -->
389 <xs:attributeGroup name="db.coref.role.attribute">
390 <xs:attribute name="role" use="required"/>
391 </xs:attributeGroup>
392 <xs:attributeGroup name="db.coref.label.attribute">
393 <xs:attributeGroup ref="db:db.label.attribute"/>
394 </xs:attributeGroup>
395 <xs:attributeGroup name="db.coref.attlist">
396 <xs:attribute name="role"/>
397 <xs:attributeGroup ref="dbs:db.common.attributes"/>
398 <xs:attributeGroup ref="db:db.linkend.attribute"/>
399 <xs:attribute name="label"/>
400 </xs:attributeGroup>
401 <xs:element name="coref">
402 <xs:complexType>
403 <xs:attributeGroup ref="db:db.coref.attlist"/>
404 </xs:complexType>
405 </xs:element>
406</xs:schema>
Note: See TracBrowser for help on using the repository browser.