simplecrawler 0.1.7 → 0.1.8
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/LICENSE +14 -0
- data/lib/simplecrawler.rb +179 -170
- data/tests/simplecrawler_test.rb +9 -4
- metadata +40 -46
- data/examples/accessibility_report.rb +0 -44
- data/examples/crawl.rb +0 -12
- data/examples/find_broken_links.rb +0 -21
- data/examples/find_pdfs.rb +0 -20
- data/examples/list_site_links.rb +0 -11
- data/examples/result.htm +0 -1282
- data/examples/riksdagen.txt +0 -66
@@ -1,44 +0,0 @@
|
|
1
|
-
# == Basic accessibility report - SimpleCrawler example
|
2
|
-
# Author:: Peter Krantz (http://www.peterkrantz.com)
|
3
|
-
#
|
4
|
-
# This is an example of how SimpleCrawler can be used together with Raakt and Ruport to check basic accessibility of an entire website. For details on the error message id:s generated in the report see http://www.peterkrantz.com/raakt/wiki/error-message-ids
|
5
|
-
|
6
|
-
require 'rubygems'
|
7
|
-
require File.dirname(__FILE__) + '/../lib/simplecrawler'
|
8
|
-
require '/Users/pkr/projekt/raakt/trunk/lib/raakt'
|
9
|
-
require 'ruport'
|
10
|
-
|
11
|
-
# Set up a new crawler
|
12
|
-
sc = SimpleCrawler::Crawler.new(ARGV[0])
|
13
|
-
sc.skip_patterns = ["\\.doc$", "\\.pdf$", "\\.xls$", "\\.txt$", "\\.zip$", "\\.tif$", "\\.gif$", "\\.png$", "\\.jpg$"]
|
14
|
-
sc.maxcount = 30
|
15
|
-
|
16
|
-
report_data = Ruport::Data::Table.new :column_names => ["Url", "Error", "Details"]
|
17
|
-
|
18
|
-
sc.crawl { |document|
|
19
|
-
|
20
|
-
if document.http_status and document.http_status[0] = "200"
|
21
|
-
|
22
|
-
# Run basic accessibility check
|
23
|
-
raakt = Raakt::Test.new(document.data)
|
24
|
-
result = raakt.all
|
25
|
-
puts "#{result.length}\t#{document.uri}"
|
26
|
-
|
27
|
-
if result.length > 0
|
28
|
-
for error in result
|
29
|
-
report_data << [document.uri, error.eid.to_s, error.text]
|
30
|
-
end
|
31
|
-
end
|
32
|
-
|
33
|
-
else
|
34
|
-
#report broken link
|
35
|
-
report_data << [document.uri, "broken_link", ""]
|
36
|
-
end
|
37
|
-
}
|
38
|
-
|
39
|
-
|
40
|
-
#write report data to file (HTML table only...)
|
41
|
-
File.open("result.htm", "w") do |file|
|
42
|
-
file << report_data.to_html
|
43
|
-
end
|
44
|
-
|
data/examples/crawl.rb
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
require '../lib/simplecrawler.rb'
|
2
|
-
|
3
|
-
# Set up a new crawler
|
4
|
-
sc = SimpleCrawler::Crawler.new(ARGV[0])
|
5
|
-
sc.skip_patterns = ["\\.doc$", "\\.pdf$", "\\.xls$", "\\.pdf$", "\\.zip$"]
|
6
|
-
|
7
|
-
sc.crawl { |document|
|
8
|
-
|
9
|
-
# Print links for entire site
|
10
|
-
puts document.uri
|
11
|
-
|
12
|
-
}
|
@@ -1,21 +0,0 @@
|
|
1
|
-
require '../lib/simplecrawler.rb'
|
2
|
-
|
3
|
-
#Mute log messages
|
4
|
-
module SimpleCrawler
|
5
|
-
class Crawler
|
6
|
-
def log(message)
|
7
|
-
end
|
8
|
-
end
|
9
|
-
end
|
10
|
-
|
11
|
-
# Set up a new crawler
|
12
|
-
sc = SimpleCrawler::Crawler.new(ARGV[0])
|
13
|
-
sc.maxcount = 100
|
14
|
-
|
15
|
-
sc.crawl { |document|
|
16
|
-
if document.http_status[0] != "200" then
|
17
|
-
puts "#{document.http_status[0]} : " + document.uri.to_s
|
18
|
-
else
|
19
|
-
puts "Ok : " + document.uri.to_s
|
20
|
-
end
|
21
|
-
}
|
data/examples/find_pdfs.rb
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
# == Find PDF documents - SimpleCrawler example
|
2
|
-
# Author:: Peter Krantz (http://www.peterkrantz.com)
|
3
|
-
#
|
4
|
-
# This is an example of how SimpleCrawler can be used to find dcuments of a specific type on a website.
|
5
|
-
#
|
6
|
-
require '../lib/simplecrawler.rb'
|
7
|
-
require 'raakt'
|
8
|
-
require 'ruport'
|
9
|
-
|
10
|
-
# Set up a new crawler
|
11
|
-
sc = SimpleCrawler::Crawler.new(ARGV[0])
|
12
|
-
sc.maxcount = 200 #Only crawl 200 pages
|
13
|
-
|
14
|
-
sc.crawl { |document|
|
15
|
-
|
16
|
-
if document.headers["content-type"] == "application/pdf"
|
17
|
-
puts document.uri
|
18
|
-
end
|
19
|
-
|
20
|
-
}
|
data/examples/list_site_links.rb
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
require '../lib/simplecrawler.rb'
|
2
|
-
|
3
|
-
# Set up a new crawler
|
4
|
-
sc = SimpleCrawler::Crawler.new(ARGV[0])
|
5
|
-
sc.skip_patterns = ["\\.doc$", "\\.pdf$", "\\.xls$", "\\.pdf$", "\\.zip$"]
|
6
|
-
|
7
|
-
sc.crawl { |document|
|
8
|
-
# List links for entire site
|
9
|
-
puts document.uri
|
10
|
-
}
|
11
|
-
|
data/examples/result.htm
DELETED
@@ -1,1282 +0,0 @@
|
|
1
|
-
<table>
|
2
|
-
<tr>
|
3
|
-
<th>Url</th>
|
4
|
-
<th>Error</th>
|
5
|
-
<th>Details</th>
|
6
|
-
</tr>
|
7
|
-
<tr>
|
8
|
-
<td>http://72.47.233.218/</td>
|
9
|
-
<td>fieldset_missing_legend</td>
|
10
|
-
<td>Missing legend element for fieldset #1.</td>
|
11
|
-
</tr>
|
12
|
-
<tr>
|
13
|
-
<td>http://72.47.233.218/</td>
|
14
|
-
<td>missing_input_alt</td>
|
15
|
-
<td>Missing alt attribute for image button with id/name 'search-button'.</td>
|
16
|
-
</tr>
|
17
|
-
<tr>
|
18
|
-
<td>http://72.47.233.218/spread/</td>
|
19
|
-
<td>fieldset_missing_legend</td>
|
20
|
-
<td>Missing legend element for fieldset #1.</td>
|
21
|
-
</tr>
|
22
|
-
<tr>
|
23
|
-
<td>http://72.47.233.218/spread/</td>
|
24
|
-
<td>missing_input_alt</td>
|
25
|
-
<td>Missing alt attribute for image button with id/name 'search-button'.</td>
|
26
|
-
</tr>
|
27
|
-
<tr>
|
28
|
-
<td>http://72.47.233.218/contact/</td>
|
29
|
-
<td>fieldset_missing_legend</td>
|
30
|
-
<td>Missing legend element for fieldset #1.</td>
|
31
|
-
</tr>
|
32
|
-
<tr>
|
33
|
-
<td>http://72.47.233.218/contact/</td>
|
34
|
-
<td>missing_input_alt</td>
|
35
|
-
<td>Missing alt attribute for image button with id/name 'search-button'.</td>
|
36
|
-
</tr>
|
37
|
-
<tr>
|
38
|
-
<td>http://72.47.233.218/terms/</td>
|
39
|
-
<td>fieldset_missing_legend</td>
|
40
|
-
<td>Missing legend element for fieldset #1.</td>
|
41
|
-
</tr>
|
42
|
-
<tr>
|
43
|
-
<td>http://72.47.233.218/terms/</td>
|
44
|
-
<td>missing_input_alt</td>
|
45
|
-
<td>Missing alt attribute for image button with id/name 'search-button'.</td>
|
46
|
-
</tr>
|
47
|
-
<tr>
|
48
|
-
<td>http://72.47.233.218/curriculum/</td>
|
49
|
-
<td>fieldset_missing_legend</td>
|
50
|
-
<td>Missing legend element for fieldset #1.</td>
|
51
|
-
</tr>
|
52
|
-
<tr>
|
53
|
-
<td>http://72.47.233.218/curriculum/</td>
|
54
|
-
<td>wrong_h_structure</td>
|
55
|
-
<td>Document heading structure is wrong.</td>
|
56
|
-
</tr>
|
57
|
-
<tr>
|
58
|
-
<td>http://72.47.233.218/curriculum/</td>
|
59
|
-
<td>missing_input_alt</td>
|
60
|
-
<td>Missing alt attribute for image button with id/name 'search-button'.</td>
|
61
|
-
</tr>
|
62
|
-
<tr>
|
63
|
-
<td>http://72.47.233.218/integration_guide/</td>
|
64
|
-
<td>fieldset_missing_legend</td>
|
65
|
-
<td>Missing legend element for fieldset #1.</td>
|
66
|
-
</tr>
|
67
|
-
<tr>
|
68
|
-
<td>http://72.47.233.218/integration_guide/</td>
|
69
|
-
<td>missing_input_alt</td>
|
70
|
-
<td>Missing alt attribute for image button with id/name 'search-button'.</td>
|
71
|
-
</tr>
|
72
|
-
<tr>
|
73
|
-
<td>http://72.47.233.218/testimonials/</td>
|
74
|
-
<td>fieldset_missing_legend</td>
|
75
|
-
<td>Missing legend element for fieldset #1.</td>
|
76
|
-
</tr>
|
77
|
-
<tr>
|
78
|
-
<td>http://72.47.233.218/testimonials/</td>
|
79
|
-
<td>missing_input_alt</td>
|
80
|
-
<td>Missing alt attribute for image button with id/name 'search-button'.</td>
|
81
|
-
</tr>
|
82
|
-
<tr>
|
83
|
-
<td>http://72.47.233.218/forums/</td>
|
84
|
-
<td>missing_heading</td>
|
85
|
-
<td>Missing first level heading (h1). Provide at least one first level heading describing document content.</td>
|
86
|
-
</tr>
|
87
|
-
<tr>
|
88
|
-
<td>http://72.47.233.218/forums/</td>
|
89
|
-
<td>has_nested_tables</td>
|
90
|
-
<td>You have one or more nested tables.</td>
|
91
|
-
</tr>
|
92
|
-
<tr>
|
93
|
-
<td>http://72.47.233.218/forums/</td>
|
94
|
-
<td>missing_semantics</td>
|
95
|
-
<td>You have used b for visual formatting. Use CSS instead.</td>
|
96
|
-
</tr>
|
97
|
-
<tr>
|
98
|
-
<td>http://72.47.233.218/forums/</td>
|
99
|
-
<td>missing_input_alt</td>
|
100
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
101
|
-
</tr>
|
102
|
-
<tr>
|
103
|
-
<td>http://72.47.233.218/forums/</td>
|
104
|
-
<td>missing_input_alt</td>
|
105
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
106
|
-
</tr>
|
107
|
-
<tr>
|
108
|
-
<td>http://72.47.233.218/forums/</td>
|
109
|
-
<td>missing_th</td>
|
110
|
-
<td>Missing table headings (th) for table #1.</td>
|
111
|
-
</tr>
|
112
|
-
<tr>
|
113
|
-
<td>http://72.47.233.218/forums/</td>
|
114
|
-
<td>missing_th</td>
|
115
|
-
<td>Missing table headings (th) for table #2.</td>
|
116
|
-
</tr>
|
117
|
-
<tr>
|
118
|
-
<td>http://72.47.233.218/forums/</td>
|
119
|
-
<td>missing_th</td>
|
120
|
-
<td>Missing table headings (th) for table #3.</td>
|
121
|
-
</tr>
|
122
|
-
<tr>
|
123
|
-
<td>http://72.47.233.218/forums/</td>
|
124
|
-
<td>missing_th</td>
|
125
|
-
<td>Missing table headings (th) for table #4.</td>
|
126
|
-
</tr>
|
127
|
-
<tr>
|
128
|
-
<td>http://72.47.233.218/forums/</td>
|
129
|
-
<td>missing_th</td>
|
130
|
-
<td>Missing table headings (th) for table #5.</td>
|
131
|
-
</tr>
|
132
|
-
<tr>
|
133
|
-
<td>http://72.47.233.218/forums/</td>
|
134
|
-
<td>missing_th</td>
|
135
|
-
<td>Missing table headings (th) for table #6.</td>
|
136
|
-
</tr>
|
137
|
-
<tr>
|
138
|
-
<td>http://72.47.233.218/forums/</td>
|
139
|
-
<td>missing_th</td>
|
140
|
-
<td>Missing table headings (th) for table #7.</td>
|
141
|
-
</tr>
|
142
|
-
<tr>
|
143
|
-
<td>http://72.47.233.218/forums/</td>
|
144
|
-
<td>field_missing_label</td>
|
145
|
-
<td>A field (with id/name 'theme_switcher') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
146
|
-
</tr>
|
147
|
-
<tr>
|
148
|
-
<td>http://72.47.233.218/forums/</td>
|
149
|
-
<td>field_missing_label</td>
|
150
|
-
<td>A field (with id/name 'keywords') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
151
|
-
</tr>
|
152
|
-
<tr>
|
153
|
-
<td>http://72.47.233.218/forums/</td>
|
154
|
-
<td>field_missing_label</td>
|
155
|
-
<td>A field (with id/name 'username') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
156
|
-
</tr>
|
157
|
-
<tr>
|
158
|
-
<td>http://72.47.233.218/forums/</td>
|
159
|
-
<td>field_missing_label</td>
|
160
|
-
<td>A field (with id/name 'password') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
161
|
-
</tr>
|
162
|
-
<tr>
|
163
|
-
<td>http://72.47.233.218/forums/</td>
|
164
|
-
<td>field_missing_label</td>
|
165
|
-
<td>A field (with id/name 'auto_login') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
166
|
-
</tr>
|
167
|
-
<tr>
|
168
|
-
<td>http://72.47.233.218/resources/</td>
|
169
|
-
<td>fieldset_missing_legend</td>
|
170
|
-
<td>Missing legend element for fieldset #1.</td>
|
171
|
-
</tr>
|
172
|
-
<tr>
|
173
|
-
<td>http://72.47.233.218/resources/</td>
|
174
|
-
<td>missing_input_alt</td>
|
175
|
-
<td>Missing alt attribute for image button with id/name 'search-button'.</td>
|
176
|
-
</tr>
|
177
|
-
<tr>
|
178
|
-
<td>http://72.47.233.218/about/</td>
|
179
|
-
<td>fieldset_missing_legend</td>
|
180
|
-
<td>Missing legend element for fieldset #1.</td>
|
181
|
-
</tr>
|
182
|
-
<tr>
|
183
|
-
<td>http://72.47.233.218/about/</td>
|
184
|
-
<td>missing_input_alt</td>
|
185
|
-
<td>Missing alt attribute for image button with id/name 'search-button'.</td>
|
186
|
-
</tr>
|
187
|
-
<tr>
|
188
|
-
<td>http://72.47.233.218/about/</td>
|
189
|
-
<td>ambiguous_link_text</td>
|
190
|
-
<td>One or more links have the same link text ('spread the word'). Make sure each link is unambiguous.</td>
|
191
|
-
</tr>
|
192
|
-
<tr>
|
193
|
-
<td>http://72.47.233.218</td>
|
194
|
-
<td>fieldset_missing_legend</td>
|
195
|
-
<td>Missing legend element for fieldset #1.</td>
|
196
|
-
</tr>
|
197
|
-
<tr>
|
198
|
-
<td>http://72.47.233.218</td>
|
199
|
-
<td>missing_input_alt</td>
|
200
|
-
<td>Missing alt attribute for image button with id/name 'search-button'.</td>
|
201
|
-
</tr>
|
202
|
-
<tr>
|
203
|
-
<td>http://72.47.233.218/index.php</td>
|
204
|
-
<td>fieldset_missing_legend</td>
|
205
|
-
<td>Missing legend element for fieldset #1.</td>
|
206
|
-
</tr>
|
207
|
-
<tr>
|
208
|
-
<td>http://72.47.233.218/index.php</td>
|
209
|
-
<td>missing_input_alt</td>
|
210
|
-
<td>Missing alt attribute for image button with id/name 'search-button'.</td>
|
211
|
-
</tr>
|
212
|
-
<tr>
|
213
|
-
<td>http://72.47.233.218/curriculum/foundation/</td>
|
214
|
-
<td>fieldset_missing_legend</td>
|
215
|
-
<td>Missing legend element for fieldset #1.</td>
|
216
|
-
</tr>
|
217
|
-
<tr>
|
218
|
-
<td>http://72.47.233.218/curriculum/foundation/</td>
|
219
|
-
<td>missing_input_alt</td>
|
220
|
-
<td>Missing alt attribute for image button with id/name 'search-button'.</td>
|
221
|
-
</tr>
|
222
|
-
<tr>
|
223
|
-
<td>http://72.47.233.218/curriculum/foundation/</td>
|
224
|
-
<td>ambiguous_link_text</td>
|
225
|
-
<td>One or more links have the same link text ('Curriculum'). Make sure each link is unambiguous.</td>
|
226
|
-
</tr>
|
227
|
-
<tr>
|
228
|
-
<td>http://72.47.233.218/curriculum/interface-development/</td>
|
229
|
-
<td>fieldset_missing_legend</td>
|
230
|
-
<td>Missing legend element for fieldset #1.</td>
|
231
|
-
</tr>
|
232
|
-
<tr>
|
233
|
-
<td>http://72.47.233.218/curriculum/interface-development/</td>
|
234
|
-
<td>missing_input_alt</td>
|
235
|
-
<td>Missing alt attribute for image button with id/name 'search-button'.</td>
|
236
|
-
</tr>
|
237
|
-
<tr>
|
238
|
-
<td>http://72.47.233.218/curriculum/interface-development/</td>
|
239
|
-
<td>ambiguous_link_text</td>
|
240
|
-
<td>One or more links have the same link text ('Curriculum'). Make sure each link is unambiguous.</td>
|
241
|
-
</tr>
|
242
|
-
<tr>
|
243
|
-
<td>http://72.47.233.218/curriculum/design/</td>
|
244
|
-
<td>fieldset_missing_legend</td>
|
245
|
-
<td>Missing legend element for fieldset #1.</td>
|
246
|
-
</tr>
|
247
|
-
<tr>
|
248
|
-
<td>http://72.47.233.218/curriculum/design/</td>
|
249
|
-
<td>missing_input_alt</td>
|
250
|
-
<td>Missing alt attribute for image button with id/name 'search-button'.</td>
|
251
|
-
</tr>
|
252
|
-
<tr>
|
253
|
-
<td>http://72.47.233.218/curriculum/design/</td>
|
254
|
-
<td>ambiguous_link_text</td>
|
255
|
-
<td>One or more links have the same link text ('Curriculum'). Make sure each link is unambiguous.</td>
|
256
|
-
</tr>
|
257
|
-
<tr>
|
258
|
-
<td>http://72.47.233.218/curriculum/user-science/</td>
|
259
|
-
<td>fieldset_missing_legend</td>
|
260
|
-
<td>Missing legend element for fieldset #1.</td>
|
261
|
-
</tr>
|
262
|
-
<tr>
|
263
|
-
<td>http://72.47.233.218/curriculum/user-science/</td>
|
264
|
-
<td>missing_input_alt</td>
|
265
|
-
<td>Missing alt attribute for image button with id/name 'search-button'.</td>
|
266
|
-
</tr>
|
267
|
-
<tr>
|
268
|
-
<td>http://72.47.233.218/curriculum/user-science/</td>
|
269
|
-
<td>ambiguous_link_text</td>
|
270
|
-
<td>One or more links have the same link text ('Curriculum'). Make sure each link is unambiguous.</td>
|
271
|
-
</tr>
|
272
|
-
<tr>
|
273
|
-
<td>http://72.47.233.218/curriculum/serve-side-dev/</td>
|
274
|
-
<td>fieldset_missing_legend</td>
|
275
|
-
<td>Missing legend element for fieldset #1.</td>
|
276
|
-
</tr>
|
277
|
-
<tr>
|
278
|
-
<td>http://72.47.233.218/curriculum/serve-side-dev/</td>
|
279
|
-
<td>missing_input_alt</td>
|
280
|
-
<td>Missing alt attribute for image button with id/name 'search-button'.</td>
|
281
|
-
</tr>
|
282
|
-
<tr>
|
283
|
-
<td>http://72.47.233.218/curriculum/serve-side-dev/</td>
|
284
|
-
<td>ambiguous_link_text</td>
|
285
|
-
<td>One or more links have the same link text ('Curriculum'). Make sure each link is unambiguous.</td>
|
286
|
-
</tr>
|
287
|
-
<tr>
|
288
|
-
<td>http://72.47.233.218/curriculum/professional-practice/</td>
|
289
|
-
<td>fieldset_missing_legend</td>
|
290
|
-
<td>Missing legend element for fieldset #1.</td>
|
291
|
-
</tr>
|
292
|
-
<tr>
|
293
|
-
<td>http://72.47.233.218/curriculum/professional-practice/</td>
|
294
|
-
<td>missing_input_alt</td>
|
295
|
-
<td>Missing alt attribute for image button with id/name 'search-button'.</td>
|
296
|
-
</tr>
|
297
|
-
<tr>
|
298
|
-
<td>http://72.47.233.218/curriculum/professional-practice/</td>
|
299
|
-
<td>ambiguous_link_text</td>
|
300
|
-
<td>One or more links have the same link text ('Curriculum'). Make sure each link is unambiguous.</td>
|
301
|
-
</tr>
|
302
|
-
<tr>
|
303
|
-
<td>http://72.47.233.218/curriculum/framework/</td>
|
304
|
-
<td>fieldset_missing_legend</td>
|
305
|
-
<td>Missing legend element for fieldset #1.</td>
|
306
|
-
</tr>
|
307
|
-
<tr>
|
308
|
-
<td>http://72.47.233.218/curriculum/framework/</td>
|
309
|
-
<td>missing_input_alt</td>
|
310
|
-
<td>Missing alt attribute for image button with id/name 'search-button'.</td>
|
311
|
-
</tr>
|
312
|
-
<tr>
|
313
|
-
<td>http://72.47.233.218/curriculum/framework/</td>
|
314
|
-
<td>ambiguous_link_text</td>
|
315
|
-
<td>One or more links have the same link text ('Curriculum'). Make sure each link is unambiguous.</td>
|
316
|
-
</tr>
|
317
|
-
<tr>
|
318
|
-
<td>http://72.47.233.218/curriculum/roadmap/</td>
|
319
|
-
<td>fieldset_missing_legend</td>
|
320
|
-
<td>Missing legend element for fieldset #1.</td>
|
321
|
-
</tr>
|
322
|
-
<tr>
|
323
|
-
<td>http://72.47.233.218/curriculum/roadmap/</td>
|
324
|
-
<td>missing_input_alt</td>
|
325
|
-
<td>Missing alt attribute for image button with id/name 'search-button'.</td>
|
326
|
-
</tr>
|
327
|
-
<tr>
|
328
|
-
<td>http://72.47.233.218/curriculum/roadmap/</td>
|
329
|
-
<td>ambiguous_link_text</td>
|
330
|
-
<td>One or more links have the same link text ('Curriculum'). Make sure each link is unambiguous.</td>
|
331
|
-
</tr>
|
332
|
-
<tr>
|
333
|
-
<td>http://72.47.233.218/index.php/forums/member/login/</td>
|
334
|
-
<td>missing_heading</td>
|
335
|
-
<td>Missing first level heading (h1). Provide at least one first level heading describing document content.</td>
|
336
|
-
</tr>
|
337
|
-
<tr>
|
338
|
-
<td>http://72.47.233.218/index.php/forums/member/login/</td>
|
339
|
-
<td>missing_semantics</td>
|
340
|
-
<td>You have used b for visual formatting. Use CSS instead.</td>
|
341
|
-
</tr>
|
342
|
-
<tr>
|
343
|
-
<td>http://72.47.233.218/index.php/forums/member/login/</td>
|
344
|
-
<td>missing_input_alt</td>
|
345
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
346
|
-
</tr>
|
347
|
-
<tr>
|
348
|
-
<td>http://72.47.233.218/index.php/forums/member/login/</td>
|
349
|
-
<td>missing_input_alt</td>
|
350
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
351
|
-
</tr>
|
352
|
-
<tr>
|
353
|
-
<td>http://72.47.233.218/index.php/forums/member/login/</td>
|
354
|
-
<td>missing_th</td>
|
355
|
-
<td>Missing table headings (th) for table #1.</td>
|
356
|
-
</tr>
|
357
|
-
<tr>
|
358
|
-
<td>http://72.47.233.218/index.php/forums/member/login/</td>
|
359
|
-
<td>missing_th</td>
|
360
|
-
<td>Missing table headings (th) for table #2.</td>
|
361
|
-
</tr>
|
362
|
-
<tr>
|
363
|
-
<td>http://72.47.233.218/index.php/forums/member/login/</td>
|
364
|
-
<td>missing_th</td>
|
365
|
-
<td>Missing table headings (th) for table #3.</td>
|
366
|
-
</tr>
|
367
|
-
<tr>
|
368
|
-
<td>http://72.47.233.218/index.php/forums/member/login/</td>
|
369
|
-
<td>missing_th</td>
|
370
|
-
<td>Missing table headings (th) for table #4.</td>
|
371
|
-
</tr>
|
372
|
-
<tr>
|
373
|
-
<td>http://72.47.233.218/index.php/forums/member/login/</td>
|
374
|
-
<td>field_missing_label</td>
|
375
|
-
<td>A field (with id/name 'keywords') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
376
|
-
</tr>
|
377
|
-
<tr>
|
378
|
-
<td>http://72.47.233.218/index.php/forums/member/login/</td>
|
379
|
-
<td>field_missing_label</td>
|
380
|
-
<td>A field (with id/name 'username') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
381
|
-
</tr>
|
382
|
-
<tr>
|
383
|
-
<td>http://72.47.233.218/index.php/forums/member/login/</td>
|
384
|
-
<td>field_missing_label</td>
|
385
|
-
<td>A field (with id/name 'password') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
386
|
-
</tr>
|
387
|
-
<tr>
|
388
|
-
<td>http://72.47.233.218/index.php/forums/member/login/</td>
|
389
|
-
<td>field_missing_label</td>
|
390
|
-
<td>A field (with id/name 'auto_login') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
391
|
-
</tr>
|
392
|
-
<tr>
|
393
|
-
<td>http://72.47.233.218/index.php/forums/member/login/</td>
|
394
|
-
<td>field_missing_label</td>
|
395
|
-
<td>A field (with id/name 'username') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
396
|
-
</tr>
|
397
|
-
<tr>
|
398
|
-
<td>http://72.47.233.218/index.php/forums/member/login/</td>
|
399
|
-
<td>field_missing_label</td>
|
400
|
-
<td>A field (with id/name 'password') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
401
|
-
</tr>
|
402
|
-
<tr>
|
403
|
-
<td>http://72.47.233.218/index.php/forums/member/login/</td>
|
404
|
-
<td>field_missing_label</td>
|
405
|
-
<td>A field (with id/name 'auto_login') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
406
|
-
</tr>
|
407
|
-
<tr>
|
408
|
-
<td>http://72.47.233.218/index.php/forums/member/login/</td>
|
409
|
-
<td>field_missing_label</td>
|
410
|
-
<td>A field (with id/name 'anon') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
411
|
-
</tr>
|
412
|
-
<tr>
|
413
|
-
<td>http://72.47.233.218/index.php/forums/member/register/</td>
|
414
|
-
<td>missing_heading</td>
|
415
|
-
<td>Missing first level heading (h1). Provide at least one first level heading describing document content.</td>
|
416
|
-
</tr>
|
417
|
-
<tr>
|
418
|
-
<td>http://72.47.233.218/index.php/forums/member/register/</td>
|
419
|
-
<td>missing_input_alt</td>
|
420
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
421
|
-
</tr>
|
422
|
-
<tr>
|
423
|
-
<td>http://72.47.233.218/index.php/forums/member/register/</td>
|
424
|
-
<td>missing_input_alt</td>
|
425
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
426
|
-
</tr>
|
427
|
-
<tr>
|
428
|
-
<td>http://72.47.233.218/index.php/forums/member/register/</td>
|
429
|
-
<td>missing_th</td>
|
430
|
-
<td>Missing table headings (th) for table #1.</td>
|
431
|
-
</tr>
|
432
|
-
<tr>
|
433
|
-
<td>http://72.47.233.218/index.php/forums/member/register/</td>
|
434
|
-
<td>missing_th</td>
|
435
|
-
<td>Missing table headings (th) for table #2.</td>
|
436
|
-
</tr>
|
437
|
-
<tr>
|
438
|
-
<td>http://72.47.233.218/index.php/forums/member/register/</td>
|
439
|
-
<td>missing_th</td>
|
440
|
-
<td>Missing table headings (th) for table #3.</td>
|
441
|
-
</tr>
|
442
|
-
<tr>
|
443
|
-
<td>http://72.47.233.218/index.php/forums/member/register/</td>
|
444
|
-
<td>missing_th</td>
|
445
|
-
<td>Missing table headings (th) for table #4.</td>
|
446
|
-
</tr>
|
447
|
-
<tr>
|
448
|
-
<td>http://72.47.233.218/index.php/forums/member/register/</td>
|
449
|
-
<td>field_missing_label</td>
|
450
|
-
<td>A field (with id/name 'rules') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
451
|
-
</tr>
|
452
|
-
<tr>
|
453
|
-
<td>http://72.47.233.218/index.php/forums/member/register/</td>
|
454
|
-
<td>field_missing_label</td>
|
455
|
-
<td>A field (with id/name 'keywords') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
456
|
-
</tr>
|
457
|
-
<tr>
|
458
|
-
<td>http://72.47.233.218/index.php/forums/member/register/</td>
|
459
|
-
<td>field_missing_label</td>
|
460
|
-
<td>A field (with id/name 'username') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
461
|
-
</tr>
|
462
|
-
<tr>
|
463
|
-
<td>http://72.47.233.218/index.php/forums/member/register/</td>
|
464
|
-
<td>field_missing_label</td>
|
465
|
-
<td>A field (with id/name 'password') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
466
|
-
</tr>
|
467
|
-
<tr>
|
468
|
-
<td>http://72.47.233.218/index.php/forums/member/register/</td>
|
469
|
-
<td>field_missing_label</td>
|
470
|
-
<td>A field (with id/name 'auto_login') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
471
|
-
</tr>
|
472
|
-
<tr>
|
473
|
-
<td>http://72.47.233.218/index.php/forums/member/register/</td>
|
474
|
-
<td>field_missing_label</td>
|
475
|
-
<td>A field (with id/name 'username') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
476
|
-
</tr>
|
477
|
-
<tr>
|
478
|
-
<td>http://72.47.233.218/index.php/forums/member/register/</td>
|
479
|
-
<td>field_missing_label</td>
|
480
|
-
<td>A field (with id/name 'password') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
481
|
-
</tr>
|
482
|
-
<tr>
|
483
|
-
<td>http://72.47.233.218/index.php/forums/member/register/</td>
|
484
|
-
<td>field_missing_label</td>
|
485
|
-
<td>A field (with id/name 'password_confirm') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
486
|
-
</tr>
|
487
|
-
<tr>
|
488
|
-
<td>http://72.47.233.218/index.php/forums/member/register/</td>
|
489
|
-
<td>field_missing_label</td>
|
490
|
-
<td>A field (with id/name 'screen_name') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
491
|
-
</tr>
|
492
|
-
<tr>
|
493
|
-
<td>http://72.47.233.218/index.php/forums/member/register/</td>
|
494
|
-
<td>field_missing_label</td>
|
495
|
-
<td>A field (with id/name 'email') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
496
|
-
</tr>
|
497
|
-
<tr>
|
498
|
-
<td>http://72.47.233.218/index.php/forums/member/register/</td>
|
499
|
-
<td>field_missing_label</td>
|
500
|
-
<td>A field (with id/name 'url') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
501
|
-
</tr>
|
502
|
-
<tr>
|
503
|
-
<td>http://72.47.233.218/index.php/forums/member/register/</td>
|
504
|
-
<td>field_missing_label</td>
|
505
|
-
<td>A field (with id/name 'accept_terms') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
506
|
-
</tr>
|
507
|
-
<tr>
|
508
|
-
<td>http://72.47.233.218/index.php/forums/member/memberlist/</td>
|
509
|
-
<td>missing_heading</td>
|
510
|
-
<td>Missing first level heading (h1). Provide at least one first level heading describing document content.</td>
|
511
|
-
</tr>
|
512
|
-
<tr>
|
513
|
-
<td>http://72.47.233.218/index.php/forums/member/memberlist/</td>
|
514
|
-
<td>missing_semantics</td>
|
515
|
-
<td>You have used b for visual formatting. Use CSS instead.</td>
|
516
|
-
</tr>
|
517
|
-
<tr>
|
518
|
-
<td>http://72.47.233.218/index.php/forums/member/memberlist/</td>
|
519
|
-
<td>missing_input_alt</td>
|
520
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
521
|
-
</tr>
|
522
|
-
<tr>
|
523
|
-
<td>http://72.47.233.218/index.php/forums/member/memberlist/</td>
|
524
|
-
<td>missing_input_alt</td>
|
525
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
526
|
-
</tr>
|
527
|
-
<tr>
|
528
|
-
<td>http://72.47.233.218/index.php/forums/member/memberlist/</td>
|
529
|
-
<td>missing_th</td>
|
530
|
-
<td>Missing table headings (th) for table #1.</td>
|
531
|
-
</tr>
|
532
|
-
<tr>
|
533
|
-
<td>http://72.47.233.218/index.php/forums/member/memberlist/</td>
|
534
|
-
<td>missing_th</td>
|
535
|
-
<td>Missing table headings (th) for table #2.</td>
|
536
|
-
</tr>
|
537
|
-
<tr>
|
538
|
-
<td>http://72.47.233.218/index.php/forums/member/memberlist/</td>
|
539
|
-
<td>missing_th</td>
|
540
|
-
<td>Missing table headings (th) for table #3.</td>
|
541
|
-
</tr>
|
542
|
-
<tr>
|
543
|
-
<td>http://72.47.233.218/index.php/forums/member/memberlist/</td>
|
544
|
-
<td>missing_th</td>
|
545
|
-
<td>Missing table headings (th) for table #4.</td>
|
546
|
-
</tr>
|
547
|
-
<tr>
|
548
|
-
<td>http://72.47.233.218/index.php/forums/member/memberlist/</td>
|
549
|
-
<td>missing_th</td>
|
550
|
-
<td>Missing table headings (th) for table #5.</td>
|
551
|
-
</tr>
|
552
|
-
<tr>
|
553
|
-
<td>http://72.47.233.218/index.php/forums/member/memberlist/</td>
|
554
|
-
<td>missing_th</td>
|
555
|
-
<td>Missing table headings (th) for table #6.</td>
|
556
|
-
</tr>
|
557
|
-
<tr>
|
558
|
-
<td>http://72.47.233.218/index.php/forums/member/memberlist/</td>
|
559
|
-
<td>field_missing_label</td>
|
560
|
-
<td>A field (with id/name 'group_id') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
561
|
-
</tr>
|
562
|
-
<tr>
|
563
|
-
<td>http://72.47.233.218/index.php/forums/member/memberlist/</td>
|
564
|
-
<td>field_missing_label</td>
|
565
|
-
<td>A field (with id/name 'order_by') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
566
|
-
</tr>
|
567
|
-
<tr>
|
568
|
-
<td>http://72.47.233.218/index.php/forums/member/memberlist/</td>
|
569
|
-
<td>field_missing_label</td>
|
570
|
-
<td>A field (with id/name 'sort_order') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
571
|
-
</tr>
|
572
|
-
<tr>
|
573
|
-
<td>http://72.47.233.218/index.php/forums/member/memberlist/</td>
|
574
|
-
<td>field_missing_label</td>
|
575
|
-
<td>A field (with id/name 'row_limit') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
576
|
-
</tr>
|
577
|
-
<tr>
|
578
|
-
<td>http://72.47.233.218/index.php/forums/member/memberlist/</td>
|
579
|
-
<td>field_missing_label</td>
|
580
|
-
<td>A field (with id/name 'search_field_1') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
581
|
-
</tr>
|
582
|
-
<tr>
|
583
|
-
<td>http://72.47.233.218/index.php/forums/member/memberlist/</td>
|
584
|
-
<td>field_missing_label</td>
|
585
|
-
<td>A field (with id/name 'search_group_id') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
586
|
-
</tr>
|
587
|
-
<tr>
|
588
|
-
<td>http://72.47.233.218/index.php/forums/member/memberlist/</td>
|
589
|
-
<td>field_missing_label</td>
|
590
|
-
<td>A field (with id/name 'keywords') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
591
|
-
</tr>
|
592
|
-
<tr>
|
593
|
-
<td>http://72.47.233.218/index.php/forums/member/memberlist/</td>
|
594
|
-
<td>field_missing_label</td>
|
595
|
-
<td>A field (with id/name 'username') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
596
|
-
</tr>
|
597
|
-
<tr>
|
598
|
-
<td>http://72.47.233.218/index.php/forums/member/memberlist/</td>
|
599
|
-
<td>field_missing_label</td>
|
600
|
-
<td>A field (with id/name 'password') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
601
|
-
</tr>
|
602
|
-
<tr>
|
603
|
-
<td>http://72.47.233.218/index.php/forums/member/memberlist/</td>
|
604
|
-
<td>field_missing_label</td>
|
605
|
-
<td>A field (with id/name 'auto_login') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
606
|
-
</tr>
|
607
|
-
<tr>
|
608
|
-
<td>http://72.47.233.218/index.php/forums/member/memberlist/</td>
|
609
|
-
<td>field_missing_label</td>
|
610
|
-
<td>A field (with id/name 'search_keywords_1') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
611
|
-
</tr>
|
612
|
-
<tr>
|
613
|
-
<td>http://72.47.233.218/index.php/forums/</td>
|
614
|
-
<td>missing_heading</td>
|
615
|
-
<td>Missing first level heading (h1). Provide at least one first level heading describing document content.</td>
|
616
|
-
</tr>
|
617
|
-
<tr>
|
618
|
-
<td>http://72.47.233.218/index.php/forums/</td>
|
619
|
-
<td>has_nested_tables</td>
|
620
|
-
<td>You have one or more nested tables.</td>
|
621
|
-
</tr>
|
622
|
-
<tr>
|
623
|
-
<td>http://72.47.233.218/index.php/forums/</td>
|
624
|
-
<td>missing_semantics</td>
|
625
|
-
<td>You have used b for visual formatting. Use CSS instead.</td>
|
626
|
-
</tr>
|
627
|
-
<tr>
|
628
|
-
<td>http://72.47.233.218/index.php/forums/</td>
|
629
|
-
<td>missing_input_alt</td>
|
630
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
631
|
-
</tr>
|
632
|
-
<tr>
|
633
|
-
<td>http://72.47.233.218/index.php/forums/</td>
|
634
|
-
<td>missing_input_alt</td>
|
635
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
636
|
-
</tr>
|
637
|
-
<tr>
|
638
|
-
<td>http://72.47.233.218/index.php/forums/</td>
|
639
|
-
<td>missing_th</td>
|
640
|
-
<td>Missing table headings (th) for table #1.</td>
|
641
|
-
</tr>
|
642
|
-
<tr>
|
643
|
-
<td>http://72.47.233.218/index.php/forums/</td>
|
644
|
-
<td>missing_th</td>
|
645
|
-
<td>Missing table headings (th) for table #2.</td>
|
646
|
-
</tr>
|
647
|
-
<tr>
|
648
|
-
<td>http://72.47.233.218/index.php/forums/</td>
|
649
|
-
<td>missing_th</td>
|
650
|
-
<td>Missing table headings (th) for table #3.</td>
|
651
|
-
</tr>
|
652
|
-
<tr>
|
653
|
-
<td>http://72.47.233.218/index.php/forums/</td>
|
654
|
-
<td>missing_th</td>
|
655
|
-
<td>Missing table headings (th) for table #4.</td>
|
656
|
-
</tr>
|
657
|
-
<tr>
|
658
|
-
<td>http://72.47.233.218/index.php/forums/</td>
|
659
|
-
<td>missing_th</td>
|
660
|
-
<td>Missing table headings (th) for table #5.</td>
|
661
|
-
</tr>
|
662
|
-
<tr>
|
663
|
-
<td>http://72.47.233.218/index.php/forums/</td>
|
664
|
-
<td>missing_th</td>
|
665
|
-
<td>Missing table headings (th) for table #6.</td>
|
666
|
-
</tr>
|
667
|
-
<tr>
|
668
|
-
<td>http://72.47.233.218/index.php/forums/</td>
|
669
|
-
<td>missing_th</td>
|
670
|
-
<td>Missing table headings (th) for table #7.</td>
|
671
|
-
</tr>
|
672
|
-
<tr>
|
673
|
-
<td>http://72.47.233.218/index.php/forums/</td>
|
674
|
-
<td>field_missing_label</td>
|
675
|
-
<td>A field (with id/name 'theme_switcher') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
676
|
-
</tr>
|
677
|
-
<tr>
|
678
|
-
<td>http://72.47.233.218/index.php/forums/</td>
|
679
|
-
<td>field_missing_label</td>
|
680
|
-
<td>A field (with id/name 'keywords') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
681
|
-
</tr>
|
682
|
-
<tr>
|
683
|
-
<td>http://72.47.233.218/index.php/forums/</td>
|
684
|
-
<td>field_missing_label</td>
|
685
|
-
<td>A field (with id/name 'username') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
686
|
-
</tr>
|
687
|
-
<tr>
|
688
|
-
<td>http://72.47.233.218/index.php/forums/</td>
|
689
|
-
<td>field_missing_label</td>
|
690
|
-
<td>A field (with id/name 'password') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
691
|
-
</tr>
|
692
|
-
<tr>
|
693
|
-
<td>http://72.47.233.218/index.php/forums/</td>
|
694
|
-
<td>field_missing_label</td>
|
695
|
-
<td>A field (with id/name 'auto_login') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
696
|
-
</tr>
|
697
|
-
<tr>
|
698
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
699
|
-
<td>missing_heading</td>
|
700
|
-
<td>Missing first level heading (h1). Provide at least one first level heading describing document content.</td>
|
701
|
-
</tr>
|
702
|
-
<tr>
|
703
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
704
|
-
<td>missing_input_alt</td>
|
705
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
706
|
-
</tr>
|
707
|
-
<tr>
|
708
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
709
|
-
<td>missing_input_alt</td>
|
710
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
711
|
-
</tr>
|
712
|
-
<tr>
|
713
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
714
|
-
<td>missing_th</td>
|
715
|
-
<td>Missing table headings (th) for table #1.</td>
|
716
|
-
</tr>
|
717
|
-
<tr>
|
718
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
719
|
-
<td>missing_th</td>
|
720
|
-
<td>Missing table headings (th) for table #2.</td>
|
721
|
-
</tr>
|
722
|
-
<tr>
|
723
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
724
|
-
<td>missing_th</td>
|
725
|
-
<td>Missing table headings (th) for table #3.</td>
|
726
|
-
</tr>
|
727
|
-
<tr>
|
728
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
729
|
-
<td>missing_th</td>
|
730
|
-
<td>Missing table headings (th) for table #4.</td>
|
731
|
-
</tr>
|
732
|
-
<tr>
|
733
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
734
|
-
<td>field_missing_label</td>
|
735
|
-
<td>A field (with id/name 'search_in') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
736
|
-
</tr>
|
737
|
-
<tr>
|
738
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
739
|
-
<td>field_missing_label</td>
|
740
|
-
<td>A field (with id/name 'search_criteria') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
741
|
-
</tr>
|
742
|
-
<tr>
|
743
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
744
|
-
<td>field_missing_label</td>
|
745
|
-
<td>A field (with id/name 'forum_id[]') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
746
|
-
</tr>
|
747
|
-
<tr>
|
748
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
749
|
-
<td>field_missing_label</td>
|
750
|
-
<td>A field (with id/name 'member_group[]') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
751
|
-
</tr>
|
752
|
-
<tr>
|
753
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
754
|
-
<td>field_missing_label</td>
|
755
|
-
<td>A field (with id/name 'date') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
756
|
-
</tr>
|
757
|
-
<tr>
|
758
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
759
|
-
<td>field_missing_label</td>
|
760
|
-
<td>A field (with id/name 'order_by') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
761
|
-
</tr>
|
762
|
-
<tr>
|
763
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
764
|
-
<td>field_missing_label</td>
|
765
|
-
<td>A field (with id/name 'theme_switcher') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
766
|
-
</tr>
|
767
|
-
<tr>
|
768
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
769
|
-
<td>field_missing_label</td>
|
770
|
-
<td>A field (with id/name 'keywords') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
771
|
-
</tr>
|
772
|
-
<tr>
|
773
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
774
|
-
<td>field_missing_label</td>
|
775
|
-
<td>A field (with id/name 'username') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
776
|
-
</tr>
|
777
|
-
<tr>
|
778
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
779
|
-
<td>field_missing_label</td>
|
780
|
-
<td>A field (with id/name 'password') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
781
|
-
</tr>
|
782
|
-
<tr>
|
783
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
784
|
-
<td>field_missing_label</td>
|
785
|
-
<td>A field (with id/name 'auto_login') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
786
|
-
</tr>
|
787
|
-
<tr>
|
788
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
789
|
-
<td>field_missing_label</td>
|
790
|
-
<td>A field (with id/name 'keywords') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
791
|
-
</tr>
|
792
|
-
<tr>
|
793
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
794
|
-
<td>field_missing_label</td>
|
795
|
-
<td>A field (with id/name 'member_name') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
796
|
-
</tr>
|
797
|
-
<tr>
|
798
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
799
|
-
<td>field_missing_label</td>
|
800
|
-
<td>A field (with id/name 'exact_match') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
801
|
-
</tr>
|
802
|
-
<tr>
|
803
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
804
|
-
<td>field_missing_label</td>
|
805
|
-
<td>A field (with id/name 'date_order') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
806
|
-
</tr>
|
807
|
-
<tr>
|
808
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
809
|
-
<td>field_missing_label</td>
|
810
|
-
<td>A field (with id/name 'date_order') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
811
|
-
</tr>
|
812
|
-
<tr>
|
813
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
814
|
-
<td>field_missing_label</td>
|
815
|
-
<td>A field (with id/name 'sort_order') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
816
|
-
</tr>
|
817
|
-
<tr>
|
818
|
-
<td>http://72.47.233.218/index.php/forums/search/</td>
|
819
|
-
<td>field_missing_label</td>
|
820
|
-
<td>A field (with id/name 'sort_order') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
821
|
-
</tr>
|
822
|
-
<tr>
|
823
|
-
<td>http://72.47.233.218/index.php/forums/member/forgot_password/</td>
|
824
|
-
<td>missing_heading</td>
|
825
|
-
<td>Missing first level heading (h1). Provide at least one first level heading describing document content.</td>
|
826
|
-
</tr>
|
827
|
-
<tr>
|
828
|
-
<td>http://72.47.233.218/index.php/forums/member/forgot_password/</td>
|
829
|
-
<td>first_h_not_h1</td>
|
830
|
-
<td>The first heading is not h1.</td>
|
831
|
-
</tr>
|
832
|
-
<tr>
|
833
|
-
<td>http://72.47.233.218/index.php/forums/member/forgot_password/</td>
|
834
|
-
<td>missing_input_alt</td>
|
835
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
836
|
-
</tr>
|
837
|
-
<tr>
|
838
|
-
<td>http://72.47.233.218/index.php/forums/member/forgot_password/</td>
|
839
|
-
<td>missing_input_alt</td>
|
840
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
841
|
-
</tr>
|
842
|
-
<tr>
|
843
|
-
<td>http://72.47.233.218/index.php/forums/member/forgot_password/</td>
|
844
|
-
<td>missing_th</td>
|
845
|
-
<td>Missing table headings (th) for table #1.</td>
|
846
|
-
</tr>
|
847
|
-
<tr>
|
848
|
-
<td>http://72.47.233.218/index.php/forums/member/forgot_password/</td>
|
849
|
-
<td>missing_th</td>
|
850
|
-
<td>Missing table headings (th) for table #2.</td>
|
851
|
-
</tr>
|
852
|
-
<tr>
|
853
|
-
<td>http://72.47.233.218/index.php/forums/member/forgot_password/</td>
|
854
|
-
<td>missing_th</td>
|
855
|
-
<td>Missing table headings (th) for table #3.</td>
|
856
|
-
</tr>
|
857
|
-
<tr>
|
858
|
-
<td>http://72.47.233.218/index.php/forums/member/forgot_password/</td>
|
859
|
-
<td>missing_th</td>
|
860
|
-
<td>Missing table headings (th) for table #4.</td>
|
861
|
-
</tr>
|
862
|
-
<tr>
|
863
|
-
<td>http://72.47.233.218/index.php/forums/member/forgot_password/</td>
|
864
|
-
<td>field_missing_label</td>
|
865
|
-
<td>A field (with id/name 'keywords') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
866
|
-
</tr>
|
867
|
-
<tr>
|
868
|
-
<td>http://72.47.233.218/index.php/forums/member/forgot_password/</td>
|
869
|
-
<td>field_missing_label</td>
|
870
|
-
<td>A field (with id/name 'username') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
871
|
-
</tr>
|
872
|
-
<tr>
|
873
|
-
<td>http://72.47.233.218/index.php/forums/member/forgot_password/</td>
|
874
|
-
<td>field_missing_label</td>
|
875
|
-
<td>A field (with id/name 'password') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
876
|
-
</tr>
|
877
|
-
<tr>
|
878
|
-
<td>http://72.47.233.218/index.php/forums/member/forgot_password/</td>
|
879
|
-
<td>field_missing_label</td>
|
880
|
-
<td>A field (with id/name 'auto_login') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
881
|
-
</tr>
|
882
|
-
<tr>
|
883
|
-
<td>http://72.47.233.218/index.php/forums/member/forgot_password/</td>
|
884
|
-
<td>field_missing_label</td>
|
885
|
-
<td>A field (with id/name 'email') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
886
|
-
</tr>
|
887
|
-
<tr>
|
888
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/2/</td>
|
889
|
-
<td>missing_heading</td>
|
890
|
-
<td>Missing first level heading (h1). Provide at least one first level heading describing document content.</td>
|
891
|
-
</tr>
|
892
|
-
<tr>
|
893
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/2/</td>
|
894
|
-
<td>has_nested_tables</td>
|
895
|
-
<td>You have one or more nested tables.</td>
|
896
|
-
</tr>
|
897
|
-
<tr>
|
898
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/2/</td>
|
899
|
-
<td>missing_semantics</td>
|
900
|
-
<td>You have used b for visual formatting. Use CSS instead.</td>
|
901
|
-
</tr>
|
902
|
-
<tr>
|
903
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/2/</td>
|
904
|
-
<td>missing_input_alt</td>
|
905
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
906
|
-
</tr>
|
907
|
-
<tr>
|
908
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/2/</td>
|
909
|
-
<td>missing_input_alt</td>
|
910
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
911
|
-
</tr>
|
912
|
-
<tr>
|
913
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/2/</td>
|
914
|
-
<td>missing_input_alt</td>
|
915
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
916
|
-
</tr>
|
917
|
-
<tr>
|
918
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/2/</td>
|
919
|
-
<td>missing_th</td>
|
920
|
-
<td>Missing table headings (th) for table #1.</td>
|
921
|
-
</tr>
|
922
|
-
<tr>
|
923
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/2/</td>
|
924
|
-
<td>missing_th</td>
|
925
|
-
<td>Missing table headings (th) for table #2.</td>
|
926
|
-
</tr>
|
927
|
-
<tr>
|
928
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/2/</td>
|
929
|
-
<td>missing_th</td>
|
930
|
-
<td>Missing table headings (th) for table #3.</td>
|
931
|
-
</tr>
|
932
|
-
<tr>
|
933
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/2/</td>
|
934
|
-
<td>missing_th</td>
|
935
|
-
<td>Missing table headings (th) for table #4.</td>
|
936
|
-
</tr>
|
937
|
-
<tr>
|
938
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/2/</td>
|
939
|
-
<td>missing_th</td>
|
940
|
-
<td>Missing table headings (th) for table #5.</td>
|
941
|
-
</tr>
|
942
|
-
<tr>
|
943
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/2/</td>
|
944
|
-
<td>missing_th</td>
|
945
|
-
<td>Missing table headings (th) for table #6.</td>
|
946
|
-
</tr>
|
947
|
-
<tr>
|
948
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/2/</td>
|
949
|
-
<td>missing_th</td>
|
950
|
-
<td>Missing table headings (th) for table #7.</td>
|
951
|
-
</tr>
|
952
|
-
<tr>
|
953
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/2/</td>
|
954
|
-
<td>missing_th</td>
|
955
|
-
<td>Missing table headings (th) for table #8.</td>
|
956
|
-
</tr>
|
957
|
-
<tr>
|
958
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/2/</td>
|
959
|
-
<td>field_missing_label</td>
|
960
|
-
<td>A field (with id/name 'theme_switcher') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
961
|
-
</tr>
|
962
|
-
<tr>
|
963
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/2/</td>
|
964
|
-
<td>field_missing_label</td>
|
965
|
-
<td>A field (with id/name 'keywords') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
966
|
-
</tr>
|
967
|
-
<tr>
|
968
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/2/</td>
|
969
|
-
<td>field_missing_label</td>
|
970
|
-
<td>A field (with id/name 'username') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
971
|
-
</tr>
|
972
|
-
<tr>
|
973
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/2/</td>
|
974
|
-
<td>field_missing_label</td>
|
975
|
-
<td>A field (with id/name 'password') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
976
|
-
</tr>
|
977
|
-
<tr>
|
978
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/2/</td>
|
979
|
-
<td>field_missing_label</td>
|
980
|
-
<td>A field (with id/name 'auto_login') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
981
|
-
</tr>
|
982
|
-
<tr>
|
983
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/2/</td>
|
984
|
-
<td>field_missing_label</td>
|
985
|
-
<td>A field (with id/name 'keywords2') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
986
|
-
</tr>
|
987
|
-
<tr>
|
988
|
-
<td>http://72.47.233.218/index.php/forums/viewthread/1/</td>
|
989
|
-
<td>missing_heading</td>
|
990
|
-
<td>Missing first level heading (h1). Provide at least one first level heading describing document content.</td>
|
991
|
-
</tr>
|
992
|
-
<tr>
|
993
|
-
<td>http://72.47.233.218/index.php/forums/viewthread/1/</td>
|
994
|
-
<td>has_nested_tables</td>
|
995
|
-
<td>You have one or more nested tables.</td>
|
996
|
-
</tr>
|
997
|
-
<tr>
|
998
|
-
<td>http://72.47.233.218/index.php/forums/viewthread/1/</td>
|
999
|
-
<td>missing_input_alt</td>
|
1000
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
1001
|
-
</tr>
|
1002
|
-
<tr>
|
1003
|
-
<td>http://72.47.233.218/index.php/forums/viewthread/1/</td>
|
1004
|
-
<td>missing_input_alt</td>
|
1005
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
1006
|
-
</tr>
|
1007
|
-
<tr>
|
1008
|
-
<td>http://72.47.233.218/index.php/forums/viewthread/1/</td>
|
1009
|
-
<td>missing_th</td>
|
1010
|
-
<td>Missing table headings (th) for table #1.</td>
|
1011
|
-
</tr>
|
1012
|
-
<tr>
|
1013
|
-
<td>http://72.47.233.218/index.php/forums/viewthread/1/</td>
|
1014
|
-
<td>missing_th</td>
|
1015
|
-
<td>Missing table headings (th) for table #2.</td>
|
1016
|
-
</tr>
|
1017
|
-
<tr>
|
1018
|
-
<td>http://72.47.233.218/index.php/forums/viewthread/1/</td>
|
1019
|
-
<td>missing_th</td>
|
1020
|
-
<td>Missing table headings (th) for table #3.</td>
|
1021
|
-
</tr>
|
1022
|
-
<tr>
|
1023
|
-
<td>http://72.47.233.218/index.php/forums/viewthread/1/</td>
|
1024
|
-
<td>missing_th</td>
|
1025
|
-
<td>Missing table headings (th) for table #4.</td>
|
1026
|
-
</tr>
|
1027
|
-
<tr>
|
1028
|
-
<td>http://72.47.233.218/index.php/forums/viewthread/1/</td>
|
1029
|
-
<td>missing_th</td>
|
1030
|
-
<td>Missing table headings (th) for table #5.</td>
|
1031
|
-
</tr>
|
1032
|
-
<tr>
|
1033
|
-
<td>http://72.47.233.218/index.php/forums/viewthread/1/</td>
|
1034
|
-
<td>missing_th</td>
|
1035
|
-
<td>Missing table headings (th) for table #6.</td>
|
1036
|
-
</tr>
|
1037
|
-
<tr>
|
1038
|
-
<td>http://72.47.233.218/index.php/forums/viewthread/1/</td>
|
1039
|
-
<td>missing_th</td>
|
1040
|
-
<td>Missing table headings (th) for table #7.</td>
|
1041
|
-
</tr>
|
1042
|
-
<tr>
|
1043
|
-
<td>http://72.47.233.218/index.php/forums/viewthread/1/</td>
|
1044
|
-
<td>missing_th</td>
|
1045
|
-
<td>Missing table headings (th) for table #8.</td>
|
1046
|
-
</tr>
|
1047
|
-
<tr>
|
1048
|
-
<td>http://72.47.233.218/index.php/forums/viewthread/1/</td>
|
1049
|
-
<td>missing_th</td>
|
1050
|
-
<td>Missing table headings (th) for table #9.</td>
|
1051
|
-
</tr>
|
1052
|
-
<tr>
|
1053
|
-
<td>http://72.47.233.218/index.php/forums/viewthread/1/</td>
|
1054
|
-
<td>missing_th</td>
|
1055
|
-
<td>Missing table headings (th) for table #10.</td>
|
1056
|
-
</tr>
|
1057
|
-
<tr>
|
1058
|
-
<td>http://72.47.233.218/index.php/forums/viewthread/1/</td>
|
1059
|
-
<td>field_missing_label</td>
|
1060
|
-
<td>A field (with id/name 'theme_switcher') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
1061
|
-
</tr>
|
1062
|
-
<tr>
|
1063
|
-
<td>http://72.47.233.218/index.php/forums/viewthread/1/</td>
|
1064
|
-
<td>field_missing_label</td>
|
1065
|
-
<td>A field (with id/name 'keywords') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
1066
|
-
</tr>
|
1067
|
-
<tr>
|
1068
|
-
<td>http://72.47.233.218/index.php/forums/viewthread/1/</td>
|
1069
|
-
<td>field_missing_label</td>
|
1070
|
-
<td>A field (with id/name 'username') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
1071
|
-
</tr>
|
1072
|
-
<tr>
|
1073
|
-
<td>http://72.47.233.218/index.php/forums/viewthread/1/</td>
|
1074
|
-
<td>field_missing_label</td>
|
1075
|
-
<td>A field (with id/name 'password') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
1076
|
-
</tr>
|
1077
|
-
<tr>
|
1078
|
-
<td>http://72.47.233.218/index.php/forums/viewthread/1/</td>
|
1079
|
-
<td>field_missing_label</td>
|
1080
|
-
<td>A field (with id/name 'auto_login') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
1081
|
-
</tr>
|
1082
|
-
<tr>
|
1083
|
-
<td>http://72.47.233.218/index.php/forums/member/11/</td>
|
1084
|
-
<td>missing_heading</td>
|
1085
|
-
<td>Missing first level heading (h1). Provide at least one first level heading describing document content.</td>
|
1086
|
-
</tr>
|
1087
|
-
<tr>
|
1088
|
-
<td>http://72.47.233.218/index.php/forums/member/11/</td>
|
1089
|
-
<td>has_nested_tables</td>
|
1090
|
-
<td>You have one or more nested tables.</td>
|
1091
|
-
</tr>
|
1092
|
-
<tr>
|
1093
|
-
<td>http://72.47.233.218/index.php/forums/member/11/</td>
|
1094
|
-
<td>missing_semantics</td>
|
1095
|
-
<td>You have used b for visual formatting. Use CSS instead.</td>
|
1096
|
-
</tr>
|
1097
|
-
<tr>
|
1098
|
-
<td>http://72.47.233.218/index.php/forums/member/11/</td>
|
1099
|
-
<td>missing_input_alt</td>
|
1100
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
1101
|
-
</tr>
|
1102
|
-
<tr>
|
1103
|
-
<td>http://72.47.233.218/index.php/forums/member/11/</td>
|
1104
|
-
<td>missing_input_alt</td>
|
1105
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
1106
|
-
</tr>
|
1107
|
-
<tr>
|
1108
|
-
<td>http://72.47.233.218/index.php/forums/member/11/</td>
|
1109
|
-
<td>missing_th</td>
|
1110
|
-
<td>Missing table headings (th) for table #1.</td>
|
1111
|
-
</tr>
|
1112
|
-
<tr>
|
1113
|
-
<td>http://72.47.233.218/index.php/forums/member/11/</td>
|
1114
|
-
<td>missing_th</td>
|
1115
|
-
<td>Missing table headings (th) for table #2.</td>
|
1116
|
-
</tr>
|
1117
|
-
<tr>
|
1118
|
-
<td>http://72.47.233.218/index.php/forums/member/11/</td>
|
1119
|
-
<td>missing_th</td>
|
1120
|
-
<td>Missing table headings (th) for table #3.</td>
|
1121
|
-
</tr>
|
1122
|
-
<tr>
|
1123
|
-
<td>http://72.47.233.218/index.php/forums/member/11/</td>
|
1124
|
-
<td>missing_th</td>
|
1125
|
-
<td>Missing table headings (th) for table #4.</td>
|
1126
|
-
</tr>
|
1127
|
-
<tr>
|
1128
|
-
<td>http://72.47.233.218/index.php/forums/member/11/</td>
|
1129
|
-
<td>missing_th</td>
|
1130
|
-
<td>Missing table headings (th) for table #5.</td>
|
1131
|
-
</tr>
|
1132
|
-
<tr>
|
1133
|
-
<td>http://72.47.233.218/index.php/forums/member/11/</td>
|
1134
|
-
<td>missing_th</td>
|
1135
|
-
<td>Missing table headings (th) for table #6.</td>
|
1136
|
-
</tr>
|
1137
|
-
<tr>
|
1138
|
-
<td>http://72.47.233.218/index.php/forums/member/11/</td>
|
1139
|
-
<td>missing_th</td>
|
1140
|
-
<td>Missing table headings (th) for table #7.</td>
|
1141
|
-
</tr>
|
1142
|
-
<tr>
|
1143
|
-
<td>http://72.47.233.218/index.php/forums/member/11/</td>
|
1144
|
-
<td>missing_th</td>
|
1145
|
-
<td>Missing table headings (th) for table #8.</td>
|
1146
|
-
</tr>
|
1147
|
-
<tr>
|
1148
|
-
<td>http://72.47.233.218/index.php/forums/member/11/</td>
|
1149
|
-
<td>missing_th</td>
|
1150
|
-
<td>Missing table headings (th) for table #9.</td>
|
1151
|
-
</tr>
|
1152
|
-
<tr>
|
1153
|
-
<td>http://72.47.233.218/index.php/forums/member/11/</td>
|
1154
|
-
<td>missing_th</td>
|
1155
|
-
<td>Missing table headings (th) for table #10.</td>
|
1156
|
-
</tr>
|
1157
|
-
<tr>
|
1158
|
-
<td>http://72.47.233.218/index.php/forums/member/11/</td>
|
1159
|
-
<td>missing_th</td>
|
1160
|
-
<td>Missing table headings (th) for table #11.</td>
|
1161
|
-
</tr>
|
1162
|
-
<tr>
|
1163
|
-
<td>http://72.47.233.218/index.php/forums/member/11/</td>
|
1164
|
-
<td>field_missing_label</td>
|
1165
|
-
<td>A field (with id/name 'keywords') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
1166
|
-
</tr>
|
1167
|
-
<tr>
|
1168
|
-
<td>http://72.47.233.218/index.php/forums/member/11/</td>
|
1169
|
-
<td>field_missing_label</td>
|
1170
|
-
<td>A field (with id/name 'username') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
1171
|
-
</tr>
|
1172
|
-
<tr>
|
1173
|
-
<td>http://72.47.233.218/index.php/forums/member/11/</td>
|
1174
|
-
<td>field_missing_label</td>
|
1175
|
-
<td>A field (with id/name 'password') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
1176
|
-
</tr>
|
1177
|
-
<tr>
|
1178
|
-
<td>http://72.47.233.218/index.php/forums/member/11/</td>
|
1179
|
-
<td>field_missing_label</td>
|
1180
|
-
<td>A field (with id/name 'auto_login') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
1181
|
-
</tr>
|
1182
|
-
<tr>
|
1183
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/4/</td>
|
1184
|
-
<td>missing_heading</td>
|
1185
|
-
<td>Missing first level heading (h1). Provide at least one first level heading describing document content.</td>
|
1186
|
-
</tr>
|
1187
|
-
<tr>
|
1188
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/4/</td>
|
1189
|
-
<td>has_nested_tables</td>
|
1190
|
-
<td>You have one or more nested tables.</td>
|
1191
|
-
</tr>
|
1192
|
-
<tr>
|
1193
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/4/</td>
|
1194
|
-
<td>missing_semantics</td>
|
1195
|
-
<td>You have used b for visual formatting. Use CSS instead.</td>
|
1196
|
-
</tr>
|
1197
|
-
<tr>
|
1198
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/4/</td>
|
1199
|
-
<td>missing_input_alt</td>
|
1200
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
1201
|
-
</tr>
|
1202
|
-
<tr>
|
1203
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/4/</td>
|
1204
|
-
<td>missing_input_alt</td>
|
1205
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
1206
|
-
</tr>
|
1207
|
-
<tr>
|
1208
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/4/</td>
|
1209
|
-
<td>missing_input_alt</td>
|
1210
|
-
<td>Missing alt attribute for image button with id/name ''.</td>
|
1211
|
-
</tr>
|
1212
|
-
<tr>
|
1213
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/4/</td>
|
1214
|
-
<td>missing_th</td>
|
1215
|
-
<td>Missing table headings (th) for table #1.</td>
|
1216
|
-
</tr>
|
1217
|
-
<tr>
|
1218
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/4/</td>
|
1219
|
-
<td>missing_th</td>
|
1220
|
-
<td>Missing table headings (th) for table #2.</td>
|
1221
|
-
</tr>
|
1222
|
-
<tr>
|
1223
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/4/</td>
|
1224
|
-
<td>missing_th</td>
|
1225
|
-
<td>Missing table headings (th) for table #3.</td>
|
1226
|
-
</tr>
|
1227
|
-
<tr>
|
1228
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/4/</td>
|
1229
|
-
<td>missing_th</td>
|
1230
|
-
<td>Missing table headings (th) for table #4.</td>
|
1231
|
-
</tr>
|
1232
|
-
<tr>
|
1233
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/4/</td>
|
1234
|
-
<td>missing_th</td>
|
1235
|
-
<td>Missing table headings (th) for table #5.</td>
|
1236
|
-
</tr>
|
1237
|
-
<tr>
|
1238
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/4/</td>
|
1239
|
-
<td>missing_th</td>
|
1240
|
-
<td>Missing table headings (th) for table #6.</td>
|
1241
|
-
</tr>
|
1242
|
-
<tr>
|
1243
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/4/</td>
|
1244
|
-
<td>missing_th</td>
|
1245
|
-
<td>Missing table headings (th) for table #7.</td>
|
1246
|
-
</tr>
|
1247
|
-
<tr>
|
1248
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/4/</td>
|
1249
|
-
<td>missing_th</td>
|
1250
|
-
<td>Missing table headings (th) for table #8.</td>
|
1251
|
-
</tr>
|
1252
|
-
<tr>
|
1253
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/4/</td>
|
1254
|
-
<td>field_missing_label</td>
|
1255
|
-
<td>A field (with id/name 'theme_switcher') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
1256
|
-
</tr>
|
1257
|
-
<tr>
|
1258
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/4/</td>
|
1259
|
-
<td>field_missing_label</td>
|
1260
|
-
<td>A field (with id/name 'keywords') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
1261
|
-
</tr>
|
1262
|
-
<tr>
|
1263
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/4/</td>
|
1264
|
-
<td>field_missing_label</td>
|
1265
|
-
<td>A field (with id/name 'username') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
1266
|
-
</tr>
|
1267
|
-
<tr>
|
1268
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/4/</td>
|
1269
|
-
<td>field_missing_label</td>
|
1270
|
-
<td>A field (with id/name 'password') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
1271
|
-
</tr>
|
1272
|
-
<tr>
|
1273
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/4/</td>
|
1274
|
-
<td>field_missing_label</td>
|
1275
|
-
<td>A field (with id/name 'auto_login') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
1276
|
-
</tr>
|
1277
|
-
<tr>
|
1278
|
-
<td>http://72.47.233.218/index.php/forums/viewforum/4/</td>
|
1279
|
-
<td>field_missing_label</td>
|
1280
|
-
<td>A field (with id/name 'keywords2') is missing a corresponding label element. Make sure a label exists for all visible fields.</td>
|
1281
|
-
</tr>
|
1282
|
-
</table>
|