validate-website 0.1 → 0.2

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.
Files changed (93) hide show
  1. data/README +15 -4
  2. data/Rakefile +6 -4
  3. data/bin/validate-website +33 -36
  4. data/lib/colorful_messages.rb +7 -10
  5. data/lib/validator.rb +37 -0
  6. data/lib/xhtml/xframes-1.xsd +166 -0
  7. data/lib/xhtml/xhtml-access-1.xsd +43 -0
  8. data/lib/xhtml/xhtml-applet-1.xsd +66 -0
  9. data/lib/xhtml/xhtml-attribs-1.xsd +67 -0
  10. data/lib/xhtml/xhtml-base-1.xsd +31 -0
  11. data/lib/xhtml/xhtml-basic-form-1.xsd +195 -0
  12. data/lib/xhtml/xhtml-basic-table-1.xsd +169 -0
  13. data/lib/xhtml/xhtml-basic10-model-1.xsd +385 -0
  14. data/lib/xhtml/xhtml-basic10-module-redefines-1.xsd +61 -0
  15. data/lib/xhtml/xhtml-basic10-modules-1.xsd +233 -0
  16. data/lib/xhtml/xhtml-basic10.xsd +99 -0
  17. data/lib/xhtml/xhtml-basic11-model-1.xsd +622 -0
  18. data/lib/xhtml/xhtml-basic11-modules-1.xsd +508 -0
  19. data/lib/xhtml/xhtml-basic11.xsd +105 -0
  20. data/lib/xhtml/xhtml-bdo-1.xsd +72 -0
  21. data/lib/xhtml/xhtml-blkphras-1.xsd +155 -0
  22. data/lib/xhtml/xhtml-blkpres-1.xsd +32 -0
  23. data/lib/xhtml/xhtml-blkstruct-1.xsd +44 -0
  24. data/lib/xhtml/xhtml-charent-1.xsd +38 -0
  25. data/lib/xhtml/xhtml-copyright-1.xsd +29 -0
  26. data/lib/xhtml/xhtml-csismap-1.xsd +91 -0
  27. data/lib/xhtml/xhtml-datatypes-1.xsd +177 -0
  28. data/lib/xhtml/xhtml-edit-1.xsd +34 -0
  29. data/lib/xhtml/xhtml-events-1.xsd +130 -0
  30. data/lib/xhtml/xhtml-form-1.xsd +321 -0
  31. data/lib/xhtml/xhtml-frames-1.xsd +113 -0
  32. data/lib/xhtml/xhtml-framework-1.xsd +62 -0
  33. data/lib/xhtml/xhtml-hypertext-1.xsd +47 -0
  34. data/lib/xhtml/xhtml-iframe-1.xsd +68 -0
  35. data/lib/xhtml/xhtml-image-1.xsd +40 -0
  36. data/lib/xhtml/xhtml-inlphras-1.xsd +158 -0
  37. data/lib/xhtml/xhtml-inlpres-1.xsd +34 -0
  38. data/lib/xhtml/xhtml-inlstruct-1.xsd +45 -0
  39. data/lib/xhtml/xhtml-inlstyle-1.xsd +22 -0
  40. data/lib/xhtml/xhtml-inputmode-1.xsd +35 -0
  41. data/lib/xhtml/xhtml-lat1.ent +196 -0
  42. data/lib/xhtml/xhtml-legacy-1.xsd +97 -0
  43. data/lib/xhtml/xhtml-link-1.xsd +45 -0
  44. data/lib/xhtml/xhtml-list-1.xsd +94 -0
  45. data/lib/xhtml/xhtml-meta-1.xsd +54 -0
  46. data/lib/xhtml/xhtml-metaAttributes-1.xsd +39 -0
  47. data/lib/xhtml/xhtml-misc-1.xsd +441 -0
  48. data/lib/xhtml/xhtml-nameident-1.xsd +63 -0
  49. data/lib/xhtml/xhtml-notations-1.xsd +69 -0
  50. data/lib/xhtml/xhtml-object-1.xsd +71 -0
  51. data/lib/xhtml/xhtml-param-1.xsd +46 -0
  52. data/lib/xhtml/xhtml-pres-1.xsd +46 -0
  53. data/lib/xhtml/xhtml-print-1.xsd +85 -0
  54. data/lib/xhtml/xhtml-print-model-1.xsd +604 -0
  55. data/lib/xhtml/xhtml-print-modules-1.xsd +422 -0
  56. data/lib/xhtml/xhtml-rdfa-1.dtd +438 -0
  57. data/lib/xhtml/xhtml-rdfa-1.xsd +116 -0
  58. data/lib/xhtml/xhtml-rdfa-model-1.xsd +461 -0
  59. data/lib/xhtml/xhtml-rdfa-modules-1.xsd +548 -0
  60. data/lib/xhtml/xhtml-ruby-1.xsd +170 -0
  61. data/lib/xhtml/xhtml-ruby-basic-1.xsd +84 -0
  62. data/lib/xhtml/xhtml-script-1.xsd +65 -0
  63. data/lib/xhtml/xhtml-special.ent +80 -0
  64. data/lib/xhtml/xhtml-ssismap-1.xsd +38 -0
  65. data/lib/xhtml/xhtml-struct-1.xsd +85 -0
  66. data/lib/xhtml/xhtml-style-1.xsd +47 -0
  67. data/lib/xhtml/xhtml-symbol.ent +237 -0
  68. data/lib/xhtml/xhtml-table-1.xsd +267 -0
  69. data/lib/xhtml/xhtml-target-1.xsd +49 -0
  70. data/lib/xhtml/xhtml-text-1.xsd +62 -0
  71. data/lib/xhtml/xhtml1-frameset.dtd +1235 -0
  72. data/lib/xhtml/xhtml1-frameset.xsd +2847 -0
  73. data/lib/xhtml/xhtml1-strict.dtd +978 -0
  74. data/lib/xhtml/xhtml1-strict.xsd +2211 -0
  75. data/lib/xhtml/xhtml1-transitional.dtd +1201 -0
  76. data/lib/xhtml/xhtml1-transitional.xsd +2755 -0
  77. data/lib/xhtml/xhtml11-model-1.xsd +715 -0
  78. data/lib/xhtml/xhtml11-module-redefines-1.xsd +335 -0
  79. data/lib/xhtml/xhtml11-modules-1.xsd +605 -0
  80. data/lib/xhtml/xhtml11.xsd +107 -0
  81. data/lib/xhtml/xhtml2.xsd +21 -0
  82. data/lib/xhtml/xml-events-1.xsd +73 -0
  83. data/lib/xhtml/xml-events-2.xsd +73 -0
  84. data/lib/xhtml/xml-events-attribs-1.xsd +73 -0
  85. data/lib/xhtml/xml-events-attribs-2.xsd +75 -0
  86. data/lib/xhtml/xml-events-copyright-1.xsd +34 -0
  87. data/lib/xhtml/xml-events-copyright-2.xsd +34 -0
  88. data/lib/xhtml/xml-handlers-1.xsd +136 -0
  89. data/lib/xhtml/xml-handlers-2.xsd +98 -0
  90. data/lib/xhtml/xml-script-1.xsd +38 -0
  91. data/lib/xhtml/xml.xsd +286 -0
  92. metadata +114 -8
  93. data/lib/spkspider.rb +0 -147
