/[suikacvs]/test/html-whatpm/table.cgi
Suika

Contents of /test/html-whatpm/table.cgi

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.4 - (show annotations) (download)
Mon Jul 16 10:55:11 2007 UTC (16 years, 10 months ago) by wakaba
Branch: MAIN
Changes since 1.3: +2 -1 lines
++ ChangeLog	16 Jul 2007 10:55:08 -0000
	* cc.cgi (table stuff): Set |is_header| property
	of table cells explicitly since otherwise newer JSON.pm
	generates broken output.
	(get_text): Return the reduced type name as well.  Use
	it as fragment of detail document.

	* error-description-source.xml: More error descriptions
	are added.

	* mkdescription.pl: Remove |catalog| element from
	the result description document.

	* table.cgi: Set |is_header| property
        of table cells explicitly since otherwise newer JSON.pm
        generates broken output.

2007-07-16  Wakaba  <wakaba@suika.fam.cx>

1 #!/usr/bin/perl
2 use strict;
3
4 use lib qw[/home/httpd/html/www/markup/html/whatpm
5 /home/wakaba/public_html/-temp/wiki/lib];
6 use CGI::Carp qw[fatalsToBrowser];
7
8 use SuikaWiki::Input::HTTP; ## TODO: Use some better CGI module
9
10 my $http = SuikaWiki::Input::HTTP->new;
11
12 ## TODO: _charset_
13
14 my $mode = $http->meta_variable ('PATH_INFO');
15 ## TODO: decode unreserved characters
16
17 if ($mode eq '/table') {
18 require Encode;
19 require Whatpm::HTML;
20 require Whatpm::NanoDOM;
21
22 my $s = $http->parameter ('s');
23 if (length $s > 1000_000) {
24 print STDOUT "Status: 400 Document Too Long\nContent-Type: text/plain; charset=us-ascii\n\nToo long";
25 exit;
26 }
27
28 $s = Encode::decode ('utf-8', $s);
29 my $doc = Whatpm::HTML->parse_string
30 ($s => Whatpm::NanoDOM::Document->new);
31
32 my @table_el;
33 my @node = @{$doc->child_nodes};
34 while (@node) {
35 my $node = shift @node;
36 if ($node->node_type == 1) {
37 if ($node->namespace_uri eq q<http://www.w3.org/1999/xhtml> and
38 $node->manakai_local_name eq 'table') {
39 push @table_el, $node;
40 }
41 }
42 push @node, @{$node->child_nodes};
43 }
44
45 print STDOUT "Content-Type: text/html; charset=utf-8\n\n";
46
47 use JSON;
48 require Whatpm::HTMLTable;
49
50 print STDOUT '<!DOCTYPE html>
51 <html lang="en">
52 <head>
53 <title>HTML5 Table Structure Viewer</title>
54 <!--[if IE]><script type="text/javascript" src="../excanvas.js"></script><![endif]-->
55 <script src="../table-script.js" type="text/javascript"></script>
56 </head>
57 <body>
58 <noscript><p>How great if there were no script at all!</p></noscript>
59 ';
60
61 my $i = 0;
62 for my $table_el (@table_el) {
63 $i++; print STDOUT "<h1>Table $i</h1>\n";
64
65 my $table = Whatpm::HTMLTable->form_table ($table_el);
66
67 for (@{$table->{column_group}}, @{$table->{column}}, $table->{caption}) {
68 next unless $_;
69 delete $_->{element};
70 }
71
72 for (@{$table->{row_group}}) {
73 next unless $_;
74 next unless $_->{element};
75 $_->{type} = $_->{element}->manakai_local_name;
76 delete $_->{element};
77 }
78
79 for (@{$table->{cell}}) {
80 next unless $_;
81 for (@{$_}) {
82 next unless $_;
83 for (@$_) {
84 delete $_->{element};
85 $_->{is_header} = $_->{is_header} ? 1 : 0;
86 }
87 }
88 }
89
90 print STDOUT '<script type="text/javascript">
91 tableToCanvas (
92 ';
93 print STDOUT objToJson ($table);
94 print STDOUT ', document.body);
95 </script>';
96 }
97
98 print STDOUT '</body></html>';
99 } else {
100 print STDOUT "Status: 404 Not Found\nContent-Type: text/plain; charset=us-ascii\n\n404";
101 }
102
103 exit;
104
105 =head1 AUTHOR
106
107 Wakaba <w@suika.fam.cx>.
108
109 =head1 LICENSE
110
111 Copyright 2007 Wakaba <w@suika.fam.cx>
112
113 This library is free software; you can redistribute it
114 and/or modify it under the same terms as Perl itself.
115
116 =cut
117
118 ## $Date: 2007/06/30 08:26:08 $

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24