/[suikacvs]/test/html-webhacc/cc.cgi
Suika

Contents of /test/html-webhacc/cc.cgi

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.4 - (show annotations) (download)
Wed Jun 27 14:36:45 2007 UTC (16 years, 10 months ago) by wakaba
Branch: MAIN
Changes since 1.3: +31 -30 lines
Style sheet

1 #!/usr/bin/perl
2 use strict;
3
4 use lib qw[/home/httpd/html/www/markup/html/whatpm
5 /home/wakaba/work/manakai/lib
6 /home/wakaba/public_html/-temp/wiki/lib];
7 use CGI::Carp qw[fatalsToBrowser];
8 use Scalar::Util qw[refaddr];
9
10 use SuikaWiki::Input::HTTP; ## TODO: Use some better CGI module
11
12 sub htescape ($) {
13 my $s = $_[0];
14 $s =~ s/&/&/g;
15 $s =~ s/</&lt;/g;
16 $s =~ s/>/&gt;/g;
17 $s =~ s/"/&quot;/g;
18 $s =~ s!([\x00-\x09\x0B-\x1F\x7F-\x80])!sprintf '<var>U+%04X</var>', ord $1!ge;
19 return $s;
20 } # htescape
21
22 my $http = SuikaWiki::Input::HTTP->new;
23
24 ## TODO: _charset_
25
26 my $input_format = $http->parameter ('i') || 'text/html';
27 my $inner_html_element = $http->parameter ('e');
28 my $input_uri = 'thismessage:/';
29
30 my $s = $http->parameter ('s');
31 if (length $s > 1000_000) {
32 print STDOUT "Status: 400 Document Too Long\nContent-Type: text/plain; charset=us-ascii\n\nToo long";
33 exit;
34 }
35
36 my @nav;
37 print STDOUT qq[Content-Type: text/html; charset=utf-8
38
39 <!DOCTYPE html>
40 <html lang="en">
41 <head>
42 <title>Web Document Conformance Checker (BETA)</title>
43 <link rel="stylesheet" href="../cc-style.css" type="text/css">
44 </head>
45 <body>
46 <h1>Web Document Conformance Checker (<em>beta</em>)</h1>
47
48 <div id="document-info" class="section">
49 <dl>
50 <dt>Document URI</dt>
51 <dd><code class="URI" lang="">&lt;<a href="@{[htescape $input_uri]}">@{[htescape $input_uri]}</a>&gt;</code></dd>
52 <dt>Internet Media Type</dt>
53 <dd><code class="MIME" lang="en">@{[htescape $input_format]}</code></dd>
54 ]; # no </dl> yet
55 push @nav, ['#document-info' => 'Information'];
56
57 require Message::DOM::DOMImplementation;
58 my $dom = Message::DOM::DOMImplementation->____new;
59 my $doc;
60 my $el;
61
62 if ($input_format eq 'text/html') {
63 require Encode;
64 require Whatpm::HTML;
65
66 $s = Encode::decode ('utf-8', $s);
67
68 print STDOUT qq[
69 <dt>Character Encoding</dt>
70 <dd>(none)</dd>
71 </dl>
72 </div>
73
74 <div id="source-string" class="section">
75 <h2>Document Source</h2>
76 ];
77 push @nav, ['#source-string' => 'Source'];
78 print_source_string (\$s);
79 print STDOUT qq[
80 </div>
81
82 <div id="parse-errors" class="section">
83 <h2>Parse Errors</h2>
84
85 <dl>
86 ];
87 push @nav, ['#parse-errors' => 'Parse Error'];
88
89 my $onerror = sub {
90 my (%opt) = @_;
91 if ($opt{column} > 0) {
92 print STDOUT qq[<dt><a href="#line-$opt{line}">Line $opt{line}</a> column $opt{column}</dt>\n];
93 } else {
94 $opt{line}--;
95 print STDOUT qq[<dt><a href="#line-$opt{line}">Line $opt{line}</a></dt>\n];
96 }
97 print STDOUT qq[<dd>@{[htescape $opt{type}]}</dd>\n];
98 };
99
100 $doc = $dom->create_document;
101 if (defined $inner_html_element and length $inner_html_element) {
102 $el = $doc->create_element_ns
103 ('http://www.w3.org/1999/xhtml', [undef, $inner_html_element]);
104 Whatpm::HTML->set_inner_html ($el, $s, $onerror);
105 } else {
106 Whatpm::HTML->parse_string ($s => $doc, $onerror);
107 }
108
109 print STDOUT qq[
110 </dl>
111 </div>
112 ];
113 } elsif ($input_format eq 'application/xhtml+xml') {
114 require Message::DOM::XMLParserTemp;
115 require Encode;
116
117 my $t = Encode::decode ('utf-8', $s);
118
119 print STDOUT qq[
120 <dt>Character Encoding</dt>
121 <dd>(none)</dd>
122 </dl>
123 </div>
124
125 <div id="source-string" class="section">
126 <h2>Document Source</h2>
127 ];
128 push @nav, ['#source-string' => 'Source'];
129 print_source_string (\$t);
130 print STDOUT qq[
131 </div>
132
133 <div id="parse-errors" class="section">
134 <h2>Parse Errors</h2>
135
136 <dl>
137 ];
138 push @nav, ['#parse-errors' => 'Parse Error'];
139
140 my $onerror = sub {
141 my $err = shift;
142 my $line = $err->location->line_number;
143 print STDOUT qq[<dt><a href="#line-$line">Line $line</a> column ];
144 print STDOUT $err->location->column_number, "</dt><dd>";
145 print STDOUT htescape $err->text, "</dd>\n";
146 return 1;
147 };
148
149 open my $fh, '<', \$s;
150 $doc = Message::DOM::XMLParserTemp->parse_byte_stream
151 ($fh => $dom, $onerror, charset => 'utf-8');
152
153 print STDOUT qq[
154 </dl>
155 </div>
156 ];
157 } else {
158 print STDOUT qq[
159 </dl>
160 </div>
161
162 <div id="result-summary" class="section">
163 <p><em>Media type <code class="MIME" lang="en">@{[htescape $input_format]}</code> is not supported!</em></p>
164 </div>
165 ];
166 push @nav, ['#result-summary' => 'Result'];
167 }
168
169
170 if (defined $doc or defined $el) {
171 print STDOUT qq[
172 <div id="document-tree" class="section">
173 <h2>Document Tree</h2>
174 ];
175 push @nav, ['#document-tree' => 'Tree'];
176
177 print_document_tree ($el || $doc);
178
179 print STDOUT qq[
180 </div>
181
182 <div id="document-errors" class="section">
183 <h2>Document Errors</h2>
184
185 <dl>
186 ];
187 push @nav, ['#document-errors' => 'Document Error'];
188
189 require Whatpm::ContentChecker;
190 my $onerror = sub {
191 my %opt = @_;
192 print STDOUT qq[<dt><a href="#node-@{[refaddr $opt{node}]}">],
193 htescape get_node_path ($opt{node}),
194 "</a></dt>\n<dd>", htescape $opt{type}, "</dd>\n";
195 };
196
197 if ($el) {
198 Whatpm::ContentChecker->check_element ($el, $onerror);
199 } else {
200 Whatpm::ContentChecker->check_document ($doc, $onerror);
201 }
202
203 print STDOUT qq[
204 </dl>
205 </div>
206 ];
207 }
208
209 ## TODO: Show result
210
211 print STDOUT qq[
212 <ul class="navigation" id="nav-items">
213 ];
214 for (@nav) {
215 print STDOUT qq[<li><a href="$_->[0]">$_->[1]</a></li>];
216 }
217 print STDOUT qq[
218 </ul>
219 </body>
220 </html>
221 ];
222
223 exit;
224
225 sub print_source_string ($) {
226 my $s = $_[0];
227 my $i = 1;
228 print STDOUT qq[<ol lang="">\n];
229 while ($$s =~ /\G([^\x0A]*?)\x0D?\x0A/gc) {
230 print STDOUT qq[<li id="line-$i">], htescape $1, "</li>\n";
231 $i++;
232 }
233 if ($$s =~ /\G([^\x0A]+)/gc) {
234 print STDOUT qq[<li id="line-$i">], htescape $1, "</li>\n";
235 }
236 print STDOUT "</ol>";
237 } # print_input_string
238
239 sub print_document_tree ($) {
240 my $node = shift;
241 my $r = '<ol class="xoxo">';
242
243 my @node = ($node);
244 while (@node) {
245 my $child = shift @node;
246 unless (ref $child) {
247 $r .= $child;
248 next;
249 }
250
251 my $node_id = 'node-'.refaddr $child;
252 my $nt = $child->node_type;
253 if ($nt == $child->ELEMENT_NODE) {
254 my $child_nsuri = $child->namespace_uri;
255 $r .= qq[<li id="$node_id" class="tree-element"><code title="@{[defined $child_nsuri ? $child_nsuri : '']}">] . htescape ($child->tag_name) .
256 '</code>'; ## ISSUE: case
257
258 if ($child->has_attributes) {
259 $r .= '<ul class="attributes">';
260 for my $attr (sort {$a->[0] cmp $b->[0]} map { [$_->name, $_->value, $_->namespace_uri, 'node-'.refaddr $_] }
261 @{$child->attributes}) {
262 $r .= qq[<li id="$attr->[3]" class="tree-attribute"><code title="@{[defined $_->[2] ? $_->[2] : '']}">] . htescape ($attr->[0]) . '</code> = '; ## ISSUE: case?
263 $r .= '<q>' . htescape ($attr->[1]) . '</q></li>'; ## TODO: children
264 }
265 $r .= '</ul>';
266 }
267
268 if ($node->has_child_nodes) {
269 $r .= '<ol class="children">';
270 unshift @node, @{$child->child_nodes}, '</ol>';
271 }
272 } elsif ($nt == $child->TEXT_NODE) {
273 $r .= qq'<li id="$node_id" class="tree-text"><q lang="">' . htescape ($child->data) . '</q></li>';
274 } elsif ($nt == $child->CDATA_SECTION_NODE) {
275 $r .= qq'<li id="$node_id" class="tree-cdata"><code>&lt;[CDATA[</code><q lang="">' . htescape ($child->data) . '</q><code>]]&gt;</code></li>';
276 } elsif ($nt == $child->COMMENT_NODE) {
277 $r .= qq'<li id="$node_id" class="tree-comment"><code>&lt;!--</code><q lang="">' . htescape ($child->data) . '</q><code>--&gt;</code></li>';
278 } elsif ($nt == $child->DOCUMENT_NODE) {
279 $r .= qq'<li id="$node_id" class="tree-document">Document</li>';
280 if ($child->has_child_nodes) {
281 $r .= '<ol>';
282 unshift @node, @{$child->child_nodes}, '</ol>';
283 }
284 } elsif ($nt == $child->DOCUMENT_TYPE_NODE) {
285 $r .= qq'<li id="$node_id" class="tree-doctype"><code>&lt;!DOCTYPE&gt;</code><ul>';
286 $r .= '<li class="tree-doctype-name">Name = <q>@{[htescape ($child->name)]}</q></li>';
287 $r .= '<li class="tree-doctype-publicid">Public identifier = <q>@{[htescape ($child->public_id)]}</q></li>';
288 $r .= '<li class="tree-doctype-systemid">System identifier = <q>@{[htescape ($child->system_id)]}</q></li>';
289 $r .= '</ul></li>';
290 } elsif ($nt == $child->PROCESSING_INSTRUCTION_NODE) {
291 $r .= qq'<li id="$node_id" class="tree-id"><code>&lt;?@{[htescape ($child->target)]}</code> <q>@{[htescape ($child->data)]}</q><code>?&gt;</code></li>';
292 } else {
293 $r .= qq'<li id="$node_id" class="tree-unknown">@{[$child->node_type]} @{[htescape ($child->node_name)]}</li>'; # error
294 }
295 }
296
297 $r .= '</ol>';
298 print STDOUT $r;
299 } # print_document_tree
300
301 sub get_node_path ($) {
302 my $node = shift;
303 my @r;
304 while (defined $node) {
305 my $rs;
306 if ($node->node_type == 1) {
307 $rs = $node->manakai_local_name;
308 $node = $node->parent_node;
309 } elsif ($node->node_type == 2) {
310 $rs = '@' . $node->manakai_local_name;
311 $node = $node->owner_element;
312 } elsif ($node->node_type == 3) {
313 $rs = '"' . $node->data . '"';
314 $node = $node->parent_node;
315 } elsif ($node->node_type == 9) {
316 $rs = '';
317 $node = $node->parent_node;
318 } else {
319 $rs = '#' . $node->node_type;
320 $node = $node->parent_node;
321 }
322 unshift @r, $rs;
323 }
324 return join '/', @r;
325 } # get_node_path
326
327 =head1 AUTHOR
328
329 Wakaba <w@suika.fam.cx>.
330
331 =head1 LICENSE
332
333 Copyright 2007 Wakaba <w@suika.fam.cx>
334
335 This library is free software; you can redistribute it
336 and/or modify it under the same terms as Perl itself.
337
338 =cut
339
340 ## $Date: 2007/06/27 13:30:15 $

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24