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,98 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xs:schema
3
+ targetNamespace="http://www.w3.org/2001/xml-events"
4
+ xmlns="http://www.w3.org/2001/xml-events"
5
+ xmlns:xs="http://www.w3.org/2001/XMLSchema"
6
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7
+ xsi:schemaLocation="http://www.w3.org/2001/XMLSchema
8
+ http://www.w3.org/2001/XMLSchema.xsd"
9
+ elementFormDefault="unqualified"
10
+ blockDefault="#all"
11
+ finalDefault="#all"
12
+ attributeFormDefault="unqualified">
13
+
14
+ <xs:annotation>
15
+ <xs:documentation>
16
+ This is the XML Schema for XML Events
17
+
18
+ URI: http://www.w3.org/MarkUp/SCHEMA/xml-handlers-2.xsd
19
+ $Id: xml-handlers-2.xsd,v 1.1 2007/02/15 23:03:14 jean-gui Exp $
20
+ </xs:documentation>
21
+ <xs:documentation source="xml-events-copyright-2.xsd"/>
22
+ </xs:annotation>
23
+
24
+ <xs:attributeGroup name="action.attlist">
25
+ <xs:attribute name="event" use="required" type="xs:NMTOKEN"/>
26
+ <xs:attribute name="observer" type="xs:IDREF"/>
27
+ <xs:attribute name="target" type="xs:IDREF"/>
28
+ <xs:attribute name="handler" type="xs:anyURI"/>
29
+ <xs:attribute name="condition" type="xs:normalizedString"/>
30
+ <xs:attribute name="phase" default="default">
31
+ <xs:simpleType>
32
+ <xs:restriction base="xs:NMTOKEN">
33
+ <xs:enumeration value="capture"/>
34
+ <xs:enumeration value="default"/>
35
+ </xs:restriction>
36
+ </xs:simpleType>
37
+ </xs:attribute>
38
+ <xs:attribute name="propagate" default="continue">
39
+ <xs:simpleType>
40
+ <xs:restriction base="xs:NMTOKEN">
41
+ <xs:enumeration value="stop"/>
42
+ <xs:enumeration value="continue"/>
43
+ </xs:restriction>
44
+ </xs:simpleType>
45
+ </xs:attribute>
46
+ <xs:attribute name="defaultAction" default="perform">
47
+ <xs:simpleType>
48
+ <xs:restriction base="xs:NMTOKEN">
49
+ <xs:enumeration value="cancel"/>
50
+ <xs:enumeration value="perform"/>
51
+ </xs:restriction>
52
+ </xs:simpleType>
53
+ </xs:attribute>
54
+ <xs:attribute name="id" type="xs:ID"/>
55
+ </xs:attributeGroup>
56
+
57
+ <xs:complexType name="action.type">
58
+ <xs:attributeGroup ref="action.attlist"/>
59
+ </xs:complexType>
60
+
61
+ <xs:element name="action" type="action.type"/>
62
+
63
+ <xs:complexType name="script.type">
64
+ <xs:attributeGroup ref="script.attlist"/>
65
+ </xs:complexType>
66
+
67
+ <xs:element name="script" type="script.type"/>
68
+
69
+ <xs:complexType name="dispatchEvent.type">
70
+ <xs:attributeGroup ref="dispatchEvent.attlist"/>
71
+ </xs:complexType>
72
+
73
+ <xs:element name="dispatchEvent" type="dispatchEvent.type"/>
74
+
75
+ <xs:complexType name="addEventListener.type">
76
+ <xs:attributeGroup ref="addEventListener.attlist"/>
77
+ </xs:complexType>
78
+
79
+ <xs:element name="addEventListener" type="addEventListener.type"/>
80
+
81
+ <xs:complexType name="removeEventListener.type">
82
+ <xs:attributeGroup ref="removeEventListener.attlist"/>
83
+ </xs:complexType>
84
+
85
+ <xs:element name="removeEventListener" type="removeEventListener.type"/>
86
+
87
+ <xs:complexType name="stopPropagation.type">
88
+ <xs:attributeGroup ref="stopPropagation.attlist"/>
89
+ </xs:complexType>
90
+
91
+ <xs:element name="stopPropagation" type="stopPropagation.type"/>
92
+
93
+ <xs:complexType name="preventDefault.type">
94
+ <xs:attributeGroup ref="preventDefault.attlist"/>
95
+ </xs:complexType>
96
+
97
+ <xs:element name="preventDefault" type="stopPropagation.type"/>
98
+ </xs:schema>
@@ -0,0 +1,38 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xs:schema
3
+ targetNamespace="http://www.w3.org/2001/xml-events"
4
+ xmlns="http://www.w3.org/2001/xml-events"
5
+ xmlns:xh11d="http://www.w3.org/1999/xhtml/datatypes/"
6
+ xmlns:xs="http://www.w3.org/2001/XMLSchema"
7
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
+ xsi:schemaLocation="http://www.w3.org/2001/XMLSchema
9
+ http://www.w3.org/2001/XMLSchema.xsd"
10
+ elementFormDefault="unqualified"
11
+ blockDefault="#all"
12
+ finalDefault="#all"
13
+ attributeFormDefault="unqualified">
14
+
15
+ <xs:annotation>
16
+ <xs:documentation>
17
+ This is the XML Schema for XML Scripting
18
+
19
+ URI: http://www.w3.org/MarkUp/SCHEMA/xml-script-1.xsd
20
+ $Id: xml-script-1.xsd,v 1.1 2008/06/25 14:36:34 smccarro Exp $
21
+ </xs:documentation>
22
+ <xs:documentation source="xml-events-copyright-2.xsd"/>
23
+ </xs:annotation>
24
+
25
+ <xs:attributeGroup name="script.attlist">
26
+ <xs:attribute name="encoding" type="xh11d:Charset"/>
27
+ <xs:attribute name="implements" type="xh11d:URIorSafeCURIEs"/>
28
+ <xs:attribute name="src" type="xs:anyURI"/>
29
+ <xs:attribute name="type" type="xh11d:ContentTypes"/>
30
+ <xs:attribute name="id" type="xs:ID"/>
31
+ </xs:attributeGroup>
32
+
33
+ <xs:complexType name="script.type">
34
+ <xs:attributeGroup ref="script.attlist"/>
35
+ </xs:complexType>
36
+
37
+ <xs:element name="script" type="script.type"/>
38
+ </xs:schema>
data/lib/xhtml/xml.xsd ADDED
@@ -0,0 +1,286 @@
1
+ <?xml version='1.0'?>
2
+ <?xml-stylesheet href="../2008/09/xsd.xsl" type="text/xsl"?>
3
+ <xs:schema targetNamespace="http://www.w3.org/XML/1998/namespace"
4
+ xmlns:xs="http://www.w3.org/2001/XMLSchema"
5
+ xmlns ="http://www.w3.org/1999/xhtml"
6
+ xml:lang="en">
7
+
8
+ <xs:annotation>
9
+ <xs:documentation>
10
+ <div>
11
+ <h1>About the XML namespace</h1>
12
+
13
+ <div class="bodytext">
14
+ <p>
15
+ This schema document describes the XML namespace, in a form
16
+ suitable for import by other schema documents.
17
+ </p>
18
+ <p>
19
+ See <a href="http://www.w3.org/XML/1998/namespace.html">
20
+ http://www.w3.org/XML/1998/namespace.html</a> and
21
+ <a href="http://www.w3.org/TR/REC-xml">
22
+ http://www.w3.org/TR/REC-xml</a> for information
23
+ about this namespace.
24
+ </p>
25
+ <p>
26
+ Note that local names in this namespace are intended to be
27
+ defined only by the World Wide Web Consortium or its subgroups.
28
+ The names currently defined in this namespace are listed below.
29
+ They should not be used with conflicting semantics by any Working
30
+ Group, specification, or document instance.
31
+ </p>
32
+ <p>
33
+ See further below in this document for more information about <a
34
+ href="#usage">how to refer to this schema document from your own
35
+ XSD schema documents</a> and about <a href="#nsversioning">the
36
+ namespace-versioning policy governing this schema document</a>.
37
+ </p>
38
+ </div>
39
+ </div>
40
+ </xs:documentation>
41
+ </xs:annotation>
42
+
43
+ <xs:attribute name="lang">
44
+ <xs:annotation>
45
+ <xs:documentation>
46
+ <div>
47
+
48
+ <h3>lang (as an attribute name)</h3>
49
+ <p>
50
+ denotes an attribute whose value
51
+ is a language code for the natural language of the content of
52
+ any element; its value is inherited. This name is reserved
53
+ by virtue of its definition in the XML specification.</p>
54
+
55
+ </div>
56
+ <div>
57
+ <h4>Notes</h4>
58
+ <p>
59
+ Attempting to install the relevant ISO 2- and 3-letter
60
+ codes as the enumerated possible values is probably never
61
+ going to be a realistic possibility.
62
+ </p>
63
+ <p>
64
+ See BCP 47 at <a href="http://www.rfc-editor.org/rfc/bcp/bcp47.txt">
65
+ http://www.rfc-editor.org/rfc/bcp/bcp47.txt</a>
66
+ and the IANA language subtag registry at
67
+ <a href="http://www.iana.org/assignments/language-subtag-registry">
68
+ http://www.iana.org/assignments/language-subtag-registry</a>
69
+ for further information.
70
+ </p>
71
+ <p>
72
+ The union allows for the 'un-declaration' of xml:lang with
73
+ the empty string.
74
+ </p>
75
+ </div>
76
+ </xs:documentation>
77
+ </xs:annotation>
78
+ <xs:simpleType>
79
+ <xs:union memberTypes="xs:language">
80
+ <xs:simpleType>
81
+ <xs:restriction base="xs:string">
82
+ <xs:enumeration value=""/>
83
+ </xs:restriction>
84
+ </xs:simpleType>
85
+ </xs:union>
86
+ </xs:simpleType>
87
+ </xs:attribute>
88
+
89
+ <xs:attribute name="space">
90
+ <xs:annotation>
91
+ <xs:documentation>
92
+ <div>
93
+
94
+ <h3>space (as an attribute name)</h3>
95
+ <p>
96
+ denotes an attribute whose
97
+ value is a keyword indicating what whitespace processing
98
+ discipline is intended for the content of the element; its
99
+ value is inherited. This name is reserved by virtue of its
100
+ definition in the XML specification.</p>
101
+
102
+ </div>
103
+ </xs:documentation>
104
+ </xs:annotation>
105
+ <xs:simpleType>
106
+ <xs:restriction base="xs:NCName">
107
+ <xs:enumeration value="default"/>
108
+ <xs:enumeration value="preserve"/>
109
+ </xs:restriction>
110
+ </xs:simpleType>
111
+ </xs:attribute>
112
+
113
+ <xs:attribute name="base" type="xs:anyURI"> <xs:annotation>
114
+ <xs:documentation>
115
+ <div>
116
+
117
+ <h3>base (as an attribute name)</h3>
118
+ <p>
119
+ denotes an attribute whose value
120
+ provides a URI to be used as the base for interpreting any
121
+ relative URIs in the scope of the element on which it
122
+ appears; its value is inherited. This name is reserved
123
+ by virtue of its definition in the XML Base specification.</p>
124
+
125
+ <p>
126
+ See <a
127
+ href="http://www.w3.org/TR/xmlbase/">http://www.w3.org/TR/xmlbase/</a>
128
+ for information about this attribute.
129
+ </p>
130
+ </div>
131
+ </xs:documentation>
132
+ </xs:annotation>
133
+ </xs:attribute>
134
+
135
+ <xs:attribute name="id" type="xs:ID">
136
+ <xs:annotation>
137
+ <xs:documentation>
138
+ <div>
139
+
140
+ <h3>id (as an attribute name)</h3>
141
+ <p>
142
+ denotes an attribute whose value
143
+ should be interpreted as if declared to be of type ID.
144
+ This name is reserved by virtue of its definition in the
145
+ xml:id specification.</p>
146
+
147
+ <p>
148
+ See <a
149
+ href="http://www.w3.org/TR/xml-id/">http://www.w3.org/TR/xml-id/</a>
150
+ for information about this attribute.
151
+ </p>
152
+ </div>
153
+ </xs:documentation>
154
+ </xs:annotation>
155
+ </xs:attribute>
156
+
157
+ <xs:attributeGroup name="specialAttrs">
158
+ <xs:attribute ref="xml:base"/>
159
+ <xs:attribute ref="xml:lang"/>
160
+ <xs:attribute ref="xml:space"/>
161
+ <xs:attribute ref="xml:id"/>
162
+ </xs:attributeGroup>
163
+
164
+ <xs:annotation>
165
+ <xs:documentation>
166
+ <div>
167
+
168
+ <h3>Father (in any context at all)</h3>
169
+
170
+ <div class="bodytext">
171
+ <p>
172
+ denotes Jon Bosak, the chair of
173
+ the original XML Working Group. This name is reserved by
174
+ the following decision of the W3C XML Plenary and
175
+ XML Coordination groups:
176
+ </p>
177
+ <blockquote>
178
+ <p>
179
+ In appreciation for his vision, leadership and
180
+ dedication the W3C XML Plenary on this 10th day of
181
+ February, 2000, reserves for Jon Bosak in perpetuity
182
+ the XML name "xml:Father".
183
+ </p>
184
+ </blockquote>
185
+ </div>
186
+ </div>
187
+ </xs:documentation>
188
+ </xs:annotation>
189
+
190
+ <xs:annotation>
191
+ <xs:documentation>
192
+ <div xml:id="usage" id="usage">
193
+ <h2><a name="usage">About this schema document</a></h2>
194
+
195
+ <div class="bodytext">
196
+ <p>
197
+ This schema defines attributes and an attribute group suitable
198
+ for use by schemas wishing to allow <code>xml:base</code>,
199
+ <code>xml:lang</code>, <code>xml:space</code> or
200
+ <code>xml:id</code> attributes on elements they define.
201
+ </p>
202
+ <p>
203
+ To enable this, such a schema must import this schema for
204
+ the XML namespace, e.g. as follows:
205
+ </p>
206
+ <pre>
207
+ &lt;schema . . .>
208
+ . . .
209
+ &lt;import namespace="http://www.w3.org/XML/1998/namespace"
210
+ schemaLocation="http://www.w3.org/2001/xml.xsd"/>
211
+ </pre>
212
+ <p>
213
+ or
214
+ </p>
215
+ <pre>
216
+ &lt;import namespace="http://www.w3.org/XML/1998/namespace"
217
+ schemaLocation="http://www.w3.org/2009/01/xml.xsd"/>
218
+ </pre>
219
+ <p>
220
+ Subsequently, qualified reference to any of the attributes or the
221
+ group defined below will have the desired effect, e.g.
222
+ </p>
223
+ <pre>
224
+ &lt;type . . .>
225
+ . . .
226
+ &lt;attributeGroup ref="xml:specialAttrs"/>
227
+ </pre>
228
+ <p>
229
+ will define a type which will schema-validate an instance element
230
+ with any of those attributes.
231
+ </p>
232
+ </div>
233
+ </div>
234
+ </xs:documentation>
235
+ </xs:annotation>
236
+
237
+ <xs:annotation>
238
+ <xs:documentation>
239
+ <div id="nsversioning" xml:id="nsversioning">
240
+ <h2><a name="nsversioning">Versioning policy for this schema document</a></h2>
241
+ <div class="bodytext">
242
+ <p>
243
+ In keeping with the XML Schema WG's standard versioning
244
+ policy, this schema document will persist at
245
+ <a href="http://www.w3.org/2009/01/xml.xsd">
246
+ http://www.w3.org/2009/01/xml.xsd</a>.
247
+ </p>
248
+ <p>
249
+ At the date of issue it can also be found at
250
+ <a href="http://www.w3.org/2001/xml.xsd">
251
+ http://www.w3.org/2001/xml.xsd</a>.
252
+ </p>
253
+ <p>
254
+ The schema document at that URI may however change in the future,
255
+ in order to remain compatible with the latest version of XML
256
+ Schema itself, or with the XML namespace itself. In other words,
257
+ if the XML Schema or XML namespaces change, the version of this
258
+ document at <a href="http://www.w3.org/2001/xml.xsd">
259
+ http://www.w3.org/2001/xml.xsd
260
+ </a>
261
+ will change accordingly; the version at
262
+ <a href="http://www.w3.org/2009/01/xml.xsd">
263
+ http://www.w3.org/2009/01/xml.xsd
264
+ </a>
265
+ will not change.
266
+ </p>
267
+ <p>
268
+ Previous dated (and unchanging) versions of this schema
269
+ document are at:
270
+ </p>
271
+ <ul>
272
+ <li><a href="http://www.w3.org/2009/01/xml.xsd">
273
+ http://www.w3.org/2009/01/xml.xsd</a></li>
274
+ <li><a href="http://www.w3.org/2007/08/xml.xsd">
275
+ http://www.w3.org/2007/08/xml.xsd</a></li>
276
+ <li><a href="http://www.w3.org/2004/10/xml.xsd">
277
+ http://www.w3.org/2004/10/xml.xsd</a></li>
278
+ <li><a href="http://www.w3.org/2001/03/xml.xsd">
279
+ http://www.w3.org/2001/03/xml.xsd</a></li>
280
+ </ul>
281
+ </div>
282
+ </div>
283
+ </xs:documentation>
284
+ </xs:annotation>
285
+
286
+ </xs:schema>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: validate-website
3
3
  version: !ruby/object:Gem::Version
