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