@@ -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,68 @@
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
+ <xs:annotation>
10
+ <xs:documentation>
11
+ This is the XML Schema Inline Frame Element module for XHTML
12
+ $Id: xhtml-iframe-1.xsd,v 1.2 2005/09/26 22:54:53 ahby Exp $
13
+ </xs:documentation>
14
+ <xs:documentation source="xhtml-copyright-1.xsd"/>
15
+ </xs:annotation>
16
+
17
+ <xs:annotation>
18
+ <xs:documentation>
19
+ Inline Frames
20
+
21
+ * iframe
22
+
23
+ This module declares the iframe element type and its attributes,
24
+ used to create an inline frame within a document.
25
+ </xs:documentation>
26
+ <xs:documentation
27
+ source="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstract_modules.html#s_iframemodule"/>
28
+ </xs:annotation>
29
+
30
+ <xs:attributeGroup name="xhtml.iframe.attlist">
31
+ <xs:attributeGroup ref="xhtml.Core.attrib"/>
32
+ <xs:attribute name="longdesc" type="xh11d:URI"/>
33
+ <xs:attribute name="src" type="xh11d:URI"/>
34
+ <xs:attribute name="frameborder" default="1">
35
+ <xs:simpleType>
36
+ <xs:restriction base="xs:nonNegativeInteger">
37
+ <xs:enumeration value="1"/>
38
+ <xs:enumeration value="0"/>
39
+ </xs:restriction>
40
+ </xs:simpleType>
41
+ </xs:attribute>
42
+ <xs:attribute name="marginwidth" type="xh11d:Pixels"/>
43
+ <xs:attribute name="marginheight" type="xh11d:Pixels"/>
44
+ <xs:attribute name="scrolling" default="auto">
45
+ <xs:simpleType>
46
+ <xs:restriction base="xs:NMTOKEN">
47
+ <xs:enumeration value="yes"/>
48
+ <xs:enumeration value="no"/>
49
+ <xs:enumeration value="auto"/>
50
+ </xs:restriction>
51
+ </xs:simpleType>
52
+ </xs:attribute>
53
+ <xs:attribute name="height" type="xh11d:Length"/>
54
+ <xs:attribute name="width" type="xh11d:Length"/>
55
+ </xs:attributeGroup>
56
+
57
+ <xs:group name="xhtml.iframe.content">
58
+ <xs:sequence>
59
+ <xs:group ref="xhtml.Flow.mix" minOccurs="0" maxOccurs="unbounded"/>
60
+ </xs:sequence>
61
+ </xs:group>
62
+
63
+ <xs:complexType name="xhtml.iframe.type" mixed="true">
64
+ <xs:group ref="xhtml.iframe.content"/>
65
+ <xs:attributeGroup ref="xhtml.iframe.attlist"/>
66
+ </xs:complexType>
67
+
68
+ </xs:schema>
@@ -0,0 +1,40 @@
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
+
5
+ <xs:annotation>
6
+ <xs:documentation>
7
+ Images
8
+ This is the XML Schema Images module for XHTML
9
+
10
+ * img
11
+
12
+ This module provides markup to support basic image embedding.
13
+
14
+ To avoid problems with text-only UAs as well as to make
15
+ image content understandable and navigable to users of
16
+ non-visual UAs, you need to provide a description with
17
+ the 'alt' attribute, and avoid server-side image maps.
18
+
19
+
20
+ $Id: xhtml-image-1.xsd,v 1.2 2005/09/26 22:54:53 ahby Exp $
21
+ </xs:documentation>
22
+ <xs:documentation source="xhtml-copyright-1.xsd"/>
23
+ <xs:documentation source="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstract_modules.html#s_imagemodule"/>
24
+ </xs:annotation>
25
+ <xs:attributeGroup name="xhtml.img.attlist">
26
+ <xs:attributeGroup ref="xhtml.Common.attrib"/>
27
+ <xs:attribute name="src" type="xh11d:URI" use="required"/>
28
+ <xs:attribute name="alt" type="xh11d:Text" use="required"/>
29
+ <xs:attribute name="longdesc" type="xh11d:URI"/>
30
+ <xs:attribute name="height" type="xh11d:Length"/>
31
+ <xs:attribute name="width" type="xh11d:Length"/>
32
+ </xs:attributeGroup>
33
+ <xs:group name="xhtml.img.content">
34
+ <xs:sequence/>
35
+ </xs:group>
36
+ <xs:complexType name="xhtml.img.type">
37
+ <xs:group ref="xhtml.img.content"/>
38
+ <xs:attributeGroup ref="xhtml.img.attlist"/>
39
+ </xs:complexType>
40
+ </xs:schema>
@@ -0,0 +1,158 @@
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
+
5
+ <xs:annotation>
6
+ <xs:documentation>
7
+ This is the XML Schema Inline Phrasal support module for XHTML
8
+ $Id: xhtml-inlphras-1.xsd,v 1.4 2005/09/26 22:54:53 ahby Exp $
9
+ </xs:documentation>
10
+ <xs:documentation source="xhtml-copyright-1.xsd"/>
11
+ </xs:annotation>
12
+ <xs:annotation>
13
+ <xs:documentation>
14
+ Inline Phrasal.
15
+ This module declares the elements and their attributes used to
16
+ support inline-level phrasal markup.
17
+ This is the XML Schema Inline Phrasal module for XHTML
18
+
19
+ * abbr, acronym, cite, code, dfn, em, kbd, q, samp, strong, var
20
+
21
+ $Id: xhtml-inlphras-1.xsd,v 1.4 2005/09/26 22:54:53 ahby Exp $
22
+ </xs:documentation>
23
+ <xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_textmodule"/>
24
+ </xs:annotation>
25
+ <xs:attributeGroup name="xhtml.abbr.attlist">
26
+ <xs:attributeGroup ref="xhtml.Common.attrib"/>
27
+ </xs:attributeGroup>
28
+ <xs:group name="xhtml.abbr.content">
29
+ <xs:sequence>
30
+ <xs:group ref="xhtml.Inline.mix" minOccurs="0" maxOccurs="unbounded"/>
31
+ </xs:sequence>
32
+ </xs:group>
33
+ <xs:complexType name="xhtml.abbr.type" mixed="true">
34
+ <xs:group ref="xhtml.abbr.content"/>
35
+ <xs:attributeGroup ref="xhtml.abbr.attlist"/>
36
+ </xs:complexType>
37
+ <xs:attributeGroup name="xhtml.acronym.attlist">
38
+ <xs:attributeGroup ref="xhtml.Common.attrib"/>
39
+ </xs:attributeGroup>
40
+ <xs:group name="xhtml.acronym.content">
41
+ <xs:sequence>
42
+ <xs:group ref="xhtml.Inline.mix" minOccurs="0" maxOccurs="unbounded"/>
43
+ </xs:sequence>
44
+ </xs:group>
45
+ <xs:complexType name="xhtml.acronym.type" mixed="true">
46
+ <xs:group ref="xhtml.acronym.content"/>
47
+ <xs:attributeGroup ref="xhtml.acronym.attlist"/>
48
+ </xs:complexType>
49
+ <xs:attributeGroup name="xhtml.cite.attlist">
50
+ <xs:attributeGroup ref="xhtml.Common.attrib"/>
51
+ </xs:attributeGroup>
52
+ <xs:group name="xhtml.cite.content">
53
+ <xs:sequence>
54
+ <xs:group ref="xhtml.Inline.mix" minOccurs="0" maxOccurs="unbounded"/>
55
+ </xs:sequence>
56
+ </xs:group>
57
+ <xs:complexType name="xhtml.cite.type" mixed="true">
58
+ <xs:group ref="xhtml.cite.content"/>
59
+ <xs:attributeGroup ref="xhtml.cite.attlist"/>
60
+ </xs:complexType>
61
+ <xs:attributeGroup name="xhtml.code.attlist">
62
+ <xs:attributeGroup ref="xhtml.Common.attrib"/>
63
+ </xs:attributeGroup>
64
+ <xs:group name="xhtml.code.content">
65
+ <xs:sequence>
66
+ <xs:group ref="xhtml.Inline.mix" minOccurs="0" maxOccurs="unbounded"/>
67
+ </xs:sequence>
68
+ </xs:group>
69
+ <xs:complexType name="xhtml.code.type" mixed="true">
70
+ <xs:group ref="xhtml.code.content"/>
71
+ <xs:attributeGroup ref="xhtml.code.attlist"/>
72
+ </xs:complexType>
73
+ <xs:attributeGroup name="xhtml.dfn.attlist">
74
+ <xs:attributeGroup ref="xhtml.Common.attrib"/>
75
+ </xs:attributeGroup>
76
+ <xs:group name="xhtml.dfn.content">
77
+ <xs:sequence>
78
+ <xs:group ref="xhtml.Inline.mix" minOccurs="0" maxOccurs="unbounded"/>
79
+ </xs:sequence>
80
+ </xs:group>
81
+ <xs:complexType name="xhtml.dfn.type" mixed="true">
82
+ <xs:group ref="xhtml.dfn.content"/>
83
+ <xs:attributeGroup ref="xhtml.dfn.attlist"/>
84
+ </xs:complexType>
85
+ <xs:attributeGroup name="xhtml.em.attlist">
86
+ <xs:attributeGroup ref="xhtml.Common.attrib"/>
87
+ </xs:attributeGroup>
88
+ <xs:group name="xhtml.em.content">
89
+ <xs:sequence>
90
+ <xs:group ref="xhtml.Inline.mix" minOccurs="0" maxOccurs="unbounded"/>
91
+ </xs:sequence>
92
+ </xs:group>
93
+ <xs:complexType name="xhtml.em.type" mixed="true">
94
+ <xs:group ref="xhtml.em.content"/>
95
+ <xs:attributeGroup ref="xhtml.em.attlist"/>
96
+ </xs:complexType>
97
+ <xs:attributeGroup name="xhtml.kbd.attlist">
98
+ <xs:attributeGroup ref="xhtml.Common.attrib"/>
99
+ </xs:attributeGroup>
100
+ <xs:group name="xhtml.kbd.content">
101
+ <xs:sequence>
102
+ <xs:group ref="xhtml.Inline.mix" minOccurs="0" maxOccurs="unbounded"/>
103
+ </xs:sequence>
104
+ </xs:group>
105
+ <xs:complexType name="xhtml.kbd.type" mixed="true">
106
+ <xs:group ref="xhtml.kbd.content"/>
107
+ <xs:attributeGroup ref="xhtml.kbd.attlist"/>
108
+ </xs:complexType>
109
+ <xs:attributeGroup name="xhtml.samp.attlist">
110
+ <xs:attributeGroup ref="xhtml.Common.attrib"/>
111
+ </xs:attributeGroup>
112
+ <xs:group name="xhtml.samp.content">
113
+ <xs:sequence>
114
+ <xs:group ref="xhtml.Inline.mix" minOccurs="0" maxOccurs="unbounded"/>
115
+ </xs:sequence>
116
+ </xs:group>
117
+ <xs:complexType name="xhtml.samp.type" mixed="true">
118
+ <xs:group ref="xhtml.samp.content"/>
119
+ <xs:attributeGroup ref="xhtml.samp.attlist"/>
120
+ </xs:complexType>
121
+ <xs:attributeGroup name="xhtml.strong.attlist">
122
+ <xs:attributeGroup ref="xhtml.Common.attrib"/>
123
+ </xs:attributeGroup>
124
+ <xs:group name="xhtml.strong.content">
125
+ <xs:sequence>
126
+ <xs:group ref="xhtml.Inline.mix" minOccurs="0" maxOccurs="unbounded"/>
127
+ </xs:sequence>
128
+ </xs:group>
129
+ <xs:complexType name="xhtml.strong.type" mixed="true">
130
+ <xs:group ref="xhtml.strong.content"/>
131
+ <xs:attributeGroup ref="xhtml.strong.attlist"/>
132
+ </xs:complexType>
133
+ <xs:attributeGroup name="xhtml.var.attlist">
134
+ <xs:attributeGroup ref="xhtml.Common.attrib"/>
135
+ </xs:attributeGroup>
136
+ <xs:group name="xhtml.var.content">
137
+ <xs:sequence>
138
+ <xs:group ref="xhtml.Inline.mix" minOccurs="0" maxOccurs="unbounded"/>
139
+ </xs:sequence>
140
+ </xs:group>
141
+ <xs:complexType name="xhtml.var.type" mixed="true">
142
+ <xs:group ref="xhtml.var.content"/>
143
+ <xs:attributeGroup ref="xhtml.var.attlist"/>
144
+ </xs:complexType>
145
+ <xs:attributeGroup name="xhtml.q.attlist">
146
+ <xs:attributeGroup ref="xhtml.Common.attrib"/>
147
+ <xs:attribute name="cite" type="xh11d:URI"/>
148
+ </xs:attributeGroup>
149
+ <xs:group name="xhtml.q.content">
150
+ <xs:sequence>
151
+ <xs:group ref="xhtml.Inline.mix" minOccurs="0" maxOccurs="unbounded"/>
152
+ </xs:sequence>
153
+ </xs:group>
154
+ <xs:complexType name="xhtml.q.type" mixed="true">
155
+ <xs:group ref="xhtml.q.content"/>
156
+ <xs:attributeGroup ref="xhtml.q.attlist"/>
157
+ </xs:complexType>
158
+ </xs:schema>
@@ -0,0 +1,34 @@
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:annotation>
5
+ <xs:documentation>
6
+ This is the XML Schema Inline Presentation element module for XHTML
7
+ $Id: xhtml-inlpres-1.xsd,v 1.2 2005/09/26 22:54:53 ahby Exp $
8
+ </xs:documentation>
9
+ <xs:documentation source="xhtml-copyright-1.xsd"/>
10
+ </xs:annotation>
11
+ <xs:annotation>
12
+ <xs:documentation>
13
+ Inline Presentational Elements
14
+
15
+ * b, big, i, small, sub, sup, tt
16
+
17
+ This module declares the elements and their attributes used to
18
+ support inline-level presentational markup.
19
+ </xs:documentation>
20
+ <xs:documentation source="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstract_modules.html#s_presentationmodule"/>
21
+ </xs:annotation>
22
+ <xs:attributeGroup name="xhtml.InlPres.attlist">
23
+ <xs:attributeGroup ref="xhtml.Common.attrib"/>
24
+ </xs:attributeGroup>
25
+ <xs:group name="xhtml.InlPres.content">
26
+ <xs:sequence>
27
+ <xs:group ref="xhtml.Inline.mix" minOccurs="0" maxOccurs="unbounded"/>
28
+ </xs:sequence>
29
+ </xs:group>
30
+ <xs:complexType name="xhtml.InlPres.type" mixed="true">
31
+ <xs:group ref="xhtml.InlPres.content"/>
32
+ <xs:attributeGroup ref="xhtml.InlPres.attlist"/>
33
+ </xs:complexType>
34
+ </xs:schema>
@@ -0,0 +1,45 @@
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:annotation>
5
+ <xs:documentation>
6
+ This is the XML Schema Inline Structural support module for XHTML
7
+ $Id: xhtml-inlstruct-1.xsd,v 1.4 2005/09/26 22:54:53 ahby Exp $
8
+ </xs:documentation>
9
+ <xs:documentation source="xhtml-copyright-1.xsd"/>
10
+ </xs:annotation>
11
+ <xs:annotation>
12
+ <xs:documentation>
13
+ Inline Structural.
14
+ This module declares the elements and their attributes
15
+ used to support inline-level structural markup.
16
+ This is the XML Schema Inline Structural element module for XHTML
17
+
18
+ * br, span
19
+
20
+ </xs:documentation>
21
+ <xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_textmodule"/>
22
+ </xs:annotation>
23
+ <xs:attributeGroup name="xhtml.br.attlist">
24
+ <xs:attributeGroup ref="xhtml.Core.attrib"/>
25
+ </xs:attributeGroup>
26
+ <xs:group name="xhtml.br.content">
27
+ <xs:sequence/>
28
+ </xs:group>
29
+ <xs:complexType name="xhtml.br.type">
30
+ <xs:group ref="xhtml.br.content"/>
31
+ <xs:attributeGroup ref="xhtml.br.attlist"/>
32
+ </xs:complexType>
33
+ <xs:attributeGroup name="xhtml.span.attlist">
34
+ <xs:attributeGroup ref="xhtml.Common.attrib"/>
35
+ </xs:attributeGroup>
36
+ <xs:group name="xhtml.span.content">
37
+ <xs:sequence>
38
+ <xs:group ref="xhtml.Inline.mix" minOccurs="0" maxOccurs="unbounded"/>
39
+ </xs:sequence>
40
+ </xs:group>
41
+ <xs:complexType name="xhtml.span.type" mixed="true">
42
+ <xs:group ref="xhtml.span.content"/>
43
+ <xs:attributeGroup ref="xhtml.span.attlist"/>
44
+ </xs:complexType>
45
+ </xs:schema>
@@ -0,0 +1,22 @@
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:annotation>
5
+ <xs:documentation>
6
+ Inline Style module
7
+ This is the XML Schema Inline Style module for XHTML
8
+
9
+ * styloe attribute
10
+
11
+ This module declares the 'style' attribute, used to support inline
12
+ style markup.
13
+
14
+ $Id: xhtml-inlstyle-1.xsd,v 1.2 2005/09/26 22:54:53 ahby Exp $
15
+ </xs:documentation>
16
+ <xs:documentation source="xhtml-copyright-1.xsd"/>
17
+ <xs:documentation source="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstract_modules.html#s_styleattributemodule"/>
18
+ </xs:annotation>
19
+ <xs:attributeGroup name="xhtml.style.attrib">
20
+ <xs:attribute name="style" type="xh11d:CDATA"/>
21
+ </xs:attributeGroup>
22
+ </xs:schema>
@@ -0,0 +1,35 @@
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
+ <xs:annotation>
10
+ <xs:documentation>
11
+ This is the XML Schema inputmode module for XHTML
12
+ $Id: xhtml-inputmode-1.xsd,v 1.1 2008/05/29 19:43:21 smccarro Exp $
13
+ </xs:documentation>
14
+ <xs:documentation source="xhtml-copyright-1.xsd"/>
15
+ </xs:annotation>
16
+
17
+ <xs:annotation>
18
+ <xs:documentation>
19
+ InputMode
20
+
21
+ * inputmode
22
+
23
+ This module declares the 'inputmode' attribute used for giving hints about how to deal with input
24
+ </xs:documentation>
25
+ </xs:annotation>
26
+
27
+ <xs:attributeGroup name="xhtml.input.inputmode.attlist">
28
+ <xs:attribute name="inputmode" type="xh11d:FrameTarget"/>
29
+ </xs:attributeGroup>
30
+
31
+ <xs:attributeGroup name="xhtml.textarea.inputmode.attlist">
32
+ <xs:attribute name="inputmode" type="xh11d:FrameTarget"/>
33
+ </xs:attributeGroup>
34
+
35
+ </xs:schema>
@@ -0,0 +1,196 @@
1
+ <!-- Portions (C) International Organization for Standardization 1986
2
+ Permission to copy in any form is granted for use with
3
+ conforming SGML systems and applications as defined in
4
+ ISO 8879, provided this notice is included in all copies.
5
+ -->
6
+ <!-- Character entity set. Typical invocation:
7
+ <!ENTITY % HTMLlat1 PUBLIC
8
+ "-//W3C//ENTITIES Latin 1 for XHTML//EN"
9
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent">
10
+ %HTMLlat1;
11
+ -->
12
+
13
+ <!ENTITY nbsp "&#160;"> <!-- no-break space = non-breaking space,
14
+ U+00A0 ISOnum -->
15
+ <!ENTITY iexcl "&#161;"> <!-- inverted exclamation mark, U+00A1 ISOnum -->
16
+ <!ENTITY cent "&#162;"> <!-- cent sign, U+00A2 ISOnum -->
17
+ <!ENTITY pound "&#163;"> <!-- pound sign, U+00A3 ISOnum -->
18
+ <!ENTITY curren "&#164;"> <!-- currency sign, U+00A4 ISOnum -->
19
+ <!ENTITY yen "&#165;"> <!-- yen sign = yuan sign, U+00A5 ISOnum -->
20
+ <!ENTITY brvbar "&#166;"> <!-- broken bar = broken vertical bar,
21
+ U+00A6 ISOnum -->
22
+ <!ENTITY sect "&#167;"> <!-- section sign, U+00A7 ISOnum -->
23
+ <!ENTITY uml "&#168;"> <!-- diaeresis = spacing diaeresis,
24
+ U+00A8 ISOdia -->
25
+ <!ENTITY copy "&#169;"> <!-- copyright sign, U+00A9 ISOnum -->
26
+ <!ENTITY ordf "&#170;"> <!-- feminine ordinal indicator, U+00AA ISOnum -->
27
+ <!ENTITY laquo "&#171;"> <!-- left-pointing double angle quotation mark
28
+ = left pointing guillemet, U+00AB ISOnum -->
29
+ <!ENTITY not "&#172;"> <!-- not sign = angled dash,
30
+ U+00AC ISOnum -->
31
+ <!ENTITY shy "&#173;"> <!-- soft hyphen = discretionary hyphen,
32
+ U+00AD ISOnum -->
33
+ <!ENTITY reg "&#174;"> <!-- registered sign = registered trade mark sign,
34
+ U+00AE ISOnum -->
35
+ <!ENTITY macr "&#175;"> <!-- macron = spacing macron = overline
36
+ = APL overbar, U+00AF ISOdia -->
37
+ <!ENTITY deg "&#176;"> <!-- degree sign, U+00B0 ISOnum -->
38
+ <!ENTITY plusmn "&#177;"> <!-- plus-minus sign = plus-or-minus sign,
39
+ U+00B1 ISOnum -->
40
+ <!ENTITY sup2 "&#178;"> <!-- superscript two = superscript digit two
41
+ = squared, U+00B2 ISOnum -->
42
+ <!ENTITY sup3 "&#179;"> <!-- superscript three = superscript digit three
43
+ = cubed, U+00B3 ISOnum -->
44
+ <!ENTITY acute "&#180;"> <!-- acute accent = spacing acute,
45
+ U+00B4 ISOdia -->
46
+ <!ENTITY micro "&#181;"> <!-- micro sign, U+00B5 ISOnum -->
47
+ <!ENTITY para "&#182;"> <!-- pilcrow sign = paragraph sign,
48
+ U+00B6 ISOnum -->
49
+ <!ENTITY middot "&#183;"> <!-- middle dot = Georgian comma
50
+ = Greek middle dot, U+00B7 ISOnum -->
51
+ <!ENTITY cedil "&#184;"> <!-- cedilla = spacing cedilla, U+00B8 ISOdia -->
52
+ <!ENTITY sup1 "&#185;"> <!-- superscript one = superscript digit one,
53
+ U+00B9 ISOnum -->
54
+ <!ENTITY ordm "&#186;"> <!-- masculine ordinal indicator,
55
+ U+00BA ISOnum -->
56
+ <!ENTITY raquo "&#187;"> <!-- right-pointing double angle quotation mark
57
+ = right pointing guillemet, U+00BB ISOnum -->
58
+ <!ENTITY frac14 "&#188;"> <!-- vulgar fraction one quarter
59
+ = fraction one quarter, U+00BC ISOnum -->
60
+ <!ENTITY frac12 "&#189;"> <!-- vulgar fraction one half
61
+ = fraction one half, U+00BD ISOnum -->
62
+ <!ENTITY frac34 "&#190;"> <!-- vulgar fraction three quarters
63
+ = fraction three quarters, U+00BE ISOnum -->
64
+ <!ENTITY iquest "&#191;"> <!-- inverted question mark
65
+ = turned question mark, U+00BF ISOnum -->
66
+ <!ENTITY Agrave "&#192;"> <!-- latin capital letter A with grave
67
+ = latin capital letter A grave,
68
+ U+00C0 ISOlat1 -->
69
+ <!ENTITY Aacute "&#193;"> <!-- latin capital letter A with acute,
70
+ U+00C1 ISOlat1 -->
71
+ <!ENTITY Acirc "&#194;"> <!-- latin capital letter A with circumflex,
72
+ U+00C2 ISOlat1 -->
73
+ <!ENTITY Atilde "&#195;"> <!-- latin capital letter A with tilde,
74
+ U+00C3 ISOlat1 -->
75
+ <!ENTITY Auml "&#196;"> <!-- latin capital letter A with diaeresis,
76
+ U+00C4 ISOlat1 -->
77
+ <!ENTITY Aring "&#197;"> <!-- latin capital letter A with ring above
78
+ = latin capital letter A ring,
79
+ U+00C5 ISOlat1 -->
80
+ <!ENTITY AElig "&#198;"> <!-- latin capital letter AE
81
+ = latin capital ligature AE,
82
+ U+00C6 ISOlat1 -->
83
+ <!ENTITY Ccedil "&#199;"> <!-- latin capital letter C with cedilla,
84
+ U+00C7 ISOlat1 -->
85
+ <!ENTITY Egrave "&#200;"> <!-- latin capital letter E with grave,
86
+ U+00C8 ISOlat1 -->
87
+ <!ENTITY Eacute "&#201;"> <!-- latin capital letter E with acute,
88
+ U+00C9 ISOlat1 -->
89
+ <!ENTITY Ecirc "&#202;"> <!-- latin capital letter E with circumflex,
90
+ U+00CA ISOlat1 -->
91
+ <!ENTITY Euml "&#203;"> <!-- latin capital letter E with diaeresis,
92
+ U+00CB ISOlat1 -->
93
+ <!ENTITY Igrave "&#204;"> <!-- latin capital letter I with grave,
94
+ U+00CC ISOlat1 -->
95
+ <!ENTITY Iacute "&#205;"> <!-- latin capital letter I with acute,
96
+ U+00CD ISOlat1 -->
97
+ <!ENTITY Icirc "&#206;"> <!-- latin capital letter I with circumflex,
98
+ U+00CE ISOlat1 -->
99
+ <!ENTITY Iuml "&#207;"> <!-- latin capital letter I with diaeresis,
100
+ U+00CF ISOlat1 -->
101
+ <!ENTITY ETH "&#208;"> <!-- latin capital letter ETH, U+00D0 ISOlat1 -->
102
+ <!ENTITY Ntilde "&#209;"> <!-- latin capital letter N with tilde,
103
+ U+00D1 ISOlat1 -->
104
+ <!ENTITY Ograve "&#210;"> <!-- latin capital letter O with grave,
105
+ U+00D2 ISOlat1 -->
106
+ <!ENTITY Oacute "&#211;"> <!-- latin capital letter O with acute,
107
+ U+00D3 ISOlat1 -->
108
+ <!ENTITY Ocirc "&#212;"> <!-- latin capital letter O with circumflex,
109
+ U+00D4 ISOlat1 -->
110
+ <!ENTITY Otilde "&#213;"> <!-- latin capital letter O with tilde,
111
+ U+00D5 ISOlat1 -->
112
+ <!ENTITY Ouml "&#214;"> <!-- latin capital letter O with diaeresis,
113
+ U+00D6 ISOlat1 -->
114
+ <!ENTITY times "&#215;"> <!-- multiplication sign, U+00D7 ISOnum -->
115
+ <!ENTITY Oslash "&#216;"> <!-- latin capital letter O with stroke
116
+ = latin capital letter O slash,
117
+ U+00D8 ISOlat1 -->
118
+ <!ENTITY Ugrave "&#217;"> <!-- latin capital letter U with grave,
119
+ U+00D9 ISOlat1 -->
120
+ <!ENTITY Uacute "&#218;"> <!-- latin capital letter U with acute,
121
+ U+00DA ISOlat1 -->
122
+ <!ENTITY Ucirc "&#219;"> <!-- latin capital letter U with circumflex,
123
+ U+00DB ISOlat1 -->
124
+ <!ENTITY Uuml "&#220;"> <!-- latin capital letter U with diaeresis,
125
+ U+00DC ISOlat1 -->
126
+ <!ENTITY Yacute "&#221;"> <!-- latin capital letter Y with acute,
127
+ U+00DD ISOlat1 -->
128
+ <!ENTITY THORN "&#222;"> <!-- latin capital letter THORN,
129
+ U+00DE ISOlat1 -->
130
+ <!ENTITY szlig "&#223;"> <!-- latin small letter sharp s = ess-zed,
131
+ U+00DF ISOlat1 -->
132
+ <!ENTITY agrave "&#224;"> <!-- latin small letter a with grave
133
+ = latin small letter a grave,
134
+ U+00E0 ISOlat1 -->
135
+ <!ENTITY aacute "&#225;"> <!-- latin small letter a with acute,
136
+ U+00E1 ISOlat1 -->
137
+ <!ENTITY acirc "&#226;"> <!-- latin small letter a with circumflex,
138
+ U+00E2 ISOlat1 -->
139
+ <!ENTITY atilde "&#227;"> <!-- latin small letter a with tilde,
140
+ U+00E3 ISOlat1 -->
141
+ <!ENTITY auml "&#228;"> <!-- latin small letter a with diaeresis,
142
+ U+00E4 ISOlat1 -->
143
+ <!ENTITY aring "&#229;"> <!-- latin small letter a with ring above
144
+ = latin small letter a ring,
145
+ U+00E5 ISOlat1 -->
146
+ <!ENTITY aelig "&#230;"> <!-- latin small letter ae
147
+ = latin small ligature ae, U+00E6 ISOlat1 -->
148
+ <!ENTITY ccedil "&#231;"> <!-- latin small letter c with cedilla,
149
+ U+00E7 ISOlat1 -->
150
+ <!ENTITY egrave "&#232;"> <!-- latin small letter e with grave,
151
+ U+00E8 ISOlat1 -->
152
+ <!ENTITY eacute "&#233;"> <!-- latin small letter e with acute,
153
+ U+00E9 ISOlat1 -->
154
+ <!ENTITY ecirc "&#234;"> <!-- latin small letter e with circumflex,
155
+ U+00EA ISOlat1 -->
156
+ <!ENTITY euml "&#235;"> <!-- latin small letter e with diaeresis,
157
+ U+00EB ISOlat1 -->
158
+ <!ENTITY igrave "&#236;"> <!-- latin small letter i with grave,
159
+ U+00EC ISOlat1 -->
160
+ <!ENTITY iacute "&#237;"> <!-- latin small letter i with acute,
161
+ U+00ED ISOlat1 -->
162
+ <!ENTITY icirc "&#238;"> <!-- latin small letter i with circumflex,
163
+ U+00EE ISOlat1 -->
164
+ <!ENTITY iuml "&#239;"> <!-- latin small letter i with diaeresis,
165
+ U+00EF ISOlat1 -->
166
+ <!ENTITY eth "&#240;"> <!-- latin small letter eth, U+00F0 ISOlat1 -->
167
+ <!ENTITY ntilde "&#241;"> <!-- latin small letter n with tilde,
168
+ U+00F1 ISOlat1 -->
169
+ <!ENTITY ograve "&#242;"> <!-- latin small letter o with grave,
170
+ U+00F2 ISOlat1 -->
171
+ <!ENTITY oacute "&#243;"> <!-- latin small letter o with acute,
172
+ U+00F3 ISOlat1 -->
173
+ <!ENTITY ocirc "&#244;"> <!-- latin small letter o with circumflex,
174
+ U+00F4 ISOlat1 -->
175
+ <!ENTITY otilde "&#245;"> <!-- latin small letter o with tilde,
176
+ U+00F5 ISOlat1 -->
177
+ <!ENTITY ouml "&#246;"> <!-- latin small letter o with diaeresis,
178
+ U+00F6 ISOlat1 -->
179
+ <!ENTITY divide "&#247;"> <!-- division sign, U+00F7 ISOnum -->
180
+ <!ENTITY oslash "&#248;"> <!-- latin small letter o with stroke,
181
+ = latin small letter o slash,
182
+ U+00F8 ISOlat1 -->
183
+ <!ENTITY ugrave "&#249;"> <!-- latin small letter u with grave,
184
+ U+00F9 ISOlat1 -->
185
+ <!ENTITY uacute "&#250;"> <!-- latin small letter u with acute,
186
+ U+00FA ISOlat1 -->
187
+ <!ENTITY ucirc "&#251;"> <!-- latin small letter u with circumflex,
188
+ U+00FB ISOlat1 -->
189
+ <!ENTITY uuml "&#252;"> <!-- latin small letter u with diaeresis,
190
+ U+00FC ISOlat1 -->
191
+ <!ENTITY yacute "&#253;"> <!-- latin small letter y with acute,
192
+ U+00FD ISOlat1 -->
193
+ <!ENTITY thorn "&#254;"> <!-- latin small letter thorn,
194
+ U+00FE ISOlat1 -->
195
+ <!ENTITY yuml "&#255;"> <!-- latin small letter y with diaeresis,
196
+ U+00FF ISOlat1 -->