/[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 - (show 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 #!/usr/bin/perl
2 use strict;
3
4 use lib qw[/home/httpd/html/www/markup/html/whatpm
5 /home/wakaba/work/manakai2/lib];
6 use CGI::Carp qw[fatalsToBrowser];
7
8 require WebHACC::Input;
9
10 {
11 require Message::CGI::HTTP;
12 my $http = Message::CGI::HTTP->new;
13
14 require WebHACC::Output;
15 my $out = WebHACC::Output->new;
16 $out->handle (*STDOUT);
17 $out->set_utf8;
18
19 if ($http->get_meta_variable ('PATH_INFO') ne '/') {
20 $out->http_error (404);
21 exit;
22 }
23
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
31 $out->set_flush;
32 $out->http_header;
33 $out->html_header;
34 $out->unset_flush;
35
36 $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 require WebHACC::Result;
46 my $result = WebHACC::Result->new;
47 $result->output ($out);
48
49 require WebHACC::Input;
50 my $input = WebHACC::Input->get_document ($http => $result => $out);
51
52 check_and_print ($input => $result => $out);
53
54 $out->nav_list;
55
56 exit;
57 }
58
59 sub check_and_print ($$$) {
60 my ($input, $result, $out) = @_;
61 my $original_input = $out->input;
62 $out->input ($input);
63
64 $input->generate_info_section ($result);
65
66 $input->generate_transfer_sections ($result);
67
68 unless (defined $input->{s}) {
69 ## NOTE: This is an error of the implementation.
70 $result->layer_uncertain ('transfer');
71 $result->generate_result_section;
72
73 $out->input ($original_input);
74 return;
75 }
76
77 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 my @subdoc;
109 $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 my $id_prefix = 0;
118 for my $_subinput (@subdoc) {
119 my $subinput = WebHACC::Input::Subdocument->new (++$id_prefix);
120 $subinput->{$_} = $_subinput->{$_} for keys %$_subinput;
121 $subinput->{base_uri} = $subinput->{container_node}->base_uri
122 unless defined $subinput->{base_uri};
123 $subinput->{parent_input} = $input;
124
125 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 }
133
134 $result->generate_result_section;
135
136 $out->input ($original_input);
137 } # check_and_print
138
139 =head1 AUTHOR
140
141 Wakaba <w@suika.fam.cx>.
142
143 =head1 LICENSE
144
145 Copyright 2007-2008 Wakaba <w@suika.fam.cx>
146
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 ## $Date: 2008/08/14 15:50:42 $

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24