jhove-service 1.3.0 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.rdoc +1 -0
- data/bin/aiff-hul-1.6.1-RC1.jar +0 -0
- data/bin/ascii-hul-1.4.1.jar +0 -0
- data/bin/cache/xhtml-attribs-1.xsd +73 -0
- data/bin/cache/xhtml-base-1.xsd +36 -0
- data/bin/cache/xhtml-bdo-1.xsd +71 -0
- data/bin/cache/xhtml-blkphras-1.xsd +160 -0
- data/bin/cache/xhtml-blkpres-1.xsd +37 -0
- data/bin/cache/xhtml-blkstruct-1.xsd +49 -0
- data/bin/cache/xhtml-csismap-1.xsd +96 -0
- data/bin/cache/xhtml-datatypes-1.xsd +242 -0
- data/bin/cache/xhtml-edit-1.xsd +39 -0
- data/bin/cache/xhtml-events-1.xsd +130 -0
- data/bin/cache/xhtml-form-1.xsd +327 -0
- data/bin/cache/xhtml-framework-1.xsd +66 -0
- data/bin/cache/xhtml-hypertext-1.xsd +47 -0
- data/bin/cache/xhtml-image-1.xsd +46 -0
- data/bin/cache/xhtml-inlphras-1.xsd +163 -0
- data/bin/cache/xhtml-inlpres-1.xsd +39 -0
- data/bin/cache/xhtml-inlstruct-1.xsd +50 -0
- data/bin/cache/xhtml-inlstyle-1.xsd +27 -0
- data/bin/cache/xhtml-link-1.xsd +45 -0
- data/bin/cache/xhtml-list-1.xsd +99 -0
- data/bin/cache/xhtml-meta-1.xsd +54 -0
- data/bin/cache/xhtml-object-1.xsd +76 -0
- data/bin/cache/xhtml-param-1.xsd +51 -0
- data/bin/cache/xhtml-pres-1.xsd +51 -0
- data/bin/cache/xhtml-ruby-1.xsd +170 -0
- data/bin/cache/xhtml-script-1.xsd +71 -0
- data/bin/cache/xhtml-ssismap-1.xsd +43 -0
- data/bin/cache/xhtml-struct-1.xsd +130 -0
- data/bin/cache/xhtml-style-1.xsd +53 -0
- data/bin/cache/xhtml-table-1.xsd +272 -0
- data/bin/cache/xhtml-target-1.xsd +49 -0
- data/bin/cache/xhtml-text-1.xsd +67 -0
- data/bin/cache/xhtml11-model-1.xsd +716 -0
- data/bin/cache/xhtml11-modules-1.xsd +605 -0
- data/bin/cache/xhtml11.xsd +104 -0
- data/bin/cache/xml.xsd +287 -0
- data/bin/gif-hul-1.4.2-RC1.jar +0 -0
- data/bin/html-hul-1.4.1.jar +0 -0
- data/bin/jhove-apps-1.24.0-RC1.jar +0 -0
- data/bin/jhove-ext-modules-1.24.0-RC1.jar +0 -0
- data/bin/jhove.conf +40 -2
- data/bin/jhoveToolkit.sh +34 -2
- data/bin/jpeg-hul-1.5.2-RC1.jar +0 -0
- data/bin/jpeg2000-hul-1.4.2-RC1.jar +0 -0
- data/bin/pdf-hul-1.12.2-RC1.jar +0 -0
- data/bin/tiff-hul-1.9.2-RC1.jar +0 -0
- data/bin/utf8-hul-1.7.1.jar +0 -0
- data/bin/wave-hul-1.8.1-RC1.jar +0 -0
- data/bin/xml-hul-1.5.1.jar +0 -0
- data/lib/jhove_service.rb +3 -3
- metadata +52 -6
- data/bin/jhove-apps-1.20.1.jar +0 -0
- data/bin/jhove-ext-modules-1.20.1.jar +0 -0
@@ -0,0 +1,327 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xs:schema
|
3
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
4
|
+
elementFormDefault="qualified"
|
5
|
+
xmlns:xh11d="http://www.w3.org/1999/xhtml/datatypes/"
|
6
|
+
>
|
7
|
+
<xs:import namespace="http://www.w3.org/1999/xhtml/datatypes/"
|
8
|
+
schemaLocation="xhtml-datatypes-1.xsd" />
|
9
|
+
|
10
|
+
<xs:annotation>
|
11
|
+
<xs:documentation>
|
12
|
+
Forms
|
13
|
+
This is the XML Schema Forms module for XHTML
|
14
|
+
|
15
|
+
* form, label, input, select, optgroup, option,
|
16
|
+
textarea, fieldset, legend, button
|
17
|
+
|
18
|
+
This module declares markup to provide support for online
|
19
|
+
forms, based on the features found in HTML 4.0 forms.
|
20
|
+
|
21
|
+
|
22
|
+
$Id: xhtml-form-1.xsd,v 1.4 2009/09/30 15:22:38 ahby Exp $
|
23
|
+
</xs:documentation>
|
24
|
+
<xs:documentation source="xhtml-copyright-1.xsd"/>
|
25
|
+
<xs:documentation source="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstract_modules.html#s_extformsmodule"/>
|
26
|
+
</xs:annotation>
|
27
|
+
<!-- form: Form Element -->
|
28
|
+
<xs:attributeGroup name="xhtml.form.attlist">
|
29
|
+
<xs:attributeGroup ref="xhtml.Common.attrib"/>
|
30
|
+
<xs:attribute name="action" type="xh11d:URI" use="required"/>
|
31
|
+
<xs:attribute name="method" default="get">
|
32
|
+
<xs:simpleType>
|
33
|
+
<xs:restriction base="xs:NMTOKEN">
|
34
|
+
<xs:enumeration value="get"/>
|
35
|
+
<xs:enumeration value="post"/>
|
36
|
+
</xs:restriction>
|
37
|
+
</xs:simpleType>
|
38
|
+
</xs:attribute>
|
39
|
+
<xs:attribute name="name" type="xh11d:CDATA"/>
|
40
|
+
<xs:attribute name="enctype" type="xh11d:ContentType" default="application/x-www-form-urlencoded"/>
|
41
|
+
<xs:attribute name="accept-charset" type="xh11d:Charsets"/>
|
42
|
+
<xs:attribute name="accept" type="xh11d:ContentTypes"/>
|
43
|
+
</xs:attributeGroup>
|
44
|
+
<xs:group name="xhtml.form.content">
|
45
|
+
<xs:sequence>
|
46
|
+
<xs:choice maxOccurs="unbounded">
|
47
|
+
<xs:group ref="xhtml.BlkNoForm.mix"/>
|
48
|
+
<xs:element name="fieldset" type="xhtml.fieldset.type"/>
|
49
|
+
</xs:choice>
|
50
|
+
</xs:sequence>
|
51
|
+
</xs:group>
|
52
|
+
<xs:complexType name="xhtml.form.type">
|
53
|
+
<xs:group ref="xhtml.form.content"/>
|
54
|
+
<xs:attributeGroup ref="xhtml.form.attlist"/>
|
55
|
+
</xs:complexType>
|
56
|
+
<!--
|
57
|
+
label: Form Field Label Text
|
58
|
+
Note: Each label must not contain more than ONE field
|
59
|
+
-->
|
60
|
+
<xs:group name="xhtml.label.content">
|
61
|
+
<xs:sequence>
|
62
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
63
|
+
<xs:element name="input" type="xhtml.input.type"/>
|
64
|
+
<xs:element name="select" type="xhtml.select.type"/>
|
65
|
+
<xs:element name="textarea" type="xhtml.textarea.type"/>
|
66
|
+
<xs:element name="button" type="xhtml.button.type"/>
|
67
|
+
<xs:group ref="xhtml.InlStruct.class"/>
|
68
|
+
<xs:group ref="xhtml.InlPhras.class"/>
|
69
|
+
<xs:group ref="xhtml.I18n.class"/>
|
70
|
+
<xs:group ref="xhtml.InlPres.class"/>
|
71
|
+
<xs:group ref="xhtml.InlSpecial.class"/>
|
72
|
+
<xs:group ref="xhtml.Inline.extra"/>
|
73
|
+
<xs:group ref="xhtml.Misc.class"/>
|
74
|
+
</xs:choice>
|
75
|
+
</xs:sequence>
|
76
|
+
</xs:group>
|
77
|
+
<xs:attributeGroup name="xhtml.label.attlist">
|
78
|
+
<xs:attributeGroup ref="xhtml.Common.attrib"/>
|
79
|
+
<xs:attribute name="for" type="xs:IDREF"/>
|
80
|
+
<xs:attribute name="accesskey" type="xh11d:Character"/>
|
81
|
+
</xs:attributeGroup>
|
82
|
+
<xs:complexType name="xhtml.label.type" mixed="true">
|
83
|
+
<xs:group ref="xhtml.label.content"/>
|
84
|
+
<xs:attributeGroup ref="xhtml.label.attlist"/>
|
85
|
+
</xs:complexType>
|
86
|
+
<!-- input: Form Control -->
|
87
|
+
<xs:simpleType name="xhtml.InputType.class">
|
88
|
+
<xs:restriction base="xs:NMTOKEN">
|
89
|
+
<xs:enumeration value="text"/>
|
90
|
+
<xs:enumeration value="password"/>
|
91
|
+
<xs:enumeration value="checkbox"/>
|
92
|
+
<xs:enumeration value="radio"/>
|
93
|
+
<xs:enumeration value="submit"/>
|
94
|
+
<xs:enumeration value="reset"/>
|
95
|
+
<xs:enumeration value="hidden"/>
|
96
|
+
<xs:enumeration value="image"/>
|
97
|
+
<xs:enumeration value="button"/>
|
98
|
+
<xs:enumeration value="file"/>
|
99
|
+
</xs:restriction>
|
100
|
+
</xs:simpleType>
|
101
|
+
<!--
|
102
|
+
attribute 'name' required for all but submit & reset
|
103
|
+
-->
|
104
|
+
<xs:attributeGroup name="xhtml.input.attlist">
|
105
|
+
<xs:attributeGroup ref="xhtml.Common.attrib"/>
|
106
|
+
<xs:attribute name="type" type="xhtml.InputType.class" default="text"/>
|
107
|
+
<xs:attribute name="name" type="xh11d:CDATA"/>
|
108
|
+
<xs:attribute name="value" type="xh11d:CDATA"/>
|
109
|
+
<xs:attribute name="checked">
|
110
|
+
<xs:simpleType>
|
111
|
+
<xs:restriction base="xs:NMTOKEN">
|
112
|
+
<xs:enumeration value="checked"/>
|
113
|
+
</xs:restriction>
|
114
|
+
</xs:simpleType>
|
115
|
+
</xs:attribute>
|
116
|
+
<xs:attribute name="disabled">
|
117
|
+
<xs:simpleType>
|
118
|
+
<xs:restriction base="xs:NMTOKEN">
|
119
|
+
<xs:enumeration value="disabled"/>
|
120
|
+
</xs:restriction>
|
121
|
+
</xs:simpleType>
|
122
|
+
</xs:attribute>
|
123
|
+
<xs:attribute name="readonly">
|
124
|
+
<xs:simpleType>
|
125
|
+
<xs:restriction base="xs:NMTOKEN">
|
126
|
+
<xs:enumeration value="readonly"/>
|
127
|
+
</xs:restriction>
|
128
|
+
</xs:simpleType>
|
129
|
+
</xs:attribute>
|
130
|
+
<xs:attribute name="size" type="xh11d:Number"/>
|
131
|
+
<xs:attribute name="maxlength" type="xh11d:Number"/>
|
132
|
+
<xs:attribute name="src" type="xh11d:URI"/>
|
133
|
+
<xs:attribute name="alt" type="xh11d:Text"/>
|
134
|
+
<xs:attribute name="tabindex" type="xh11d:Number"/>
|
135
|
+
<xs:attribute name="accesskey" type="xh11d:Character"/>
|
136
|
+
<xs:attribute name="accept" type="xh11d:ContentTypes"/>
|
137
|
+
</xs:attributeGroup>
|
138
|
+
<xs:group name="xhtml.input.content">
|
139
|
+
<xs:sequence/>
|
140
|
+
</xs:group>
|
141
|
+
<xs:complexType name="xhtml.input.type">
|
142
|
+
<xs:group ref="xhtml.input.content"/>
|
143
|
+
<xs:attributeGroup ref="xhtml.input.attlist"/>
|
144
|
+
</xs:complexType>
|
145
|
+
<!-- select: Option Selector -->
|
146
|
+
<xs:attributeGroup name="xhtml.select.attlist">
|
147
|
+
<xs:attributeGroup ref="xhtml.Common.attrib"/>
|
148
|
+
<xs:attribute name="name" type="xh11d:CDATA"/>
|
149
|
+
<xs:attribute name="size" type="xh11d:Number"/>
|
150
|
+
<xs:attribute name="multiple">
|
151
|
+
<xs:simpleType>
|
152
|
+
<xs:restriction base="xs:NMTOKEN">
|
153
|
+
<xs:enumeration value="multiple"/>
|
154
|
+
</xs:restriction>
|
155
|
+
</xs:simpleType>
|
156
|
+
</xs:attribute>
|
157
|
+
<xs:attribute name="disabled">
|
158
|
+
<xs:simpleType>
|
159
|
+
<xs:restriction base="xs:NMTOKEN">
|
160
|
+
<xs:enumeration value="disabled"/>
|
161
|
+
</xs:restriction>
|
162
|
+
</xs:simpleType>
|
163
|
+
</xs:attribute>
|
164
|
+
<xs:attribute name="tabindex" type="xh11d:Number"/>
|
165
|
+
</xs:attributeGroup>
|
166
|
+
<xs:group name="xhtml.select.content">
|
167
|
+
<xs:sequence>
|
168
|
+
<xs:choice maxOccurs="unbounded">
|
169
|
+
<xs:element name="optgroup" type="xhtml.optgroup.type"/>
|
170
|
+
<xs:element name="option" type="xhtml.option.type"/>
|
171
|
+
</xs:choice>
|
172
|
+
</xs:sequence>
|
173
|
+
</xs:group>
|
174
|
+
<xs:complexType name="xhtml.select.type">
|
175
|
+
<xs:group ref="xhtml.select.content"/>
|
176
|
+
<xs:attributeGroup ref="xhtml.select.attlist"/>
|
177
|
+
</xs:complexType>
|
178
|
+
<!-- optgroup: Option Group -->
|
179
|
+
<xs:attributeGroup name="xhtml.optgroup.attlist">
|
180
|
+
<xs:attributeGroup ref="xhtml.Common.attrib"/>
|
181
|
+
<xs:attribute name="disabled">
|
182
|
+
<xs:simpleType>
|
183
|
+
<xs:restriction base="xs:NMTOKEN">
|
184
|
+
<xs:enumeration value="disabled"/>
|
185
|
+
</xs:restriction>
|
186
|
+
</xs:simpleType>
|
187
|
+
</xs:attribute>
|
188
|
+
<xs:attribute name="label" type="xh11d:Text" use="required"/>
|
189
|
+
</xs:attributeGroup>
|
190
|
+
<xs:group name="xhtml.optgroup.content">
|
191
|
+
<xs:sequence>
|
192
|
+
<xs:element name="option" type="xhtml.option.type" maxOccurs="unbounded"/>
|
193
|
+
</xs:sequence>
|
194
|
+
</xs:group>
|
195
|
+
<xs:complexType name="xhtml.optgroup.type">
|
196
|
+
<xs:group ref="xhtml.optgroup.content"/>
|
197
|
+
<xs:attributeGroup ref="xhtml.optgroup.attlist"/>
|
198
|
+
</xs:complexType>
|
199
|
+
<!-- option: Selectable Choice -->
|
200
|
+
<xs:attributeGroup name="xhtml.option.attlist">
|
201
|
+
<xs:attributeGroup ref="xhtml.Common.attrib"/>
|
202
|
+
<xs:attribute name="selected">
|
203
|
+
<xs:simpleType>
|
204
|
+
<xs:restriction base="xs:NMTOKEN">
|
205
|
+
<xs:enumeration value="selected"/>
|
206
|
+
</xs:restriction>
|
207
|
+
</xs:simpleType>
|
208
|
+
</xs:attribute>
|
209
|
+
<xs:attribute name="disabled">
|
210
|
+
<xs:simpleType>
|
211
|
+
<xs:restriction base="xs:NMTOKEN">
|
212
|
+
<xs:enumeration value="disabled"/>
|
213
|
+
</xs:restriction>
|
214
|
+
</xs:simpleType>
|
215
|
+
</xs:attribute>
|
216
|
+
<xs:attribute name="label" type="xh11d:Text"/>
|
217
|
+
<xs:attribute name="value" type="xh11d:CDATA"/>
|
218
|
+
</xs:attributeGroup>
|
219
|
+
<xs:group name="xhtml.option.content">
|
220
|
+
<xs:sequence/>
|
221
|
+
</xs:group>
|
222
|
+
<xs:complexType name="xhtml.option.type" mixed="true">
|
223
|
+
<xs:group ref="xhtml.option.content"/>
|
224
|
+
<xs:attributeGroup ref="xhtml.option.attlist"/>
|
225
|
+
</xs:complexType>
|
226
|
+
<!-- textarea: Multi-Line Text Field -->
|
227
|
+
<xs:attributeGroup name="xhtml.textarea.attlist">
|
228
|
+
<xs:attributeGroup ref="xhtml.Common.attrib"/>
|
229
|
+
<xs:attribute name="name" type="xh11d:CDATA"/>
|
230
|
+
<xs:attribute name="rows" type="xh11d:Number" use="required"/>
|
231
|
+
<xs:attribute name="cols" type="xh11d:Number" use="required"/>
|
232
|
+
<xs:attribute name="disabled">
|
233
|
+
<xs:simpleType>
|
234
|
+
<xs:restriction base="xs:NMTOKEN">
|
235
|
+
<xs:enumeration value="disabled"/>
|
236
|
+
</xs:restriction>
|
237
|
+
</xs:simpleType>
|
238
|
+
</xs:attribute>
|
239
|
+
<xs:attribute name="readonly">
|
240
|
+
<xs:simpleType>
|
241
|
+
<xs:restriction base="xs:NMTOKEN">
|
242
|
+
<xs:enumeration value="readonly"/>
|
243
|
+
</xs:restriction>
|
244
|
+
</xs:simpleType>
|
245
|
+
</xs:attribute>
|
246
|
+
<xs:attribute name="tabindex" type="xh11d:Number"/>
|
247
|
+
<xs:attribute name="accesskey" type="xh11d:Character"/>
|
248
|
+
</xs:attributeGroup>
|
249
|
+
<xs:group name="xhtml.textarea.content">
|
250
|
+
<xs:sequence/>
|
251
|
+
</xs:group>
|
252
|
+
<xs:complexType name="xhtml.textarea.type" mixed="true">
|
253
|
+
<xs:group ref="xhtml.textarea.content"/>
|
254
|
+
<xs:attributeGroup ref="xhtml.textarea.attlist"/>
|
255
|
+
</xs:complexType>
|
256
|
+
<!-- fieldset: Form Control Group -->
|
257
|
+
<xs:attributeGroup name="xhtml.fieldset.attlist">
|
258
|
+
<xs:attributeGroup ref="xhtml.Common.attrib"/>
|
259
|
+
</xs:attributeGroup>
|
260
|
+
<xs:group name="xhtml.fieldset.content">
|
261
|
+
<xs:sequence>
|
262
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
263
|
+
<xs:element name="legend" type="xhtml.legend.type"/>
|
264
|
+
<xs:group ref="xhtml.Flow.mix"/>
|
265
|
+
</xs:choice>
|
266
|
+
</xs:sequence>
|
267
|
+
</xs:group>
|
268
|
+
<xs:complexType name="xhtml.fieldset.type" mixed="true">
|
269
|
+
<xs:group ref="xhtml.fieldset.content"/>
|
270
|
+
<xs:attributeGroup ref="xhtml.fieldset.attlist"/>
|
271
|
+
</xs:complexType>
|
272
|
+
<!-- legend: Fieldset Legend -->
|
273
|
+
<xs:attributeGroup name="xhtml.legend.attlist">
|
274
|
+
<xs:attributeGroup ref="xhtml.Common.attrib"/>
|
275
|
+
<xs:attribute name="accesskey" type="xh11d:Character"/>
|
276
|
+
</xs:attributeGroup>
|
277
|
+
<xs:group name="xhtml.legend.content">
|
278
|
+
<xs:sequence>
|
279
|
+
<xs:group ref="xhtml.Inline.mix" minOccurs="0" maxOccurs="unbounded"/>
|
280
|
+
</xs:sequence>
|
281
|
+
</xs:group>
|
282
|
+
<xs:complexType name="xhtml.legend.type" mixed="true">
|
283
|
+
<xs:group ref="xhtml.legend.content"/>
|
284
|
+
<xs:attributeGroup ref="xhtml.legend.attlist"/>
|
285
|
+
</xs:complexType>
|
286
|
+
<!-- button: Push Button -->
|
287
|
+
<xs:attributeGroup name="xhtml.button.attlist">
|
288
|
+
<xs:attributeGroup ref="xhtml.Common.attrib"/>
|
289
|
+
<xs:attribute name="name" type="xh11d:CDATA"/>
|
290
|
+
<xs:attribute name="value" type="xh11d:CDATA"/>
|
291
|
+
<xs:attribute name="type" default="submit">
|
292
|
+
<xs:simpleType>
|
293
|
+
<xs:restriction base="xs:NMTOKEN">
|
294
|
+
<xs:enumeration value="button"/>
|
295
|
+
<xs:enumeration value="submit"/>
|
296
|
+
<xs:enumeration value="reset"/>
|
297
|
+
</xs:restriction>
|
298
|
+
</xs:simpleType>
|
299
|
+
</xs:attribute>
|
300
|
+
<xs:attribute name="disabled">
|
301
|
+
<xs:simpleType>
|
302
|
+
<xs:restriction base="xs:NMTOKEN">
|
303
|
+
<xs:enumeration value="disabled"/>
|
304
|
+
</xs:restriction>
|
305
|
+
</xs:simpleType>
|
306
|
+
</xs:attribute>
|
307
|
+
<xs:attribute name="tabindex" type="xh11d:Number"/>
|
308
|
+
<xs:attribute name="accesskey" type="xh11d:Character"/>
|
309
|
+
</xs:attributeGroup>
|
310
|
+
<xs:group name="xhtml.button.content">
|
311
|
+
<xs:sequence>
|
312
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
313
|
+
<xs:group ref="xhtml.BlkNoForm.mix"/>
|
314
|
+
<xs:group ref="xhtml.InlStruct.class"/>
|
315
|
+
<xs:group ref="xhtml.InlPhras.class"/>
|
316
|
+
<xs:group ref="xhtml.InlPres.class"/>
|
317
|
+
<xs:group ref="xhtml.I18n.class"/>
|
318
|
+
<xs:group ref="xhtml.InlSpecial.class"/>
|
319
|
+
<xs:group ref="xhtml.Inline.extra"/>
|
320
|
+
</xs:choice>
|
321
|
+
</xs:sequence>
|
322
|
+
</xs:group>
|
323
|
+
<xs:complexType name="xhtml.button.type" mixed="true">
|
324
|
+
<xs:group ref="xhtml.button.content"/>
|
325
|
+
<xs:attributeGroup ref="xhtml.button.attlist"/>
|
326
|
+
</xs:complexType>
|
327
|
+
</xs:schema>
|
@@ -0,0 +1,66 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xs:schema
|
3
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
4
|
+
xmlns:xh11d="http://www.w3.org/1999/xhtml/datatypes/"
|
5
|
+
elementFormDefault="qualified"
|
6
|
+
>
|
7
|
+
<xs:annotation>
|
8
|
+
<xs:documentation>
|
9
|
+
This is the XML Schema Modular Framework support module for XHTML
|
10
|
+
$Id: xhtml-framework-1.xsd,v 1.5 2005/09/26 23:37:47 ahby Exp $
|
11
|
+
</xs:documentation>
|
12
|
+
<xs:documentation source="xhtml-copyright-1.xsd"/>
|
13
|
+
</xs:annotation>
|
14
|
+
<xs:annotation>
|
15
|
+
<xs:documentation>
|
16
|
+
XHTML Modular Framework
|
17
|
+
This required module instantiates the necessary modules
|
18
|
+
needed to support the XHTML modularization framework.
|
19
|
+
|
20
|
+
The Schema modules instantiated are:
|
21
|
+
+ notations
|
22
|
+
+ datatypes
|
23
|
+
+ common attributes
|
24
|
+
+ character entities
|
25
|
+
</xs:documentation>
|
26
|
+
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_commonatts"/>
|
27
|
+
</xs:annotation>
|
28
|
+
<!-- xs:include schemaLocation="xhtml-notations-1.xsd">
|
29
|
+
<xs:annotation>
|
30
|
+
<xs:documentation>
|
31
|
+
Notations module
|
32
|
+
Declares XHTML notations for Attribute data types
|
33
|
+
</xs:documentation>
|
34
|
+
</xs:annotation>
|
35
|
+
</xs:include -->
|
36
|
+
<xs:import namespace="http://www.w3.org/1999/xhtml/datatypes/" schemaLocation="https://www.w3.org/MarkUp/SCHEMA/xhtml-datatypes-1.xsd">
|
37
|
+
<xs:annotation>
|
38
|
+
<xs:documentation>
|
39
|
+
This module defines XHTML Attribute DataTypes
|
40
|
+
</xs:documentation>
|
41
|
+
<xs:documentation source="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#s_common_attrtypes"/>
|
42
|
+
</xs:annotation>
|
43
|
+
</xs:import>
|
44
|
+
<xs:include schemaLocation="https://www.w3.org/MarkUp/SCHEMA/xhtml-attribs-1.xsd">
|
45
|
+
<xs:annotation>
|
46
|
+
<xs:documentation>
|
47
|
+
This module defines Common attributes for XHTML
|
48
|
+
</xs:documentation>
|
49
|
+
<xs:documentation source="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstract_modules.html#s_commonatts"/>
|
50
|
+
</xs:annotation>
|
51
|
+
</xs:include>
|
52
|
+
<!-- xs:include schemaLocation="xhtml-charent-1.xsd">
|
53
|
+
<xs:annotation>
|
54
|
+
<xs:documentation>
|
55
|
+
Character entities module
|
56
|
+
Note: Entities are not supported in XML Schema
|
57
|
+
The Schema Module uses DTDs to define Entities
|
58
|
+
|
59
|
+
This module defines
|
60
|
+
+ XHTML Latin 1 Character Entities
|
61
|
+
+ XHTML Special Characters
|
62
|
+
+ XHTML Mathematical, Greek, and Symbolic Characters
|
63
|
+
</xs:documentation>
|
64
|
+
</xs:annotation>
|
65
|
+
</xs:include -->
|
66
|
+
</xs:schema>
|
@@ -0,0 +1,47 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xs:schema
|
3
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
4
|
+
elementFormDefault="qualified"
|
5
|
+
xmlns:xh11d="http://www.w3.org/1999/xhtml/datatypes/"
|
6
|
+
>
|
7
|
+
<xs:import namespace="http://www.w3.org/1999/xhtml/datatypes/"
|
8
|
+
schemaLocation="xhtml-datatypes-1.xsd" />
|
9
|
+
|
10
|
+
<xs:annotation>
|
11
|
+
<xs:documentation>
|
12
|
+
Hypertext Module
|
13
|
+
This is the XML Schema Hypertext module for XHTML
|
14
|
+
|
15
|
+
* a
|
16
|
+
|
17
|
+
This module declares the anchor ('a') element type, which
|
18
|
+
defines the source of a hypertext link. The destination
|
19
|
+
(or link 'target') is identified via its 'id' attribute
|
20
|
+
rather than the 'name' attribute as was used in HTML.
|
21
|
+
|
22
|
+
$Id: xhtml-hypertext-1.xsd,v 1.4 2005/09/26 23:37:47 ahby Exp $
|
23
|
+
</xs:documentation>
|
24
|
+
<xs:documentation source="xhtml-copyright-1.xsd"/>
|
25
|
+
<xs:documentation source="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstract_modules.html#s_hypertextmodule"/>
|
26
|
+
</xs:annotation>
|
27
|
+
<xs:attributeGroup name="xhtml.a.attlist">
|
28
|
+
<xs:attributeGroup ref="xhtml.Common.attrib"/>
|
29
|
+
<xs:attribute name="href" type="xh11d:URI"/>
|
30
|
+
<xs:attribute name="charset" type="xh11d:Charset"/>
|
31
|
+
<xs:attribute name="type" type="xh11d:ContentType"/>
|
32
|
+
<xs:attribute name="hreflang" type="xh11d:LanguageCode"/>
|
33
|
+
<xs:attribute name="rel" type="xh11d:LinkTypes"/>
|
34
|
+
<xs:attribute name="rev" type="xh11d:LinkTypes"/>
|
35
|
+
<xs:attribute name="accesskey" type="xh11d:Character"/>
|
36
|
+
<xs:attribute name="tabindex" type="xh11d:Number"/>
|
37
|
+
</xs:attributeGroup>
|
38
|
+
<xs:group name="xhtml.a.content">
|
39
|
+
<xs:sequence>
|
40
|
+
<xs:group ref="xhtml.InlNoAnchor.mix" minOccurs="0" maxOccurs="unbounded"/>
|
41
|
+
</xs:sequence>
|
42
|
+
</xs:group>
|
43
|
+
<xs:complexType name="xhtml.a.type" mixed="true">
|
44
|
+
<xs:group ref="xhtml.a.content"/>
|
45
|
+
<xs:attributeGroup ref="xhtml.a.attlist"/>
|
46
|
+
</xs:complexType>
|
47
|
+
</xs:schema>
|
@@ -0,0 +1,46 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xs:schema
|
3
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
4
|
+
elementFormDefault="qualified"
|
5
|
+
xmlns:xh11d="http://www.w3.org/1999/xhtml/datatypes/"
|
6
|
+
>
|
7
|
+
<xs:import namespace="http://www.w3.org/1999/xhtml/datatypes/"
|
8
|
+
schemaLocation="xhtml-datatypes-1.xsd" />
|
9
|
+
|
10
|
+
<xs:annotation>
|
11
|
+
<xs:documentation>
|
12
|
+
Images
|
13
|
+
This is the XML Schema Images module for XHTML
|
14
|
+
|
15
|
+
* img
|
16
|
+
|
17
|
+
This module provides markup to support basic image embedding.
|
18
|
+
|
19
|
+
To avoid problems with text-only UAs as well as to make
|
20
|
+
image content understandable and navigable to users of
|
21
|
+
non-visual UAs, you need to provide a description with
|
22
|
+
the 'alt' attribute, and avoid server-side image maps.
|
23
|
+
|
24
|
+
|
25
|
+
$Id: xhtml-image-1.xsd,v 1.3 2009/09/30 15:22:38 ahby Exp $
|
26
|
+
</xs:documentation>
|
27
|
+
<xs:documentation source="xhtml-copyright-1.xsd"/>
|
28
|
+
<xs:documentation source="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstract_modules.html#s_imagemodule"/>
|
29
|
+
</xs:annotation>
|
30
|
+
<xs:attributeGroup name="xhtml.img.attlist">
|
31
|
+
<xs:attributeGroup ref="xhtml.Common.attrib"/>
|
32
|
+
<xs:attribute name="src" type="xh11d:URI" use="required"/>
|
33
|
+
<xs:attribute name="alt" type="xh11d:Text" use="required"/>
|
34
|
+
<xs:attribute name="longdesc" type="xh11d:URI"/>
|
35
|
+
<xs:attribute name="name" type="xh11d:CDATA"/>
|
36
|
+
<xs:attribute name="height" type="xh11d:Length"/>
|
37
|
+
<xs:attribute name="width" type="xh11d:Length"/>
|
38
|
+
</xs:attributeGroup>
|
39
|
+
<xs:group name="xhtml.img.content">
|
40
|
+
<xs:sequence/>
|
41
|
+
</xs:group>
|
42
|
+
<xs:complexType name="xhtml.img.type">
|
43
|
+
<xs:group ref="xhtml.img.content"/>
|
44
|
+
<xs:attributeGroup ref="xhtml.img.attlist"/>
|
45
|
+
</xs:complexType>
|
46
|
+
</xs:schema>
|