source: stylesheets/lfs-xsl/docbook-xsl-1.78.1/slides/schema/xsd/htmltbl.xsd@ 05e908ed

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 12.2 12.2-rc1 7.5 7.6 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/loongarch-12.2 xry111/mips64el xry111/multilib xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 05e908ed was 15c7d39, checked in by Matthew Burgess <matthew@…>, 11 years ago

Update stylesheets to docbook-xsl-1.78.1.

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

  • Property mode set to 100644
File size: 21.5 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: htmltbl.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.html.coreattrs">
37 <xs:attribute name="class"/>
38 <xs:attribute name="style"/>
39 <xs:attribute name="title"/>
40 </xs:attributeGroup>
41 <!-- dir isn't listed here because it's already a common attribute -->
42 <xs:attributeGroup name="db.html.i18n">
43 <xs:attribute name="lang"/>
44 </xs:attributeGroup>
45 <xs:attributeGroup name="db.html.events">
46 <xs:attribute name="onclick"/>
47 <xs:attribute name="ondblclick"/>
48 <xs:attribute name="onmousedown"/>
49 <xs:attribute name="onmouseup"/>
50 <xs:attribute name="onmouseover"/>
51 <xs:attribute name="onmousemove"/>
52 <xs:attribute name="onmouseout"/>
53 <xs:attribute name="onkeypress"/>
54 <xs:attribute name="onkeydown"/>
55 <xs:attribute name="onkeyup"/>
56 </xs:attributeGroup>
57 <xs:attributeGroup name="db.html.attrs">
58 <xs:attributeGroup ref="dbs:db.common.attributes"/>
59 <xs:attributeGroup ref="db:db.html.coreattrs"/>
60 <xs:attributeGroup ref="db:db.html.i18n"/>
61 <xs:attributeGroup ref="db:db.html.events"/>
62 </xs:attributeGroup>
63 <xs:attributeGroup name="db.html.cellhalign">
64 <xs:attribute name="align">
65 <xs:simpleType>
66 <xs:restriction base="xs:token">
67 <xs:enumeration value="left">
68 <xs:annotation>
69 <xs:documentation>Left-flush data/Left-justify text. This is the default value for table data.</xs:documentation>
70 </xs:annotation>
71 </xs:enumeration>
72 <xs:enumeration value="center">
73 <xs:annotation>
74 <xs:documentation>Center data/Center-justify text. This is the default value for table headers.</xs:documentation>
75 </xs:annotation>
76 </xs:enumeration>
77 <xs:enumeration value="right">
78 <xs:annotation>
79 <xs:documentation>Right-flush data/Right-justify text.</xs:documentation>
80 </xs:annotation>
81 </xs:enumeration>
82 <xs:enumeration value="justify">
83 <xs:annotation>
84 <xs:documentation>Double-justify text.</xs:documentation>
85 </xs:annotation>
86 </xs:enumeration>
87 <xs:enumeration value="char">
88 <xs:annotation>
89 <xs:documentation>Align text around a specific character. If a user agent doesn't support character alignment, behavior in the presence of this value is unspecified.</xs:documentation>
90 </xs:annotation>
91 </xs:enumeration>
92 </xs:restriction>
93 </xs:simpleType>
94 </xs:attribute>
95 <xs:attribute name="char"/>
96 <xs:attribute name="charoff">
97 <xs:simpleType>
98 <xs:union memberTypes="xs:integer">
99 <xs:simpleType>
100 <xs:restriction base="xs:string">
101 <xs:pattern value="[0-9]+%"/>
102 </xs:restriction>
103 </xs:simpleType>
104 </xs:union>
105 </xs:simpleType>
106 </xs:attribute>
107 </xs:attributeGroup>
108 <xs:attributeGroup name="db.html.cellvalign">
109 <xs:attribute name="valign">
110 <xs:simpleType>
111 <xs:restriction base="xs:token">
112 <xs:enumeration value="top">
113 <xs:annotation>
114 <xs:documentation>Cell data is flush with the top of the cell.</xs:documentation>
115 </xs:annotation>
116 </xs:enumeration>
117 <xs:enumeration value="middle">
118 <xs:annotation>
119 <xs:documentation>Cell data is centered vertically within the cell. This is the default value.</xs:documentation>
120 </xs:annotation>
121 </xs:enumeration>
122 <xs:enumeration value="bottom">
123 <xs:annotation>
124 <xs:documentation>Cell data is flush with the bottom of the cell.</xs:documentation>
125 </xs:annotation>
126 </xs:enumeration>
127 <xs:enumeration value="baseline">
128 <xs:annotation>
129 <xs:documentation>All cells in the same row as a cell whose valign attribute has this value should have their textual data positioned so that the first text line occurs on a baseline common to all cells in the row. This constraint does not apply to subsequent text lines in these cells.</xs:documentation>
130 </xs:annotation>
131 </xs:enumeration>
132 </xs:restriction>
133 </xs:simpleType>
134 </xs:attribute>
135 </xs:attributeGroup>
136 <xs:attributeGroup name="db.html.table.attributes">
137 <xs:attribute name="summary"/>
138 <xs:attribute name="width">
139 <xs:simpleType>
140 <xs:union memberTypes="xs:integer">
141 <xs:simpleType>
142 <xs:restriction base="xs:string">
143 <xs:pattern value="[0-9]+%"/>
144 </xs:restriction>
145 </xs:simpleType>
146 </xs:union>
147 </xs:simpleType>
148 </xs:attribute>
149 <xs:attribute name="border" type="xs:nonNegativeInteger"/>
150 <xs:attribute name="frame">
151 <xs:simpleType>
152 <xs:restriction base="xs:token">
153 <xs:enumeration value="void">
154 <xs:annotation>
155 <xs:documentation>No sides. This is the default value.</xs:documentation>
156 </xs:annotation>
157 </xs:enumeration>
158 <xs:enumeration value="above">
159 <xs:annotation>
160 <xs:documentation>The top side only.</xs:documentation>
161 </xs:annotation>
162 </xs:enumeration>
163 <xs:enumeration value="below">
164 <xs:annotation>
165 <xs:documentation>The bottom side only.</xs:documentation>
166 </xs:annotation>
167 </xs:enumeration>
168 <xs:enumeration value="hsides">
169 <xs:annotation>
170 <xs:documentation>The top and bottom sides only.</xs:documentation>
171 </xs:annotation>
172 </xs:enumeration>
173 <xs:enumeration value="lhs">
174 <xs:annotation>
175 <xs:documentation>The left-hand side only.</xs:documentation>
176 </xs:annotation>
177 </xs:enumeration>
178 <xs:enumeration value="rhs">
179 <xs:annotation>
180 <xs:documentation>The right-hand side only.</xs:documentation>
181 </xs:annotation>
182 </xs:enumeration>
183 <xs:enumeration value="vsides">
184 <xs:annotation>
185 <xs:documentation>The right and left sides only.</xs:documentation>
186 </xs:annotation>
187 </xs:enumeration>
188 <xs:enumeration value="box">
189 <xs:annotation>
190 <xs:documentation>All four sides.</xs:documentation>
191 </xs:annotation>
192 </xs:enumeration>
193 <xs:enumeration value="border">
194 <xs:annotation>
195 <xs:documentation>All four sides.</xs:documentation>
196 </xs:annotation>
197 </xs:enumeration>
198 </xs:restriction>
199 </xs:simpleType>
200 </xs:attribute>
201 <xs:attribute name="rules">
202 <xs:simpleType>
203 <xs:restriction base="xs:token">
204 <xs:enumeration value="none">
205 <xs:annotation>
206 <xs:documentation>No rules. This is the default value.</xs:documentation>
207 </xs:annotation>
208 </xs:enumeration>
209 <xs:enumeration value="groups">
210 <xs:annotation>
211 <xs:documentation>Rules will appear between row groups (see thead, tfoot, and tbody) and column groups (see colgroup and col) only.</xs:documentation>
212 </xs:annotation>
213 </xs:enumeration>
214 <xs:enumeration value="rows">
215 <xs:annotation>
216 <xs:documentation>Rules will appear between rows only.</xs:documentation>
217 </xs:annotation>
218 </xs:enumeration>
219 <xs:enumeration value="cols">
220 <xs:annotation>
221 <xs:documentation>Rules will appear between columns only.</xs:documentation>
222 </xs:annotation>
223 </xs:enumeration>
224 <xs:enumeration value="all">
225 <xs:annotation>
226 <xs:documentation>Rules will appear between all rows and columns.</xs:documentation>
227 </xs:annotation>
228 </xs:enumeration>
229 </xs:restriction>
230 </xs:simpleType>
231 </xs:attribute>
232 <xs:attribute name="cellspacing">
233 <xs:simpleType>
234 <xs:union memberTypes="xs:integer">
235 <xs:simpleType>
236 <xs:restriction base="xs:string">
237 <xs:pattern value="[0-9]+%"/>
238 </xs:restriction>
239 </xs:simpleType>
240 </xs:union>
241 </xs:simpleType>
242 </xs:attribute>
243 <xs:attribute name="cellpadding">
244 <xs:simpleType>
245 <xs:union memberTypes="xs:integer">
246 <xs:simpleType>
247 <xs:restriction base="xs:string">
248 <xs:pattern value="[0-9]+%"/>
249 </xs:restriction>
250 </xs:simpleType>
251 </xs:union>
252 </xs:simpleType>
253 </xs:attribute>
254 </xs:attributeGroup>
255 <xs:attributeGroup name="db.html.tablecell.attributes">
256 <xs:attribute name="abbr"/>
257 <xs:attribute name="axis"/>
258 <xs:attribute name="headers"/>
259 <xs:attribute name="scope">
260 <xs:simpleType>
261 <xs:restriction base="xs:token">
262 <xs:enumeration value="row">
263 <xs:annotation>
264 <xs:documentation>The current cell provides header information for the rest of the row that contains it</xs:documentation>
265 </xs:annotation>
266 </xs:enumeration>
267 <xs:enumeration value="col">
268 <xs:annotation>
269 <xs:documentation>The current cell provides header information for the rest of the column that contains it.</xs:documentation>
270 </xs:annotation>
271 </xs:enumeration>
272 <xs:enumeration value="rowgroup">
273 <xs:annotation>
274 <xs:documentation>The header cell provides header information for the rest of the row group that contains it.</xs:documentation>
275 </xs:annotation>
276 </xs:enumeration>
277 <xs:enumeration value="colgroup">
278 <xs:annotation>
279 <xs:documentation>The header cell provides header information for the rest of the column group that contains it.</xs:documentation>
280 </xs:annotation>
281 </xs:enumeration>
282 </xs:restriction>
283 </xs:simpleType>
284 </xs:attribute>
285 <xs:attribute name="rowspan" type="xs:nonNegativeInteger"/>
286 <xs:attribute name="colspan" type="xs:nonNegativeInteger"/>
287 </xs:attributeGroup>
288 <xs:group name="db.html.table.info">
289 <xs:sequence>
290 <xs:group ref="db:db._info.title.forbidden"/>
291 </xs:sequence>
292 </xs:group>
293 <xs:complexType name="db.html.table.model">
294 <xs:sequence>
295 <xs:group minOccurs="0" ref="db:db.html.table.info"/>
296 <xs:group ref="db:db.html.caption"/>
297 <xs:choice>
298 <xs:element minOccurs="0" maxOccurs="unbounded" ref="db:col"/>
299 <xs:element minOccurs="0" maxOccurs="unbounded" ref="db:colgroup"/>
300 </xs:choice>
301 <xs:group minOccurs="0" ref="db:db.html.thead"/>
302 <xs:group minOccurs="0" ref="db:db.html.tfoot"/>
303 <xs:choice>
304 <xs:group maxOccurs="unbounded" ref="db:db.html.tbody"/>
305 <xs:element maxOccurs="unbounded" ref="db:tr"/>
306 </xs:choice>
307 </xs:sequence>
308 </xs:complexType>
309 <xs:group name="db.html.informaltable.info">
310 <xs:sequence>
311 <xs:group ref="db:db._info.title.forbidden"/>
312 </xs:sequence>
313 </xs:group>
314 <xs:complexType name="db.html.informaltable.model">
315 <xs:sequence>
316 <xs:group minOccurs="0" ref="db:db.html.informaltable.info"/>
317 <xs:choice>
318 <xs:element minOccurs="0" maxOccurs="unbounded" ref="db:col"/>
319 <xs:element minOccurs="0" maxOccurs="unbounded" ref="db:colgroup"/>
320 </xs:choice>
321 <xs:group minOccurs="0" ref="db:db.html.thead"/>
322 <xs:group minOccurs="0" ref="db:db.html.tfoot"/>
323 <xs:choice>
324 <xs:group maxOccurs="unbounded" ref="db:db.html.tbody"/>
325 <xs:element maxOccurs="unbounded" ref="db:tr"/>
326 </xs:choice>
327 </xs:sequence>
328 </xs:complexType>
329 <!-- ====================================================================== -->
330 <xs:attributeGroup name="db.html.table.role.attribute">
331 <xs:attribute name="role" use="required"/>
332 </xs:attributeGroup>
333 <xs:attributeGroup name="db.html.table.label.attribute">
334 <xs:attributeGroup ref="db:db.label.attribute"/>
335 </xs:attributeGroup>
336 <xs:attributeGroup name="db.html.table.attlist">
337 <xs:attributeGroup ref="db:db.html.attrs"/>
338 <xs:attributeGroup ref="db:db.html.table.attributes"/>
339 <xs:attribute name="role"/>
340 <xs:attribute name="label"/>
341 <xs:attribute name="orient">
342 <xs:simpleType>
343 <xs:restriction base="xs:token">
344 <xs:enumeration value="land">
345 <xs:annotation>
346 <xs:documentation>90 degrees counter-clockwise from the rest of the text flow.</xs:documentation>
347 </xs:annotation>
348 </xs:enumeration>
349 <xs:enumeration value="port">
350 <xs:annotation>
351 <xs:documentation>The same orientation as the rest of the text flow.</xs:documentation>
352 </xs:annotation>
353 </xs:enumeration>
354 </xs:restriction>
355 </xs:simpleType>
356 </xs:attribute>
357 <xs:attribute name="pgwide" type="db:db.pgwide.enumeration"/>
358 <xs:attribute name="tabstyle"/>
359 <xs:attribute name="floatstyle"/>
360 </xs:attributeGroup>
361 <xs:group name="db.html.table">
362 <xs:sequence>
363 <xs:element name="table">
364 <xs:complexType>
365 <xs:complexContent>
366 <xs:extension base="db:db.html.table.model">
367 <xs:attributeGroup ref="db:db.html.table.attlist"/>
368 </xs:extension>
369 </xs:complexContent>
370 </xs:complexType>
371 </xs:element>
372 </xs:sequence>
373 </xs:group>
374 <!-- ====================================================================== -->
375 <xs:attributeGroup name="db.html.informaltable.attlist">
376 <xs:attributeGroup ref="db:db.html.attrs"/>
377 <xs:attributeGroup ref="db:db.html.table.attributes"/>
378 </xs:attributeGroup>
379 <xs:group name="db.html.informaltable">
380 <xs:sequence>
381 <xs:element name="informaltable">
382 <xs:complexType>
383 <xs:complexContent>
384 <xs:extension base="db:db.html.informaltable.model">
385 <xs:attributeGroup ref="db:db.html.informaltable.attlist"/>
386 </xs:extension>
387 </xs:complexContent>
388 </xs:complexType>
389 </xs:element>
390 </xs:sequence>
391 </xs:group>
392 <!-- ====================================================================== -->
393 <xs:attributeGroup name="db.html.caption.attlist">
394 <xs:attributeGroup ref="db:db.html.attrs"/>
395 </xs:attributeGroup>
396 <xs:group name="db.html.caption">
397 <xs:sequence>
398 <xs:element name="caption">
399 <xs:complexType mixed="true">
400 <xs:group minOccurs="0" maxOccurs="unbounded" ref="db:db.all.inlines"/>
401 <xs:attributeGroup ref="db:db.html.caption.attlist"/>
402 </xs:complexType>
403 </xs:element>
404 </xs:sequence>
405 </xs:group>
406 <!-- ====================================================================== -->
407 <xs:attributeGroup name="db.html.col.attlist">
408 <xs:attributeGroup ref="db:db.html.attrs"/>
409 <xs:attribute name="span" type="xs:nonNegativeInteger"/>
410 <xs:attribute name="width"/>
411 <xs:attributeGroup ref="db:db.html.cellhalign"/>
412 <xs:attributeGroup ref="db:db.html.cellvalign"/>
413 </xs:attributeGroup>
414 <xs:element name="col">
415 <xs:complexType>
416 <xs:attributeGroup ref="db:db.html.col.attlist"/>
417 </xs:complexType>
418 </xs:element>
419 <!-- ====================================================================== -->
420 <xs:attributeGroup name="db.html.colgroup.attlist">
421 <xs:attributeGroup ref="db:db.html.attrs"/>
422 <xs:attribute name="span" type="xs:nonNegativeInteger"/>
423 <xs:attribute name="width"/>
424 <xs:attributeGroup ref="db:db.html.cellhalign"/>
425 <xs:attributeGroup ref="db:db.html.cellvalign"/>
426 </xs:attributeGroup>
427 <xs:element name="colgroup">
428 <xs:complexType>
429 <xs:sequence>
430 <xs:element minOccurs="0" maxOccurs="unbounded" ref="db:col"/>
431 </xs:sequence>
432 <xs:attributeGroup ref="db:db.html.colgroup.attlist"/>
433 </xs:complexType>
434 </xs:element>
435 <!-- ====================================================================== -->
436 <xs:attributeGroup name="db.html.thead.attlist">
437 <xs:attributeGroup ref="db:db.html.attrs"/>
438 <xs:attributeGroup ref="db:db.html.cellhalign"/>
439 <xs:attributeGroup ref="db:db.html.cellvalign"/>
440 </xs:attributeGroup>
441 <xs:group name="db.html.thead">
442 <xs:sequence>
443 <xs:element name="thead">
444 <xs:complexType>
445 <xs:sequence>
446 <xs:element maxOccurs="unbounded" ref="db:tr"/>
447 </xs:sequence>
448 <xs:attributeGroup ref="db:db.html.thead.attlist"/>
449 </xs:complexType>
450 </xs:element>
451 </xs:sequence>
452 </xs:group>
453 <!-- ====================================================================== -->
454 <xs:attributeGroup name="db.html.tfoot.attlist">
455 <xs:attributeGroup ref="db:db.html.attrs"/>
456 <xs:attributeGroup ref="db:db.html.cellhalign"/>
457 <xs:attributeGroup ref="db:db.html.cellvalign"/>
458 </xs:attributeGroup>
459 <xs:group name="db.html.tfoot">
460 <xs:sequence>
461 <xs:element name="tfoot">
462 <xs:complexType>
463 <xs:sequence>
464 <xs:element maxOccurs="unbounded" ref="db:tr"/>
465 </xs:sequence>
466 <xs:attributeGroup ref="db:db.html.tfoot.attlist"/>
467 </xs:complexType>
468 </xs:element>
469 </xs:sequence>
470 </xs:group>
471 <!-- ====================================================================== -->
472 <xs:attributeGroup name="db.html.tbody.attlist">
473 <xs:attributeGroup ref="db:db.html.attrs"/>
474 <xs:attributeGroup ref="db:db.html.cellhalign"/>
475 <xs:attributeGroup ref="db:db.html.cellvalign"/>
476 </xs:attributeGroup>
477 <xs:group name="db.html.tbody">
478 <xs:sequence>
479 <xs:element name="tbody">
480 <xs:complexType>
481 <xs:sequence>
482 <xs:element maxOccurs="unbounded" ref="db:tr"/>
483 </xs:sequence>
484 <xs:attributeGroup ref="db:db.html.tbody.attlist"/>
485 </xs:complexType>
486 </xs:element>
487 </xs:sequence>
488 </xs:group>
489 <!-- ====================================================================== -->
490 <xs:attributeGroup name="db.html.tr.attlist">
491 <xs:attributeGroup ref="db:db.html.attrs"/>
492 <xs:attributeGroup ref="db:db.html.cellhalign"/>
493 <xs:attributeGroup ref="db:db.html.cellvalign"/>
494 </xs:attributeGroup>
495 <xs:element name="tr">
496 <xs:complexType>
497 <xs:choice maxOccurs="unbounded">
498 <xs:element ref="db:th"/>
499 <xs:element ref="db:td"/>
500 </xs:choice>
501 <xs:attributeGroup ref="db:db.html.tr.attlist"/>
502 </xs:complexType>
503 </xs:element>
504 <!-- ====================================================================== -->
505 <xs:attributeGroup name="db.html.th.attlist">
506 <xs:attributeGroup ref="db:db.html.attrs"/>
507 <xs:attributeGroup ref="db:db.html.tablecell.attributes"/>
508 <xs:attributeGroup ref="db:db.html.cellhalign"/>
509 <xs:attributeGroup ref="db:db.html.cellvalign"/>
510 </xs:attributeGroup>
511 <xs:element name="th">
512 <xs:complexType mixed="true">
513 <xs:choice>
514 <xs:group minOccurs="0" maxOccurs="unbounded" ref="db:db.all.inlines"/>
515 <xs:group minOccurs="0" maxOccurs="unbounded" ref="db:db.all.blocks"/>
516 </xs:choice>
517 <xs:attributeGroup ref="db:db.html.th.attlist"/>
518 </xs:complexType>
519 </xs:element>
520 <!-- ====================================================================== -->
521 <xs:attributeGroup name="db.html.td.attlist">
522 <xs:attributeGroup ref="db:db.html.attrs"/>
523 <xs:attributeGroup ref="db:db.html.tablecell.attributes"/>
524 <xs:attributeGroup ref="db:db.html.cellhalign"/>
525 <xs:attributeGroup ref="db:db.html.cellvalign"/>
526 </xs:attributeGroup>
527 <xs:element name="td">
528 <xs:complexType mixed="true">
529 <xs:choice>
530 <xs:group minOccurs="0" maxOccurs="unbounded" ref="db:db.all.inlines"/>
531 <xs:group minOccurs="0" maxOccurs="unbounded" ref="db:db.all.blocks"/>
532 </xs:choice>
533 <xs:attributeGroup ref="db:db.html.td.attlist"/>
534 </xs:complexType>
535 </xs:element>
536</xs:schema>
Note: See TracBrowser for help on using the repository browser.