Provide 'tie' capability with 'My::Web' classname for output &Wprint.
[MyWeb.git] / Web.pm
1 # $Id$
2 # Common functions for HTML/XHTML output generation
3 # Copyright (C) 2003 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(&Wrequire &Wuse &a_href &a_href_cz &vskip &img &centerimg &rightimg $W &top_dir &top_dir_disk &Wprint);
31 our @ISA=qw(Exporter Tie::Handle);
32
33 BEGIN
34 {
35         $W->{"__My::Web_init"}=1;
36
37         sub Wrequire ($)
38         {
39         my($file)=@_;
40
41 #               print STDERR "Wrequire $file\n";
42                 $file=~s#/#::#g;
43                 $file=~s/[.]pm$//;
44                 my $class=$file;
45                 $file=~s#::#/#g;
46                 $file.=".pm";
47                 my $who=$W->{"__PACKAGE__"};
48                 $who||="__My::Web" if $W->{"__My::Web_init"};
49                 my $aref=($W->{"packages_used"}{$who}||=[]);
50                 push @$aref,$class
51                                 if !{ map(($_=>1),@$aref) }->{$class};  # Prevent duplicated entries.
52                 CORE::require $file;
53                 1;      # Otherwise 'require' would already file above.
54         }
55
56         sub Wuse ($@)
57         {
58         my($file,@list)=@_;
59
60 #               print STDERR "Wuse $file\n";
61                 Wrequire $file;
62                 local $Exporter::ExportLevel=$Exporter::ExportLevel+1;
63                 $file->import(@list);
64                 1;
65         }
66 }
67
68 BEGIN { Wuse 'WebConfig'; }     # for %WebConfig
69 require CGI;    # for &escapeHTML
70 require Image::Size;    # for &imgsize
71 use File::Basename;     # &basename
72 use Carp qw(cluck confess);
73 use URI::Escape;
74 require HTTP::BrowserDetect;
75 require HTTP::Negotiate;
76 my $have_Geo_IP; BEGIN { $have_Geo_IP=eval { require Geo::IP; 1; }; }
77 use ModPerl::Util qw(exit);
78 use POSIX qw(strftime);
79 use Tie::Handle;
80
81
82 #our $W;
83                 # $W->{"title"}
84                 # $W->{"head"}
85                 # $W->{"head_css"}
86                 # $W->{"force_charset"}
87                 # $W->{"heading_done"}
88                 # $W->{"footer_passed"}
89                 # %{$W->{"headers"}}
90                 # %{$W->{"headers_lc"}} # maps lc($headers_key)=>$headers_key
91                 # @{$W->{"packages_used"}{$W->{"__PACKAGE__"}}}
92                 # @{$W->{"packages_used"}{"__My::Web"}}
93                 # %{$W->{"args"}}
94
95 sub init ($%)
96 {
97 my($class,%args)=@_;
98
99         print STDERR "$class->init ".Apache->request()->unparsed_uri()."\n";
100
101         my $packages_used_save=$W->{"packages_used"};
102         $W={ %WebConfig,%args };        # override %WebConfig settings
103         $W->{"packages_used"}=$packages_used_save;
104
105         # {"__PACKAGE__"} is mandatory for mod_perl-2.0;
106         # $Apache::Registry::curstash is no longer supported.
107         do { cluck "No $_" if !$W->{$_}; } for "__PACKAGE__";
108
109         $W->{"top_dir"}||=eval '$'.$W->{"__PACKAGE__"}.'::top_dir';
110
111         do { $W->{$_}=0  if !defined $W->{$_}; } for ("detect_ent");
112         do { $W->{$_}=0  if !defined $W->{$_}; } for ("detect_js");
113         do { $W->{$_}=1  if !defined $W->{$_}; } for ("have_css");      # AFAIK it does not hurt anyone.
114         do { $W->{$_}=1  if !defined $W->{$_}; } for ("heading");
115         do { $W->{$_}=1  if !defined $W->{$_}; } for ("footer");
116         do { $W->{$_}=1  if !defined $W->{$_}; } for ("footer_delimit");
117         do { $W->{$_}=1  if !defined $W->{$_}; } for ("footer_mailme");
118         do { $W->{$_}=1  if !defined $W->{$_}; } for ("footer_ids");
119         do { $W->{$_}=1  if !defined $W->{$_}; } for ("indexme");
120         do { $W->{$_}="" if !defined $W->{$_}; } for ("head");
121         do { $W->{$_}="" if !defined $W->{$_}; } for ("head_css");
122
123         my $footer_any=0;
124         for (qw(footer_mailme footer_ids)) {
125                 $W->{$_}=0 if !$W->{"footer"};
126                 $footer_any=1 if $W->{$_};
127                 }
128         $W->{"footer"}=0 if !$footer_any;
129         $W->{"footer_delimit"}=0 if !$W->{"footer"};
130
131         $W->{"r"}=Apache->request();
132
133         $W->{"QUERY_STRING"}=$W->{"r"}->args() || "";
134            if ($W->{"QUERY_STRING"}=~/[&]amp;have_ent/)
135                 { $W->{"have_ent"}=0; }
136         elsif ($W->{"QUERY_STRING"}=~    /[&]have_ent/)
137                 { $W->{"have_ent"}=1; }
138         else
139                 { delete $W->{"have_ent"}; }
140         if ($W->{"detect_ent"} && !defined $W->{"have_ent"} && $W->{"r"}->method() eq "GET") {
141                 $W->{"head"}.='<meta http-equiv="Refresh" content="0; URL='
142                                 .CGI::escapeHTML("http://".&{$W->{"web_hostname_sub"}}()."/".($W->{"r"}->uri()=~m#^/*(.*)$#)[0]
143                                                 ."?".($W->{"QUERY_STRING"} || "detect_ent_glue=1").'&have_ent=detect')
144                                 .'" />'."\n";
145                 }
146         $W->{"QUERY_STRING"}=~s/([&])amp;/$1/g;
147         $W->{"r"}->args($W->{"QUERY_STRING"});
148         # Do not: $W->{"r"}->args()
149         # as it parses only QUERY_STRING (not POST data).
150         $W->{"args"}={ CGI->new($W->{"r"})->Vars() };
151         for (keys(%{$W->{"args"}})) {
152                 my @vals=split /\x00/,$W->{"args"}{$_};
153                 next if @vals<=1;
154                 $W->{"args"}{$_}=[@vals];
155                 }
156
157         do { $W->{$_}=$W->{"r"}->headers_in()->{"Accept"}     if !defined $W->{$_}; } for ("accept");
158         do { $W->{$_}=$W->{"r"}->headers_in()->{"User-Agent"} if !defined $W->{$_}; } for ("user_agent");
159
160         $W->{"browser"}=HTTP::BrowserDetect->new($W->{"user_agent"});
161
162         if (!defined $W->{"have_style"}) {
163                 $W->{"have_style"}=(!$W->{"browser"}->netscape() || ($W->{"browser"}->major() && $W->{"browser"}->major()>4) ? 1 : 0);
164                 }
165
166         $W->{"have_js"}=($W->{"args"}{"have_js"} ? 1 : 0);
167         if ($W->{"detect_js"} && !$W->{"have_js"}) {
168                 $W->{"head"}.='<script type="text/javascript" src="'.top_dir('/have_js.js.pl').'"></script>'."\n";
169                 }
170
171         do { args_check(%$_) if $_; } for ($W->{"args_check"});
172
173         $ENV{"HOSTNAME"}||=&{$W->{"web_hostname_sub"}}();
174
175         return bless $W,$class;
176 }
177
178 sub Wprint($)
179 {
180 my($text)=@_;
181
182         $W->{"r"}->puts($text);
183 }
184
185 # local *FH;
186 # tie *FH,ref($W),$W;
187 sub TIEHANDLE($)
188 {
189 my($class,$W)=@_;
190
191         my $self={};
192         $self->{"W"}=$W or confess "Missing W";
193         return bless $self,$class;
194 }
195
196 sub WRITE
197 {
198 my($self,$scalar,$length,$offset)=@_;
199
200         Wprint substr($scalar,0,$length);
201 }
202
203 sub top_dir_disk ()
204 {
205         do { return $_ if $_; } for ($W->{"top_dir"});
206         return $INC[0]; # fallback
207 }
208
209 sub top_dir (;$)
210 {
211 my($in)=@_;
212
213         if (my $uri=$W->{"r"}->unparsed_uri()) {
214                 if ($W->{"args"}{"Wabs"}) {
215                         # FIXME: $in may not be defined here!
216                         # to prevent: Use of uninitialized value in ...
217                         if ($in=~m#^/#) {
218                                 $in=~s#^/*##;
219                                 }
220                         else {
221                                 $in=$uri."/".$in;
222                                 $in=~tr#/#/#s;
223                                 1 while $in=~s#/(?:[^/]+)/\Q..\E/#/#g
224                                 }
225                         return "http://".&{$W->{"web_hostname_sub"}}()."/".(defined $in ? $in : "");
226                         }
227                 $uri.="Index" if $uri=~m#/$#;
228                 if (defined $in) {
229                         my($inpath,$inquery)=split /[?]/,$in,2;
230                         $inpath=~tr///cs;
231                         $uri=~tr///cs;
232                         for (;;) {
233                                 my($in1 ,$in2 )=($in =~m#^(/[^/]+)(/.*)$#);
234                                 my($uri1,$uri2)=($uri=~m#^(/[^/]+)(/.*)$#);
235                                 last if !defined $in1 || !defined $uri1 || $in1 ne $uri1;
236                                 $in=$in2;
237                                 $uri=$uri2;
238                                 }
239                         }
240                 $uri=~s#^/*##;
241                 $uri=~s#[^/]+#..#g;
242                 $uri=File::Basename::dirname($uri);
243                 my $r=$uri.(defined $in ? $in : "");
244 #               1 while $r=~s#^[.]/##;
245 #               $r="./$r" if $r=~m#^(?:?.*)$#;  # empty pathname?
246                 return $r;
247                 }
248         return top_dir_disk().$in;
249 }
250
251 sub fatal (;$);
252
253 sub args_check (%)
254 {
255 my(%tmpl)=@_;
256
257         while (my($name,$regex)=each(%tmpl)) {
258                 my $name_html="Parameter <span class=\"quote\">".CGI::escapeHTML($name)."</span>";
259                 $W->{"args"}{$name}="" if !defined $W->{"args"}{$name};
260                 $W->{"args"}{$name}=[ $W->{"args"}{$name} ] if !ref $W->{"args"}{$name} && ref $regex;
261                 fatal "$name_html passed as multivar although singlevar expected"
262                                 if ref $W->{"args"}{$name} && !ref $regex;
263                 $regex=$regex->[0] if ref $regex;
264                 for my $val (!ref $W->{"args"}{$name} ? $W->{"args"}{$name} : @{$W->{"args"}{$name}}) {
265                         $val="" if !defined $val;
266                         fatal "$name_html <span class=\"quote\">".CGI::escapeHTML($val)."</span>"
267                                                         ." does not match the required regex <span class=\"quote\">".CGI::escapeHTML($regex)."</span> "
268                                         if $regex ne "" && $val!~/$regex/;
269                         }
270                 }
271 }
272
273 sub vskip (;$)
274 {
275 my($height)=@_;
276
277         return '<p'.(!defined $height ? "" : ' style="height: '.$height.';"').'>&nbsp;</p>'."\n";
278 }
279
280 sub fatal (;$)
281 {
282 my($msg)=@_;
283
284         $msg="UNKNOWN" if !$msg;
285
286         $W->{"indexme"}=0;      # For the case no heading was sent yet.
287         My::Web->heading();
288         Wprint "\n".vskip("3ex")."<hr /><h1 class=\"error\">FATAL ERROR: $msg!</h1>\n"
289                         ."<p>You can report this problem's details to"
290                         ." ".a_href("mailto:".$W->{"admin_mail"},"admin of this website").".</p>\n";
291         footer();
292 }
293
294 sub footer (;$)
295 {
296         exit 1 if $W->{"footer_passed"}++;      # deadlock prevention:
297
298         Wprint vskip if $W->{"footer_delimit"};
299
300         if ($W->{"heading"}) {
301                 do { &{$_}() if $_; } for ($W->{"footing_delimit"});
302                 }
303
304         Wprint "<hr />\n" if $W->{"footer"};
305
306         if ($W->{"footer_mailme"}) {
307                 Wprint '<form action="'.top_dir('/SendMsg.pl').'" method="post" onsubmit="'
308                                 ."this.elements['msgscript'].value=this.elements['msghtml'].value;"
309                                 ."this.elements['msghtml'].value='';"
310                                 ."this.submit();"
311                                 .'">'."\n";
312                         Wprint '<p align="right">'."\n";
313                                 Wprint '<input name="msgscript" type="hidden" />'."\n";
314                                 Wprint '<input name="msghtml" type="text" size="32" alt="Message" />'."\n";
315                                 Wprint '<input name="submit" type="submit" value="Quick Note" />'."\n";
316                         Wprint '</p>'."\n";
317                 Wprint '</form>'."\n";
318                 }
319
320         my @packages_used=(
321                         $W->{"__PACKAGE__"},
322                         __PACKAGE__,
323                         @{$W->{"packages_used"}{"__My::Web"}},
324                         map((!$_ ? () : @$_),$W->{"packages_used"}{$W->{"__PACKAGE__"}}),
325                         );
326         my %packages_used;
327         @packages_used=grep((!$packages_used{$_}++),@packages_used);
328         if ($W->{"footer_ids"}) {
329                 Wprint '<p class="cvs-id">';
330                 Wprint join("<br />\n",map({ my $package=$_;
331                         my $cvs_id=(eval('$'.$package."::CVS_ID")
332 #                                       || $package     # debug
333                                         );
334                         if (!$cvs_id) {
335                                 ();
336                                 }
337                         else {
338                                 $cvs_id='$'.$cvs_id.'$';        # Eaten by 'q' operator.
339                                 my @cvs_id_split=split / +/,$cvs_id;
340                                 if (@cvs_id_split==8) {
341                                         my $file=$package;
342                                         $file=~s#::#/#g;
343                                         my $ext;
344                                         my @tried;
345                                         for (qw(.html.pl .pl .pm),"") {
346                                                 $ext=$_;
347                                                 my $pathname=top_dir_disk()."/$file$ext";
348                                                 push @tried,$pathname;
349                                                 last if -r $pathname;
350                                                 cluck "Class file $file not found; tried: ".join(" ",@tried) if !$ext;
351                                                 }
352                                         $file.=$ext;
353                                         $cvs_id_split[2]=""
354                                                         .a_href((map({ my $s=$_; $s=~s#/viewcvs/#$&~checkout~/#; $s; } $W->{"viewcvs"}))[0]."$file?rev=".$cvs_id_split[2],
355                                                                         $cvs_id_split[2]);
356                                         $cvs_id_split[1]=a_href($W->{"viewcvs"}.$file,
357                                                         ($package!~/^Apache::/ ? $package : $cvs_id_split[1]));
358                                         $cvs_id_split[5]=&{$W->{"cvs_id_author"}}($cvs_id_split[5]);
359                                         }
360                                 join " ",@cvs_id_split;
361                                 }
362                         } @packages_used));
363                 Wprint "</p>\n";
364                 }
365
366         for my $package (@packages_used) {
367                 my $cvs_id=(eval('$'.$package."::CVS_ID")
368 #                               || $package     # debug
369                                 );
370                 Wprint '<!-- '.$package.' - $'.$cvs_id.'$ -->'."\n" if $cvs_id;
371                 }
372
373         if ($W->{"heading"}) {
374                 do { &{$_}() if $_; } for ($W->{"footing"});
375                 }
376
377         Wprint "</body></html>\n";
378         exit(0);
379 }
380
381 sub header (%)
382 {
383 my(%pairs)=@_;
384
385         while (my($key,$val)=each(%pairs)) {
386                 do { cluck "Headers already sent"; next; } if $W->{"heading_done"};
387                 for ($W->{"headers_lc"}{lc $key} || ()) {
388                         delete $W->{"headers"}{$_};
389                         }
390                 $W->{"headers_lc"}{lc $key}=$key;
391                 $W->{"headers"}{$key}=$val;
392                 }
393 }
394
395 sub size_display ($)
396 {
397 my($size)=@_;
398
399            if ($size<4096)
400                 {}
401         elsif ($size<1024*1024)
402                 { $size=sprintf "%.1fK",$size/1024; }
403         else
404                 { $size=sprintf "%.1fM",$size/1024/1024; }
405         $size.="B";
406         return $size;
407 }
408
409 sub url_is_local ($)
410 {
411 my($url)=@_;
412
413         return $url!~m#^[a-z]+://#;
414 }
415
416 sub a_href ($;$%)
417 {
418 my($url,$contents,%args)=@_;
419
420         do { $$_=1 if !defined $$_; } for (\$args{"size"});
421         if (!defined $contents) {
422                 $contents=$url;
423                 $contents=File::Basename::basename($contents) if $args{"basename"};
424                 $contents=CGI::escapeHTML($contents);
425                 }
426         $contents=~s#<a\b[^>]*>##gi;
427         $contents=~s#</a>##gi;
428
429         $url=top_dir($url) if url_is_local $url && $url=~m#^/#;
430
431         my $r='<a href="';
432         my $urlent=CGI::escapeHTML($url);
433            if ($url eq $urlent)
434                 { $r.=$url; }
435         elsif (url_is_local $url)
436                 { $r.=$urlent; }
437         elsif (defined $W->{"have_ent"} && !$W->{"have_ent"})   # non-ent client
438                 { $r.=$url; }
439         elsif ($W->{"have_ent"})        # ent client
440                 { $r.=$urlent; }
441         else    # unknown client, &CGI::escapeHTML should not be needed here
442                 { $r.=CGI::escapeHTML(top_dir('/Redirect.pl?location='.uri_escape($url))); }
443         $r.='"';
444         do { $r.=" $_" if $_; } for ($args{"attr"});
445         $r.='>'.$contents.'</a>';
446         if ($args{"size"} && url_is_local($url) && ($args{"size"}>=2 || $url=~/[.](?:gz|Z|rpm|zip|deb|lha)/)) { # Downloadable?
447                 $url=top_dir_disk().$url if $url=~m#^/#;
448                 if (!-r $url)
449                         { cluck "File not readable: $url"; }
450                 else {
451                         $r.='&nbsp;('.size_display((stat($url))[7]).')';
452                         }
453                 }
454         return $r;
455 }
456
457 sub remote_ip ()
458 {
459         # Do not: PerlModule                 Apache::ForwardedFor
460         #         PerlPostReadRequestHandler Apache::ForwardedFor
461         # As 'Apache::ForwardedFor' takes the first of $ENV{"HTTP_X_FORWARDED_FOR"}
462         # while the contents is '127.0.0.1, 213.220.195.171' if client has its own proxy.
463         # We must take the last item ourselves.
464         my $r=$W->{"r"}->headers_in()->{"X-Forwarded-For"} || $W->{"r"}->get_remote_host();
465         $r=~s/^.*,\s*//;
466         return $r;
467 }
468
469 sub is_cz ()
470 {
471         return 0 if !$have_Geo_IP;
472         return "CZ" eq Geo::IP->new()->country_code_by_addr(remote_ip());
473 }
474
475 sub a_href_cz ($$;%)
476 {
477 my($url,$contents,%args)=@_;
478
479         return a_href $url,$contents,%args if is_cz();
480         return $contents;
481 }
482
483 sub make ($)
484 {
485 my($cmd)=@_;
486
487         system {'flock'} 'flock','-x',top_dir_disk(),$cmd.' >&2';
488 }
489
490 sub img_size ($$)
491 {
492 my($width,$height)=@_;
493
494         return ($W->{"have_style"} ? "style=\"border:0;width:${width}px;height:${height}px\"" : "border=\"0\"")
495                         ." width=\"$width\" height=\"$height\"";
496 }
497
498 sub negotiate_variant (%)
499 {
500 my(%args)=@_;
501
502         my @fields=("id","qs","content-type","encoding","charset","lang","size");
503         return [ map(($args{$_}),@fields) ];
504 }
505
506 my @img_variants=(
507                 { "id"=>"png","qs"=>1.0,"content-type"=>"image/png" },
508                 { "id"=>"gif","qs"=>0.9,"content-type"=>"image/gif" },
509                 );
510 my $img_variants_re='[.](?:'.join('|',"jpeg",map(($_->{"id"}),@img_variants)).')$';
511
512 sub img_src ($)
513 {
514 my($file_base)=@_;
515
516         if (!url_is_local($file_base)) {
517                 return $file_base if !wantarray();
518                 return ($file_base,$file_base);
519                 }
520         # Known image extension?
521         if ($file_base=~m#$img_variants_re#o) {
522                 return $file_base if !wantarray();
523                 return ($file_base,$file_base) if $file_base!~m#^/#;
524                 return (top_dir($file_base),top_dir_disk().$file_base);
525                 }
526
527         my $file_base_disk;
528         my $file_base_uri;
529         if ($file_base!~m#^/#) {
530                 $file_base_disk=$file_base_uri=$file_base;
531                 }
532         else {
533                 $file_base_disk=top_dir_disk().$file_base;
534                 $file_base_uri=top_dir($file_base);
535                 }
536
537         my @nego_variants;
538         for my $var (@img_variants) {
539                 my $file=$file_base_disk.".".$var->{"id"};
540                 # TODO: Somehow quickly check dependencies?
541                 make('make -s --no-print-directory'
542                                                 .' -C '."'".File::Basename::dirname($file)."' '".File::Basename::basename($file)."'")
543                                 if !-f $file;
544                 push @nego_variants,negotiate_variant(
545                                 %$var,
546                                 "size"=>(stat $file)[7],
547                                 );
548                 }
549         # Do not: ,$W->{"r"});
550         # but should we provide somehow either 'HTTP::Headers' or 'HTTP::Request' ?
551         my $ext=HTTP::Negotiate::choose(\@nego_variants);
552         $ext||=$img_variants[0]->{"id"};        # &HTTP::Negotiate::choose failed?
553
554         return $file_base_uri.".".$ext if !wantarray();
555         return ($file_base_uri.".".$ext,$file_base_disk.".".$ext);
556 }
557
558 sub img ($$;%)
559 {
560 my($file_base,$alt,%attr)=@_;
561
562         my($file_uri,$file_disk)=img_src $file_base;
563         my($width,$height)=Image::Size::imgsize($file_disk);
564         $alt=~s/<[^>]*>//g;
565         $alt=CGI::escapeHTML($alt);
566         my $content="<img src=\"$file_uri\" alt=\"$alt\" title=\"$alt\" ".img_size($width,$height)
567                         .(!$attr{"attr"} ? "" : " ".$attr{"attr"})." />";
568         return a_href img_src($attr{"a_href_img"}),$content if $attr{"a_href_img"};
569         return a_href $attr{"a_href"},$content if $attr{"a_href"};
570         return $content;
571 }
572
573 sub centerimg
574 {
575         my $r.="";
576         $r.='<table border="0" width="100%"><tr>'."\n";
577         @_=( [@_] ) if !ref $_[0];
578         for (@_) {
579                 $r.="\t".'<td align="center">'.&{\&img}(@$_).'</td>'."\n";
580                 }
581         $r.='</tr></table>'."\n";
582         return $r;
583 }
584
585 sub rightimg
586 {
587 my($text,@args_img)=@_;
588
589         # Workaround bug of 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)':
590         return <<"HERE";
591 <table border="0" width="100%">
592         <col width="@{[ (!$W->{"browser"}->ie() ? "1*" : "90%" ) ]}" />
593         <col width="@{[ (!$W->{"browser"}->ie() ? "0*" : "10%" ) ]}" />
594         <tr>
595                 <td align="left">
596                         @{[ $text ]}
597                 </td>
598                 <td align="right">
599                         @{[ &{\&img}(@args_img) ]}
600                 </td>
601         </tr>
602 </table>
603 HERE
604 }
605
606 sub readfile ($$)
607 {
608 my($class,$filename)=@_;
609
610         local *F;
611         open F,$filename or die "Cannot open \"$filename\": $!";
612         local $/=undef();
613         my $data=<F>;
614         close F;
615         return $data;
616 }
617
618 sub arr_keys (@)
619 {
620 my(@arr)=@_;
621
622         my @r=();
623         while (@arr) {
624                 push @r,shift @arr;     # key
625                 shift @arr;     # val
626                 }
627         return @r;
628 }
629
630 sub no_cache($)
631 {
632 my($self)=@_;
633
634         header("Expires"=>"Mon, 26 Jul 1997 05:00:00 GMT");     # date in the past
635         header("Last-Modified"=>strftime("%a, %d %b %Y %H:%M:%S GMT",gmtime()));        # always modified
636         header("Cache-Control"=>"no-cache, must-revalidate");   # HTTP/1.1
637         header("Pragma"=>"no-cache");   # HTTP/1.0
638 }
639
640 sub heading ()
641 {
642 my($class)=@_;
643
644         return if $W->{"heading_passed"}++;
645
646         # $ENV{"CLIENT_CHARSET"} ignored (mod_czech support dropped!)
647         my $client_charset=$W->{"force_charset"} || "us-ascii";
648         header("Content-Style-Type"=>"text/css");
649         header("Content-Script-Type"=>"text/javascript");
650         $class->no_cache() if $W->{"no_cache"};
651
652         while (my($key,$val)=each(%{$W->{"headers"}})) {
653                 $W->{"r"}->header_out($key,$val);
654                 }
655         $W->{"r"}->send_http_header("text/html; charset=$client_charset");      # "Content-type"; do not use header()
656
657         return if $W->{"heading_done"}++;
658         exit if $W->{"r"}->header_only();
659
660         if (1) { # || !$msie_major || $msie_major>=4) # TODO:dyn
661                 Wprint '<?xml version="1.0" encoding="'.$client_charset.'"?>'."\n";
662                 }
663         Wprint '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">'."\n";
664         Wprint '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">'."\n";
665         my $title=$W->{"title_prefix"}.join("",map({ ': '.$_; } ($W->{"title"} || ())));
666         $title=~s#<[^>]*>##g;
667         Wprint "<head>";
668         Wprint "<title>$title</title>\n";
669
670         if ($W->{"have_css"}) {
671                 Wprint <<'HERE';
672 <style type="text/css"><!--
673 .cvs-id   { font-family: monospace; }
674 .error    { color: red;   background-color: transparent; }
675 .quote    { font-family: monospace; }
676 .nowrap   { white-space: nowrap; }
677 .centered { text-align: center; }
678 .tab-bold { font-weight: bold; }
679 .tab-head { font-weight: bold; }
680 /*
681 .tab-head { font-weight: bold; color: yellow; background-color: transparent; }
682 body {
683                 background-color: black;
684                 color: white;
685                 }
686 :link    { color: aqua;   background-color: transparent; }
687 :visited { color: teal;   background-color: transparent; }
688 h1,h2    { color: yellow; background-color: transparent; }
689 */
690 td       { padding: 2px; }
691 caption  { caption-side: bottom; }
692 .footer img { vertical-align: middle; }
693 HERE
694                 Wprint $W->{"head_css"}."\n";
695                 Wprint "--></style>\n";
696                 }
697
698         Wprint '<meta name="robots" content="'.($W->{"indexme"} ? "" : "no" ).'index,follow" />'."\n";
699         Wprint $W->{"head"};
700         for my $type (qw(prev next index contents start up)) {
701                 do { Wprint '<link rel="'.$type.'" href="'.$_.'" />'."\n" if $_; } for ($W->{"rel_$type"});
702                 }
703         Wprint "</head><body";
704 #       Wprint ' bgcolor="black" text="white" link="aqua" vlink="teal"'
705 #                       if $W->{"browser"}->netscape() && (!$W->{"browser"}->major() || $W->{"browser"}->major()<=4);
706         do { &{$_}($W) if $_; } for $W->{"body_attr_sub"};
707         Wprint ">\n";
708
709         if ($W->{"heading"}) {
710                 do { &{$_}() if $_; } for ($W->{"heading"});
711                 }
712 }
713
714 BEGIN {
715         delete $W->{"__My::Web_init"};
716         }
717
718 1;