4
- version: "0.1"
4
+ version: "0.2"
5
5
  platform: ruby
6
6
  authors:
7
7
  - spk
@@ -9,11 +9,30 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-10-24 00:00:00 +02:00
12
+ date: 2009-12-02 00:00:00 +01:00
13
13
  default_executable:
14
- dependencies: []
15
-
16
- description: Web crawler that print if the page is valid with the dtd
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: spk-anemone
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 0.2.4
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: rainbow
27
+ type: :runtime
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 1.0.4
34
+ version:
35
+ description: Web crawler for checking the validity of your documents
17
36
  email: spk@tuxfamily.org
18
37
  executables:
19
38
  - validate-website
@@ -25,7 +44,93 @@ files:
25
44
  - README
26
45
  - Rakefile
27
46
  - lib/colorful_messages.rb
28
- - lib/spkspider.rb
47
+ - lib/validator.rb
48
+ - lib/xhtml/xml-events-2.xsd
49
+ - lib/xhtml/xhtml11-modules-1.xsd
50
+ - lib/xhtml/xml-events-attribs-1.xsd
51
+ - lib/xhtml/xhtml-pres-1.xsd
52
+ - lib/xhtml/xml.xsd
53
+ - lib/xhtml/xhtml-rdfa-1.xsd
54
+ - lib/xhtml/xhtml-base-1.xsd
55
+ - lib/xhtml/xhtml-inlphras-1.xsd
56
+ - lib/xhtml/xhtml-basic11.xsd
57
+ - lib/xhtml/xhtml-attribs-1.xsd
58
+ - lib/xhtml/xhtml-table-1.xsd
59
+ - lib/xhtml/xhtml11-module-redefines-1.xsd
60
+ - lib/xhtml/xml-events-1.xsd
61
+ - lib/xhtml/xhtml-inlstyle-1.xsd
62
+ - lib/xhtml/xhtml-special.ent
63
+ - lib/xhtml/xhtml-list-1.xsd
64
+ - lib/xhtml/xml-events-copyright-1.xsd
65
+ - lib/xhtml/xhtml-ruby-basic-1.xsd
66
+ - lib/xhtml/xhtml-text-1.xsd
67
+ - lib/xhtml/xhtml-lat1.ent
68
+ - lib/xhtml/xhtml-object-1.xsd
69
+ - lib/xhtml/xhtml-blkpres-1.xsd
70
+ - lib/xhtml/xhtml-csismap-1.xsd
71
+ - lib/xhtml/xhtml1-frameset.dtd
72
+ - lib/xhtml/xhtml-symbol.ent
73
+ - lib/xhtml/xhtml-basic10-modules-1.xsd
74
+ - lib/xhtml/xhtml-basic10-model-1.xsd
75
+ - lib/xhtml/xhtml1-transitional.xsd
76
+ - lib/xhtml/xhtml-edit-1.xsd
77
+ - lib/xhtml/xhtml-inputmode-1.xsd
78
+ - lib/xhtml/xhtml-struct-1.xsd
79
+ - lib/xhtml/xhtml-nameident-1.xsd
80
+ - lib/xhtml/xhtml-blkphras-1.xsd
81
+ - lib/xhtml/xhtml11.xsd
82
+ - lib/xhtml/xhtml-bdo-1.xsd
83
+ - lib/xhtml/xhtml-notations-1.xsd
84
+ - lib/xhtml/xhtml-rdfa-model-1.xsd
85
+ - lib/xhtml/xhtml-inlpres-1.xsd
86
+ - lib/xhtml/xhtml-hypertext-1.xsd
87
+ - lib/xhtml/xhtml-print-model-1.xsd
88
+ - lib/xhtml/xhtml-print-modules-1.xsd
89
+ - lib/xhtml/xhtml-access-1.xsd
90
+ - lib/xhtml/xhtml-form-1.xsd
91
+ - lib/xhtml/xhtml-legacy-1.xsd
92
+ - lib/xhtml/xhtml-misc-1.xsd
93
+ - lib/xhtml/xhtml-applet-1.xsd
94
+ - lib/xhtml/xhtml11-model-1.xsd
95
+ - lib/xhtml/xhtml-events-1.xsd
96
+ - lib/xhtml/xhtml-basic11-model-1.xsd
97
+ - lib/xhtml/xhtml-link-1.xsd
98
+ - lib/xhtml/xhtml-blkstruct-1.xsd
99
+ - lib/xhtml/xhtml-rdfa-modules-1.xsd
100
+ - lib/xhtml/xhtml-basic-table-1.xsd
101
+ - lib/xhtml/xml-events-copyright-2.xsd
102
+ - lib/xhtml/xml-handlers-2.xsd
103
+ - lib/xhtml/xhtml-framework-1.xsd
104
+ - lib/xhtml/xhtml-iframe-1.xsd
105
+ - lib/xhtml/xhtml1-frameset.xsd
106
+ - lib/xhtml/xhtml1-strict.dtd
107
+ - lib/xhtml/xhtml-inlstruct-1.xsd
108
+ - lib/xhtml/xhtml-ssismap-1.xsd
109
+ - lib/xhtml/xhtml-image-1.xsd
110
+ - lib/xhtml/xhtml-target-1.xsd
111
+ - lib/xhtml/xhtml-ruby-1.xsd
112
+ - lib/xhtml/xhtml1-strict.xsd
113
+ - lib/xhtml/xhtml-frames-1.xsd
114
+ - lib/xhtml/xhtml1-transitional.dtd
115
+ - lib/xhtml/xhtml-meta-1.xsd
116
+ - lib/xhtml/xhtml-basic10-module-redefines-1.xsd
117
+ - lib/xhtml/xhtml-basic10.xsd
118
+ - lib/xhtml/xml-handlers-1.xsd
119
+ - lib/xhtml/xhtml-charent-1.xsd
120
+ - lib/xhtml/xhtml-copyright-1.xsd
121
+ - lib/xhtml/xhtml-script-1.xsd
122
+ - lib/xhtml/xhtml2.xsd
123
+ - lib/xhtml/xhtml-basic-form-1.xsd
124
+ - lib/xhtml/xhtml-rdfa-1.dtd
125
+ - lib/xhtml/xhtml-print-1.xsd
126
+ - lib/xhtml/xhtml-metaAttributes-1.xsd
127
+ - lib/xhtml/xhtml-datatypes-1.xsd
128
+ - lib/xhtml/xhtml-param-1.xsd
129
+ - lib/xhtml/xhtml-style-1.xsd
130
+ - lib/xhtml/xml-script-1.xsd
131
+ - lib/xhtml/xml-events-attribs-2.xsd
132
+ - lib/xhtml/xhtml-basic11-modules-1.xsd
133
+ - lib/xhtml/xframes-1.xsd
29
134
  - bin/validate-website
30
135
  has_rdoc: true
31
136
  homepage:
@@ -49,11 +154,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
49
154
  version: "0"
50
155
  version:
51
156
  requirements:
52
- - libxml-ruby
157
+ - spk-anemone
158
+ - rainbow
53
159
  rubyforge_project:
54
160
  rubygems_version: 1.3.5
55
161
  signing_key:
56
162
  specification_version: 3
57
- summary: Web crawler for testing webpage validity
163
+ summary: Web crawler for checking the validity of your documents
58
164
  test_files: []
59
165