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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.63 - (hide annotations) (download)
Fri Aug 15 16:44:03 2008 UTC (15 years, 9 months ago) by wakaba
Branch: MAIN
Changes since 1.62: +3 -1 lines
++ ChangeLog	15 Aug 2008 16:43:11 -0000
	* cc-script.js (_showTab): Show the tab button of the selected
	tab.

	* cc-script.css (nav): Show scrollbar if there are too many
	tabs.

	* cc.cgi: Reset |$output->input| even if |$input->{s}| is undef (i.e.
	imlementation error case).

2008-08-16  Wakaba  <wakaba@suika.fam.cx>

++ html/WebHACC/ChangeLog	15 Aug 2008 16:43:58 -0000
	* Output.pm (start_section): Don't add item to the non-tab
	navigation menu if the item's rank is higher than 2.

2008-08-16  Wakaba  <wakaba@suika.fam.cx>

1 wakaba 1.1 #!/usr/bin/perl
2     use strict;
3    
4     use lib qw[/home/httpd/html/www/markup/html/whatpm
5 wakaba 1.16 /home/wakaba/work/manakai2/lib];
6 wakaba 1.1 use CGI::Carp qw[fatalsToBrowser];
7    
8 wakaba 1.53 require WebHACC::Input;
9 wakaba 1.2
10 wakaba 1.35 {
11 wakaba 1.58 require Message::CGI::HTTP;
12 wakaba 1.16 my $http = Message::CGI::HTTP->new;
13 wakaba 1.1
14 wakaba 1.58 require WebHACC::Output;
15     my $out = WebHACC::Output->new;
16     $out->handle (*STDOUT);
17     $out->set_utf8;
18    
19 wakaba 1.16 if ($http->get_meta_variable ('PATH_INFO') ne '/') {
20 wakaba 1.58 $out->http_error (404);
21 wakaba 1.8 exit;
22     }
23 wakaba 1.59
24     ## TODO: We need real conneg support...
25     my $primary_language = 'en';
26     if ($ENV{HTTP_ACCEPT_LANGUAGE} =~ /ja/) {
27     $primary_language = 'ja';
28     }
29     $out->load_text_catalog ($primary_language);
30 wakaba 1.53
31     $out->set_flush;
32 wakaba 1.58 $out->http_header;
33     $out->html_header;
34     $out->unset_flush;
35 wakaba 1.55
36 wakaba 1.61 $out->generate_input_section ($http);
37    
38     my $u = $http->get_parameter ('uri');
39     my $s = $http->get_parameter ('s');
40     if ((not defined $u or not length $u) and
41     (not defined $s or not length $s)) {
42     exit;
43     }
44    
45 wakaba 1.58 require WebHACC::Result;
46 wakaba 1.55 my $result = WebHACC::Result->new;
47 wakaba 1.60 $result->output ($out);
48 wakaba 1.14
49 wakaba 1.60 require WebHACC::Input;
50     my $input = WebHACC::Input->get_document ($http => $result => $out);
51 wakaba 1.54
52 wakaba 1.55 check_and_print ($input => $result => $out);
53    
54 wakaba 1.53 $out->nav_list;
55 wakaba 1.16
56 wakaba 1.53 exit;
57 wakaba 1.35 }
58 wakaba 1.1
59 wakaba 1.53 sub check_and_print ($$$) {
60     my ($input, $result, $out) = @_;
61     my $original_input = $out->input;
62     $out->input ($input);
63 wakaba 1.31
64 wakaba 1.55 $input->generate_info_section ($result);
65    
66 wakaba 1.54 $input->generate_transfer_sections ($result);
67 wakaba 1.31
68 wakaba 1.55 unless (defined $input->{s}) {
69 wakaba 1.62 ## NOTE: This is an error of the implementation.
70     $result->layer_uncertain ('transfer');
71     $result->generate_result_section;
72 wakaba 1.63
73     $out->input ($original_input);
74 wakaba 1.55 return;
75     }
76 wakaba 1.31
77 wakaba 1.53 my $checker_class = {
78     'text/cache-manifest' => 'WebHACC::Language::CacheManifest',
79     'text/css' => 'WebHACC::Language::CSS',
80     'text/html' => 'WebHACC::Language::HTML',
81     'text/x-webidl' => 'WebHACC::Language::WebIDL',
82    
83     'text/xml' => 'WebHACC::Language::XML',
84     'application/atom+xml' => 'WebHACC::Language::XML',
85     'application/rss+xml' => 'WebHACC::Language::XML',
86     'image/svg+xml' => 'WebHACC::Language::XML',
87     'application/xhtml+xml' => 'WebHACC::Language::XML',
88     'application/xml' => 'WebHACC::Language::XML',
89     ## TODO: Should we make all XML MIME Types fall
90     ## into this category?
91    
92     ## NOTE: This type has different model from normal XML types.
93     'application/rdf+xml' => 'WebHACC::Language::XML',
94     }->{$input->{media_type}} || 'WebHACC::Language::Default';
95    
96     eval qq{ require $checker_class } or die "$0: Loading $checker_class: $@";
97     my $checker = $checker_class->new;
98     $checker->input ($input);
99     $checker->output ($out);
100     $checker->result ($result);
101    
102     ## TODO: A cache manifest MUST be text/cache-manifest
103     ## TODO: WebIDL media type "text/x-webidl"
104    
105     $checker->generate_syntax_error_section;
106     $checker->generate_source_string_section;
107    
108 wakaba 1.55 my @subdoc;
109 wakaba 1.53 $checker->onsubdoc (sub {
110     push @subdoc, shift;
111     });
112    
113     $checker->generate_structure_dump_section;
114     $checker->generate_structure_error_section;
115     $checker->generate_additional_sections;
116    
117 wakaba 1.34 my $id_prefix = 0;
118 wakaba 1.53 for my $_subinput (@subdoc) {
119 wakaba 1.55 my $subinput = WebHACC::Input::Subdocument->new (++$id_prefix);
120 wakaba 1.53 $subinput->{$_} = $_subinput->{$_} for keys %$_subinput;
121 wakaba 1.34 $subinput->{base_uri} = $subinput->{container_node}->base_uri
122     unless defined $subinput->{base_uri};
123 wakaba 1.55 $subinput->{parent_input} = $input;
124 wakaba 1.34
125 wakaba 1.62 my $subresult = WebHACC::Result->new;
126     $subresult->output ($out);
127     $subresult->parent_result ($result);
128    
129     $subinput->start_section ($subresult);
130     check_and_print ($subinput => $subresult => $out);
131     $subinput->end_section ($subresult);
132 wakaba 1.34 }
133 wakaba 1.53
134 wakaba 1.62 $result->generate_result_section;
135    
136 wakaba 1.53 $out->input ($original_input);
137 wakaba 1.31 } # check_and_print
138    
139 wakaba 1.1 =head1 AUTHOR
140    
141     Wakaba <w@suika.fam.cx>.
142    
143     =head1 LICENSE
144    
145 wakaba 1.35 Copyright 2007-2008 Wakaba <w@suika.fam.cx>
146 wakaba 1.1
147     This library is free software; you can redistribute it
148     and/or modify it under the same terms as Perl itself.
149    
150     =cut
151    
152 wakaba 1.63 ## $Date: 2008/08/14 15:50:42 $

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24