camelpunch-markup_validity 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.autotest +23 -0
- data/CHANGELOG.rdoc +22 -0
- data/Manifest.txt +105 -0
- data/README.rdoc +101 -0
- data/Rakefile +15 -0
- data/lib/markup_validity.rb +12 -0
- data/lib/markup_validity/MarkUp.html +1095 -0
- data/lib/markup_validity/SCHEMA.html +90 -0
- data/lib/markup_validity/assertions.rb +32 -0
- data/lib/markup_validity/examples.html +25 -0
- data/lib/markup_validity/rspec.rb +77 -0
- data/lib/markup_validity/templates.html +15 -0
- data/lib/markup_validity/validator.rb +65 -0
- data/lib/markup_validity/xframes-1.xsd +166 -0
- data/lib/markup_validity/xhtml-access-1.xsd +43 -0
- data/lib/markup_validity/xhtml-applet-1.xsd +66 -0
- data/lib/markup_validity/xhtml-attribs-1.xsd +67 -0
- data/lib/markup_validity/xhtml-base-1.xsd +31 -0
- data/lib/markup_validity/xhtml-basic-form-1.xsd +195 -0
- data/lib/markup_validity/xhtml-basic-table-1.xsd +169 -0
- data/lib/markup_validity/xhtml-basic10-model-1.xsd +385 -0
- data/lib/markup_validity/xhtml-basic10-module-redefines-1.xsd +61 -0
- data/lib/markup_validity/xhtml-basic10-modules-1.xsd +233 -0
- data/lib/markup_validity/xhtml-basic10.xsd +99 -0
- data/lib/markup_validity/xhtml-basic11-model-1.xsd +622 -0
- data/lib/markup_validity/xhtml-basic11-modules-1.xsd +508 -0
- data/lib/markup_validity/xhtml-basic11.xsd +105 -0
- data/lib/markup_validity/xhtml-bdo-1.xsd +72 -0
- data/lib/markup_validity/xhtml-blkphras-1.xsd +155 -0
- data/lib/markup_validity/xhtml-blkpres-1.xsd +32 -0
- data/lib/markup_validity/xhtml-blkstruct-1.xsd +44 -0
- data/lib/markup_validity/xhtml-charent-1.xsd +38 -0
- data/lib/markup_validity/xhtml-copyright-1.xsd +29 -0
- data/lib/markup_validity/xhtml-csismap-1.xsd +91 -0
- data/lib/markup_validity/xhtml-datatypes-1.xsd +177 -0
- data/lib/markup_validity/xhtml-edit-1.xsd +34 -0
- data/lib/markup_validity/xhtml-events-1.xsd +130 -0
- data/lib/markup_validity/xhtml-form-1.xsd +321 -0
- data/lib/markup_validity/xhtml-frames-1.xsd +113 -0
- data/lib/markup_validity/xhtml-framework-1.xsd +62 -0
- data/lib/markup_validity/xhtml-hypertext-1.xsd +47 -0
- data/lib/markup_validity/xhtml-iframe-1.xsd +68 -0
- data/lib/markup_validity/xhtml-image-1.xsd +40 -0
- data/lib/markup_validity/xhtml-inlphras-1.xsd +158 -0
- data/lib/markup_validity/xhtml-inlpres-1.xsd +34 -0
- data/lib/markup_validity/xhtml-inlstruct-1.xsd +45 -0
- data/lib/markup_validity/xhtml-inlstyle-1.xsd +22 -0
- data/lib/markup_validity/xhtml-inputmode-1.xsd +35 -0
- data/lib/markup_validity/xhtml-lat1.ent +196 -0
- data/lib/markup_validity/xhtml-legacy-1.xsd +97 -0
- data/lib/markup_validity/xhtml-link-1.xsd +45 -0
- data/lib/markup_validity/xhtml-list-1.xsd +94 -0
- data/lib/markup_validity/xhtml-meta-1.xsd +54 -0
- data/lib/markup_validity/xhtml-metaAttributes-1.xsd +39 -0
- data/lib/markup_validity/xhtml-misc-1.xsd +441 -0
- data/lib/markup_validity/xhtml-nameident-1.xsd +63 -0
- data/lib/markup_validity/xhtml-notations-1.xsd +69 -0
- data/lib/markup_validity/xhtml-object-1.xsd +71 -0
- data/lib/markup_validity/xhtml-param-1.xsd +46 -0
- data/lib/markup_validity/xhtml-pres-1.xsd +46 -0
- data/lib/markup_validity/xhtml-print-1.xsd +85 -0
- data/lib/markup_validity/xhtml-print-model-1.xsd +604 -0
- data/lib/markup_validity/xhtml-print-modules-1.xsd +422 -0
- data/lib/markup_validity/xhtml-rdfa-1.dtd +438 -0
- data/lib/markup_validity/xhtml-rdfa-1.xsd +116 -0
- data/lib/markup_validity/xhtml-rdfa-model-1.xsd +461 -0
- data/lib/markup_validity/xhtml-rdfa-modules-1.xsd +548 -0
- data/lib/markup_validity/xhtml-ruby-1.xsd +170 -0
- data/lib/markup_validity/xhtml-ruby-basic-1.xsd +84 -0
- data/lib/markup_validity/xhtml-script-1.xsd +65 -0
- data/lib/markup_validity/xhtml-special.ent +80 -0
- data/lib/markup_validity/xhtml-ssismap-1.xsd +38 -0
- data/lib/markup_validity/xhtml-struct-1.xsd +85 -0
- data/lib/markup_validity/xhtml-style-1.xsd +47 -0
- data/lib/markup_validity/xhtml-symbol.ent +237 -0
- data/lib/markup_validity/xhtml-table-1.xsd +267 -0
- data/lib/markup_validity/xhtml-target-1.xsd +49 -0
- data/lib/markup_validity/xhtml-text-1.xsd +62 -0
- data/lib/markup_validity/xhtml1-strict.dtd +978 -0
- data/lib/markup_validity/xhtml1-strict.xsd +2211 -0
- data/lib/markup_validity/xhtml1-transitional.dtd +1201 -0
- data/lib/markup_validity/xhtml1-transitional.xsd +2755 -0
- data/lib/markup_validity/xhtml11-model-1.xsd +715 -0
- data/lib/markup_validity/xhtml11-module-redefines-1.xsd +335 -0
- data/lib/markup_validity/xhtml11-modules-1.xsd +605 -0
- data/lib/markup_validity/xhtml11.xsd +107 -0
- data/lib/markup_validity/xhtml2.xsd +21 -0
- data/lib/markup_validity/xml-events-1.xsd +73 -0
- data/lib/markup_validity/xml-events-2.xsd +73 -0
- data/lib/markup_validity/xml-events-attribs-1.xsd +73 -0
- data/lib/markup_validity/xml-events-attribs-2.xsd +75 -0
- data/lib/markup_validity/xml-events-copyright-1.xsd +34 -0
- data/lib/markup_validity/xml-events-copyright-2.xsd +34 -0
- data/lib/markup_validity/xml-handlers-1.xsd +136 -0
- data/lib/markup_validity/xml-handlers-2.xsd +98 -0
- data/lib/markup_validity/xml-script-1.xsd +38 -0
- data/lib/markup_validity/xml.xsd +286 -0
- data/spec/matcher_spec.rb +55 -0
- data/test/assets/invalid_entity.xhtml +109 -0
- data/test/assets/invalid_entity_transitional.xhtml +109 -0
- data/test/assets/order.xml +24 -0
- data/test/assets/shipment.xsd +33 -0
- data/test/helper.rb +96 -0
- data/test/test_markup_validity.rb +105 -0
- metadata +198 -0
@@ -0,0 +1,548 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" xmlns:xh11d="http://www.w3.org/1999/xhtml/datatypes/">
|
3
|
+
<xs:import namespace="http://www.w3.org/1999/xhtml/datatypes/" schemaLocation="xhtml-datatypes-1.xsd"/>
|
4
|
+
<xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="http://www.w3.org/2001/xml.xsd"/>
|
5
|
+
<xs:annotation>
|
6
|
+
<xs:documentation>
|
7
|
+
This schema includes all modules for XHTML1.1 Document Type.
|
8
|
+
$Id: xhtml-rdfa-modules-1.xsd,v 1.9 2008/07/05 04:15:37 smccarro Exp $
|
9
|
+
</xs:documentation>
|
10
|
+
<xs:documentation source="xhtml-copyright-1.xsd"/>
|
11
|
+
</xs:annotation>
|
12
|
+
<xs:annotation>
|
13
|
+
<xs:documentation>
|
14
|
+
This schema includes all modules (and redefinitions)
|
15
|
+
for XHTML1.1 Document Type.
|
16
|
+
XHTML1.1 Document Type includes the following Modules
|
17
|
+
|
18
|
+
XHTML Core modules (Required for XHTML Family Conformance)
|
19
|
+
+ text
|
20
|
+
+ hypertext
|
21
|
+
+ lists
|
22
|
+
+ structure
|
23
|
+
|
24
|
+
Other XHTML modules
|
25
|
+
+ Edit
|
26
|
+
+ Bdo
|
27
|
+
+ Presentational
|
28
|
+
+ Link
|
29
|
+
+ Meta
|
30
|
+
+ Base
|
31
|
+
+ Scripting
|
32
|
+
+ Style
|
33
|
+
+ Image
|
34
|
+
+ Applet
|
35
|
+
+ Object
|
36
|
+
+ Param (Applet/Object modules require Param Module)
|
37
|
+
+ Tables
|
38
|
+
+ Target
|
39
|
+
+ Forms
|
40
|
+
+ Client side image maps
|
41
|
+
+ Server side image maps
|
42
|
+
|
43
|
+
</xs:documentation>
|
44
|
+
</xs:annotation>
|
45
|
+
<xs:include schemaLocation="xhtml-framework-1.xsd">
|
46
|
+
<xs:annotation>
|
47
|
+
<xs:documentation>
|
48
|
+
Schema Framework Component Modules:
|
49
|
+
+ notations
|
50
|
+
+ datatypes
|
51
|
+
+ common attributes
|
52
|
+
+ character entities
|
53
|
+
</xs:documentation>
|
54
|
+
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_commonatts"/>
|
55
|
+
</xs:annotation>
|
56
|
+
</xs:include>
|
57
|
+
<xs:include schemaLocation="xhtml-text-1.xsd">
|
58
|
+
<xs:annotation>
|
59
|
+
<xs:documentation>
|
60
|
+
Text module
|
61
|
+
|
62
|
+
The Text module includes declarations for all core
|
63
|
+
text container elements and their attributes.
|
64
|
+
|
65
|
+
+ block phrasal
|
66
|
+
+ block structural
|
67
|
+
+ inline phrasal
|
68
|
+
+ inline structural
|
69
|
+
|
70
|
+
Elements defined here:
|
71
|
+
* address, blockquote, pre, h1, h2, h3, h4, h5, h6
|
72
|
+
* div, p
|
73
|
+
* abbr, acronym, cite, code, dfn, em, kbd, q, samp, strong, var
|
74
|
+
* br, span
|
75
|
+
</xs:documentation>
|
76
|
+
<xs:documentation source="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstract_modules.html#s_textmodule"/>
|
77
|
+
</xs:annotation>
|
78
|
+
</xs:include>
|
79
|
+
|
80
|
+
<xs:include schemaLocation="xhtml-list-1.xsd">
|
81
|
+
<xs:annotation>
|
82
|
+
<xs:documentation>
|
83
|
+
Lists module
|
84
|
+
|
85
|
+
Elements defined here:
|
86
|
+
* dt, dd, dl, ol, ul, li
|
87
|
+
</xs:documentation>
|
88
|
+
<xs:documentation source="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstract_modules.html#s_listmodule"/>
|
89
|
+
</xs:annotation>
|
90
|
+
</xs:include>
|
91
|
+
<xs:redefine schemaLocation="xhtml-struct-1.xsd">
|
92
|
+
<xs:annotation>
|
93
|
+
<xs:documentation>
|
94
|
+
Structural module
|
95
|
+
|
96
|
+
Elements defined here:
|
97
|
+
* title, head, body, html
|
98
|
+
</xs:documentation>
|
99
|
+
<xs:documentation source="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstract_modules.html#s_structuremodule"/>
|
100
|
+
</xs:annotation>
|
101
|
+
<xs:attributeGroup name="xhtml.version.attrib">
|
102
|
+
<xs:annotation>
|
103
|
+
<xs:documentation>
|
104
|
+
Redefinition by the XHTML11 Markup (for value of version attr)
|
105
|
+
</xs:documentation>
|
106
|
+
</xs:annotation>
|
107
|
+
<xs:attribute name="version" type="xh11d:CDATA" fixed="XHTML+RDFa 1.0"/>
|
108
|
+
</xs:attributeGroup>
|
109
|
+
<xs:attributeGroup name="xhtml.body.attlist">
|
110
|
+
<xs:attributeGroup ref="xhtml.body.attlist">
|
111
|
+
<xs:annotation>
|
112
|
+
<xs:documentation>
|
113
|
+
Original Body Attlist
|
114
|
+
</xs:documentation>
|
115
|
+
</xs:annotation>
|
116
|
+
</xs:attributeGroup>
|
117
|
+
<xs:attributeGroup ref="xhtml.body.events.attlist">
|
118
|
+
<xs:annotation>
|
119
|
+
<xs:documentation>
|
120
|
+
Redefinition by XHTML Event Attribute Module
|
121
|
+
</xs:documentation>
|
122
|
+
</xs:annotation>
|
123
|
+
</xs:attributeGroup>
|
124
|
+
</xs:attributeGroup>
|
125
|
+
<xs:attributeGroup name="xhtml.head.attlist">
|
126
|
+
<xs:attributeGroup ref="xhtml.head.attlist"/>
|
127
|
+
<xs:attributeGroup ref="xhtml.class"/>
|
128
|
+
<xs:attributeGroup ref="xhtml.title"/>
|
129
|
+
<xs:attributeGroup ref="xhtml.Common.extra"/>
|
130
|
+
</xs:attributeGroup>
|
131
|
+
<xs:attributeGroup name="xhtml.title.attlist">
|
132
|
+
<xs:attributeGroup ref="xhtml.title.attlist"/>
|
133
|
+
<xs:attributeGroup ref="xhtml.class"/>
|
134
|
+
<xs:attributeGroup ref="xhtml.title"/>
|
135
|
+
<xs:attributeGroup ref="xhtml.Common.extra"/>
|
136
|
+
</xs:attributeGroup>
|
137
|
+
</xs:redefine>
|
138
|
+
<xs:include schemaLocation="xhtml-edit-1.xsd">
|
139
|
+
<xs:annotation>
|
140
|
+
<xs:documentation>
|
141
|
+
Edit module
|
142
|
+
|
143
|
+
Elements defined here:
|
144
|
+
* ins, del
|
145
|
+
</xs:documentation>
|
146
|
+
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_editmodule"/>
|
147
|
+
</xs:annotation>
|
148
|
+
</xs:include>
|
149
|
+
<xs:include schemaLocation="xhtml-bdo-1.xsd">
|
150
|
+
<xs:annotation>
|
151
|
+
<xs:documentation>
|
152
|
+
Bidirectional element module
|
153
|
+
|
154
|
+
Elements defined here:
|
155
|
+
* bdo
|
156
|
+
</xs:documentation>
|
157
|
+
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_bdomodule"/>
|
158
|
+
</xs:annotation>
|
159
|
+
</xs:include>
|
160
|
+
<xs:include schemaLocation="xhtml-pres-1.xsd">
|
161
|
+
<xs:annotation>
|
162
|
+
<xs:documentation>
|
163
|
+
Presentational module
|
164
|
+
|
165
|
+
Elements defined here:
|
166
|
+
* hr, b, big, i, small,sub, sup, tt
|
167
|
+
</xs:documentation>
|
168
|
+
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_presentationmodule"/>
|
169
|
+
</xs:annotation>
|
170
|
+
</xs:include>
|
171
|
+
<xs:redefine schemaLocation="xhtml-base-1.xsd">
|
172
|
+
<xs:annotation>
|
173
|
+
<xs:documentation>
|
174
|
+
Base module
|
175
|
+
|
176
|
+
Elements defined here:
|
177
|
+
* base
|
178
|
+
</xs:documentation>
|
179
|
+
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_basemodule"/>
|
180
|
+
</xs:annotation>
|
181
|
+
<xs:attributeGroup name="xhtml.base.attlist">
|
182
|
+
<xs:annotation>
|
183
|
+
<xs:documentation>
|
184
|
+
Changes to XHTML base Attlist
|
185
|
+
</xs:documentation>
|
186
|
+
</xs:annotation>
|
187
|
+
<xs:attributeGroup ref="xhtml.base.attlist">
|
188
|
+
<xs:annotation>
|
189
|
+
<xs:documentation>
|
190
|
+
Original Base Attributes (declared in Base Module)
|
191
|
+
</xs:documentation>
|
192
|
+
</xs:annotation>
|
193
|
+
</xs:attributeGroup>
|
194
|
+
<xs:attributeGroup ref="xhtml.base.target.attlist">
|
195
|
+
<xs:annotation>
|
196
|
+
<xs:documentation>
|
197
|
+
XHTML Target Module - Attribute additions
|
198
|
+
</xs:documentation>
|
199
|
+
</xs:annotation>
|
200
|
+
</xs:attributeGroup>
|
201
|
+
</xs:attributeGroup>
|
202
|
+
</xs:redefine>
|
203
|
+
<xs:include schemaLocation="xhtml-script-1.xsd">
|
204
|
+
<xs:annotation>
|
205
|
+
<xs:documentation>
|
206
|
+
Scripting module
|
207
|
+
|
208
|
+
Elements defined here:
|
209
|
+
* script, noscript
|
210
|
+
</xs:documentation>
|
211
|
+
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_scriptmodule"/>
|
212
|
+
</xs:annotation>
|
213
|
+
</xs:include>
|
214
|
+
<xs:include schemaLocation="xhtml-style-1.xsd">
|
215
|
+
<xs:annotation>
|
216
|
+
<xs:documentation>
|
217
|
+
Style module
|
218
|
+
|
219
|
+
Elements defined here:
|
220
|
+
* style
|
221
|
+
</xs:documentation>
|
222
|
+
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_stylemodule"/>
|
223
|
+
</xs:annotation>
|
224
|
+
</xs:include>
|
225
|
+
<xs:include schemaLocation="xhtml-inlstyle-1.xsd">
|
226
|
+
<xs:annotation>
|
227
|
+
<xs:documentation>
|
228
|
+
Style attribute module
|
229
|
+
|
230
|
+
Attribute defined here:
|
231
|
+
* style
|
232
|
+
</xs:documentation>
|
233
|
+
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_styleattributemodule"/>
|
234
|
+
</xs:annotation>
|
235
|
+
</xs:include>
|
236
|
+
<xs:redefine schemaLocation="xhtml-image-1.xsd">
|
237
|
+
<xs:annotation>
|
238
|
+
<xs:documentation>
|
239
|
+
Image module
|
240
|
+
|
241
|
+
Elements defined here:
|
242
|
+
* img
|
243
|
+
</xs:documentation>
|
244
|
+
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_imagemodule"/>
|
245
|
+
</xs:annotation>
|
246
|
+
<xs:attributeGroup name="xhtml.img.attlist">
|
247
|
+
<xs:attributeGroup ref="xhtml.img.attlist">
|
248
|
+
<xs:annotation>
|
249
|
+
<xs:documentation>
|
250
|
+
Original Image Attributes (in Image Module)
|
251
|
+
</xs:documentation>
|
252
|
+
</xs:annotation>
|
253
|
+
</xs:attributeGroup>
|
254
|
+
<xs:attributeGroup ref="xhtml.img.csim.attlist">
|
255
|
+
<xs:annotation>
|
256
|
+
<xs:documentation>
|
257
|
+
Redefinition by Client Side Image Map Module
|
258
|
+
</xs:documentation>
|
259
|
+
</xs:annotation>
|
260
|
+
</xs:attributeGroup>
|
261
|
+
<xs:attributeGroup ref="xhtml.img.ssimap.attlist">
|
262
|
+
<xs:annotation>
|
263
|
+
<xs:documentation>
|
264
|
+
Redefinition by Server Side Image Module
|
265
|
+
</xs:documentation>
|
266
|
+
</xs:annotation>
|
267
|
+
</xs:attributeGroup>
|
268
|
+
</xs:attributeGroup>
|
269
|
+
</xs:redefine>
|
270
|
+
<xs:redefine schemaLocation="xhtml-csismap-1.xsd">
|
271
|
+
<xs:annotation>
|
272
|
+
<xs:documentation>
|
273
|
+
Client-side mage maps module
|
274
|
+
|
275
|
+
Elements defined here:
|
276
|
+
* area, map
|
277
|
+
</xs:documentation>
|
278
|
+
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_imapmodule"/>
|
279
|
+
</xs:annotation>
|
280
|
+
<xs:attributeGroup name="xhtml.area.attlist">
|
281
|
+
<xs:attributeGroup ref="xhtml.area.attlist">
|
282
|
+
<xs:annotation>
|
283
|
+
<xs:documentation>
|
284
|
+
Original Area Attributes (in CSI Module)
|
285
|
+
</xs:documentation>
|
286
|
+
</xs:annotation>
|
287
|
+
</xs:attributeGroup>
|
288
|
+
<xs:attributeGroup ref="xhtml.area.events.attlist">
|
289
|
+
<xs:annotation>
|
290
|
+
<xs:documentation>
|
291
|
+
Redefinition by Events Attribute Module
|
292
|
+
</xs:documentation>
|
293
|
+
</xs:annotation>
|
294
|
+
</xs:attributeGroup>
|
295
|
+
<xs:attributeGroup ref="xhtml.area.target.attlist">
|
296
|
+
<xs:annotation>
|
297
|
+
<xs:documentation>
|
298
|
+
Target Module - Area Attribute Additions
|
299
|
+
</xs:documentation>
|
300
|
+
</xs:annotation>
|
301
|
+
</xs:attributeGroup>
|
302
|
+
</xs:attributeGroup>
|
303
|
+
</xs:redefine>
|
304
|
+
<xs:include schemaLocation="xhtml-ssismap-1.xsd">
|
305
|
+
<xs:annotation>
|
306
|
+
<xs:documentation>
|
307
|
+
Server-side image maps module
|
308
|
+
|
309
|
+
Attributes defined here:
|
310
|
+
* ismap on img
|
311
|
+
</xs:documentation>
|
312
|
+
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_servermapmodule"/>
|
313
|
+
</xs:annotation>
|
314
|
+
</xs:include>
|
315
|
+
<xs:redefine schemaLocation="xhtml-object-1.xsd">
|
316
|
+
<xs:annotation>
|
317
|
+
<xs:documentation>
|
318
|
+
Object module
|
319
|
+
|
320
|
+
Elements defined here:
|
321
|
+
* object
|
322
|
+
</xs:documentation>
|
323
|
+
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_objectmodule"/>
|
324
|
+
</xs:annotation>
|
325
|
+
<xs:attributeGroup name="xhtml.object.attlist">
|
326
|
+
<xs:attributeGroup ref="xhtml.object.attlist">
|
327
|
+
<xs:annotation>
|
328
|
+
<xs:documentation>
|
329
|
+
Original Object Attlist
|
330
|
+
</xs:documentation>
|
331
|
+
</xs:annotation>
|
332
|
+
</xs:attributeGroup>
|
333
|
+
<xs:attributeGroup ref="xhtml.object.csim.attlist">
|
334
|
+
<xs:annotation>
|
335
|
+
<xs:documentation>
|
336
|
+
Redefinition by Client Image Map Module
|
337
|
+
</xs:documentation>
|
338
|
+
</xs:annotation>
|
339
|
+
</xs:attributeGroup>
|
340
|
+
</xs:attributeGroup>
|
341
|
+
</xs:redefine>
|
342
|
+
<xs:include schemaLocation="xhtml-param-1.xsd">
|
343
|
+
<xs:annotation>
|
344
|
+
<xs:documentation>
|
345
|
+
Param module
|
346
|
+
|
347
|
+
Elements defined here:
|
348
|
+
* param
|
349
|
+
</xs:documentation>
|
350
|
+
</xs:annotation>
|
351
|
+
</xs:include>
|
352
|
+
<xs:include schemaLocation="xhtml-table-1.xsd">
|
353
|
+
<xs:annotation>
|
354
|
+
<xs:documentation>
|
355
|
+
Tables module
|
356
|
+
|
357
|
+
Elements defined here:
|
358
|
+
* table, caption, thead, tfoot, tbody, colgroup, col, tr, th, td
|
359
|
+
</xs:documentation>
|
360
|
+
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_tablemodule"/>
|
361
|
+
</xs:annotation>
|
362
|
+
</xs:include>
|
363
|
+
<xs:redefine schemaLocation="xhtml-form-1.xsd">
|
364
|
+
<xs:annotation>
|
365
|
+
<xs:documentation>
|
366
|
+
Forms module
|
367
|
+
|
368
|
+
Elements defined here:
|
369
|
+
* form, label, input, select, optgroup, option,
|
370
|
+
* textarea, fieldset, legend, button
|
371
|
+
</xs:documentation>
|
372
|
+
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_extformsmodule"/>
|
373
|
+
</xs:annotation>
|
374
|
+
<xs:attributeGroup name="xhtml.form.attlist">
|
375
|
+
<xs:annotation>
|
376
|
+
<xs:documentation>
|
377
|
+
Changes to XHTML Form Attlist
|
378
|
+
</xs:documentation>
|
379
|
+
</xs:annotation>
|
380
|
+
<xs:attributeGroup ref="xhtml.form.attlist">
|
381
|
+
<xs:annotation>
|
382
|
+
<xs:documentation>
|
383
|
+
Original Form Attributes (declared in Forms Module)
|
384
|
+
</xs:documentation>
|
385
|
+
</xs:annotation>
|
386
|
+
</xs:attributeGroup>
|
387
|
+
<xs:attributeGroup ref="xhtml.form.events.attlist">
|
388
|
+
<xs:annotation>
|
389
|
+
<xs:documentation>
|
390
|
+
XHTML Events Module - Attribute additions
|
391
|
+
</xs:documentation>
|
392
|
+
</xs:annotation>
|
393
|
+
</xs:attributeGroup>
|
394
|
+
<xs:attributeGroup ref="xhtml.form.target.attlist">
|
395
|
+
<xs:annotation>
|
396
|
+
<xs:documentation>
|
397
|
+
XHTML Target Module - Attribute additions
|
398
|
+
</xs:documentation>
|
399
|
+
</xs:annotation>
|
400
|
+
</xs:attributeGroup>
|
401
|
+
</xs:attributeGroup>
|
402
|
+
<xs:attributeGroup name="xhtml.input.attlist">
|
403
|
+
<xs:annotation>
|
404
|
+
<xs:documentation>
|
405
|
+
Changes to XHTML Form Input Element
|
406
|
+
</xs:documentation>
|
407
|
+
</xs:annotation>
|
408
|
+
<xs:attributeGroup ref="xhtml.input.attlist">
|
409
|
+
<xs:annotation>
|
410
|
+
<xs:documentation>
|
411
|
+
Original Input Attributes (in Forms Module)
|
412
|
+
</xs:documentation>
|
413
|
+
</xs:annotation>
|
414
|
+
</xs:attributeGroup>
|
415
|
+
<xs:attributeGroup ref="xhtml.input.csim.attlist">
|
416
|
+
<xs:annotation>
|
417
|
+
<xs:documentation>
|
418
|
+
Redefinition by Client Side Image Map Module
|
419
|
+
</xs:documentation>
|
420
|
+
</xs:annotation>
|
421
|
+
</xs:attributeGroup>
|
422
|
+
<xs:attributeGroup ref="xhtml.input.ssimap.attlist">
|
423
|
+
<xs:annotation>
|
424
|
+
<xs:documentation>
|
425
|
+
Redefinition by Server Side Image Map Module
|
426
|
+
</xs:documentation>
|
427
|
+
</xs:annotation>
|
428
|
+
</xs:attributeGroup>
|
429
|
+
<xs:attributeGroup ref="xhtml.input.events.attlist">
|
430
|
+
<xs:annotation>
|
431
|
+
<xs:documentation>
|
432
|
+
Redefinition by Event Attribute Module
|
433
|
+
</xs:documentation>
|
434
|
+
</xs:annotation>
|
435
|
+
</xs:attributeGroup>
|
436
|
+
</xs:attributeGroup>
|
437
|
+
<xs:attributeGroup name="xhtml.label.attlist">
|
438
|
+
<xs:attributeGroup ref="xhtml.label.attlist">
|
439
|
+
<xs:annotation>
|
440
|
+
<xs:documentation>
|
441
|
+
Original Label Attributes (in Forms Module)
|
442
|
+
</xs:documentation>
|
443
|
+
</xs:annotation>
|
444
|
+
</xs:attributeGroup>
|
445
|
+
<xs:attributeGroup ref="xhtml.label.events.attlist">
|
446
|
+
<xs:annotation>
|
447
|
+
<xs:documentation>
|
448
|
+
Redefinition by Event Attribute Module
|
449
|
+
</xs:documentation>
|
450
|
+
</xs:annotation>
|
451
|
+
</xs:attributeGroup>
|
452
|
+
</xs:attributeGroup>
|
453
|
+
<xs:attributeGroup name="xhtml.select.attlist">
|
454
|
+
<xs:attributeGroup ref="xhtml.select.attlist">
|
455
|
+
<xs:annotation>
|
456
|
+
<xs:documentation>
|
457
|
+
Original Select Attributes (in Forms Module)
|
458
|
+
</xs:documentation>
|
459
|
+
</xs:annotation>
|
460
|
+
</xs:attributeGroup>
|
461
|
+
<xs:attributeGroup ref="xhtml.select.events.attlist">
|
462
|
+
<xs:annotation>
|
463
|
+
<xs:documentation>
|
464
|
+
Redefinition by Event Attribute Module
|
465
|
+
</xs:documentation>
|
466
|
+
</xs:annotation>
|
467
|
+
</xs:attributeGroup>
|
468
|
+
</xs:attributeGroup>
|
469
|
+
<xs:attributeGroup name="xhtml.textarea.attlist">
|
470
|
+
<xs:attributeGroup ref="xhtml.textarea.attlist">
|
471
|
+
<xs:annotation>
|
472
|
+
<xs:documentation>
|
473
|
+
Original TextArea Attributes (in Forms Module)
|
474
|
+
</xs:documentation>
|
475
|
+
</xs:annotation>
|
476
|
+
</xs:attributeGroup>
|
477
|
+
<xs:attributeGroup ref="xhtml.textarea.events.attlist">
|
478
|
+
<xs:annotation>
|
479
|
+
<xs:documentation>
|
480
|
+
Redefinition by Event Attribute Module
|
481
|
+
</xs:documentation>
|
482
|
+
</xs:annotation>
|
483
|
+
</xs:attributeGroup>
|
484
|
+
</xs:attributeGroup>
|
485
|
+
<xs:attributeGroup name="xhtml.button.attlist">
|
486
|
+
<xs:attributeGroup ref="xhtml.button.attlist">
|
487
|
+
<xs:annotation>
|
488
|
+
<xs:documentation>
|
489
|
+
Original Button Attributes (in Forms Module)
|
490
|
+
</xs:documentation>
|
491
|
+
</xs:annotation>
|
492
|
+
</xs:attributeGroup>
|
493
|
+
<xs:attributeGroup ref="xhtml.button.events.attlist">
|
494
|
+
<xs:annotation>
|
495
|
+
<xs:documentation>
|
496
|
+
Redefinition by Event Attribute Module
|
497
|
+
</xs:documentation>
|
498
|
+
</xs:annotation>
|
499
|
+
</xs:attributeGroup>
|
500
|
+
</xs:attributeGroup>
|
501
|
+
</xs:redefine>
|
502
|
+
<xs:include schemaLocation="xhtml-ruby-basic-1.xsd">
|
503
|
+
<xs:annotation>
|
504
|
+
<xs:documentation>
|
505
|
+
Ruby module
|
506
|
+
|
507
|
+
Elements defined here:
|
508
|
+
* ruby, rbc, rtc, rb, rt, rp
|
509
|
+
|
510
|
+
Note that either Ruby or Basic Ruby should be used but not both
|
511
|
+
</xs:documentation>
|
512
|
+
<xs:documentation source="http://www.w3.org/TR/2001/REC-ruby-20010531/#simple-ruby1"/>
|
513
|
+
</xs:annotation>
|
514
|
+
</xs:include>
|
515
|
+
<xs:include schemaLocation="xhtml-events-1.xsd">
|
516
|
+
<xs:annotation>
|
517
|
+
<xs:documentation>
|
518
|
+
XHTML Events Modules
|
519
|
+
|
520
|
+
Attributes defined here:
|
521
|
+
XHTML Event Types
|
522
|
+
</xs:documentation>
|
523
|
+
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_intrinsiceventsmodule"/>
|
524
|
+
</xs:annotation>
|
525
|
+
</xs:include>
|
526
|
+
<xs:include schemaLocation="xhtml-metaAttributes-1.xsd">
|
527
|
+
<xs:annotation>
|
528
|
+
<xs:documentation>
|
529
|
+
XHTML Metainformation Modules
|
530
|
+
|
531
|
+
Attributes defined here:
|
532
|
+
XHTML RDFa attribtues
|
533
|
+
</xs:documentation>
|
534
|
+
<xs:documentation source="http://www.w3.org/TR/rdfa-syntax"/>
|
535
|
+
</xs:annotation>
|
536
|
+
</xs:include>
|
537
|
+
<xs:include schemaLocation="xhtml-target-1.xsd">
|
538
|
+
<xs:annotation>
|
539
|
+
<xs:documentation>
|
540
|
+
XHTML Target Attribute Module
|
541
|
+
|
542
|
+
Attributes defined here:
|
543
|
+
target
|
544
|
+
</xs:documentation>
|
545
|
+
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_targetmodule"/>
|
546
|
+
</xs:annotation>
|
547
|
+
</xs:include>
|
548
|
+
</xs:schema>
|