&http_moved: Fixed warn on forgotten: $W->{"charset"}
[MyWeb.git] / Web.pm
1 # $Id$
2 # Common functions for HTML/XHTML output generation
3 # Copyright (C) 2003-2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; exactly version 2 of June 1991 is required
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18
19 package My::Web;
20 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
21 our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
22 our $CVS_ID=q$Id$;
23 use strict;
24 use warnings;
25
26 use Exporter;
27 sub Wrequire($);
28 sub Wuse($@);
29 our $W;
30 our @EXPORT=qw(
31                 &Wrequire &Wuse
32                 &path_web &path_abs_disk
33                 &uri_escaped
34                 &a_href &a_href_cc
35                 &vskip
36                 &img &centerimg &rightimg
37                 $W
38                 &input_hidden_persistents
39                 &escapeHTML
40                 );
41 our @ISA=qw(Tie::Handle Exporter);
42
43 my %packages_used_hash; # $packages_used_hash{$W->{"__PACKAGE__"}}{"_done"}=1;
44 my %packages_used_array;
45
46 BEGIN
47 {
48         use Carp qw(cluck confess);
49         $W->{"__My::Web_init"}=1;
50
51         sub Wrequire ($)
52         {
53         my($file)=@_;
54
55 #               print STDERR "Wrequire $file\n";
56                 $file=~s#/#::#g;
57                 $file=~s/[.]pm$//;
58                 my $class=$file;
59                 $file=~s#::#/#g;
60                 $file.=".pm";
61                 my %callers;
62                 for (my $depth=0;defined caller($depth);$depth++) {
63                         $callers{caller($depth)}=1;
64                         }
65                 my $selfpkg=__PACKAGE__;
66                 $callers{$selfpkg}=1;
67                 for my $target ($class,__PACKAGE__) {
68                         for my $caller (keys(%callers)) {
69                                 next if $caller eq $target;
70                                 next if $packages_used_hash{$caller}{$target}++;
71                                 cluck "Appending to the '_done' package list: caller=$caller,target=$target"
72                                                 if $packages_used_hash{$caller}{"_done"};
73                                 push @{$packages_used_array{$caller}},$target;
74                                 }
75                         }
76                 eval { CORE::require "$file"; } or confess $@;
77                 1;      # Otherwise 'require' would already file above.
78         }
79
80         sub Wuse ($@)
81         {
82         my($file,@list)=@_;
83
84 #               print STDERR "Wuse $file\n";
85                 Wrequire $file;
86                 local $Exporter::ExportLevel=$Exporter::ExportLevel+1;
87                 $file->import(@list);
88                 1;
89         }
90
91         sub import
92         {
93         my($class,@rest)=@_;
94
95                 local $Exporter::ExportLevel=$Exporter::ExportLevel+1;
96                 Wrequire("$class");
97                 return $class->SUPER::import(@rest);
98         }
99 }
100
101 use WebConfig;  # see also below: Wuse 'WebConfig';
102 require CGI;
103 require Image::Size;    # for &imgsize
104 use File::Basename;     # &basename
105 use Carp qw(cluck confess);
106 use URI::Escape;
107 require HTTP::BrowserDetect;
108 require HTTP::Negotiate;
109 our $have_Geo_IP; BEGIN { $have_Geo_IP=eval { require Geo::IP; 1; }; }
110 # Do not: use ModPerl::Util qw(exit);
111 # to prevent in mod_perl2: "exit" is not exported by the ModPerl::Util module
112 # I do not know why.
113 use POSIX qw(strftime);
114 use Tie::Handle;
115 use Apache2::Const qw(HTTP_MOVED_TEMPORARILY OK HTTP_OK);
116 use URI;
117 use URI::QueryParam;
118 use Cwd;
119 require HTTP::Date;
120 require Storable;
121 require Digest::MD5;
122 require Data::Compare;
123 use Data::Dumper;
124 require Encode;
125 use Apache2::Filter;
126 use Apache2::Connection;
127 require MIME::Base64;
128 use Apache2::ServerUtil;
129 require MIME::Types;
130
131
132 #our $W;
133
134 sub init ($%)
135 {
136 my($class,%args)=@_;
137
138         print STDERR "$class->init ".Apache2::RequestUtil->request()->unparsed_uri()."\n";
139
140         # We need to track package dependencies, so we need to call it from &init.
141         # We cannot do it in BEGIN { } block
142         # as it would not be tracked for each of the toplevel users later.
143         Wuse 'WebConfig';
144         Wrequire 'My::Hash';
145
146         # $W={} can get somehow created very easily.
147         cluck "W not empty:\n".Dumper($W) if keys(%$W);
148         $W=My::Hash->new({},"My::Hash::Sub","My::Hash::Push");
149         bless $W,$class;
150         %$W=(
151                 "__PACKAGE__"=>scalar(caller()),
152                 %WebConfig,
153                 %args,  # override %WebConfig settings
154                 );
155
156         # {"__PACKAGE__"} is mandatory for mod_perl-2.0;
157         # $Apache2::Registry::curstash is no longer supported.
158         do { cluck "No $_" if !$W->{$_}; } for "__PACKAGE__";
159         exit_hook_start();
160
161         # See: &escapeHTML
162         do { cluck "charset==$_, expecting ISO-8859-1" if $_ ne "ISO-8859-1"; } for CGI::charset();
163         CGI::charset("utf-8");
164
165         do { $W->{$_}=0  if !defined $W->{$_}; } for "detect_ent";
166         do { $W->{$_}=0  if !defined $W->{$_}; } for "detect_js";
167         do { $W->{$_}=1  if !defined $W->{$_}; } for "have_css";        # AFAIK it does not hurt anyone.
168         do { $W->{$_}=0  if !defined $W->{$_}; } for "css_inherit";
169         do { $W->{$_}=1  if !defined $W->{$_}; } for "footer";
170         do { $W->{$_}=1  if !defined $W->{$_}; } for "footer_delimit";
171         do { $W->{$_}=1  if !defined $W->{$_}; } for "footer_ids";
172         do { $W->{$_}=1  if !defined $W->{$_}; } for "indexme";
173         do { $W->{$_}="" if !defined $W->{$_}; } for "head";
174         do { $W->{$_}="" if !defined $W->{$_}; } for "body_attr";
175         do { $W->{$_}="en-US" if !defined $W->{$_}; } for "language";
176
177         my $footer_any=0;
178         for (qw(footer_ids)) {
179                 $W->{$_}=0 if !$W->{"footer"};
180                 $footer_any=1 if $W->{$_};
181                 }
182         $W->{"footer"}=0 if !$footer_any;
183         $W->{"footer_delimit"}=0 if !$W->{"footer"};
184
185         $W->{"r"}=Apache2::RequestUtil->request();
186
187         $W->{"r"}->push_handlers("PerlCleanupHandler"=>\&cleanup);
188
189         $W->{"web_hostname"}||=$W->{"r"}->hostname();
190
191         tie *STDOUT,$W->{"r"};
192         select *STDOUT;
193         $|=1;
194
195         $W->{"QUERY_STRING"}=$W->{"r"}->args() || "";
196         if ($W->{"detect_ent"}) {
197                          if ($W->{"QUERY_STRING"}=~/[&]amp;have_ent/)
198                         { $W->{"have_ent"}=0; }
199                 elsif ($W->{"QUERY_STRING"}=~    /[&]have_ent/)
200                         { $W->{"have_ent"}=1; }
201                 else
202                         { delete $W->{"have_ent"}; }
203                 if (!defined $W->{"have_ent"} && $W->{"r"}->method() eq "GET") {
204                         $W->{"head"}.='<meta http-equiv="Refresh" content="0; URL='
205                                         .escapeHTML("http://".$W->{"web_hostname"}."/".($W->{"r"}->uri()=~m#^/*(.*)$#)[0]
206                                                         ."?".($W->{"QUERY_STRING"} || "detect_ent_glue=1").'&have_ent=detect')
207                                         .'" />'."\n";
208                         }
209                 }
210         $W->{"QUERY_STRING"}=~s/([&])amp;/$1/g;
211         $W->{"r"}->args($W->{"QUERY_STRING"});
212         # Workaround: &CGI::Vars behaves weird if strings passed both as POST data and in: $QUERY_STRING
213         do { $W->{"r"}->args(""); delete $ENV{"QUERY_STRING"}; } if $W->{"r"}->method() eq "POST";
214         # Do not: $W->{"r"}->args()
215         # as it parses only QUERY_STRING (not POST data).
216         $W->{"args_orig_array"}=[ CGI->new($W->{"r"})->Vars() ];
217         $W->{"args"}={ @{$W->{"args_orig_array"}} };
218         for my $name (keys(%{$W->{"args"}})) {
219                 my @vals=split /\x00/,$W->{"args"}{$name};
220                 next if @vals<=1;
221                 $W->{"args"}{$name}=[@vals];
222                 }
223
224         $W->{"headers_in"}=$W->{"r"}->headers_in();
225         Wrequire 'My::Hash::Merge';
226         $W->{"headers_in"}=My::Hash::Merge->new(
227                         $W->{"headers_in"},
228                         My::Hash::Sub->new({
229                                 "_remote_ip"=>sub { return $W->{"r"}->connection()->remote_ip(); },
230                                 }),
231                         );
232         Wrequire 'My::Hash::Readonly';
233         $W->{"headers_in"}=My::Hash::Readonly->new($W->{"headers_in"});
234         
235         if ($W->{"r"}->method() eq "GET" || $W->{"r"}->method() eq "HEAD") {
236                 for (\$W->{"http_safe"}) {
237                         # Do not: # Extend the current ETag system instead if you would need it:
238                         #         cluck "Explicitely NOT HTTP-Safe for method \"".$W->{"r"}->method()."\"?!?"
239                         #                       if defined($$_) && !$$_;
240                         # as sometimes it just does not make sense to cache it.
241                         $$_=1 if !defined $$_;
242                         }
243                 }
244         else {
245                 for (\$W->{"http_safe"}) {
246                         cluck "Undefined HTTP-Safe-ty for method \"".$W->{"r"}->method()."\"!"
247                                         if !defined($$_);
248                         $$_=0 if !defined $$_;
249                         }
250                 }
251         if ($W->{"http_safe"}) {
252                 Wrequire 'My::Hash::RecordKeys';
253                 $W->{"headers_in_RecordKeys"}=My::Hash::RecordKeys->new($W->{"headers_in"});
254                 $W->{"headers_in"}=$W->{"headers_in_RecordKeys"};
255                 }
256
257         $W->{"browser"}=sub {
258                 # Lazy-evaluation, we may not need the "User-Agent" header at all.
259                 return our $r||=HTTP::BrowserDetect->new($W->{"headers_in"}{"User-Agent"});
260                 };
261
262         if (!defined $W->{"have_style"}) {
263                 $W->{"have_style"}=sub {
264                         # Lazy-evaluation, we may not need the "User-Agent" header at all.
265                         return our $r||=(!$W->{"browser"}->netscape() || ($W->{"browser"}->major() && $W->{"browser"}->major()>4) ? 1 : 0);
266                         };
267                 }
268
269         $W->{"have_js"}=($W->{"args"}{"have_js"} ? 1 : 0);
270         if ($W->{"detect_js"} && !$W->{"have_js"}) {
271                 $W->{"head"}.='<script type="text/javascript" src="'.uri_escaped(path_web('/My/HaveJS.pm')).'"></script>'."\n";
272                 }
273
274         do { _args_check(%$_) if $_; } for ($W->{"args_check"});
275
276         $W->{"_init_done"}=1;
277         return $W;
278 }
279
280 sub cleanup($)
281 {
282 my($apache_request)=@_;
283
284         cluck "CORE::GLOBAL::exit hook not ran" if !$W->{"_exit_done"};
285         cluck "packages not finalized" if !$packages_used_hash{$W->{"__PACKAGE__"}}{"_done"};
286         cache_finish();
287         # Sanity protection.
288         $W=undef();
289         exit_hook_stop();
290         return OK;
291 }
292
293 # PerlResponseHandler is RUN_FIRST and &ModPerl::Util::exit returns OK, so no (sane) go.
294 # PerlLogHandler is already too late to be able to produce any output.
295 my $exit_orig;
296 sub exit_hook
297 {
298         cluck "Missing ->init while in exit_hook()" if !$W->{"_init_done"};
299         # &footer will call us recursively!
300         footer() if !$W->{"_exit_done"}++;
301         return &{$exit_orig}(@_);
302 }
303 sub exit_hook_start
304 {
305         cluck "exit_hook_start() twice?" if defined $exit_orig;
306         $exit_orig=\&CORE::GLOBAL::exit;
307         # Prevent: Subroutine CORE::GLOBAL::exit redefined
308         no warnings 'redefine';
309         *CORE::GLOBAL::exit=\&exit_hook;
310 }
311 sub exit_hook_stop
312 {
313         do { cluck "exit_hook_stop() without exit_hook_start()?"; return; }
314                         if \&exit_hook ne \&CORE::GLOBAL::exit;
315         cluck "INTERNAL: exit_orig uninitialized" if !$exit_orig;
316         # Prevent: Subroutine CORE::GLOBAL::exit redefined
317         no warnings 'redefine';
318         *CORE::GLOBAL::exit=$exit_orig;
319         $exit_orig=undef();
320 }
321
322 # Be aware other parts of code (non-My::Web) will NOT use this function!
323 # Do not: Wprint $W->{"heading"},"undef"=>1;
324 # as we would need to undef() it to turn it off and it would get defaulted in such case.
325 # Do not: exists $W->{"heading"}
326 # as we use a lot of 'for $W->{"heading"}' which instantiates it with the value: undef()
327 sub Wprint($%)
328 {
329 my($text,%args)=@_;
330
331         cluck "undef Wprint" if !defined $text && !$args{"undef"};
332         delete $args{"undef"};
333         cluck join(" ","Invalid arguments:",keys(%args)) if keys(%args);
334         return if !defined $text;
335         # Do not: cluck "utf-8 untested" if Encode::is_utf8($text);
336         # as it is valid here.
337         $W->{"r"}->puts($text);
338 }
339
340 sub request_check(;$)
341 {
342 my($self)=@_;
343
344         # Use &eval to prevent: Global $r object is not available. Set:\n\tPerlOptions +GlobalRequest\nin ...
345         # CGI requires valid "r": check it beforehand here.
346         confess "Calling sensitive dynamic code from a static code" if !eval { Apache2::RequestUtil->request(); };
347         # Do not: confess "Calling sensitive dynamic code without My::Web::init" if !$W->{"__PACKAGE__"};
348         # as it is valid at least while preparing arguments to call: &project::Lib::init
349 }
350
351 sub escapeHTML($)
352 {
353 my($text)=@_;
354
355         # Prevent &CGI::escapeHTML breaking utf-8 strings like: \xC4\x9B eq \x{11B}
356         # Prevent case if we run under mod_perl but still just initializing:
357         request_check() if $ENV{"MOD_PERL"};
358         # Generally we are initialized from &init but we may be used without it without mod_perl
359         # and in such case check the change on all non-first invocations.
360         our $init;
361         if (!$ENV{"MOD_PERL"} && $init++) {
362                 do { cluck "charset==$_" if $_ ne "utf-8"; } for CGI::charset();
363                 }
364         CGI::charset("utf-8");
365
366         return CGI::escapeHTML($text);
367 }
368
369 # /home/user/www/webdir
370 sub dir_top_abs_disk()
371 {
372         our $dir_top_abs_disk;
373         if (!$dir_top_abs_disk) {
374                 my $selfpkg_relpath=__PACKAGE__;
375                 $selfpkg_relpath=~s{::}{/}g;
376                 $selfpkg_relpath.=".pm";
377                 my $selfpkg_abspath=$INC{$selfpkg_relpath} or do {
378                         cluck "Unable to find self package $selfpkg_relpath";
379                         return;
380                         };
381                 $selfpkg_abspath=~s{/*\Q$selfpkg_relpath\E$}{} or do {
382                         cluck "Unable to strip myself \"$selfpkg_relpath\" from the abspath: $selfpkg_abspath";
383                         return;
384                         };
385                 cluck "INC{myself} is relative?: $selfpkg_abspath" if $selfpkg_abspath!~m{^/};
386                 $dir_top_abs_disk=$selfpkg_abspath;
387                 }
388         return $dir_top_abs_disk;
389 }
390
391 sub unparsed_uri()
392 {
393         request_check();
394         if (!$W->{"unparsed_uri"}) {
395                 # Do not: $W->{"r"}
396                 # as we may be called before &init from: &My::Project::init
397                 my $r=Apache2::RequestUtil->request();
398                 cluck "Calling ".'&unparsed_uri'." from a static code, going to fail" if !$r;
399                 my $uri_string=$r->unparsed_uri() or cluck "Valid 'r' missing unparsed_uri()?";
400                 my $uri=URI->new_abs($uri_string,"http://".$W->{"web_hostname"}."/");
401                 $W->{"unparsed_uri"}=$uri;
402                 }
403         return $W->{"unparsed_uri"};
404 }
405
406 sub in_to_uri_abs($)
407 {
408 my($in)=@_;
409
410         # Otherwise we may have been already processed and thus legally relativized.
411         # FIXME data: Currently disabled, all the data are too violating such rule.
412         if (0 && !ref $in) {
413                 my $uri_check=URI->new($in);
414                 $uri_check->scheme() || $in=~m{^\Q./\E} || $in=~m{^/}
415                                 or cluck "Use './' or '/' prefix for all the local references: $in";
416                 }
417         my $uri=URI->new_abs($in,unparsed_uri());
418         $uri=$uri->canonical();
419         return $uri;
420 }
421
422 # $args{"uri_as_in"}=1 to permit passing URI objects as: $in
423 # $args{"abs"}=1;
424 sub path_web($%)
425 {
426 my($in,%args)=@_;
427
428         cluck if !$args{"uri_as_in"} && ref $in;
429         my $uri=in_to_uri_abs($in);
430         if (uri_is_local($uri)) {
431                 # Prefer the $uri values over "args_persistent" values.
432                 $uri->query_form_hash({
433                                 map({
434                                         my $key=$_;
435                                         my $val=$W->{"args"}{$key};
436                                         (!defined $val ? () : ($key=>$val));
437                                         } keys(%{$W->{"args_persistent"}})),
438                                 %{$uri->query_form_hash()},
439                                 });
440                 }
441         return $uri->abs(unparsed_uri()) if $W->{"args"}{"Wabs"} || $args{"abs"};
442         return $uri->rel(unparsed_uri());
443 }
444
445 sub path_abs_disk_register($)
446 {
447 my($path_abs_disk)=@_;
448
449         $W->{"path_abs_disk_register"}{$path_abs_disk}=1;
450 }
451
452 # $args{"uri_as_in"}=1 to permit passing URI objects as: $in
453 sub path_abs_disk($%)
454 {
455 my($in,%args)=@_;
456
457         cluck if !$args{"uri_as_in"} && ref $in;
458         my $uri=in_to_uri_abs($in);
459         cluck if !uri_is_local($uri);
460         my $path=$uri->path();
461         cluck "URI compatibility: ->path() not w/leading slash of URI \"$uri\"; path: $path" if $path!~m{^/};
462         my $r=dir_top_abs_disk().$path;
463         path_abs_disk_register $r if !defined $args{"register"} || $args{"register"};
464         return $r;
465 }
466
467 sub fatal (;$);
468
469 sub _args_check (%)
470 {
471 my(%tmpl)=@_;
472
473         while (my($name,$regex)=each(%tmpl)) {
474                 my $name_html="Parameter <span class=\"quote\">".escapeHTML($name)."</span>";
475                 $W->{"args"}{$name}="" if !defined $W->{"args"}{$name};
476                 $W->{"args"}{$name}=[ $W->{"args"}{$name} ] if !ref $W->{"args"}{$name} && ref $regex;
477                 fatal "$name_html passed as multivar although singlevar expected"
478                                 if ref $W->{"args"}{$name} && !ref $regex;
479                 $regex=$regex->[0] if ref $regex;
480                 for my $val (!ref $W->{"args"}{$name} ? $W->{"args"}{$name} : @{$W->{"args"}{$name}}) {
481                         $val="" if !defined $val;
482                         fatal "$name_html <span class=\"quote\">".escapeHTML($val)."</span>"
483                                                         ." does not match the required regex <span class=\"quote\">".escapeHTML($regex)."</span> "
484                                         if $regex ne "" && $val!~/$regex/;
485                         }
486                 }
487 }
488
489 sub vskip (;$)
490 {
491 my($height)=@_;
492
493         return '<p'.(!defined $height ? "" : ' style="height: '.$height.';"').'>&nbsp;</p>'."\n";
494 }
495
496 sub fatal (;$)
497 {
498 my($msg)=@_;
499
500         $msg="UNKNOWN" if !$msg;
501         cluck "FATAL: $msg";
502
503         # Do not send it unconditionally.
504         # The intial duplicated '<?xml...' crashes Gecko parser.
505         $W->{"heading_done"}=0 if $W->{"header_only"};
506         # Do not send it unconditionally.
507         # Prevents warn: Headers already sent
508         if (!$W->{"heading_done"}) {
509                 $W->{"indexme"}=0;      # For the case no heading was sent yet.
510                 $W->{"header_only"}=0;  # assurance for &heading
511                 My::Web->heading();
512                 }
513         Wprint "\n".vskip("3ex")."<hr /><h1 class=\"error\">FATAL ERROR: $msg!</h1>\n"
514                         ."<p>You can report this problem's details to"
515                         ." ".a_href("mailto:".$W->{"admin_mail"},"admin of this website").".</p>\n";
516         exit;
517 }
518
519 sub footer_packages_used_comments()
520 {
521         my $packages_used=$packages_used_array{$W->{"__PACKAGE__"}};
522         for my $package (@$packages_used) {
523                 my $cvs_id=(eval('$'.$package."::CVS_ID")
524 #                               || $package     # debug
525                                 );
526                 Wprint '<!-- '.$package.' - $'.$cvs_id.'$ -->'."\n" if $cvs_id;
527                 }
528 }
529
530 sub footer()
531 {
532         cluck 'Explicit &footer call is deprecated, !_exit_dne' if !$W->{"_exit_done"};
533         exit if $W->{"footer_done"}++;  # deadlock prevention:
534         &{$_}() for reverse @{$W->{"footer_sub_push"}};
535         if ($W->{"header_only"}) {
536                 $packages_used_hash{$W->{"__PACKAGE__"}}{"_done"}=1;
537                 exit;
538                 }
539
540         Wprint vskip if $W->{"footer_delimit"};
541         &{$_}() for reverse @{$W->{"footing_delimit_sub_push"}};
542         Wprint "<hr />\n" if $W->{"footer"};
543
544         # Never update the package list while we examine it!
545         $packages_used_hash{$W->{"__PACKAGE__"}}{"_done"}=1;
546
547         my $packages_used=$packages_used_array{$W->{"__PACKAGE__"}};
548         if ($W->{"footer_ids"}) {
549                 Wprint '<p class="cvs-id">';
550                 Wprint join("<br />\n",map({ my $package=$_;
551                         my $cvs_id=(eval('$'.$package."::CVS_ID")
552 #                                       || $package     # debug
553                                         );
554                         if (!$cvs_id) {
555                                 ();
556                                 }
557                         else {
558                                 $cvs_id='$'.$cvs_id.'$';        # Eaten by 'q' operator.
559                                 my @cvs_id_split=split / +/,$cvs_id;
560                                 if (@cvs_id_split==8) {
561                                         my $file=$package;
562                                         $file=~s#::#/#g;
563                                         my $ext;
564                                         my @tried;
565                                         for (qw(.pm)) {
566                                                 $ext=$_;
567                                                 my $path_abs_disk=path_abs_disk("/$file$ext");
568                                                 push @tried,$path_abs_disk;
569                                                 last if -r $path_abs_disk;
570                                                 cluck "Class file $file not found; tried: ".join(" ",@tried) if !$ext;
571                                                 }
572                                         $file.=$ext;
573                                         $cvs_id_split[2]=""
574                                                         .a_href((map({ my $s=$_; $s=~s#/viewcvs/#$&~checkout~/#; $s; } $W->{"viewcvs"}))[0]."$file?rev=".$cvs_id_split[2],
575                                                                         $cvs_id_split[2]);
576                                         $cvs_id_split[1]=a_href($W->{"viewcvs"}.$file,
577                                                         ($package!~/^Apache2::/ ? $package : $cvs_id_split[1]));
578                                         $cvs_id_split[5]=&{$W->{"cvs_id_author_sub"}}($cvs_id_split[5]);
579                                         }
580                                 join " ",@cvs_id_split;
581                                 }
582                         } @$packages_used));
583                 Wprint "</p>\n";
584                 }
585
586         packages_used_comments();
587
588         do { Wprint $_ if $_; } for $W->{"footing"};
589
590         Wprint "</body></html>\n";
591         exit;
592 }
593
594 # Existing entries are overwritten.
595 sub header(%)
596 {
597 my(%pairs)=@_;
598
599         while (my($key,$val)=each(%pairs)) {
600                 do { cluck "Headers already sent"; next; } if $W->{"heading_done"};
601                 $W->{"r"}->headers_out()->set($key,$val);
602                 }
603 }
604
605 sub size_display ($)
606 {
607 my($size)=@_;
608
609            if ($size<4096)
610                 {}
611         elsif ($size<1024*1024)
612                 { $size=sprintf "%.1fK",$size/1024; }
613         else
614                 { $size=sprintf "%.1fM",$size/1024/1024; }
615         $size.="B";
616         return $size;
617 }
618
619 sub uri_is_local($)
620 {
621 my($in)=@_;
622
623         my $uri_rel=in_to_uri_abs($in)->rel(unparsed_uri());
624         # Do not: defined $uri_rel->("userinfo"|"host"|"port")();
625         # as they fail to be called for schemes not supporting them.
626         return 0 if $uri_rel->scheme();
627         return 0 if $uri_rel->authority();
628         return 1;
629 }
630
631 # &path_web still may be required for &uri_escaped !
632 sub uri_escaped($)
633 {
634 my($uri)=@_;
635
636         cluck if !ref $uri;
637         my $urient=escapeHTML($uri);
638         return $uri    if $uri eq $urient;
639         request_check();
640         return $urient if uri_is_local $uri;
641         return $uri    if defined $W->{"have_ent"} && !$W->{"have_ent"};        # non-ent client
642         return $urient if $W->{"have_ent"};     # ent client
643         # Unknown client, &escapeHTML should not be needed here:
644         return escapeHTML(path_web('/My/Redirect.pm?location='.uri_escape($uri->abs(unparsed_uri()))));
645 }
646
647 our $a_href_inhibited;
648 sub a_href($;$%)
649 {
650 my($in,$contents,%args)=@_;
651
652         request_check();
653         do { $$_=1 if !defined $$_; } for (\$args{"size"});
654         if (!defined $contents) {
655                 $contents=$in;
656                 $contents=File::Basename::basename($contents) if $args{"basename"};
657                 $contents=escapeHTML($contents);
658                 }
659         $contents=~s#<a\b[^>]*>##gi;
660         $contents=~s#</a>##gi;
661         return $contents if $a_href_inhibited;
662
663         my $path_web=path_web $in,%args;
664         my $r="";
665         $r.='<a href="';
666         $r.=uri_escaped $path_web;
667         $r.='"';
668         do { $r.=" $_" if $_; } for ($args{"attr"});
669         $r.='>'.$contents.'</a>';
670         if ($args{"size"} && uri_is_local($in) && ($args{"size"}>=2 || $in=~/[.](?:gz|Z|rpm|zip|deb|lha)/)) {   # Downloadable?
671                 my $path_abs_disk=path_abs_disk $in,%args;
672                 cluck "File not readable: $path_abs_disk" if !-r $path_abs_disk;
673                 $r.='&nbsp;('.size_display((stat($path_abs_disk))[7]).')';
674                 }
675         return $r;
676 }
677
678 sub a_href_inhibit($$;@)
679 {
680 my($self,$sub,@sub_args)=@_;
681
682         local $a_href_inhibited=1;
683         return &{$sub}(@sub_args);
684 }
685
686 sub input_hidden_persistents()
687 {
688         request_check();
689         return join("",map({
690                 my $key=$_;
691                 my $val=$W->{"args"}{$key};
692                 (!defined $val ? () : '<input type="hidden"'
693                                 .' name="'.escapeHTML($key).'"'
694                                 .' value="'.escapeHTML($val).'"'
695                                 .' />'."\n");
696                 } (keys(%{$W->{"args_persistent"}}))));
697 }
698
699 sub http_moved($$;$)
700 {
701 my($self,$url,$status)=@_;
702
703         $url=path_web($url,"abs"=>1);
704         $status||=HTTP_MOVED_TEMPORARILY;
705         $W->{"r"}->status($status);
706         $W->{"r"}->headers_out()->{"Location"}=$url;
707         $W->{"header_only"}=1;
708         $W->{"content_type"}=0;
709         $W->{"charset"}=0;
710         My::Web->heading();
711         exit;
712         die "NOTREACHED";
713 }
714
715 sub remote_ip ()
716 {
717         # Do not: PerlModule                 Apache2::ForwardedFor
718         #         PerlPostReadRequestHandler Apache2::ForwardedFor
719         # As 'Apache2::ForwardedFor' takes the first of $ENV{"HTTP_X_FORWARDED_FOR"}
720         # while the contents is '127.0.0.1, 213.220.195.171' if client has its own proxy.
721         # We must take the last item ourselves.
722         # Be VERY sure you always retrieve all the headers unconditionally to hit: My::Hash::RecordKeys
723         my $x_forwarded_for=$W->{"headers_in"}{"X-Forwarded-For"};
724         $x_forwarded_for=~s/^.*,\s*// if $x_forwarded_for;
725         my $remote_ip=$W->{"headers_in"}{"_remote_ip"};
726         my $r;
727         $r||=$x_forwarded_for;
728         $r||=$remote_ip;
729         return $r;
730 }
731
732 # $url={"JP"=>"http://specific",...};
733 # $url={""=>"http://default",...};
734 sub a_href_cc($$;%)
735 {
736 my($url,$contents,%args)=@_;
737
738         # A bit ineffective but we must process all the possibilities to get stable 'headers_in' hits!
739         my %map=map(($_=>a_href($url->{$_},$contents,%args)),keys(%$url));
740         my $cc;
741         $cc||=Geo::IP->new()->country_code_by_addr(remote_ip()) if $have_Geo_IP;
742         $cc||="";
743         my $r=$map{$cc};
744         return $r if $r;
745         return $contents;
746 }
747
748 sub make ($)
749 {
750 my($cmd)=@_;
751
752         # FIXME: &alarm, --timeout is now infinite.
753         # FIXME: Try to remove bash(1).
754         # FIXME: Use: @PATH_FLOCK@
755         my @argv=('flock',dir_top_abs_disk(),'bash','-c',$cmd.' >&2');
756         print STDERR join(" ","SPAWN:",@argv)."\n";
757         system @argv;
758 }
759
760 sub make_file($$)
761 {
762 my($self,$file)=@_;
763
764         cluck "Pathname not absolute: $file" if $file!~m{^/};
765         return if -f $file;
766         # TODO: Somehow quickly check dependencies?
767         return make('make -s --no-print-directory'
768                                         .' -C '."'".File::Basename::dirname($file)."' '".File::Basename::basename($file)."'");
769 }
770
771 sub img_size ($$)
772 {
773 my($width,$height)=@_;
774
775         cluck if !defined $width || !defined $height;
776         return ($W->{"have_style"} ? "style=\"border:0;width:${width}px;height:${height}px\"" : "border=\"0\"")
777                         ." width=\"$width\" height=\"$height\"";
778 }
779
780 sub negotiate_variant (%)
781 {
782 my(%args)=@_;
783
784         my @fields=("id","qs","content-type","encoding","charset","lang","size");
785         return [ map(($args{$_}),@fields) ];
786 }
787
788 # Input: $self is required!
789 # Input: Put the fallback variant as the first one.
790 # Returns: always only scalar!
791 sub Negotiate_choose($$)
792 {
793 my($self,$variants)=@_;
794
795         # Limit these entries to generate proper 'Vary' header.
796         my %hash=(map(($_=>$W->{"headers_in"}{$_}),qw(
797                         Accept
798                         Accept-Charset
799                         Accept-Encoding
800                         Accept-Language
801                         )));
802         my $best=HTTP::Negotiate::choose($variants,
803                         # Do not: $W->{"r"}
804                         # to prevent: Can't locate object method "scan" via package "Apache2::RequestRec" at HTTP/Negotiate.pm line 84.
805                         # Do not: $W->{"r"}->headers_in()
806                         # to prevent: Can't locate object method "scan" via package "APR::Table" at HTTP/Negotiate.pm line 84.
807                         # Do not: HTTP::Headers->new($W->{"r"}->headers_in());
808                         # to prevent empty result or even: Odd number of elements in anonymous hash
809                         HTTP::Headers->new(%hash));
810         $best||=$variants->[0][0];      # $variants->[0]{"id"}; &HTTP::Negotiate::choose failed?
811         return $best;
812 }
813
814 my @img_variants=(
815                 { "id"=>"png","qs"=>0.9,"content-type"=>"image/png" },
816                 { "id"=>"gif","qs"=>0.7,"content-type"=>"image/gif" },
817                 );
818 my $img_variants_re='[.](?:'.join('|',"jpeg",map(($_->{"id"}),@img_variants)).')$';
819
820 # Returns: ($path_web,$path_abs_disk)
821 # URI path segments support ignored here. Where it is used? (';' path segment options)
822 sub _img_src($%)
823 {
824 my($in,%args)=@_;
825
826         cluck if !uri_is_local $in;
827         my $uri=in_to_uri_abs $in;
828         my $path_abs_disk=path_abs_disk $uri,%args,"uri_as_in"=>1,"register"=>0;
829
830         # Known image extension?
831         return path_web($uri,%args,"uri_as_in"=>1),$path_abs_disk if $uri->path()=~m#$img_variants_re#o;
832
833         my @nego_variants;
834         for my $var (@img_variants) {
835                 my $path_abs_disk_variant=$path_abs_disk.".".$var->{"id"};
836                 path_abs_disk_register($path_abs_disk_variant);
837                 __PACKAGE__->make_file($path_abs_disk_variant);
838                 push @nego_variants,negotiate_variant(
839                                 %$var,
840                                 "size"=>(stat $path_abs_disk_variant)[7],
841                                 );
842                 }
843         my $ext=__PACKAGE__->Negotiate_choose(\@nego_variants);
844
845         $uri->path($uri->path().".$ext");
846         return path_web($uri,%args,"uri_as_in"=>1),path_abs_disk($uri,%args,"uri_as_in"=>1);
847 }
848
849 # $args{"attr"}
850 sub img ($$%)
851 {
852 my($in,$alt,%args)=@_;
853
854         request_check();
855         my($path_web,$path_abs_disk)=_img_src($in,%args);
856         my($width,$height)=Image::Size::imgsize($path_abs_disk);
857         $alt=~s/<[^>]*>//g;
858         $alt=escapeHTML($alt);
859         my $content="<img src=\"".uri_escaped($path_web)."\" alt=\"$alt\" title=\"$alt\" ".img_size($width,$height)
860                         .(!$args{"attr"} ? "" : " ".$args{"attr"})." />";
861         do { return a_href((_img_src($_))[0],$content,"uri_as_in"=>1) if $_; } for $args{"a_href_img"};
862         do { return a_href $_,$content if $_; } for $args{"a_href"};
863         return $content;
864 }
865
866 sub centerimg
867 {
868         my $r="";
869         $r.='<table border="0" width="100%"><tr>'."\n";
870         @_=( [@_] ) if !ref $_[0];
871         for (@_) {
872                 $r.="\t".'<td align="center">'.&{\&img}(@$_).'</td>'."\n";
873                 }
874         $r.='</tr></table>'."\n";
875         return $r;
876 }
877
878 sub rightimg
879 {
880 my($text,@args_img)=@_;
881
882         # FIXME: Workaround bug of 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)':
883         #        <col width="@{[ (!$W->{"browser"}->ie() ? "1*" : "90%" ) ]}" />
884         #        <col width="@{[ (!$W->{"browser"}->ie() ? "0*" : "10%" ) ]}" />
885         # causes whole invisible projects in: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.10) Gecko/20050719 Galeon/1.3.21
886         return <<"HERE";
887 <table border="0" width="100%">
888         <tr>
889                 <td align="left">
890                         @{[ $text ]}
891                 </td>
892                 <td align="right">
893                         @{[ &{\&img}(@args_img) ]}
894                 </td>
895         </tr>
896 </table>
897 HERE
898 }
899
900 sub readfile($$)
901 {
902 my($class,$filename)=@_;
903
904         local *F;
905         open F,$filename or cluck "Cannot open \"$filename\": $!";
906         my $F=do { local $/=undef(); <F>; };
907         close F or cluck "Cannot close \"$filename\": $!";
908         return $F;
909 }
910
911 sub _no_cache($)
912 {
913 my($self)=@_;
914
915         header("Expires"=>HTTP::Date::time2str(1000000000));    # date in the past
916         header("Last-Modified"=>HTTP::Date::time2str());        # always modified
917         header("Cache-Control"=>join(", ",
918                         "no-cache",
919                         "no-store",
920                         "must-revalidate",
921                         "max-age=0",
922                         "pre-check=0",  # MSIE
923                         "post-check=0", # MSIE
924                         ));     # HTTP/1.1
925         header("Pragma"=>"no-cache");   # HTTP/1.0
926         header("Vary"=>"*");    # content may ba based on unpredictable sources
927 }
928
929 sub headers_in_filtered(@)
930 {
931 my(@keys)=@_;
932
933         return map(($_=>$W->{"headers_in"}{$_}),@keys);
934 }
935
936 our %uri_args_frozen_to_headers_in_keys;
937 our %uri_args_headers_in_frozen_to_headers_out;
938
939 sub uri_args_headers_in_frozen_get($)
940 {
941 my($headers_in_keys_arrayref)=@_;
942
943         my %uri_args_headers_in_hash=(
944                 "uri_args_frozen"=>$W->{"uri_args_frozen"},
945                 "headers_in"=>{ headers_in_filtered(@$headers_in_keys_arrayref) },
946                 );
947         return do { local $Storable::canonical=1; Storable::freeze(\%uri_args_headers_in_hash); };
948 }
949
950 sub cache_output_filter($)
951 {
952 my($f)=@_;
953
954         while ($f->read(my $text,0x400)) {
955                 cluck "utf-8 untested" if Encode::is_utf8($text);       # Possible here at all?
956                 $f->print($text);
957                 $W->{"digest-md5"}->add($text);
958                 }
959         return OK;
960 }
961
962 sub cache_start()
963 {
964         if (!$W->{"http_safe"}) {
965                 __PACKAGE__->_no_cache();
966                 return;
967                 }
968
969         {
970                 # &Wrequire it here even if it will not be later used; to be stable!
971                 Wrequire 'My::Hash::RestrictTo';
972                 my %uri_args_hash=(
973                         "uri"=>"http://".$W->{"web_hostname"}."/".$W->{"r"}->uri(),
974                         "args"=>$W->{"args_orig_array"},
975                         );
976                 $W->{"uri_args_frozen"}=do { local $Storable::canonical=1; Storable::freeze(\%uri_args_hash); };
977                 last if !(my $headers_in_keys_arrayref=$uri_args_frozen_to_headers_in_keys{$W->{"uri_args_frozen"}});
978
979                 # Protection to be sure we are stable:
980                 $W->{"headers_in"}=My::Hash::RestrictTo->new($W->{"headers_in"},@$headers_in_keys_arrayref);
981
982                 $W->{"uri_args_headers_in_frozen"}=uri_args_headers_in_frozen_get($headers_in_keys_arrayref);
983                 last if !(my $headers_out_hashref=$uri_args_headers_in_frozen_to_headers_out{$W->{"uri_args_headers_in_frozen"}});
984                 header(%$headers_out_hashref);
985                 my $status;
986                 {
987                         # &meets_conditions will always deny the attempt if !2xx status().
988                         # At least ap_read_request() sets: r->status=HTTP_REQUEST_TIME_OUT;     /* Until we get a request */
989                         my $status_old=$W->{"r"}->status();
990                         $W->{"r"}->status(HTTP_OK);
991                         # Update httpd's 'r->mtime' as the header "Last-Modified" is just not enough for ap_meets_conditions():
992                         # &update_mtime() argument is really in _secs_, not in _msecs_ as the docs claim.
993                         # Be aware '*1000000' would overflow Perl integer anyway.
994                         # &set_last_modified would also override the "Last-Modified" headers_out!
995                         # &mtime may exist but somehow does not work.
996                         $W->{"r"}->update_mtime(HTTP::Date::str2time($headers_out_hashref->{"Last-Modified"}));
997                         $status=$W->{"r"}->meets_conditions();
998                         $W->{"r"}->status($status_old);
999                         }
1000                 last if OK==$status;
1001                 $W->{"r"}->status($status);
1002                 $W->{"header_only"}=1;  # Inhibit &footer output.
1003                 exit;
1004                 die "NOTREACHED";
1005                 }
1006
1007         $W->{"digest-md5"}=Digest::MD5->new();
1008         $W->{"cache_active"}=1;
1009         $W->{"r"}->add_output_filter(\&cache_output_filter);
1010 }
1011
1012 sub cache_finish_last_modified()
1013 {
1014         cluck "Not yet done now? W __PACKAGE__: ".$W->{"__PACKAGE__"}
1015                         if !$packages_used_hash{$W->{"__PACKAGE__"}}{"_done"};
1016         for my $package_orig (@{$packages_used_array{$W->{"__PACKAGE__"}}}) {
1017                 local $_=$package_orig.".pm";
1018                 s{::}{/}g;
1019                 path_abs_disk "/$_","register"=>1;
1020                 }
1021         my $mtime_newest;
1022         for my $path_abs_disk (keys(%{$W->{"path_abs_disk_register"}})) {
1023                 my $mtime=(stat $path_abs_disk)[9];
1024                 do { cluck "No mtime for: $path_abs_disk"; next; } if !$mtime;
1025                 $mtime_newest=$mtime if !$mtime_newest || $mtime_newest<$mtime;
1026                 }
1027         cluck "No mtime_newest found for the current W __PACKAGE__: ".$W->{"__PACKAGE__"}
1028                         if !$mtime_newest;
1029         return HTTP::Date::time2str($mtime_newest);
1030 }
1031
1032
1033 sub cache_finish()
1034 {
1035         # Do not: return if !$W->{"uri_args_frozen"};
1036         # as we may have just gave 304 and 'exit;' without starting the caching.
1037         return if !$W->{"cache_active"};
1038
1039         # Fill-in/check: %uri_args_frozen_to_headers_in_keys
1040         my $headers_in_keys_stored_arrayref_ref=\$uri_args_frozen_to_headers_in_keys{$W->{"uri_args_frozen"}};
1041         my @headers_in_keys=tied(%{$W->{"headers_in_RecordKeys"}})->accessed();
1042         if (!$$headers_in_keys_stored_arrayref_ref
1043                         || !Data::Compare::Compare(\@headers_in_keys,$$headers_in_keys_stored_arrayref_ref)) {
1044                 cluck "Non-matching generated 'headers_in_keys' per 'uri_args_frozen' key:\n"
1045                                                 .Dumper(\@headers_in_keys,$$headers_in_keys_stored_arrayref_ref)
1046                                 if $$headers_in_keys_stored_arrayref_ref;
1047                 # Build or possibly prevent such further warn dupes:
1048                 $$headers_in_keys_stored_arrayref_ref=\@headers_in_keys;
1049                 # Build or regenerate as obsoleted now:
1050                 $W->{"uri_args_headers_in_frozen"}=uri_args_headers_in_frozen_get(\@headers_in_keys);
1051                 }
1052
1053         # Prepare 'headers_out' for the future reusal:
1054         my %headers_out;
1055         # Do not: $W->{"digest-md5"}->b64digest();
1056         # as it will not provide the trailing filling '='s.
1057         # RFC 1864 is not clear if they should be there but its sample provides them.
1058         # Do not try to provide canonical "\r\n" form of newlines as is said by RFC 1864.
1059         # RFC 2068 (HTTP/1.1) section 14.16 says the newlines should NOT be converted for HTTP.
1060         # ',""' to avoid breaking the headers by its default "\n".
1061         $headers_out{"Content-MD5"}=MIME::Base64::encode_base64($W->{"digest-md5"}->digest(),"");
1062         # In fact we could also use MD5 for ETag as if we know ETag we also know MD5.
1063         # But this way we do not need to calculate MD5 and we still can provide such ETag. So.
1064         # $W->{"r"}->set_etag() ?
1065         $headers_out{"ETag"}='"'.Digest::MD5::md5_base64($W->{"uri_args_headers_in_frozen"}).'"';
1066         # $W->{"r"}->set_content_length() ?
1067         $headers_out{"Content-Length"}=$W->{"r"}->bytes_sent();
1068         my %Vary=map(($_=>1),(@headers_in_keys));
1069         for (keys(%Vary)) {
1070                 next if !/^_/;
1071                 $Vary{"*"}=1;
1072                 delete $Vary{$_};
1073                 }
1074         %Vary=("*"=>1) if $Vary{"*"};
1075         $headers_out{"Vary"}=join(", ",sort keys(%Vary)) if keys(%Vary);
1076         # $W->{"r"}->set_last_modified() ?
1077         $headers_out{"Last-Modified"}=cache_finish_last_modified();
1078
1079         # Fill-in/check: %uri_args_headers_in_frozen_to_headers_out
1080         my $headers_out_stored_hashref_ref=\$uri_args_headers_in_frozen_to_headers_out{$W->{"uri_args_headers_in_frozen"}};
1081         if (!$$headers_out_stored_hashref_ref
1082                         || !Data::Compare::Compare(\%headers_out,$$headers_out_stored_hashref_ref)) {
1083                 cluck "Non-matching generated 'headers_out' per 'uri_args_headers_in_frozen' key:\n"
1084                                                 .Dumper(\%headers_out,$$headers_out_stored_hashref_ref)
1085                                 if $$headers_out_stored_hashref_ref;
1086                 # Build or possibly prevent such further warn dupes:
1087                 $$headers_out_stored_hashref_ref=\%headers_out;
1088                 }
1089
1090 ###print STDERR Dumper(\%uri_args_frozen_to_headers_in_keys,\%uri_args_headers_in_frozen_to_headers_out);
1091 }
1092
1093 sub heading()
1094 {
1095 my($class)=@_;
1096
1097         if (!$W->{"header_only"}) {
1098                 header("Content-Style-Type"=>"text/css");
1099                 header("Content-Script-Type"=>"text/javascript");
1100                 # $W->{"r"}->content_languages() ?
1101                 do { header("Content-Language"=>$_) if $_; } for $W->{"language"};
1102                 }
1103         # TODO: Support also: private
1104         header("Cache-Control"=>"public");      # HTTP/1.1
1105
1106         # Use $W->{"charset"}=0 to disable charset.
1107         $W->{"charset"}="us-ascii"
1108                         if !defined $W->{"charset"} && (!defined($W->{"content_type"}) || $W->{"content_type"});
1109
1110         # Workaround bug
1111         #   https://bugzilla.mozilla.org/show_bug.cgi?id=120556
1112         # of at least
1113         #   Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8b) Gecko/20050217
1114         # http://validator.w3.org/ does not send ANY "Accept" headers!
1115         $W->{"content_type"}="application/xhtml+xml" if !defined $W->{"content_type"}
1116                         && !$W->{"headers_in"}{"Accept"}
1117                         && ($W->{"headers_in"}{"User-Agent"}||"")=~m{^W3C_Validator/}i;
1118         defined($W->{"content_type"}) or $W->{"content_type"}=$class->Negotiate_choose([
1119                         # Put the fallback variant as the first one.
1120                         # Rate both variants the same to prefer "text/html" for undecided clients.
1121                         # At least
1122                         #   Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8b) Gecko/20050217
1123                         # prefers "application/xhtml+xml" over "text/html" itself:
1124                         #   text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
1125                         negotiate_variant(
1126                                         "id"=>"text/html",
1127                                         "content-type"=>"text/html",
1128                                         "qs"=>0.6,
1129                                         (!$W->{"charset"} ? () : "charset"=>$W->{"charset"}),
1130                                         "lang"=>$W->{"language"},
1131                                         ),
1132                         negotiate_variant(
1133                                         "id"=>"application/xhtml+xml",
1134                                         "content-type"=>"application/xhtml+xml",
1135                                         "qs"=>0.6,
1136                                         (!$W->{"charset"} ? () : "charset"=>$W->{"charset"}),
1137                                         "lang"=>$W->{"language"},
1138                                         ),
1139                         # application/xml ?
1140                         # text/xml ?
1141                         ]);
1142         # mod_perl doc: If you set this header via the headers_out table directly, it
1143         #               will be ignored by Apache. So do not do that.
1144         my $type;
1145         if ($W->{"content_type"}) {
1146                 $type=MIME::Types->new()->type($W->{"content_type"});
1147                 cluck "MIME::Types type '".$W->{"content_type"}."' not known" if !$type;
1148                 }
1149         cluck "charset='".$W->{"charset"}."' does not match content-type='".$W->{"content_type"}."'"
1150                         if ($W->{"charset"} ? 1 : 0) != (!$type ? 0 : $type->isAscii());
1151         $W->{"r"}->content_type($W->{"content_type"}.(!$W->{"charset"} ? "" : "; charset=".$W->{"charset"}))
1152                         if $W->{"content_type"};
1153
1154         cache_start();
1155         # We still can append headers before we put out some text.
1156         # FIXME: It is not clean to still append them without overwriting.
1157         return if $W->{"heading_done"};
1158         Wprint '<?xml version="1.0" encoding="'.$W->{"charset"}.'"?>'."\n"
1159                         if (!$W->{"header_only"} || $W->{"header_only"} eq "xml") && (0
1160                                         || $W->{"content_type"}=~m{^application/\w+[+]xml$}
1161                                         || $W->{"content_type"} eq "text/vnd.wap.wml");
1162         return if $W->{"header_only"};
1163         # Split 'heading_done' for the proper handling of: /project/Rel.pm
1164         $W->{"heading_done"}++;
1165
1166         Wprint '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">'."\n";
1167         Wprint '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="'.$W->{"language"}.'">'."\n";
1168         my $title=$W->{"title_prefix"}.join("",map({ ': '.$_; } ($W->{"title"} || ())));
1169         # Do not: cluck if $title=~/[<>]/;
1170         # as it is not solved just by: &a_href_inhibit
1171         # as sometimes titles use also: <i>...</i>
1172         $title=~s#<[^>]*>##g;
1173         Wprint "<head>";
1174         Wprint "<title>$title</title>\n";
1175         if ($W->{"have_css"}) {
1176                 # Everything can get overriden later.
1177                 for my $css ("/My/Web.css",@{$W->{"css_push"}}) {
1178                         Wprint <<"HERE";
1179 <link rel="stylesheet" type="text/css" href="@{[ uri_escaped(path_web $css) ]}" />
1180 HERE
1181                         }
1182                 if ($W->{"css_inherit"}) {
1183                         Wprint <<"HERE";
1184 <script type="text/javascript" src="@{[ uri_escaped(path_web('/My/css_inherit.js')) ]}" />
1185 HERE
1186                         }
1187                 }
1188         Wprint '<meta name="robots" content="'.($W->{"indexme"} ? "" : "no" ).'index,follow" />'."\n";
1189         Wprint $W->{"head"};
1190         for my $type (qw(prev next index contents start up)) {
1191                 do { Wprint '<link rel="'.$type.'" href="'.uri_escaped(path_web $_).'" />'."\n" if $_; }
1192                                 for ($W->{"rel_$type"});
1193                 }
1194         Wprint "</head><body";
1195 #       Wprint ' bgcolor="black" text="white" link="aqua" vlink="teal"'
1196 #                       if $W->{"browser"}->netscape() && (!$W->{"browser"}->major() || $W->{"browser"}->major()<=4);
1197         Wprint $W->{"body_attr"};
1198         Wprint ">\n";
1199
1200         do { Wprint $_ if $_; } for $W->{"heading"};
1201 }
1202
1203 BEGIN {
1204         delete $W->{"__My::Web_init"};
1205         }
1206
1207 1;