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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.18 by wakaba, Sun Sep 2 08:40:49 2007 UTC revision 1.55 by wakaba, Mon Jul 21 05:24:32 2008 UTC
# Line 1  Line 1 
1  #!/usr/bin/perl  #!/usr/bin/perl
2  use strict;  use strict;
3    use utf8;
4    
5  use lib qw[/home/httpd/html/www/markup/html/whatpm  use lib qw[/home/httpd/html/www/markup/html/whatpm
6             /home/wakaba/work/manakai2/lib];             /home/wakaba/work/manakai2/lib];
7  use CGI::Carp qw[fatalsToBrowser];  use CGI::Carp qw[fatalsToBrowser];
8  use Scalar::Util qw[refaddr];  use Scalar::Util qw[refaddr];
 use Time::HiRes qw/time/;  
9    
10  sub htescape ($) {    require WebHACC::Input;
11    my $s = $_[0];    require WebHACC::Result;
12    $s =~ s/&/&/g;    require WebHACC::Output;
   $s =~ s/</&lt;/g;  
   $s =~ s/>/&gt;/g;  
   $s =~ s/"/&quot;/g;  
   $s =~ s{([\x00-\x09\x0B-\x1F\x7F-\xA0\x{FEFF}\x{FFFC}-\x{FFFF}])}{  
     sprintf '<var>U+%04X</var>', ord $1;  
   }ge;  
   return $s;  
 } # htescape  
13    
14    my $out;
15    
16      require Message::DOM::DOMImplementation;
17      my $dom = Message::DOM::DOMImplementation->new;
18    {
19    use Message::CGI::HTTP;    use Message::CGI::HTTP;
20    my $http = Message::CGI::HTTP->new;    my $http = Message::CGI::HTTP->new;
21    
# Line 26  sub htescape ($) { Line 23  sub htescape ($) {
23      print STDOUT "Status: 404 Not Found\nContent-Type: text/plain; charset=us-ascii\n\n400";      print STDOUT "Status: 404 Not Found\nContent-Type: text/plain; charset=us-ascii\n\n400";
24      exit;      exit;
25    }    }
26      
   binmode STDOUT, ':utf8';  
   $| = 1;  
   
   require Message::DOM::DOMImplementation;  
   my $dom = Message::DOM::DOMImplementation->new;  
   
27    load_text_catalog ('en'); ## TODO: conneg    load_text_catalog ('en'); ## TODO: conneg
28    
29    my @nav;    $out = WebHACC::Output->new;
30    print STDOUT qq[Content-Type: text/html; charset=utf-8    $out->handle (*STDOUT);
31      $out->set_utf8;
32      $out->set_flush;
33      $out->html (qq[Content-Type: text/html; charset=utf-8
34    
35  <!DOCTYPE html>  <!DOCTYPE html>
36  <html lang="en">  <html lang="en">
# Line 47  sub htescape ($) { Line 41  sub htescape ($) {
41  <body>  <body>
42  <h1><a href="../cc-interface">Web Document Conformance Checker</a>  <h1><a href="../cc-interface">Web Document Conformance Checker</a>
43  (<em>beta</em>)</h1>  (<em>beta</em>)</h1>
44  ];  ]);
45    
   $| = 0;  
