source: stylesheets/lfs-xsl/docbook-xsl-1.78.1/slides/schema/xsd/calstbl.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: 55.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: calstbl.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:attributeGroup name="db.char.attribute">
37 <xs:attribute name="char" use="required"/>
38 </xs:attributeGroup>
39 <xs:attributeGroup name="db.charoff.attribute">
40 <xs:attribute name="charoff" use="required">
41 <xs:simpleType>
42 <xs:restriction base="xs:decimal">
43 <xs:minExclusive value="0"/>
44 <xs:maxExclusive value="100"/>
45 </xs:restriction>
46 </xs:simpleType>
47 </xs:attribute>
48 </xs:attributeGroup>
49 <xs:attributeGroup name="db.frame.attribute">
50 <xs:attribute name="frame" use="required">
51 <xs:simpleType>
52 <xs:restriction base="xs:token">
53 <xs:enumeration value="all">
54 <xs:annotation>
55 <xs:documentation>Frame all four sides of the table. In some environments with limited control over table border formatting, such as HTML, this may imply additional borders.</xs:documentation>
56 </xs:annotation>
57 </xs:enumeration>
58 <xs:enumeration value="bottom">
59 <xs:annotation>
60 <xs:documentation>Frame only the bottom of the table.</xs:documentation>
61 </xs:annotation>
62 </xs:enumeration>
63 <xs:enumeration value="none">
64 <xs:annotation>
65 <xs:documentation>Place no border on the table. In some environments with limited control over table border formatting, such as HTML, this may disable other borders as well.</xs:documentation>
66 </xs:annotation>
67 </xs:enumeration>
68 <xs:enumeration value="sides">
69 <xs:annotation>
70 <xs:documentation>Frame the left and right sides of the table.</xs:documentation>
71 </xs:annotation>
72 </xs:enumeration>
73 <xs:enumeration value="top">
74 <xs:annotation>
75 <xs:documentation>Frame the top of the table.</xs:documentation>
76 </xs:annotation>
77 </xs:enumeration>
78 <xs:enumeration value="topbot">
79 <xs:annotation>
80 <xs:documentation>Frame the top and bottom of the table.</xs:documentation>
81 </xs:annotation>
82 </xs:enumeration>
83 </xs:restriction>
84 </xs:simpleType>
85 </xs:attribute>
86 </xs:attributeGroup>
87 <xs:attributeGroup name="db.colsep.attribute">
88 <xs:attribute name="colsep" use="required">
89 <xs:simpleType>
90 <xs:restriction base="xs:token">
91 <xs:enumeration value="0">
92 <xs:annotation>
93 <xs:documentation>No column separator rule.</xs:documentation>
94 </xs:annotation>
95 </xs:enumeration>
96 <xs:enumeration value="1">
97 <xs:annotation>
98 <xs:documentation>Provide a column separator rule on the right</xs:documentation>
99 </xs:annotation>
100 </xs:enumeration>
101 </xs:restriction>
102 </xs:simpleType>
103 </xs:attribute>
104 </xs:attributeGroup>
105 <xs:attributeGroup name="db.rowsep.attribute">
106 <xs:attribute name="rowsep" use="required">
107 <xs:simpleType>
108 <xs:restriction base="xs:token">
109 <xs:enumeration value="0">
110 <xs:annotation>
111 <xs:documentation>No row separator rule.</xs:documentation>
112 </xs:annotation>
113 </xs:enumeration>
114 <xs:enumeration value="1">
115 <xs:annotation>
116 <xs:documentation>Provide a row separator rule below</xs:documentation>
117 </xs:annotation>
118 </xs:enumeration>
119 </xs:restriction>
120 </xs:simpleType>
121 </xs:attribute>
122 </xs:attributeGroup>
123 <xs:attributeGroup name="db.orient.attribute">
124 <xs:attribute name="orient" use="required">
125 <xs:simpleType>
126 <xs:restriction base="xs:token">
127 <xs:enumeration value="land">
128 <xs:annotation>
129 <xs:documentation>90 degrees counter-clockwise from the rest of the text flow.</xs:documentation>
130 </xs:annotation>
131 </xs:enumeration>
132 <xs:enumeration value="port">
133 <xs:annotation>
134 <xs:documentation>The same orientation as the rest of the text flow.</xs:documentation>
135 </xs:annotation>
136 </xs:enumeration>
137 </xs:restriction>
138 </xs:simpleType>
139 </xs:attribute>
140 </xs:attributeGroup>
141 <xs:attributeGroup name="db.tabstyle.attribute">
142 <xs:attribute name="tabstyle" use="required"/>
143 </xs:attributeGroup>
144 <xs:attributeGroup name="db.rowheader.attribute">
145 <xs:attribute name="rowheader" use="required">
146 <xs:simpleType>
147 <xs:restriction base="xs:token">
148 <xs:enumeration value="firstcol">
149 <xs:annotation>
150 <xs:documentation>Indicates that entries in the first column of the table are functionally row headers (analogous to the way that a thead provides column headers).</xs:documentation>
151 </xs:annotation>
152 </xs:enumeration>
153 <xs:enumeration value="norowheader">
154 <xs:annotation>
155 <xs:documentation>Indicates that entries in the first column have no special significance with respect to column headers.</xs:documentation>
156 </xs:annotation>
157 </xs:enumeration>
158 </xs:restriction>
159 </xs:simpleType>
160 </xs:attribute>
161 </xs:attributeGroup>
162 <xs:attributeGroup name="db.align.attribute">
163 <xs:attribute name="align" use="required">
164 <xs:simpleType>
165 <xs:restriction base="xs:token">
166 <xs:enumeration value="center">
167 <xs:annotation>
168 <xs:documentation>Centered.</xs:documentation>
169 </xs:annotation>
170 </xs:enumeration>
171 <xs:enumeration value="char">
172 <xs:annotation>
173 <xs:documentation>Aligned on a particular character.</xs:documentation>
174 </xs:annotation>
175 </xs:enumeration>
176 <xs:enumeration value="justify">
177 <xs:annotation>
178 <xs:documentation>Left and right justified.</xs:documentation>
179 </xs:annotation>
180 </xs:enumeration>
181 <xs:enumeration value="left">
182 <xs:annotation>
183 <xs:documentation>Left justified.</xs:documentation>
184 </xs:annotation>
185 </xs:enumeration>
186 <xs:enumeration value="right">
187 <xs:annotation>
188 <xs:documentation>Right justified.</xs:documentation>
189 </xs:annotation>
190 </xs:enumeration>
191 </xs:restriction>
192 </xs:simpleType>
193 </xs:attribute>
194 </xs:attributeGroup>
195 <xs:attributeGroup name="db.valign.attribute">
196 <xs:attribute name="valign" use="required">
197 <xs:simpleType>
198 <xs:restriction base="xs:token">
199 <xs:enumeration value="bottom">
200 <xs:annotation>
201 <xs:documentation>Aligned on the bottom of the entry.</xs:documentation>
202 </xs:annotation>
203 </xs:enumeration>
204 <xs:enumeration value="middle">
205 <xs:annotation>
206 <xs:documentation>Aligned in the middle.</xs:documentation>
207 </xs:annotation>
208 </xs:enumeration>
209 <xs:enumeration value="top">
210 <xs:annotation>
211 <xs:documentation>Aligned at the top of the entry.</xs:documentation>
212 </xs:annotation>
213 </xs:enumeration>
214 </xs:restriction>
215 </xs:simpleType>
216 </xs:attribute>
217 </xs:attributeGroup>
218 <xs:attributeGroup name="db.specify-col-by-colname.attributes">
219 <xs:attribute name="colname" use="required"/>
220 </xs:attributeGroup>
221 <xs:attributeGroup name="db.specify-col-by-namest.attributes">
222 <xs:attribute name="namest" use="required"/>
223 </xs:attributeGroup>
224 <xs:attributeGroup name="db.specify-span-by-spanspec.attributes">
225 <xs:attribute name="spanname" use="required"/>
226 </xs:attributeGroup>
227 <xs:attributeGroup name="db.specify-span-directly.attributes">
228 <xs:attribute name="namest" use="required"/>
229 <xs:attribute name="nameend" use="required"/>
230 </xs:attributeGroup>
231 <xs:attributeGroup name="db.column-spec.attributes">
232 <xs:attribute name="colname"/>
233 <xs:attribute name="namest"/>
234 <xs:attribute name="spanname"/>
235 <xs:attribute name="nameend"/>
236 </xs:attributeGroup>
237 <xs:attributeGroup name="db.colname.attribute">
238 <xs:attribute name="colname" use="required"/>
239 </xs:attributeGroup>
240 <xs:attributeGroup name="db.spanname.attribute">
241 <xs:attribute name="spanname" use="required"/>
242 </xs:attributeGroup>
243 <!-- ====================================================================== -->
244 <xs:attributeGroup name="db.tgroup.role.attribute">
245 <xs:attribute name="role" use="required"/>
246 </xs:attributeGroup>
247 <xs:attributeGroup name="db.tgroup.tgroupstyle.attribute">
248 <xs:attribute name="tgroupstyle" use="required"/>
249 </xs:attributeGroup>
250 <xs:attributeGroup name="db.tgroup.cols.attribute">
251 <xs:attribute name="cols" use="required" type="xs:positiveInteger"/>
252 </xs:attributeGroup>
253 <xs:attributeGroup name="db.tgroup.attlist">
254 <xs:attribute name="role"/>
255 <xs:attributeGroup ref="dbs:db.common.attributes"/>
256 <xs:attributeGroup ref="db:db.common.linking.attributes"/>
257 <xs:attribute name="char"/>
258 <xs:attribute name="charoff">
259 <xs:simpleType>
260 <xs:restriction base="xs:decimal">
261 <xs:minExclusive value="0"/>
262 <xs:maxExclusive value="100"/>
263 </xs:restriction>
264 </xs:simpleType>
265 </xs:attribute>
266 <xs:attribute name="tgroupstyle"/>
267 <xs:attributeGroup ref="db:db.tgroup.cols.attribute"/>
268 <xs:attribute name="colsep">
269 <xs:simpleType>
270 <xs:restriction base="xs:token">
271 <xs:enumeration value="0">
272 <xs:annotation>
273 <xs:documentation>No column separator rule.</xs:documentation>
274 </xs:annotation>
275 </xs:enumeration>
276 <xs:enumeration value="1">
277 <xs:annotation>
278 <xs:documentation>Provide a column separator rule on the right</xs:documentation>
279 </xs:annotation>
280 </xs:enumeration>
281 </xs:restriction>
282 </xs:simpleType>
283 </xs:attribute>
284 <xs:attribute name="rowsep">
285 <xs:simpleType>
286 <xs:restriction base="xs:token">
287 <xs:enumeration value="0">
288 <xs:annotation>
289 <xs:documentation>No row separator rule.</xs:documentation>
290 </xs:annotation>
291 </xs:enumeration>
292 <xs:enumeration value="1">
293 <xs:annotation>
294 <xs:documentation>Provide a row separator rule below</xs:documentation>
295 </xs:annotation>
296 </xs:enumeration>
297 </xs:restriction>
298 </xs:simpleType>
299 </xs:attribute>
300 <xs:attribute name="align">
301 <xs:simpleType>
302 <xs:restriction base="xs:token">
303 <xs:enumeration value="center">
304 <xs:annotation>
305 <xs:documentation>Centered.</xs:documentation>
306 </xs:annotation>
307 </xs:enumeration>
308 <xs:enumeration value="char">
309 <xs:annotation>
310 <xs:documentation>Aligned on a particular character.</xs:documentation>
311 </xs:annotation>
312 </xs:enumeration>
313 <xs:enumeration value="justify">
314 <xs:annotation>
315 <xs:documentation>Left and right justified.</xs:documentation>
316 </xs:annotation>
317 </xs:enumeration>
318 <xs:enumeration value="left">
319 <xs:annotation>
320 <xs:documentation>Left justified.</xs:documentation>
321 </xs:annotation>
322 </xs:enumeration>
323 <xs:enumeration value="right">
324 <xs:annotation>
325 <xs:documentation>Right justified.</xs:documentation>
326 </xs:annotation>
327 </xs:enumeration>
328 </xs:restriction>
329 </xs:simpleType>
330 </xs:attribute>
331 </xs:attributeGroup>
332 <xs:element name="tgroup">
333 <xs:complexType>
334 <xs:sequence>
335 <xs:element minOccurs="0" maxOccurs="unbounded" ref="db:colspec"/>
336 <xs:element minOccurs="0" maxOccurs="unbounded" ref="db:spanspec"/>
337 <xs:group minOccurs="0" ref="db:db.cals.thead"/>
338 <xs:group minOccurs="0" ref="db:db.cals.tfoot"/>
339 <xs:group ref="db:db.cals.tbody"/>
340 </xs:sequence>
341 <xs:attributeGroup ref="db:db.tgroup.attlist"/>
342 </xs:complexType>
343 </xs:element>
344 <!-- ====================================================================== -->
345 <xs:attributeGroup name="db.colspec.role.attribute">
346 <xs:attribute name="role" use="required"/>
347 </xs:attributeGroup>
348 <xs:attributeGroup name="db.colspec.colnum.attribute">
349 <xs:attribute name="colnum" use="required" type="xs:positiveInteger"/>
350 </xs:attributeGroup>
351 <xs:attributeGroup name="db.colspec.colwidth.attribute">
352 <xs:attribute name="colwidth" use="required"/>
353 </xs:attributeGroup>
354 <xs:attributeGroup name="db.colspec.attlist">
355 <xs:attribute name="role"/>
356 <xs:attributeGroup ref="dbs:db.common.attributes"/>
357 <xs:attributeGroup ref="db:db.common.linking.attributes"/>
358 <xs:attribute name="colnum" type="xs:positiveInteger"/>
359 <xs:attribute name="char"/>
360 <xs:attribute name="colsep">
361 <xs:simpleType>
362 <xs:restriction base="xs:token">
363 <xs:enumeration value="0">
364 <xs:annotation>
365 <xs:documentation>No column separator rule.</xs:documentation>
366 </xs:annotation>
367 </xs:enumeration>
368 <xs:enumeration value="1">
369 <xs:annotation>
370 <xs:documentation>Provide a column separator rule on the right</xs:documentation>
371 </xs:annotation>
372 </xs:enumeration>
373 </xs:restriction>
374 </xs:simpleType>
375 </xs:attribute>
376 <xs:attribute name="colwidth"/>
377 <xs:attribute name="charoff">
378 <xs:simpleType>
379 <xs:restriction base="xs:decimal">
380 <xs:minExclusive value="0"/>
381 <xs:maxExclusive value="100"/>
382 </xs:restriction>
383 </xs:simpleType>
384 </xs:attribute>
385 <xs:attribute name="colname"/>
386 <xs:attribute name="rowsep">
387 <xs:simpleType>
388 <xs:restriction base="xs:token">
389 <xs:enumeration value="0">
390 <xs:annotation>
391 <xs:documentation>No row separator rule.</xs:documentation>
392 </xs:annotation>
393 </xs:enumeration>
394 <xs:enumeration value="1">
395 <xs:annotation>
396 <xs:documentation>Provide a row separator rule below</xs:documentation>
397 </xs:annotation>
398 </xs:enumeration>
399 </xs:restriction>
400 </xs:simpleType>
401 </xs:attribute>
402 <xs:attribute name="align">
403 <xs:simpleType>
404 <xs:restriction base="xs:token">
405 <xs:enumeration value="center">
406 <xs:annotation>
407 <xs:documentation>Centered.</xs:documentation>
408 </xs:annotation>
409 </xs:enumeration>
410 <xs:enumeration value="char">
411 <xs:annotation>
412 <xs:documentation>Aligned on a particular character.</xs:documentation>
413 </xs:annotation>
414 </xs:enumeration>
415 <xs:enumeration value="justify">
416 <xs:annotation>
417 <xs:documentation>Left and right justified.</xs:documentation>
418 </xs:annotation>
419 </xs:enumeration>
420 <xs:enumeration value="left">
421 <xs:annotation>
422 <xs:documentation>Left justified.</xs:documentation>
423 </xs:annotation>
424 </xs:enumeration>
425 <xs:enumeration value="right">
426 <xs:annotation>
427 <xs:documentation>Right justified.</xs:documentation>
428 </xs:annotation>
429 </xs:enumeration>
430 </xs:restriction>
431 </xs:simpleType>
432 </xs:attribute>
433 </xs:attributeGroup>
434 <xs:element name="colspec">
435 <xs:complexType>
436 <xs:attributeGroup ref="db:db.colspec.attlist"/>
437 </xs:complexType>
438 </xs:element>
439 <!-- ====================================================================== -->
440 <xs:attributeGroup name="db.spanspec.role.attribute">
441 <xs:attribute name="role" use="required"/>
442 </xs:attributeGroup>
443 <xs:attributeGroup name="db.spanspec.namest.attribute">
444 <xs:attribute name="namest" use="required"/>
445 </xs:attributeGroup>
446 <xs:attributeGroup name="db.spanspec.nameend.attribute">
447 <xs:attribute name="nameend" use="required"/>
448 </xs:attributeGroup>
449 <xs:attributeGroup name="db.spanspec.attlist">
450 <xs:attribute name="role"/>
451 <xs:attributeGroup ref="dbs:db.common.attributes"/>
452 <xs:attributeGroup ref="db:db.common.linking.attributes"/>
453 <xs:attributeGroup ref="db:db.spanname.attribute"/>
454 <xs:attributeGroup ref="db:db.spanspec.namest.attribute"/>
455 <xs:attributeGroup ref="db:db.spanspec.nameend.attribute"/>
456 <xs:attribute name="char"/>
457 <xs:attribute name="colsep">
458 <xs:simpleType>
459 <xs:restriction base="xs:token">
460 <xs:enumeration value="0">
461 <xs:annotation>
462 <xs:documentation>No column separator rule.</xs:documentation>
463 </xs:annotation>
464 </xs:enumeration>
465 <xs:enumeration value="1">
466 <xs:annotation>
467 <xs:documentation>Provide a column separator rule on the right</xs:documentation>
468 </xs:annotation>
469 </xs:enumeration>
470 </xs:restriction>
471 </xs:simpleType>
472 </xs:attribute>
473 <xs:attribute name="charoff">
474 <xs:simpleType>
475 <xs:restriction base="xs:decimal">
476 <xs:minExclusive value="0"/>
477 <xs:maxExclusive value="100"/>
478 </xs:restriction>
479 </xs:simpleType>
480 </xs:attribute>
481 <xs:attribute name="rowsep">
482 <xs:simpleType>
483 <xs:restriction base="xs:token">
484 <xs:enumeration value="0">
485 <xs:annotation>
486 <xs:documentation>No row separator rule.</xs:documentation>
487 </xs:annotation>
488 </xs:enumeration>
489 <xs:enumeration value="1">
490 <xs:annotation>
491 <xs:documentation>Provide a row separator rule below</xs:documentation>
492 </xs:annotation>
493 </xs:enumeration>
494 </xs:restriction>
495 </xs:simpleType>
496 </xs:attribute>
497 <xs:attribute name="align">
498 <xs:simpleType>
499 <xs:restriction base="xs:token">
500 <xs:enumeration value="center">
501 <xs:annotation>
502 <xs:documentation>Centered.</xs:documentation>
503 </xs:annotation>
504 </xs:enumeration>
505 <xs:enumeration value="char">
506 <xs:annotation>
507 <xs:documentation>Aligned on a particular character.</xs:documentation>
508 </xs:annotation>
509 </xs:enumeration>
510 <xs:enumeration value="justify">
511 <xs:annotation>
512 <xs:documentation>Left and right justified.</xs:documentation>
513 </xs:annotation>
514 </xs:enumeration>
515 <xs:enumeration value="left">
516 <xs:annotation>
517 <xs:documentation>Left justified.</xs:documentation>
518 </xs:annotation>
519 </xs:enumeration>
520 <xs:enumeration value="right">
521 <xs:annotation>
522 <xs:documentation>Right justified.</xs:documentation>
523 </xs:annotation>
524 </xs:enumeration>
525 </xs:restriction>
526 </xs:simpleType>
527 </xs:attribute>
528 </xs:attributeGroup>
529 <xs:element name="spanspec">
530 <xs:complexType>
531 <xs:attributeGroup ref="db:db.spanspec.attlist"/>
532 </xs:complexType>
533 </xs:element>
534 <!-- ====================================================================== -->
535 <xs:attributeGroup name="db.cals.thead.role.attribute">
536 <xs:attribute name="role" use="required"/>
537 </xs:attributeGroup>
538 <xs:attributeGroup name="db.cals.thead.attlist">
539 <xs:attribute name="role"/>
540 <xs:attributeGroup ref="dbs:db.common.attributes"/>
541 <xs:attributeGroup ref="db:db.common.linking.attributes"/>
542 <xs:attribute name="valign">
543 <xs:simpleType>
544 <xs:restriction base="xs:token">
545 <xs:enumeration value="bottom">
546 <xs:annotation>
547 <xs:documentation>Aligned on the bottom of the entry.</xs:documentation>
548 </xs:annotation>
549 </xs:enumeration>
550 <xs:enumeration value="middle">
551 <xs:annotation>
552 <xs:documentation>Aligned in the middle.</xs:documentation>
553 </xs:annotation>
554 </xs:enumeration>
555 <xs:enumeration value="top">
556 <xs:annotation>
557 <xs:documentation>Aligned at the top of the entry.</xs:documentation>
558 </xs:annotation>
559 </xs:enumeration>
560 </xs:restriction>
561 </xs:simpleType>
562 </xs:attribute>
563 </xs:attributeGroup>
564 <xs:group name="db.cals.thead">
565 <xs:sequence>
566 <xs:element name="thead">
567 <xs:complexType>
568 <xs:sequence>
569 <xs:element minOccurs="0" maxOccurs="unbounded" ref="db:colspec"/>
570 <xs:group maxOccurs="unbounded" ref="db:db.row"/>
571 </xs:sequence>
572 <xs:attributeGroup ref="db:db.cals.thead.attlist"/>
573 </xs:complexType>
574 </xs:element>
575 </xs:sequence>
576 </xs:group>
577 <!-- ====================================================================== -->
578 <xs:attributeGroup name="db.cals.tfoot.role.attribute">
579 <xs:attribute name="role" use="required"/>
580 </xs:attributeGroup>
581 <xs:attributeGroup name="db.cals.tfoot.attlist">
582 <xs:attribute name="role"/>
583 <xs:attributeGroup ref="dbs:db.common.attributes"/>
584 <xs:attributeGroup ref="db:db.common.linking.attributes"/>
585 <xs:attribute name="valign">
586 <xs:simpleType>
587 <xs:restriction base="xs:token">
588 <xs:enumeration value="bottom">
589 <xs:annotation>
590 <xs:documentation>Aligned on the bottom of the entry.</xs:documentation>
591 </xs:annotation>
592 </xs:enumeration>
593 <xs:enumeration value="middle">
594 <xs:annotation>
595 <xs:documentation>Aligned in the middle.</xs:documentation>
596 </xs:annotation>
597 </xs:enumeration>
598 <xs:enumeration value="top">
599 <xs:annotation>
600 <xs:documentation>Aligned at the top of the entry.</xs:documentation>
601 </xs:annotation>
602 </xs:enumeration>
603 </xs:restriction>
604 </xs:simpleType>
605 </xs:attribute>
606 </xs:attributeGroup>
607 <xs:group name="db.cals.tfoot">
608 <xs:sequence>
609 <xs:element name="tfoot">
610 <xs:complexType>
611 <xs:sequence>
612 <xs:element minOccurs="0" maxOccurs="unbounded" ref="db:colspec"/>
613 <xs:group maxOccurs="unbounded" ref="db:db.row"/>
614 </xs:sequence>
615 <xs:attributeGroup ref="db:db.cals.tfoot.attlist"/>
616 </xs:complexType>
617 </xs:element>
618 </xs:sequence>
619 </xs:group>
620 <!-- ====================================================================== -->
621 <xs:attributeGroup name="db.cals.tbody.role.attribute">
622 <xs:attribute name="role" use="required"/>
623 </xs:attributeGroup>
624 <xs:attributeGroup name="db.cals.tbody.attlist">
625 <xs:attribute name="role"/>
626 <xs:attributeGroup ref="dbs:db.common.attributes"/>
627 <xs:attributeGroup ref="db:db.common.linking.attributes"/>
628 <xs:attribute name="valign">
629 <xs:simpleType>
630 <xs:restriction base="xs:token">
631 <xs:enumeration value="bottom">
632 <xs:annotation>
633 <xs:documentation>Aligned on the bottom of the entry.</xs:documentation>
634 </xs:annotation>
635 </xs:enumeration>
636 <xs:enumeration value="middle">
637 <xs:annotation>
638 <xs:documentation>Aligned in the middle.</xs:documentation>
639 </xs:annotation>
640 </xs:enumeration>
641 <xs:enumeration value="top">
642 <xs:annotation>
643 <xs:documentation>Aligned at the top of the entry.</xs:documentation>
644 </xs:annotation>
645 </xs:enumeration>
646 </xs:restriction>
647 </xs:simpleType>
648 </xs:attribute>
649 </xs:attributeGroup>
650 <xs:group name="db.cals.tbody">
651 <xs:sequence>
652 <xs:element name="tbody">
653 <xs:complexType>
654 <xs:group maxOccurs="unbounded" ref="db:db.row"/>
655 <xs:attributeGroup ref="db:db.cals.tbody.attlist"/>
656 </xs:complexType>
657 </xs:element>
658 </xs:sequence>
659 </xs:group>
660 <!-- ====================================================================== -->
661 <xs:attributeGroup name="db.row.role.attribute">
662 <xs:attribute name="role" use="required"/>
663 </xs:attributeGroup>
664 <xs:attributeGroup name="db.row.attlist">
665 <xs:attribute name="role"/>
666 <xs:attributeGroup ref="dbs:db.common.attributes"/>
667 <xs:attributeGroup ref="db:db.common.linking.attributes"/>
668 <xs:attribute name="rowsep">
669 <xs:simpleType>
670 <xs:restriction base="xs:token">
671 <xs:enumeration value="0">
672 <xs:annotation>
673 <xs:documentation>No row separator rule.</xs:documentation>
674 </xs:annotation>
675 </xs:enumeration>
676 <xs:enumeration value="1">
677 <xs:annotation>
678 <xs:documentation>Provide a row separator rule below</xs:documentation>
679 </xs:annotation>
680 </xs:enumeration>
681 </xs:restriction>
682 </xs:simpleType>
683 </xs:attribute>
684 <xs:attribute name="valign">
685 <xs:simpleType>
686 <xs:restriction base="xs:token">
687 <xs:enumeration value="bottom">
688 <xs:annotation>
689 <xs:documentation>Aligned on the bottom of the entry.</xs:documentation>
690 </xs:annotation>
691 </xs:enumeration>
692 <xs:enumeration value="middle">
693 <xs:annotation>
694 <xs:documentation>Aligned in the middle.</xs:documentation>
695 </xs:annotation>
696 </xs:enumeration>
697 <xs:enumeration value="top">
698 <xs:annotation>
699 <xs:documentation>Aligned at the top of the entry.</xs:documentation>
700 </xs:annotation>
701 </xs:enumeration>
702 </xs:restriction>
703 </xs:simpleType>
704 </xs:attribute>
705 </xs:attributeGroup>
706 <xs:group name="db.row">
707 <xs:sequence>
708 <xs:element name="row">
709 <xs:complexType>
710 <xs:choice maxOccurs="unbounded">
711 <xs:element ref="db:entry"/>
712 <xs:element ref="db:entrytbl"/>
713 </xs:choice>
714 <xs:attributeGroup ref="db:db.row.attlist"/>
715 </xs:complexType>
716 </xs:element>
717 </xs:sequence>
718 </xs:group>
719 <!-- ====================================================================== -->
720 <xs:attributeGroup name="db.entry.role.attribute">
721 <xs:attribute name="role" use="required"/>
722 </xs:attributeGroup>
723 <xs:attributeGroup name="db.entry.morerows.attribute">
724 <xs:attribute name="morerows" use="required" type="xs:integer"/>
725 </xs:attributeGroup>
726 <xs:attributeGroup name="db.entry.rotate.attribute">
727 <xs:attribute name="rotate" use="required">
728 <xs:simpleType>
729 <xs:restriction base="xs:token">
730 <xs:enumeration value="0">
731 <xs:annotation>
732 <xs:documentation>Do not rotate the cell.</xs:documentation>
733 </xs:annotation>
734 </xs:enumeration>
735 <xs:enumeration value="1">
736 <xs:annotation>
737 <xs:documentation>Rotate the cell 90 degrees counter-clockwise.</xs:documentation>
738 </xs:annotation>
739 </xs:enumeration>
740 </xs:restriction>
741 </xs:simpleType>
742 </xs:attribute>
743 </xs:attributeGroup>
744 <xs:attributeGroup name="db.entry.attlist">
745 <xs:attribute name="role"/>
746 <xs:attributeGroup ref="dbs:db.common.attributes"/>
747 <xs:attributeGroup ref="db:db.common.linking.attributes"/>
748 <xs:attribute name="valign">
749 <xs:simpleType>
750 <xs:restriction base="xs:token">
751 <xs:enumeration value="bottom">
752 <xs:annotation>
753 <xs:documentation>Aligned on the bottom of the entry.</xs:documentation>
754 </xs:annotation>
755 </xs:enumeration>
756 <xs:enumeration value="middle">
757 <xs:annotation>
758 <xs:documentation>Aligned in the middle.</xs:documentation>
759 </xs:annotation>
760 </xs:enumeration>
761 <xs:enumeration value="top">
762 <xs:annotation>
763 <xs:documentation>Aligned at the top of the entry.</xs:documentation>
764 </xs:annotation>
765 </xs:enumeration>
766 </xs:restriction>
767 </xs:simpleType>
768 </xs:attribute>
769 <xs:attribute name="char"/>
770 <xs:attribute name="colsep">
771 <xs:simpleType>
772 <xs:restriction base="xs:token">
773 <xs:enumeration value="0">
774 <xs:annotation>
775 <xs:documentation>No column separator rule.</xs:documentation>
776 </xs:annotation>
777 </xs:enumeration>
778 <xs:enumeration value="1">
779 <xs:annotation>
780 <xs:documentation>Provide a column separator rule on the right</xs:documentation>
781 </xs:annotation>
782 </xs:enumeration>
783 </xs:restriction>
784 </xs:simpleType>
785 </xs:attribute>
786 <xs:attribute name="charoff">
787 <xs:simpleType>
788 <xs:restriction base="xs:decimal">
789 <xs:minExclusive value="0"/>
790 <xs:maxExclusive value="100"/>
791 </xs:restriction>
792 </xs:simpleType>
793 </xs:attribute>
794 <xs:attribute name="morerows" type="xs:integer"/>
795 <xs:attributeGroup ref="db:db.column-spec.attributes"/>
796 <xs:attribute name="rowsep">
797 <xs:simpleType>
798 <xs:restriction base="xs:token">
799 <xs:enumeration value="0">
800 <xs:annotation>
801 <xs:documentation>No row separator rule.</xs:documentation>
802 </xs:annotation>
803 </xs:enumeration>
804 <xs:enumeration value="1">
805 <xs:annotation>
806 <xs:documentation>Provide a row separator rule below</xs:documentation>
807 </xs:annotation>
808 </xs:enumeration>
809 </xs:restriction>
810 </xs:simpleType>
811 </xs:attribute>
812 <xs:attribute name="rotate">
813 <xs:simpleType>
814 <xs:restriction base="xs:token">
815 <xs:enumeration value="0">
816 <xs:annotation>
817 <xs:documentation>Do not rotate the cell.</xs:documentation>
818 </xs:annotation>
819 </xs:enumeration>
820 <xs:enumeration value="1">
821 <xs:annotation>
822 <xs:documentation>Rotate the cell 90 degrees counter-clockwise.</xs:documentation>
823 </xs:annotation>
824 </xs:enumeration>
825 </xs:restriction>
826 </xs:simpleType>
827 </xs:attribute>
828 <xs:attribute name="align">
829 <xs:simpleType>
830 <xs:restriction base="xs:token">
831 <xs:enumeration value="center">
832 <xs:annotation>
833 <xs:documentation>Centered.</xs:documentation>
834 </xs:annotation>
835 </xs:enumeration>
836 <xs:enumeration value="char">
837 <xs:annotation>
838 <xs:documentation>Aligned on a particular character.</xs:documentation>
839 </xs:annotation>
840 </xs:enumeration>
841 <xs:enumeration value="justify">
842 <xs:annotation>
843 <xs:documentation>Left and right justified.</xs:documentation>
844 </xs:annotation>
845 </xs:enumeration>
846 <xs:enumeration value="left">
847 <xs:annotation>
848 <xs:documentation>Left justified.</xs:documentation>
849 </xs:annotation>
850 </xs:enumeration>
851 <xs:enumeration value="right">
852 <xs:annotation>
853 <xs:documentation>Right justified.</xs:documentation>
854 </xs:annotation>
855 </xs:enumeration>
856 </xs:restriction>
857 </xs:simpleType>
858 </xs:attribute>
859 </xs:attributeGroup>
860 <xs:element name="entry">
861 <xs:complexType mixed="true">
862 <xs:choice>
863 <xs:group minOccurs="0" maxOccurs="unbounded" ref="db:db.all.inlines"/>
864 <xs:group minOccurs="0" maxOccurs="unbounded" ref="db:db.all.blocks"/>
865 </xs:choice>
866 <xs:attributeGroup ref="db:db.entry.attlist"/>
867 </xs:complexType>
868 </xs:element>
869 <!-- ====================================================================== -->
870 <xs:attributeGroup name="db.entrytbl.role.attribute">
871 <xs:attribute name="role" use="required"/>
872 </xs:attributeGroup>
873 <xs:attributeGroup name="db.entrytbl.tgroupstyle.attribute">
874 <xs:attribute name="tgroupstyle" use="required"/>
875 </xs:attributeGroup>
876 <xs:attributeGroup name="db.entrytbl.cols.attribute">
877 <xs:attribute name="cols" use="required" type="xs:positiveInteger"/>
878 </xs:attributeGroup>
879 <xs:attributeGroup name="db.entrytbl.attlist">
880 <xs:attribute name="role"/>
881 <xs:attributeGroup ref="dbs:db.common.attributes"/>
882 <xs:attributeGroup ref="db:db.common.linking.attributes"/>
883 <xs:attribute name="char"/>
884 <xs:attribute name="charoff">
885 <xs:simpleType>
886 <xs:restriction base="xs:decimal">
887 <xs:minExclusive value="0"/>
888 <xs:maxExclusive value="100"/>
889 </xs:restriction>
890 </xs:simpleType>
891 </xs:attribute>
892 <xs:attributeGroup ref="db:db.column-spec.attributes"/>
893 <xs:attribute name="tgroupstyle"/>
894 <xs:attribute name="cols" type="xs:positiveInteger"/>
895 <xs:attribute name="colsep">
896 <xs:simpleType>
897 <xs:restriction base="xs:token">
898 <xs:enumeration value="0">
899 <xs:annotation>
900 <xs:documentation>No column separator rule.</xs:documentation>
901 </xs:annotation>
902 </xs:enumeration>
903 <xs:enumeration value="1">
904 <xs:annotation>
905 <xs:documentation>Provide a column separator rule on the right</xs:documentation>
906 </xs:annotation>
907 </xs:enumeration>
908 </xs:restriction>
909 </xs:simpleType>
910 </xs:attribute>
911 <xs:attribute name="rowsep">
912 <xs:simpleType>
913 <xs:restriction base="xs:token">
914 <xs:enumeration value="0">
915 <xs:annotation>
916 <xs:documentation>No row separator rule.</xs:documentation>
917 </xs:annotation>
918 </xs:enumeration>
919 <xs:enumeration value="1">
920 <xs:annotation>
921 <xs:documentation>Provide a row separator rule below</xs:documentation>
922 </xs:annotation>
923 </xs:enumeration>
924 </xs:restriction>
925 </xs:simpleType>
926 </xs:attribute>
927 <xs:attribute name="align">
928 <xs:simpleType>
929 <xs:restriction base="xs:token">
930 <xs:enumeration value="center">
931 <xs:annotation>
932 <xs:documentation>Centered.</xs:documentation>
933 </xs:annotation>
934 </xs:enumeration>
935 <xs:enumeration value="char">
936 <xs:annotation>
937 <xs:documentation>Aligned on a particular character.</xs:documentation>
938 </xs:annotation>
939 </xs:enumeration>
940 <xs:enumeration value="justify">
941 <xs:annotation>
942 <xs:documentation>Left and right justified.</xs:documentation>
943 </xs:annotation>
944 </xs:enumeration>
945 <xs:enumeration value="left">
946 <xs:annotation>
947 <xs:documentation>Left justified.</xs:documentation>
948 </xs:annotation>
949 </xs:enumeration>
950 <xs:enumeration value="right">
951 <xs:annotation>
952 <xs:documentation>Right justified.</xs:documentation>
953 </xs:annotation>
954 </xs:enumeration>
955 </xs:restriction>
956 </xs:simpleType>
957 </xs:attribute>
958 </xs:attributeGroup>
959 <xs:element name="entrytbl">
960 <xs:complexType>
961 <xs:sequence>
962 <xs:element minOccurs="0" maxOccurs="unbounded" ref="db:colspec"/>
963 <xs:element minOccurs="0" maxOccurs="unbounded" ref="db:spanspec"/>
964 <xs:group minOccurs="0" ref="db:db.cals.entrytbl.thead"/>
965 <xs:group ref="db:db.cals.entrytbl.tbody"/>
966 </xs:sequence>
967 <xs:attributeGroup ref="db:db.entrytbl.attlist"/>
968 </xs:complexType>
969 </xs:element>
970 <!-- ====================================================================== -->
971 <xs:attributeGroup name="db.cals.entrytbl.thead.role.attribute">
972 <xs:attribute name="role" use="required"/>
973 </xs:attributeGroup>
974 <xs:attributeGroup name="db.cals.entrytbl.thead.attlist">
975 <xs:attribute name="role"/>
976 <xs:attributeGroup ref="dbs:db.common.attributes"/>
977 <xs:attributeGroup ref="db:db.common.linking.attributes"/>
978 <xs:attribute name="valign">
979 <xs:simpleType>
980 <xs:restriction base="xs:token">
981 <xs:enumeration value="bottom">
982 <xs:annotation>
983 <xs:documentation>Aligned on the bottom of the entry.</xs:documentation>
984 </xs:annotation>
985 </xs:enumeration>
986 <xs:enumeration value="middle">
987 <xs:annotation>
988 <xs:documentation>Aligned in the middle.</xs:documentation>
989 </xs:annotation>
990 </xs:enumeration>
991 <xs:enumeration value="top">
992 <xs:annotation>
993 <xs:documentation>Aligned at the top of the entry.</xs:documentation>
994 </xs:annotation>
995 </xs:enumeration>
996 </xs:restriction>
997 </xs:simpleType>
998 </xs:attribute>
999 </xs:attributeGroup>
1000 <xs:group name="db.cals.entrytbl.thead">
1001 <xs:sequence>
1002 <xs:element name="thead">
1003 <xs:complexType>
1004 <xs:sequence>
1005 <xs:element minOccurs="0" maxOccurs="unbounded" ref="db:colspec"/>
1006 <xs:group maxOccurs="unbounded" ref="db:db.entrytbl.row"/>
1007 </xs:sequence>
1008 <xs:attributeGroup ref="db:db.cals.entrytbl.thead.attlist"/>
1009 </xs:complexType>
1010 </xs:element>
1011 </xs:sequence>
1012 </xs:group>
1013 <!-- ====================================================================== -->
1014 <xs:attributeGroup name="db.cals.entrytbl.tbody.role.attribute">
1015 <xs:attribute name="role" use="required"/>
1016 </xs:attributeGroup>
1017 <xs:attributeGroup name="db.cals.entrytbl.tbody.attlist">
1018 <xs:attribute name="role"/>
1019 <xs:attributeGroup ref="dbs:db.common.attributes"/>
1020 <xs:attributeGroup ref="db:db.common.linking.attributes"/>
1021 <xs:attribute name="valign">
1022 <xs:simpleType>
1023 <xs:restriction base="xs:token">
1024 <xs:enumeration value="bottom">
1025 <xs:annotation>
1026 <xs:documentation>Aligned on the bottom of the entry.</xs:documentation>
1027 </xs:annotation>
1028 </xs:enumeration>
1029 <xs:enumeration value="middle">
1030 <xs:annotation>
1031 <xs:documentation>Aligned in the middle.</xs:documentation>
1032 </xs:annotation>
1033 </xs:enumeration>
1034 <xs:enumeration value="top">
1035 <xs:annotation>
1036 <xs:documentation>Aligned at the top of the entry.</xs:documentation>
1037 </xs:annotation>
1038 </xs:enumeration>
1039 </xs:restriction>
1040 </xs:simpleType>
1041 </xs:attribute>
1042 </xs:attributeGroup>
1043 <xs:group name="db.cals.entrytbl.tbody">
1044 <xs:sequence>
1045 <xs:element name="tbody">
1046 <xs:complexType>
1047 <xs:group maxOccurs="unbounded" ref="db:db.entrytbl.row"/>
1048 <xs:attributeGroup ref="db:db.cals.entrytbl.tbody.attlist"/>
1049 </xs:complexType>
1050 </xs:element>
1051 </xs:sequence>
1052 </xs:group>
1053 <!-- ====================================================================== -->
1054 <xs:attributeGroup name="db.entrytbl.row.role.attribute">
1055 <xs:attribute name="role" use="required"/>
1056 </xs:attributeGroup>
1057 <xs:attributeGroup name="db.entrytbl.row.attlist">
1058 <xs:attribute name="role"/>
1059 <xs:attributeGroup ref="dbs:db.common.attributes"/>
1060 <xs:attributeGroup ref="db:db.common.linking.attributes"/>
1061 <xs:attribute name="rowsep">
1062 <xs:simpleType>
1063 <xs:restriction base="xs:token">
1064 <xs:enumeration value="0">
1065 <xs:annotation>
1066 <xs:documentation>No row separator rule.</xs:documentation>
1067 </xs:annotation>
1068 </xs:enumeration>
1069 <xs:enumeration value="1">
1070 <xs:annotation>
1071 <xs:documentation>Provide a row separator rule below</xs:documentation>
1072 </xs:annotation>
1073 </xs:enumeration>
1074 </xs:restriction>
1075 </xs:simpleType>
1076 </xs:attribute>
1077 <xs:attribute name="valign">
1078 <xs:simpleType>
1079 <xs:restriction base="xs:token">
1080 <xs:enumeration value="bottom">
1081 <xs:annotation>
1082 <xs:documentation>Aligned on the bottom of the entry.</xs:documentation>
1083 </xs:annotation>
1084 </xs:enumeration>
1085 <xs:enumeration value="middle">
1086 <xs:annotation>
1087 <xs:documentation>Aligned in the middle.</xs:documentation>
1088 </xs:annotation>
1089 </xs:enumeration>
1090 <xs:enumeration value="top">
1091 <xs:annotation>
1092 <xs:documentation>Aligned at the top of the entry.</xs:documentation>
1093 </xs:annotation>
1094 </xs:enumeration>
1095 </xs:restriction>
1096 </xs:simpleType>
1097 </xs:attribute>
1098 </xs:attributeGroup>
1099 <xs:group name="db.entrytbl.row">
1100 <xs:sequence>
1101 <xs:element name="row">
1102 <xs:complexType>
1103 <xs:sequence>
1104 <xs:element maxOccurs="unbounded" ref="db:entry"/>
1105 </xs:sequence>
1106 <xs:attributeGroup ref="db:db.entrytbl.row.attlist"/>
1107 </xs:complexType>
1108 </xs:element>
1109 </xs:sequence>
1110 </xs:group>
1111 <!-- ====================================================================== -->
1112 <xs:attributeGroup name="db.cals.table.role.attribute">
1113 <xs:attribute name="role" use="required"/>
1114 </xs:attributeGroup>
1115 <xs:attributeGroup name="db.cals.table.label.attribute">
1116 <xs:attributeGroup ref="db:db.label.attribute"/>
1117 </xs:attributeGroup>
1118 <xs:attributeGroup name="db.cals.table.attlist">
1119 <xs:attribute name="role"/>
1120 <xs:attribute name="label"/>
1121 <xs:attributeGroup ref="dbs:db.common.attributes"/>
1122 <xs:attributeGroup ref="db:db.common.linking.attributes"/>
1123 <xs:attribute name="tabstyle"/>
1124 <xs:attribute name="floatstyle"/>
1125 <xs:attribute name="orient">
1126 <xs:simpleType>
1127 <xs:restriction base="xs:token">
1128 <xs:enumeration value="land">
1129 <xs:annotation>
1130 <xs:documentation>90 degrees counter-clockwise from the rest of the text flow.</xs:documentation>
1131 </xs:annotation>
1132 </xs:enumeration>
1133 <xs:enumeration value="port">
1134 <xs:annotation>
1135 <xs:documentation>The same orientation as the rest of the text flow.</xs:documentation>
1136 </xs:annotation>
1137 </xs:enumeration>
1138 </xs:restriction>
1139 </xs:simpleType>
1140 </xs:attribute>
1141 <xs:attribute name="colsep">
1142 <xs:simpleType>
1143 <xs:restriction base="xs:token">
1144 <xs:enumeration value="0">
1145 <xs:annotation>
1146 <xs:documentation>No column separator rule.</xs:documentation>
1147 </xs:annotation>
1148 </xs:enumeration>
1149 <xs:enumeration value="1">
1150 <xs:annotation>
1151 <xs:documentation>Provide a column separator rule on the right</xs:documentation>
1152 </xs:annotation>
1153 </xs:enumeration>
1154 </xs:restriction>
1155 </xs:simpleType>
1156 </xs:attribute>
1157 <xs:attribute name="rowsep">
1158 <xs:simpleType>
1159 <xs:restriction base="xs:token">
1160 <xs:enumeration value="0">
1161 <xs:annotation>
1162 <xs:documentation>No row separator rule.</xs:documentation>
1163 </xs:annotation>
1164 </xs:enumeration>
1165 <xs:enumeration value="1">
1166 <xs:annotation>
1167 <xs:documentation>Provide a row separator rule below</xs:documentation>
1168 </xs:annotation>
1169 </xs:enumeration>
1170 </xs:restriction>
1171 </xs:simpleType>
1172 </xs:attribute>
1173 <xs:attribute name="frame">
1174 <xs:simpleType>
1175 <xs:restriction base="xs:token">
1176 <xs:enumeration value="all">
1177 <xs:annotation>
1178 <xs:documentation>Frame all four sides of the table. In some environments with limited control over table border formatting, such as HTML, this may imply additional borders.</xs:documentation>
1179 </xs:annotation>
1180 </xs:enumeration>
1181 <xs:enumeration value="bottom">
1182 <xs:annotation>
1183 <xs:documentation>Frame only the bottom of the table.</xs:documentation>
1184 </xs:annotation>
1185 </xs:enumeration>
1186 <xs:enumeration value="none">
1187 <xs:annotation>
1188 <xs:documentation>Place no border on the table. In some environments with limited control over table border formatting, such as HTML, this may disable other borders as well.</xs:documentation>
1189 </xs:annotation>
1190 </xs:enumeration>
1191 <xs:enumeration value="sides">
1192 <xs:annotation>
1193 <xs:documentation>Frame the left and right sides of the table.</xs:documentation>
1194 </xs:annotation>
1195 </xs:enumeration>
1196 <xs:enumeration value="top">
1197 <xs:annotation>
1198 <xs:documentation>Frame the top of the table.</xs:documentation>
1199 </xs:annotation>
1200 </xs:enumeration>
1201 <xs:enumeration value="topbot">
1202 <xs:annotation>
1203 <xs:documentation>Frame the top and bottom of the table.</xs:documentation>
1204 </xs:annotation>
1205 </xs:enumeration>
1206 </xs:restriction>
1207 </xs:simpleType>
1208 </xs:attribute>
1209 <xs:attribute name="pgwide" type="db:db.pgwide.enumeration"/>
1210 <xs:attribute name="shortentry">
1211 <xs:simpleType>
1212 <xs:restriction base="xs:token">
1213 <xs:enumeration value="0">
1214 <xs:annotation>
1215 <xs:documentation>Indicates that the full title should be used.</xs:documentation>
1216 </xs:annotation>
1217 </xs:enumeration>
1218 <xs:enumeration value="1">
1219 <xs:annotation>
1220 <xs:documentation>Indicates that the short short title (titleabbrev) should be used.</xs:documentation>
1221 </xs:annotation>
1222 </xs:enumeration>
1223 </xs:restriction>
1224 </xs:simpleType>
1225 </xs:attribute>
1226 <xs:attribute name="tocentry">
1227 <xs:simpleType>
1228 <xs:restriction base="xs:token">
1229 <xs:enumeration value="0">
1230 <xs:annotation>
1231 <xs:documentation>Indicates that the table should not occur in the List of Tables.</xs:documentation>
1232 </xs:annotation>
1233 </xs:enumeration>
1234 <xs:enumeration value="1">
1235 <xs:annotation>
1236 <xs:documentation>Indicates that the table should appear in the List of Tables.</xs:documentation>
1237 </xs:annotation>
1238 </xs:enumeration>
1239 </xs:restriction>
1240 </xs:simpleType>
1241 </xs:attribute>
1242 <xs:attribute name="rowheader">
1243 <xs:simpleType>
1244 <xs:restriction base="xs:token">
1245 <xs:enumeration value="firstcol">
1246 <xs:annotation>
1247 <xs:documentation>Indicates that entries in the first column of the table are functionally row headers (analogous to the way that a thead provides column headers).</xs:documentation>
1248 </xs:annotation>
1249 </xs:enumeration>
1250 <xs:enumeration value="norowheader">
1251 <xs:annotation>
1252 <xs:documentation>Indicates that entries in the first column have no special significance with respect to column headers.</xs:documentation>
1253 </xs:annotation>
1254 </xs:enumeration>
1255 </xs:restriction>
1256 </xs:simpleType>
1257 </xs:attribute>
1258 </xs:attributeGroup>
1259 <xs:group name="db.cals.table.info">
1260 <xs:sequence>
1261 <xs:group ref="db:db._info.title.onlyreq"/>
1262 </xs:sequence>
1263 </xs:group>
1264 <xs:group name="db.cals.table">
1265 <xs:sequence>
1266 <xs:element name="table">
1267 <xs:complexType>
1268 <xs:sequence>
1269 <xs:group ref="db:db.cals.table.info"/>
1270 <xs:choice minOccurs="0" maxOccurs="unbounded">
1271 <xs:element ref="db:alt"/>
1272 <xs:group ref="db:db.indexing.inlines"/>
1273 <xs:element ref="db:textobject"/>
1274 </xs:choice>
1275 <xs:choice>
1276 <xs:element maxOccurs="unbounded" ref="db:mediaobject"/>
1277 <xs:element maxOccurs="unbounded" ref="db:tgroup"/>
1278 </xs:choice>
1279 <xs:group minOccurs="0" ref="db:db.caption"/>
1280 </xs:sequence>
1281 <xs:attributeGroup ref="db:db.cals.table.attlist"/>
1282 </xs:complexType>
1283 </xs:element>
1284 </xs:sequence>
1285 </xs:group>
1286 <!-- ====================================================================== -->
1287 <xs:attributeGroup name="db.cals.informaltable.role.attribute">
1288 <xs:attribute name="role" use="required"/>
1289 </xs:attributeGroup>
1290 <xs:attributeGroup name="db.cals.informaltable.attlist">
1291 <xs:attribute name="role"/>
1292 <xs:attributeGroup ref="dbs:db.common.attributes"/>
1293 <xs:attributeGroup ref="db:db.common.linking.attributes"/>
1294 <xs:attribute name="tabstyle"/>
1295 <xs:attribute name="floatstyle"/>
1296 <xs:attribute name="orient">
1297 <xs:simpleType>
1298 <xs:restriction base="xs:token">
1299 <xs:enumeration value="land">
1300 <xs:annotation>
1301 <xs:documentation>90 degrees counter-clockwise from the rest of the text flow.</xs:documentation>
1302 </xs:annotation>
1303 </xs:enumeration>
1304 <xs:enumeration value="port">
1305 <xs:annotation>
1306 <xs:documentation>The same orientation as the rest of the text flow.</xs:documentation>
1307 </xs:annotation>
1308 </xs:enumeration>
1309 </xs:restriction>
1310 </xs:simpleType>
1311 </xs:attribute>
1312 <xs:attribute name="colsep">
1313 <xs:simpleType>
1314 <xs:restriction base="xs:token">
1315 <xs:enumeration value="0">
1316 <xs:annotation>
1317 <xs:documentation>No column separator rule.</xs:documentation>
1318 </xs:annotation>
1319 </xs:enumeration>
1320 <xs:enumeration value="1">
1321 <xs:annotation>
1322 <xs:documentation>Provide a column separator rule on the right</xs:documentation>
1323 </xs:annotation>
1324 </xs:enumeration>
1325 </xs:restriction>
1326 </xs:simpleType>
1327 </xs:attribute>
1328 <xs:attribute name="rowsep">
1329 <xs:simpleType>
1330 <xs:restriction base="xs:token">
1331 <xs:enumeration value="0">
1332 <xs:annotation>
1333 <xs:documentation>No row separator rule.</xs:documentation>
1334 </xs:annotation>
1335 </xs:enumeration>
1336 <xs:enumeration value="1">
1337 <xs:annotation>
1338 <xs:documentation>Provide a row separator rule below</xs:documentation>
1339 </xs:annotation>
1340 </xs:enumeration>
1341 </xs:restriction>
1342 </xs:simpleType>
1343 </xs:attribute>
1344 <xs:attribute name="frame">
1345 <xs:simpleType>
1346 <xs:restriction base="xs:token">
1347 <xs:enumeration value="all">
1348 <xs:annotation>
1349 <xs:documentation>Frame all four sides of the table. In some environments with limited control over table border formatting, such as HTML, this may imply additional borders.</xs:documentation>
1350 </xs:annotation>
1351 </xs:enumeration>
1352 <xs:enumeration value="bottom">
1353 <xs:annotation>
1354 <xs:documentation>Frame only the bottom of the table.</xs:documentation>
1355 </xs:annotation>
1356 </xs:enumeration>
1357 <xs:enumeration value="none">
1358 <xs:annotation>
1359 <xs:documentation>Place no border on the table. In some environments with limited control over table border formatting, such as HTML, this may disable other borders as well.</xs:documentation>
1360 </xs:annotation>
1361 </xs:enumeration>
1362 <xs:enumeration value="sides">
1363 <xs:annotation>
1364 <xs:documentation>Frame the left and right sides of the table.</xs:documentation>
1365 </xs:annotation>
1366 </xs:enumeration>
1367 <xs:enumeration value="top">
1368 <xs:annotation>
1369 <xs:documentation>Frame the top of the table.</xs:documentation>
1370 </xs:annotation>
1371 </xs:enumeration>
1372 <xs:enumeration value="topbot">
1373 <xs:annotation>
1374 <xs:documentation>Frame the top and bottom of the table.</xs:documentation>
1375 </xs:annotation>
1376 </xs:enumeration>
1377 </xs:restriction>
1378 </xs:simpleType>
1379 </xs:attribute>
1380 <xs:attribute name="pgwide" type="db:db.pgwide.enumeration"/>
1381 <xs:attribute name="rowheader">
1382 <xs:simpleType>
1383 <xs:restriction base="xs:token">
1384 <xs:enumeration value="firstcol">
1385 <xs:annotation>
1386 <xs:documentation>Indicates that entries in the first column of the table are functionally row headers (analogous to the way that a thead provides column headers).</xs:documentation>
1387 </xs:annotation>
1388 </xs:enumeration>
1389 <xs:enumeration value="norowheader">
1390 <xs:annotation>
1391 <xs:documentation>Indicates that entries in the first column have no special significance with respect to column headers.</xs:documentation>
1392 </xs:annotation>
1393 </xs:enumeration>
1394 </xs:restriction>
1395 </xs:simpleType>
1396 </xs:attribute>
1397 </xs:attributeGroup>
1398 <xs:group name="db.cals.informaltable.info">
1399 <xs:sequence>
1400 <xs:group ref="db:db._info.title.forbidden"/>
1401 </xs:sequence>
1402 </xs:group>
1403 <xs:group name="db.cals.informaltable">
1404 <xs:sequence>
1405 <xs:element name="informaltable">
1406 <xs:complexType>
1407 <xs:sequence>
1408 <xs:group ref="db:db.cals.informaltable.info"/>
1409 <xs:choice minOccurs="0" maxOccurs="unbounded">
1410 <xs:element ref="db:alt"/>
1411 <xs:group ref="db:db.indexing.inlines"/>
1412 <xs:element ref="db:textobject"/>
1413 </xs:choice>
1414 <xs:choice>
1415 <xs:element maxOccurs="unbounded" ref="db:mediaobject"/>
1416 <xs:element maxOccurs="unbounded" ref="db:tgroup"/>
1417 </xs:choice>
1418 <xs:group minOccurs="0" ref="db:db.caption"/>
1419 </xs:sequence>
1420 <xs:attributeGroup ref="db:db.cals.informaltable.attlist"/>
1421 </xs:complexType>
1422 </xs:element>
1423 </xs:sequence>
1424 </xs:group>
1425</xs:schema>
Note: See TracBrowser for help on using the repository browser.