46    my $input = get_input_document ($http, $dom);    my $input = get_input_document ($http, $dom);
   my $inner_html_element = $http->get_parameter ('e');  
   my $char_length = 0;  
   my %time;  
   
   print qq[  
 <div id="document-info" class="section">  
 <dl>  
 <dt>Request URI</dt>  
     <dd><code class="URI" lang="">&lt;<a href="@{[htescape $input->{request_uri}]}">@{[htescape $input->{request_uri}]}</a>&gt;</code></dd>  
 <dt>Document URI</dt>  
     <dd><code class="URI" lang="">&lt;<a href="@{[htescape $input->{uri}]}">@{[htescape $input->{uri}]}</a>&gt;</code></dd>  
 ]; # no </dl> yet  
   push @nav, ['#document-info' => 'Information'];  
   
 if (defined $input->{s}) {  
   $char_length = length $input->{s};  
   
   print STDOUT qq[  
 <dt>Base URI</dt>  
     <dd><code class="URI" lang="">&lt;<a href="@{[htescape $input->{base_uri}]}">@{[htescape $input->{base_uri}]}</a>&gt;</code></dd>  
 <dt>Internet Media Type</dt>  
     <dd><code class="MIME" lang="en">@{[htescape $input->{media_type}]}</code>  
     @{[$input->{media_type_overridden} ? '<em>(overridden)</em>' : '']}</dd>  
 <dt>Character Encoding</dt>  
     <dd>@{[defined $input->{charset} ? '<code class="charset" lang="en">'.htescape ($input->{charset}).'</code>' : '(none)']}  
     @{[$input->{charset_overridden} ? '<em>(overridden)</em>' : '']}</dd>  
 <dt>Length</dt>  
     <dd>$char_length byte@{[$char_length == 1 ? '' : 's']}</dd>  
 </dl>  
 </div>  
 ];  
47    
48    print_http_header_section ($input);    $out->input ($input);
49      $out->unset_flush;
50    
51    my $doc;    my $result = WebHACC::Result->new;
52    my $el;    $result->output ($out);
53      $result->{conforming_min} = 1;
54      $result->{conforming_max} = 1;
55    
56    if ($input->{media_type} eq 'text/html') {    $out->html ('<script src="../cc-script.js"></script>');
     ($doc, $el) = print_syntax_error_html_section ($input);  
     print_source_string_section (\($input->{s}), $input->{charset});  
   } elsif ({  
             'text/xml' => 1,  
             'application/atom+xml' => 1,  
             'application/rss+xml' => 1,  
             'application/svg+xml' => 1,  
             'application/xhtml+xml' => 1,  
             'application/xml' => 1,  
            }->{$input->{media_type}}) {  
     ($doc, $el) = print_syntax_error_xml_section ($input);  
     print_source_string_section (\($input->{s}), $doc->input_encoding);  
   } else {  
     ## TODO: Change HTTP status code??  
     print_result_unknown_type_section ($input);  
   }  
   
   if (defined $doc or defined $el) {  
     print_structure_dump_section ($doc, $el);  
     my $elements = print_structure_error_section ($doc, $el);  
     print_table_section ($elements->{table}) if @{$elements->{table}};  
     print_id_section ($elements->{id}) if keys %{$elements->{id}};  
     print_term_section ($elements->{term}) if keys %{$elements->{term}};  
     print_class_section ($elements->{class}) if keys %{$elements->{class}};  
   }  
57    
58    ## TODO: Show result    check_and_print ($input => $result => $out);
 } else {  
   print STDOUT qq[</dl></div>];  
   print_result_input_error_section ($input);  
 }  
   
   print STDOUT qq[  
 <ul class="navigation" id="nav-items">  
 ];  
   for (@nav) {  
     print STDOUT qq[<li><a href="$_->[0]">$_->[1]</a></li>];  
   }  
   print STDOUT qq[  
 </ul>  
 </body>  
 </html>  
 ];  
   
   for (qw/decode parse parse_xml check/) {  
     next unless defined $time{$_};  
     open my $file, '>>', ".cc-$_.txt" or die ".cc-$_.txt: $!";  
     print $file $char_length, "\t", $time{$_}, "\n";  
   }  
   
 exit;  
   
 sub print_http_header_section ($) {  
   my $input = shift;  
   return unless defined $input->{header_status_code} or  
       defined $input->{header_status_text} or  
       @{$input->{header_field}};  
59        
60    push @nav, ['#source-header' => 'HTTP Header'];    $result->generate_result_section;
   print STDOUT qq[<div id="source-header" class="section">  
 <h2>HTTP Header</h2>  
   
 <p><strong>Note</strong>: Due to the limitation of the  
 network library in use, the content of this section might  
 not be the real header.</p>  
61    
62  <table><tbody>    $out->nav_list;
 ];  
63    
64    if (defined $input->{header_status_code}) {    exit;
65      print STDOUT qq[<tr><th scope="row">Status code</th>];  }
     print STDOUT qq[<td><code>@{[htescape ($input->{header_status_code})]}</code></td></tr>];  
   }  
   if (defined $input->{header_status_text}) {  
     print STDOUT qq[<tr><th scope="row">Status text</th>];  
     print STDOUT qq[<td><code>@{[htescape ($input->{header_status_text})]}</code></td></tr>];  
   }  
     
   for (@{$input->{header_field}}) {  
     print STDOUT qq[<tr><th scope="row"><code>@{[htescape ($_->[0])]}</code></th>];  
     print STDOUT qq[<td><code>@{[htescape ($_->[1])]}</code></td></tr>];  
   }  
   
   print STDOUT qq[</tbody></table></div>];  
 } # print_http_header_section  
   
 sub print_syntax_error_html_section ($) {  
   my $input = shift;  
     
   require Encode;  
   require Whatpm::HTML;  
   
   $input->{charset} ||= 'ISO-8859-1'; ## TODO: for now.  
     
   my $time1 = time;  
   my $t = Encode::decode ($input->{charset}, $input->{s});  
   $time{decode} = time - $time1;  
   
   print STDOUT qq[  
 <div id="parse-errors" class="section">  
 <h2>Parse Errors</h2>  
   
 <dl>];  
   push @nav, ['#parse-errors' => 'Parse Error'];  
   
   my $onerror = sub {  
     my (%opt) = @_;  
     my ($type, $cls, $msg) = get_text ($opt{type}, $opt{level});  
     if ($opt{column} > 0) {  
       print STDOUT qq[<dt class="$cls"><a href="#line-$opt{line}">Line $opt{line}</a> column $opt{column}</dt>\n];  
     } else {  
       $opt{line} = $opt{line} - 1 || 1;  
       print STDOUT qq[<dt class="$cls"><a href="#line-$opt{line}">Line $opt{line}</a></dt>\n];  
     }  
     $type =~ tr/ /-/;  
     $type =~ s/\|/%7C/g;  
     $msg .= qq[ [<a href="../error-description#@{[htescape ($type)]}">Description</a>]];  
     print STDOUT qq[<dd class="$cls">$msg</dd>\n];  
   };  
   
   my $doc = $dom->create_document;  
   my $el;  
   $time1 = time;  
   if (defined $inner_html_element and length $inner_html_element) {  
     $el = $doc->create_element_ns  
         ('http://www.w3.org/1999/xhtml', [undef, $inner_html_element]);  
     Whatpm::HTML->set_inner_html ($el, $t, $onerror);  
   } else {  
     Whatpm::HTML->parse_string ($t => $doc, $onerror);  
   }  
   $time{parse} = time - $time1;  
   
   print STDOUT qq[</dl></div>];  
   
   return ($doc, $el);  
 } # print_syntax_error_html_section  
   
 sub print_syntax_error_xml_section ($) {  
   my $input = shift;  
     
   require Message::DOM::XMLParserTemp;  
     
   print STDOUT qq[  
 <div id="parse-errors" class="section">  
 <h2>Parse Errors</h2>  
   
 <dl>];  
   push @nav, ['#parse-errors' => 'Parse Error'];  
   
   my $onerror = sub {  
     my $err = shift;  
     my $line = $err->location->line_number;  
     print STDOUT qq[<dt><a href="#line-$line">Line $line</a> column ];  
     print STDOUT $err->location->column_number, "</dt><dd>";  
     print STDOUT htescape $err->text, "</dd>\n";  
     return 1;  
   };  
   
   my $time1 = time;  
   open my $fh, '<', \($input->{s});  
   my $doc = Message::DOM::XMLParserTemp->parse_byte_stream  
       ($fh => $dom, $onerror, charset => $input->{charset});  
   $time{parse_xml} = time - $time1;  
   
   print STDOUT qq[</dl></div>];  
   
   return ($doc, undef);  
 } # print_syntax_error_xml_section  
   
 sub print_source_string_section ($$) {  
   require Encode;  
   my $enc = Encode::find_encoding ($_[1]); ## TODO: charset name -> Perl name  
   return unless $enc;  
   
   my $s = \($enc->decode (${$_[0]}));  
   my $i = 1;                              
   push @nav, ['#source-string' => 'Source'];  
   print STDOUT qq[<div id="source-string" class="section">  
 <h2>Document Source</h2>  
 <ol lang="">\n];  
   if (length $$s) {  
     while ($$s =~ /\G([^\x0A]*?)\x0D?\x0A/gc) {  
       print STDOUT qq[<li id="line-$i">], htescape $1, "</li>\n";  
       $i++;  
     }  
     if ($$s =~ /\G([^\x0A]+)/gc) {  
       print STDOUT qq[<li id="line-$i">], htescape $1, "</li>\n";  
     }  
   } else {  
     print STDOUT q[<li id="line-1"></li>];  
   }  
   print STDOUT "</ol></div>";  
 } # print_input_string_section  
   
 sub print_document_tree ($) {  
   my $node = shift;  
   my $r = '<ol class="xoxo">';  
   
   my @node = ($node);  
   while (@node) {  
     my $child = shift @node;  
     unless (ref $child) {  
       $r .= $child;  
       next;  
     }  
   
     my $node_id = 'node-'.refaddr $child;  
     my $nt = $child->node_type;  
     if ($nt == $child->ELEMENT_NODE) {  
       my $child_nsuri = $child->namespace_uri;  
       $r .= qq[<li id="$node_id" class="tree-element"><code title="@{[defined $child_nsuri ? $child_nsuri : '']}">] . htescape ($child->tag_name) .  
           '</code>'; ## ISSUE: case  
   
       if ($child->has_attributes) {  
         $r .= '<ul class="attributes">';  
         for my $attr (sort {$a->[0] cmp $b->[0]} map { [$_->name, $_->value, $_->namespace_uri, 'node-'.refaddr $_] }  
                       @{$child->attributes}) {  
           $r .= qq[<li id="$attr->[3]" class="tree-attribute"><code title="@{[defined $_->[2] ? $_->[2] : '']}">] . htescape ($attr->[0]) . '</code> = '; ## ISSUE: case?  
           $r .= '<q>' . htescape ($attr->[1]) . '</q></li>'; ## TODO: children  
         }  
         $r .= '</ul>';  
       }  
   
       if ($child->has_child_nodes) {  
         $r .= '<ol class="children">';  
         unshift @node, @{$child->child_nodes}, '</ol></li>';  
       } else {  
         $r .= '</li>';  
       }  
     } elsif ($nt == $child->TEXT_NODE) {  
       $r .= qq'<li id="$node_id" class="tree-text"><q lang="">' . htescape ($child->data) . '</q></li>';  
     } elsif ($nt == $child->CDATA_SECTION_NODE) {  
       $r .= qq'<li id="$node_id" class="tree-cdata"><code>&lt;[CDATA[</code><q lang="">' . htescape ($child->data) . '</q><code>]]&gt;</code></li>';  
     } elsif ($nt == $child->COMMENT_NODE) {  
       $r .= qq'<li id="$node_id" class="tree-comment"><code>&lt;!--</code><q lang="">' . htescape ($child->data) . '</q><code>--&gt;</code></li>';  
     } elsif ($nt == $child->DOCUMENT_NODE) {  
       $r .= qq'<li id="$node_id" class="tree-document">Document';  
       $r .= qq[<ul class="attributes">];  
       $r .= qq[<li>@{[scalar get_text ('manakaiIsHTML:'.($child->manakai_is_html?1:0))]}</li>];  
       $r .= qq[<li>@{[scalar get_text ('manakaiCompatMode:'.$child->manakai_compat_mode)]}</li>];  
       unless ($child->manakai_is_html) {  
         $r .= qq[<li>XML version = <code>@{[htescape ($child->xml_version)]}</code></li>];  
         if (defined $child->xml_encoding) {  
           $r .= qq[<li>XML encoding = <code>@{[htescape ($child->xml_encoding)]}</code></li>];  
         } else {  
           $r .= qq[<li>XML encoding = (null)</li>];  
         }  
         $r .= qq[<li>XML standalone = @{[$child->xml_standalone ? 'true' : 'false']}</li>];  
       }  
       $r .= qq[</ul>];  
       if ($child->has_child_nodes) {  
         $r .= '<ol class="children">';  
         unshift @node, @{$child->child_nodes}, '</ol></li>';  
       }  
     } elsif ($nt == $child->DOCUMENT_TYPE_NODE) {  
       $r .= qq'<li id="$node_id" class="tree-doctype"><code>&lt;!DOCTYPE&gt;</code><ul class="attributes">';  
       $r .= qq[<li class="tree-doctype-name">Name = <q>@{[htescape ($child->name)]}</q></li>];  
       $r .= qq[<li class="tree-doctype-publicid">Public identifier = <q>@{[htescape ($child->public_id)]}</q></li>];  
       $r .= qq[<li class="tree-doctype-systemid">System identifier = <q>@{[htescape ($child->system_id)]}</q></li>];  
       $r .= '</ul></li>';  
     } elsif ($nt == $child->PROCESSING_INSTRUCTION_NODE) {  
       $r .= qq'<li id="$node_id" class="tree-id"><code>&lt;?@{[htescape ($child->target)]}</code> <q>@{[htescape ($child->data)]}</q><code>?&gt;</code></li>';  
     } else {  
       $r .= qq'<li id="$node_id" class="tree-unknown">@{[$child->node_type]} @{[htescape ($child->node_name)]}</li>'; # error  
     }  
   }  
   
   $r .= '</ol>';  
   print STDOUT $r;  
 } # print_document_tree  
   
 sub print_structure_dump_section ($$) {  
   my ($doc, $el) = @_;  
   
   print STDOUT qq[  
 <div id="document-tree" class="section">  
 <h2>Document Tree</h2>  
 ];  
   push @nav, ['#document-tree' => 'Tree'];  
   
   print_document_tree ($el || $doc);  
   
   print STDOUT qq[</div>];  
 } # print_structure_dump_section  
   
 sub print_structure_error_section ($$) {  
   my ($doc, $el) = @_;  
   
   print STDOUT qq[<div id="document-errors" class="section">  
 <h2>Document Errors</h2>  
66    
67  <dl>];  sub check_and_print ($$$) {
68    push @nav, ['#document-errors' => 'Document Error'];    my ($input, $result, $out) = @_;
69      my $original_input = $out->input;
70      $out->input ($input);
71    
72      $input->generate_info_section ($result);
73    
74      $input->generate_transfer_sections ($result);
75    
76      unless (defined $input->{s}) {
77        $result->{conforming_min} = 0;
78        return;
79      }
80    
81      my $checker_class = {
82        'text/cache-manifest' => 'WebHACC::Language::CacheManifest',
83        'text/css' => 'WebHACC::Language::CSS',
84        'text/html' => 'WebHACC::Language::HTML',
85        'text/x-webidl' => 'WebHACC::Language::WebIDL',
86    
87        'text/xml' => 'WebHACC::Language::XML',
88        'application/atom+xml' => 'WebHACC::Language::XML',
89        'application/rss+xml' => 'WebHACC::Language::XML',
90        'image/svg+xml' => 'WebHACC::Language::XML',
91        'application/xhtml+xml' => 'WebHACC::Language::XML',
92        'application/xml' => 'WebHACC::Language::XML',
93        ## TODO: Should we make all XML MIME Types fall
94        ## into this category?
95    
96        ## NOTE: This type has different model from normal XML types.
97        'application/rdf+xml' => 'WebHACC::Language::XML',
98      }->{$input->{media_type}} || 'WebHACC::Language::Default';
99    
100      eval qq{ require $checker_class } or die "$0: Loading $checker_class: $@";
101      my $checker = $checker_class->new;
102      $checker->input ($input);
103      $checker->output ($out);
104      $checker->result ($result);
105    
106      ## TODO: A cache manifest MUST be text/cache-manifest
107      ## TODO: WebIDL media type "text/x-webidl"
108    
109      $checker->generate_syntax_error_section;
110      $checker->generate_source_string_section;
111    
112      my @subdoc;
113      $checker->onsubdoc (sub {
114        push @subdoc, shift;
115      });
116    
117      $checker->generate_structure_dump_section;
118      $checker->generate_structure_error_section;
119      $checker->generate_additional_sections;
120    
121    require Whatpm::ContentChecker;  =pod
   my $onerror = sub {  
     my %opt = @_;  
     my ($type, $cls, $msg) = get_text ($opt{type}, $opt{level}, $opt{node});  
     $type =~ tr/ /-/;  
     $type =~ s/\|/%7C/g;  
     $msg .= qq[ [<a href="../error-description#@{[htescape ($type)]}">Description</a>]];  
     print STDOUT qq[<dt class="$cls">] . get_node_link ($opt{node}) .  
         qq[</dt>\n<dd class="$cls">], $msg, "</dd>\n";  
   };  
   
   my $elements;  
   my $time1 = time;  
   if ($el) {  
     $elements = Whatpm::ContentChecker->check_element ($el, $onerror);  
   } else {  
     $elements = Whatpm::ContentChecker->check_document ($doc, $onerror);  
   }  
   $time{check} = time - $time1;  
122    
123    print STDOUT qq[</dl></div>];    if (defined $doc or defined $el) {
124    
125    return $elements;      print_table_section ($input, $elements->{table}) if @{$elements->{table}};
126  } # print_structure_error_section      print_listing_section ({
127          id => 'identifiers', label => 'IDs', heading => 'Identifiers',
128        }, $input, $elements->{id}) if keys %{$elements->{id}};
129        print_listing_section ({
130          id => 'terms', label => 'Terms', heading => 'Terms',
131        }, $input, $elements->{term}) if keys %{$elements->{term}};
132        print_listing_section ({
133          id => 'classes', label => 'Classes', heading => 'Classes',
134        }, $input, $elements->{class}) if keys %{$elements->{class}};
135      
136        print_rdf_section ($input, $elements->{rdf}) if @{$elements->{rdf}};
137      }
138    
139    =cut
140    
141      my $id_prefix = 0;
142      for my $_subinput (@subdoc) {
143        my $subinput = WebHACC::Input::Subdocument->new (++$id_prefix);
144        $subinput->{$_} = $_subinput->{$_} for keys %$_subinput;
145        $subinput->{base_uri} = $subinput->{container_node}->base_uri
146            unless defined $subinput->{base_uri};
147        $subinput->{parent_input} = $input;
148    
149        $subinput->start_section ($result);
150        check_and_print ($subinput => $result => $out);
151        $subinput->end_section ($result);
152      }
153    
154      $out->input ($original_input);
155    } # check_and_print
156    
157  sub print_table_section ($) {  sub print_table_section ($$) {
158    my $tables = shift;    my ($input, $tables) = @_;
159        
160    push @nav, ['#tables' => 'Tables'];  #  push @nav, [qq[#$input->{id_prefix}tables] => 'Tables']
161    #      unless $input->{nested};
162    print STDOUT qq[    print STDOUT qq[
163  <div id="tables" class="section">  <div id="$input->{id_prefix}tables" class="section">
164  <h2>Tables</h2>  <h2>Tables</h2>
165    
166  <!--[if IE]><script type="text/javascript" src="../excanvas.js"></script><![endif]-->  <!--[if IE]><script type="text/javascript" src="../excanvas.js"></script><![endif]-->
# Line 426  sub print_table_section ($) { Line 173  sub print_table_section ($) {
173    require JSON;    require JSON;
174        
175    my $i = 0;    my $i = 0;
176    for my $table_el (@$tables) {    for my $table (@$tables) {
177      $i++;      $i++;
178      print STDOUT qq[<div class="section" id="table-$i"><h3>] .      print STDOUT qq[<div class="section" id="$input->{id_prefix}table-$i"><h3>] .
179          get_node_link ($table_el) . q[</h3>];          get_node_link ($input, $table->{element}) . q[</h3>];
180    
181      ## TODO: Make |ContentChecker| return |form_table| result      delete $table->{element};
182      ## so that this script don't have to run the algorithm twice.  
183      my $table = Whatpm::HTMLTable->form_table ($table_el);      for (@{$table->{column_group}}, @{$table->{column}}, $table->{caption},
184                 @{$table->{row}}) {
     for (@{$table->{column_group}}, @{$table->{column}}, $table->{caption}) {  
185        next unless $_;        next unless $_;
186        delete $_->{element};        delete $_->{element};
187      }      }
# Line 461  sub print_table_section ($) { Line 207  sub print_table_section ($) {
207                    
208      print STDOUT '</div><script type="text/javascript">tableToCanvas (';      print STDOUT '</div><script type="text/javascript">tableToCanvas (';
209      print STDOUT JSON::objToJson ($table);      print STDOUT JSON::objToJson ($table);
210      print STDOUT qq[, document.getElementById ('table-$i'));</script>];      print STDOUT qq[, document.getElementById ('$input->{id_prefix}table-$i')];
211        print STDOUT qq[, '$input->{id_prefix}');</script>];
212    }    }
213        
214    print STDOUT qq[</div>];    print STDOUT qq[</div>];
215  } # print_table_section  } # print_table_section
216    
217  sub print_id_section ($) {  sub print_listing_section ($$$) {
218    my $ids = shift;    my ($opt, $input, $ids) = @_;
219        
220    push @nav, ['#identifiers' => 'IDs'];  #  push @nav, ['#' . $input->{id_prefix} . $opt->{id} => $opt->{label}]
221    #      unless $input->{nested};
222    print STDOUT qq[    print STDOUT qq[
223  <div id="identifiers" class="section">  <div id="$input->{id_prefix}$opt->{id}" class="section">
224  <h2>Identifiers</h2>  <h2>$opt->{heading}</h2>
225    
226  <dl>  <dl>
227  ];  ];
228    for my $id (sort {$a cmp $b} keys %$ids) {    for my $id (sort {$a cmp $b} keys %$ids) {
229      print STDOUT qq[<dt><code>@{[htescape $id]}</code></dt>];      print STDOUT qq[<dt><code>@{[htescape $id]}</code></dt>];
230      for (@{$ids->{$id}}) {      for (@{$ids->{$id}}) {
231        print STDOUT qq[<dd>].get_node_link ($_).qq[</dd>];        print STDOUT qq[<dd>].get_node_link ($input, $_).qq[</dd>];
232      }      }
233    }    }
234    print STDOUT qq[</dl></div>];    print STDOUT qq[</dl></div>];
235  } # print_id_section  } # print_listing_section
236    
 sub print_term_section ($) {  
   my $terms = shift;  
     
   push @nav, ['#terms' => 'Terms'];  
   print STDOUT qq[  
 <div id="terms" class="section">  
 <h2>Terms</h2>  
   
 <dl>  
 ];  
   for my $term (sort {$a cmp $b} keys %$terms) {  
     print STDOUT qq[<dt>@{[htescape $term]}</dt>];  
     for (@{$terms->{$term}}) {  
       print STDOUT qq[<dd>].get_node_link ($_).qq[</dd>];  
     }  
   }  
   print STDOUT qq[</dl></div>];  
 } # print_term_section  
237    
238  sub print_class_section ($) {  sub print_rdf_section ($$$) {
239    my $classes = shift;    my ($input, $rdfs) = @_;
240        
241    push @nav, ['#classes' => 'Classes'];  #  push @nav, ['#' . $input->{id_prefix} . 'rdf' => 'RDF']
242    #      unless $input->{nested};
243    print STDOUT qq[    print STDOUT qq[
244  <div id="classes" class="section">  <div id="$input->{id_prefix}rdf" class="section">
245  <h2>Classes</h2>  <h2>RDF Triples</h2>
246    
247  <dl>  <dl>];
248  ];    my $i = 0;
249    for my $class (sort {$a cmp $b} keys %$classes) {    for my $rdf (@$rdfs) {
250      print STDOUT qq[<dt><code>@{[htescape $class]}</code></dt>];      print STDOUT qq[<dt id="$input->{id_prefix}rdf-@{[$i++]}">];
251      for (@{$classes->{$class}}) {      print STDOUT get_node_link ($input, $rdf->[0]);
252        print STDOUT qq[<dd>].get_node_link ($_).qq[</dd>];      print STDOUT qq[<dd><dl>];
253        for my $triple (@{$rdf->[1]}) {
254          print STDOUT '<dt>' . get_node_link ($input, $triple->[0]) . '<dd>';
255          print STDOUT get_rdf_resource_html ($triple->[1]);
256          print STDOUT ' ';
257          print STDOUT get_rdf_resource_html ($triple->[2]);
258          print STDOUT ' ';
259          print STDOUT get_rdf_resource_html ($triple->[3]);
260      }      }
261        print STDOUT qq[</dl>];
262    }    }
263    print STDOUT qq[</dl></div>];    print STDOUT qq[</dl></div>];
264  } # print_class_section  } # print_rdf_section
   
 sub print_result_unknown_type_section ($) {  
   my $input = shift;  
   
   print STDOUT qq[  
 <div id="result-summary" class="section">  
 <p><em>Media type <code class="MIME" lang="en">@{[htescape $input->{media_type}]}</code> is not supported!</em></p>  
 </div>  
 ];  
   push @nav, ['#result-summary' => 'Result'];  
 } # print_result_unknown_type_section  
265    
266  sub print_result_input_error_section ($) {  sub get_rdf_resource_html ($) {
267    my $input = shift;    my $resource = shift;
268    print STDOUT qq[<div class="section" id="result-summary">    if (defined $resource->{uri}) {
269  <p><em><strong>Input Error</strong>: @{[htescape ($input->{error_status_text})]}</em></p>      my $euri = htescape ($resource->{uri});
270  </div>];      return '<code class=uri>&lt;<a href="' . $euri . '">' . $euri .
271    push @nav, ['#result-summary' => 'Result'];          '</a>></code>';
272  } # print_Result_input_error_section    } elsif (defined $resource->{bnodeid}) {
273        return htescape ('_:' . $resource->{bnodeid});
274  sub get_node_path ($) {    } elsif ($resource->{nodes}) {
275    my $node = shift;      return '(rdf:XMLLiteral)';
276    my @r;    } elsif (defined $resource->{value}) {
277    while (defined $node) {      my $elang = htescape (defined $resource->{language}
278      my $rs;                                ? $resource->{language} : '');
279      if ($node->node_type == 1) {      my $r = qq[<q lang="$elang">] . htescape ($resource->{value}) . '</q>';
280        $rs = $node->manakai_local_name;      if (defined $resource->{datatype}) {
281        $node = $node->parent_node;        my $euri = htescape ($resource->{datatype});
282      } elsif ($node->node_type == 2) {        $r .= '^^<code class=uri>&lt;<a href="' . $euri . '">' . $euri .
283        $rs = '@' . $node->manakai_local_name;            '</a>></code>';
284        $node = $node->owner_element;      } elsif (length $resource->{language}) {
285      } elsif ($node->node_type == 3) {        $r .= '@' . htescape ($resource->{language});
       $rs = '"' . $node->data . '"';  
       $node = $node->parent_node;  
     } elsif ($node->node_type == 9) {  
       @r = ('') unless @r;  
       $rs = '';  
       $node = $node->parent_node;  
     } else {  
       $rs = '#' . $node->node_type;  
       $node = $node->parent_node;  
286      }      }
287      unshift @r, $rs;      return $r;
288      } else {
289        return '??';
290    }    }
291    return join '/', @r;  } # get_rdf_resource_html
 } # get_node_path  
   
 sub get_node_link ($) {  
   return qq[<a href="#node-@{[refaddr $_[0]]}">] .  
       htescape (get_node_path ($_[0])) . qq[</a>];  
 } # get_node_link  
292    
293  {  {
294    my $Msg = {};    my $Msg = {};
295    
296  sub load_text_catalog ($) {  sub load_text_catalog ($) {
297    #  my $self = shift;
298    my $lang = shift; # MUST be a canonical lang name    my $lang = shift; # MUST be a canonical lang name
299    open my $file, '<', "cc-msg.$lang.txt" or die "$0: cc-msg.$lang.txt: $!";    open my $file, '<:utf8', "cc-msg.$lang.txt"
300          or die "$0: cc-msg.$lang.txt: $!";
301    while (<$file>) {    while (<$file>) {
302      if (s/^([^;]+);([^;]*);//) {      if (s/^([^;]+);([^;]*);//) {
303        my ($type, $cls, $msg) = ($1, $2, $_);        my ($type, $cls, $msg) = ($1, $2, $_);
# Line 590  sub load_text_catalog ($) { Line 307  sub load_text_catalog ($) {
307    }    }
308  } # load_text_catalog  } # load_text_catalog
309    
310  sub get_text ($) {  sub get_text ($;$$) {
311    #  my $self = shift;
312    my ($type, $level, $node) = @_;    my ($type, $level, $node) = @_;
313    $type = $level . ':' . $type if defined $level;    $type = $level . ':' . $type if defined $level;
314      $level = 'm' unless defined $level;
315    my @arg;    my @arg;
316    {    {
317      if (defined $Msg->{$type}) {      if (defined $Msg->{$type}) {
318        my $msg = $Msg->{$type}->[1];        my $msg = $Msg->{$type}->[1];
319        $msg =~ s{<var>\$([0-9]+)</var>}{        $msg =~ s{<var>\$([0-9]+)</var>}{
320          defined $arg[$1] ? htescape ($arg[$1]) : '(undef)';          defined $arg[$1] ? ($arg[$1]) : '(undef)';
321        }ge;        }ge;                 ##BUG: ^ must be escaped
322        $msg =~ s{<var>{\@([A-Za-z0-9:_.-]+)}</var>}{        $msg =~ s{<var>{\@([A-Za-z0-9:_.-]+)}</var>}{
323          UNIVERSAL::can ($node, 'get_attribute_ns')          UNIVERSAL::can ($node, 'get_attribute_ns')
324              ? htescape ($node->get_attribute_ns (undef, $1)) : ''              ?  ($node->get_attribute_ns (undef, $1)) : ''
325        }ge;        }ge; ## BUG: ^ must be escaped
326        $msg =~ s{<var>{\@}</var>}{        $msg =~ s{<var>{\@}</var>}{        ## BUG: v must be escaped
327          UNIVERSAL::can ($node, 'value') ? htescape ($node->value) : ''          UNIVERSAL::can ($node, 'value') ? ($node->value) : ''
328        }ge;        }ge;
329        $msg =~ s{<var>{local-name}</var>}{        $msg =~ s{<var>{local-name}</var>}{
330          UNIVERSAL::can ($node, 'manakai_local_name')          UNIVERSAL::can ($node, 'manakai_local_name')
331            ? htescape ($node->manakai_local_name) : ''            ? ($node->manakai_local_name) : ''
332        }ge;        }ge;  ## BUG: ^ must be escaped
333        $msg =~ s{<var>{element-local-name}</var>}{        $msg =~ s{<var>{element-local-name}</var>}{
334          (UNIVERSAL::can ($node, 'owner_element') and          (UNIVERSAL::can ($node, 'owner_element') and
335           $node->owner_element)           $node->owner_element)
336            ? htescape ($node->owner_element->manakai_local_name)            ?  ($node->owner_element->manakai_local_name)
337            : ''            : '' ## BUG: ^ must be escaped
338        }ge;        }ge;
339        return ($type, $Msg->{$type}->[0], $msg);        return ($type, 'level-' . $level . ' ' . $Msg->{$type}->[0], $msg);
340      } elsif ($type =~ s/:([^:]*)$//) {      } elsif ($type =~ s/:([^:]*)$//) {
341        unshift @arg, $1;        unshift @arg, $1;
342        redo;        redo;
343      }      }
344    }    }
345    return ($type, '', htescape ($_[0]));    return ($type, 'level-'.$level, ($_[0]));
346                                     ## BUG: ^ must be escaped
347  } # get_text  } # get_text
348    
349  }  }
# Line 631  sub get_text ($) { Line 351  sub get_text ($) {
351  sub get_input_document ($$) {  sub get_input_document ($$) {
352    my ($http, $dom) = @_;    my ($http, $dom) = @_;
353    
354    my $request_uri = $http->get_parameter ('uri');    require Encode;
355    my $r = {};    my $request_uri = Encode::decode ('utf-8', $http->get_parameter ('uri'));
356      my $r = WebHACC::Input->new;
357    if (defined $request_uri and length $request_uri) {    if (defined $request_uri and length $request_uri) {
358      my $uri = $dom->create_uri_reference ($request_uri);      my $uri = $dom->create_uri_reference ($request_uri);
359      unless ({      unless ({
360               http => 1,               http => 1,
361              }->{lc $uri->uri_scheme}) {              }->{lc $uri->uri_scheme}) {
362        return {uri => $request_uri, request_uri => $request_uri,        $r = WebHACC::Input::Error->new;
363                error_status_text => 'URI scheme not allowed'};        $r->{uri} = $request_uri;
364          $r->{request_uri} = $request_uri;
365          $r->{error_status_text} = 'URL scheme not allowed';
366      }      }
367    
368      require Message::Util::HostPermit;      require Message::Util::HostPermit;
# Line 666  Deny ipv6=0::0/0 Line 389  Deny ipv6=0::0/0
389  Allow host=*  Allow host=*
390  EOH  EOH
391      unless ($host_permit->check ($uri->uri_host, $uri->uri_port || 80)) {      unless ($host_permit->check ($uri->uri_host, $uri->uri_port || 80)) {
392        return {uri => $request_uri, request_uri => $request_uri,        my $r = WebHACC::Input::Error->new;
393                error_status_text => 'Connection to the host is forbidden'};        $r->{uri} = $request_uri;
394          $r->{request_uri} = $request_uri;
395          $r->{error_status_text} = 'Connection to the host is forbidden';
396          return $r;
397      }      }
398    
399      require LWP::UserAgent;      require LWP::UserAgent;
# Line 679  EOH Line 405  EOH
405      $ua->protocols_allowed ([qw/http/]);      $ua->protocols_allowed ([qw/http/]);
406      $ua->max_size (1000_000);      $ua->max_size (1000_000);
407      my $req = HTTP::Request->new (GET => $request_uri);      my $req = HTTP::Request->new (GET => $request_uri);
408        $req->header ('Accept-Encoding' => 'identity, *; q=0');
409      my $res = $ua->request ($req);      my $res = $ua->request ($req);
410      ## TODO: 401 sets |is_success| true.      ## TODO: 401 sets |is_success| true.
411      if ($res->is_success or $http->get_parameter ('error-page')) {      if ($res->is_success or $http->get_parameter ('error-page')) {
# Line 688  EOH Line 415  EOH
415    
416        ## TODO: More strict parsing...        ## TODO: More strict parsing...
417        my $ct = $res->header ('Content-Type');        my $ct = $res->header ('Content-Type');
418        if (defined $ct and $ct =~ m#^([0-9A-Za-z._+-]+/[0-9A-Za-z._+-]+)#) {        if (defined $ct and $ct =~ /;\s*charset\s*=\s*"?([^\s;"]+)"?/i) {
         $r->{media_type} = lc $1;  
       }  
       if (defined $ct and $ct =~ /;\s*charset\s*=\s*"?(\S+)"?/i) {  
419          $r->{charset} = lc $1;          $r->{charset} = lc $1;
420          $r->{charset} =~ tr/\\//d;          $r->{charset} =~ tr/\\//d;
421            $r->{official_charset} = $r->{charset};
422        }        }
423    
424        my $input_charset = $http->get_parameter ('charset');        my $input_charset = $http->get_parameter ('charset');
# Line 701  EOH Line 426  EOH
426          $r->{charset_overridden}          $r->{charset_overridden}
427              = (not defined $r->{charset} or $r->{charset} ne $input_charset);              = (not defined $r->{charset} or $r->{charset} ne $input_charset);
428          $r->{charset} = $input_charset;          $r->{charset} = $input_charset;
429        }        }
430    
431          ## TODO: Support for HTTP Content-Encoding
432    
433        $r->{s} = ''.$res->content;        $r->{s} = ''.$res->content;
434    
435          require Whatpm::ContentType;
436          ($r->{official_type}, $r->{media_type})
437              = Whatpm::ContentType->get_sniffed_type
438                  (get_file_head => sub {
439                     return substr $r->{s}, 0, shift;
440                   },
441                   http_content_type_byte => $ct,
442                   has_http_content_encoding =>
443                       defined $res->header ('Content-Encoding'),
444                   supported_image_types => {});
445      } else {      } else {
446        $r->{uri} = $res->request->uri;        $r->{uri} = $res->request->uri;
447        $r->{request_uri} = $request_uri;        $r->{request_uri} = $request_uri;
# Line 724  EOH Line 462  EOH
462      $r->{charset} = ''.$http->get_parameter ('_charset_');      $r->{charset} = ''.$http->get_parameter ('_charset_');
463      $r->{charset} =~ s/\s+//g;      $r->{charset} =~ s/\s+//g;
464      $r->{charset} = 'utf-8' if $r->{charset} eq '';      $r->{charset} = 'utf-8' if $r->{charset} eq '';
465        $r->{official_charset} = $r->{charset};
466      $r->{header_field} = [];      $r->{header_field} = [];
467    
468        require Whatpm::ContentType;
469        ($r->{official_type}, $r->{media_type})
470            = Whatpm::ContentType->get_sniffed_type
471                (get_file_head => sub {
472                   return substr $r->{s}, 0, shift;
473                 },
474                 http_content_type_byte => undef,
475                 has_http_content_encoding => 0,
476                 supported_image_types => {});
477    }    }
478    
479    my $input_format = $http->get_parameter ('i');    my $input_format = $http->get_parameter ('i');
# Line 741  EOH Line 490  EOH
490    if ($r->{media_type} eq 'text/xml') {    if ($r->{media_type} eq 'text/xml') {
491      unless (defined $r->{charset}) {      unless (defined $r->{charset}) {
492        $r->{charset} = 'us-ascii';        $r->{charset} = 'us-ascii';
493          $r->{official_charset} = $r->{charset};
494      } elsif ($r->{charset_overridden} and $r->{charset} eq 'us-ascii') {      } elsif ($r->{charset_overridden} and $r->{charset} eq 'us-ascii') {
495        $r->{charset_overridden} = 0;        $r->{charset_overridden} = 0;
496      }      }
# Line 752  EOH Line 502  EOH
502      return $r;      return $r;
503    }    }
504    
505      $r->{inner_html_element} = $http->get_parameter ('e');
506    
507    return $r;    return $r;
508  } # get_input_document  } # get_input_document
509    
# Line 784  Wakaba <w@suika.fam.cx>. Line 536  Wakaba <w@suika.fam.cx>.
536    
537  =head1 LICENSE  =head1 LICENSE
538    
539  Copyright 2007 Wakaba <w@suika.fam.cx>  Copyright 2007-2008 Wakaba <w@suika.fam.cx>
540    
541  This library is free software; you can redistribute it  This library is free software; you can redistribute it
542  and/or modify it under the same terms as Perl itself.  and/or modify it under the same terms as Perl itself.

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.55

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24