Moved the source to the CVS.
[www.jankratochvil.net.git] / WebConfig.pm
index 76a2970..d4ef2b0 100644 (file)
@@ -32,99 +32,98 @@ use vars qw(@ISA @EXPORT);
 @EXPORT=qw(%WebConfig);
 
 use My::Web;
-require CGI;
 
 
-my $resume_url="/resume/Resume-JanKratochvil.html.pl/Resume-JanKratochvil.html";
+my $resume_url="/resume/ResumeJanKratochvil.pm/ResumeJanKratochvil.html";
 
+sub vskip_hr($) { return "<hr />\n".My::Web::vskip("1ex"); }
+
+# Only to be used privately by My::Web !
 our %WebConfig=(
                "admin_mail"=>'web-www.jankratochvil.net@jankratochvil.net',
-               "SendMsg_to"=>'web-www.jankratochvil.net@jankratochvil.net',
-               "cvs_id_author"=>sub {
+               "cvs_id_author_sub"=>sub {
                        my($name)=@_;
                                return My::Web::a_href("http://www.jankratochvil.net/","Jan Kratochvil") if 0
                                                || $name eq "short"
                                                || $name eq "lace";
-                               return CGI::escapeHTML($name);
+                               return escapeHTML($name);
                        },
+               "viewcvs_My"=>"http://cvs.jankratochvil.net/viewcvs/MyWeb/",
                "viewcvs"=>"http://cvs.jankratochvil.net/viewcvs/www/www.jankratochvil.net/",
                "title_prefix"=>"Jan Kratochvil",
-               "footer_mailme"=>0,
                "project_viewcvs"=>"http://cvs.jankratochvil.net/viewcvs/",
                "pserver"=>':pserver:pserver:@cvs.jankratochvil.net',
                "pserver_path"=>"/cvs",
                "resume_url"=>$resume_url,
-               "web_hostname_sub"=>sub () { return "www.jankratochvil.net"; }, # $My::Web::W->{"r"}->hostname()
-               "mailman_url_sub"  =>sub () { return "http://".&{$My::Web::W->{"web_hostname_sub"}}."/mailman/"; },
-               "pipermail_url_sub"=>sub () { return "http://".&{$My::Web::W->{"web_hostname_sub"}}."/pipermail/"; },
+               "mailman_url"  =>sub { return "http://".$My::Web::W->{"web_hostname"}."/mailman/"; },
+               "pipermail_url"=>sub { return "http://".$My::Web::W->{"web_hostname"}."/pipermail/"; },
                "heading"=>sub () {
-                       print '<table border="0" align="center" style="font-size: larger;">'."\n";
-#                              print '<col width="20%">'."\n";
-#                              print '<col width="50%">'."\n";
-#                              print '<col width="20%">'."\n";
-                               print '<tr>'."\n";
-                                       print '<td>'."\n";
-                                               print '<table border="1" align="center"'        # align="left"
-                                                               .' style="border-collapse: collapse; border-style: solid; border-width: 2px;">'."\n";
-                                                       print '<tr>'."\n";
-                                                               print '<td style="padding: 5px; font-weight: bold;">'."\n";
-                                                                       print 'Jan Kratochvil';
-#                                                                      print My::Web::a_href('http://www.jankratochvil.net/','Jan Kratochvil',
+                       my $r="";
+                       $r.='<table border="0" style="font-size: larger;" class="margin-center"><tr>'."\n";
+                               # Do not: <col width="20%" /><col width="50%" /><col width="20%" />
+                               # as the constant are always bad.
+                               $r.='<td>'."\n";
+                                       $r.='<table border="1"'
+                                                       .' style="border-collapse: collapse; border-style: solid; border-width: 2px;">'
+                                                       .'<tr><td style="padding: 5px; font-weight: bold;">'."\n";
+                                                               $r.='Jan Kratochvil';
+#                                                                      $r.=My::Web::a_href('http://www.jankratochvil.net/','Jan Kratochvil',
 #                                                                                      "attr"=>'style="text-decoration: inherit; /* revoke underline */;"');
-                                                               print '</td>'."\n";
-                                                       print '</tr>'."\n";
-                                               print '</table>';
-                                       print '</td>'."\n";
-                                       print '<td>'."\n";
-                                               print '<table border="1" align="center"'
-                                                               .' style="border-collapse: collapse; border-style: solid; border-width: 2px;">'."\n";
-                                                       print '<tr>'."\n";
-                                                               my @sections=(
-                                                                               "/project/"=>"Projects",
-                                                                               "http://cvs.jankratochvil.net/"=>"CVS",
-#                                                                              "/News.html.pl"=>"News",
-                                                                               $resume_url=>"Resume",
-                                                                               "/Contact.html.pl"=>"Contact",
-                                                                               );
-                                                               while (@sections) {
-                                                                       my $section_path=shift @sections;
-                                                                       my $section_name=shift @sections;
-                                                                       print '<td style="padding: 5px;">';
-                                                                               print(($My::Web::W->{"section"} || "") eq $section_name ? "<b>$section_name</b>"
-                                                                                               : My::Web::a_href($section_path,$section_name,
-                                                                                                               "attr"=>'style="text-decoration: inherit; /* revoke underline */;"'));
-                                                                       print "</td>\n";
-                                                                       }
-                                                       print '</tr>'."\n";
-                                               print '</table>'."\n";
-                                       print '</td>'."\n";
-                               print '</tr>'."\n";
-                       print '</table>'."\n";
-                       if (!$My::Web::W->{"WebConfig::heading_novskip"}) {
-                               print "<hr />\n";
-                               print My::Web::vskip("6ex");
+                                       $r.='</td></tr></table>';
+                               $r.='</td>'."\n";
+                               $r.='<td>'."\n";
+                                       $r.='<table border="1"'
+                                                       .' style="text-align: center; border-collapse: collapse; border-style: solid; border-width: 2px;">'
+                                                       .'<tr>'."\n";
+                                               my @sections=(
+                                                               "/project/"=>"Projects",
+                                                               "/product/"=>"Products",
+                                                               "http://cvs.jankratochvil.net/"=>"CVS",
+#                                                                                      "/News.pm"=>"News",
+                                                               $resume_url=>"Resume",
+                                                               "/Contact.pm"=>"Contact",
+                                                               );
+                                               while (@sections) {
+                                                       my $section_path=shift @sections;
+                                                       my $section_name=shift @sections;
+                                                       my $class="";
+                                                       if ($section_path=~m{^/(.*)$}) {
+                                                               $class=$1;
+                                                               $class=~s{/}{::}g;
+                                                               $class=~s{[.]pm$}{};
+                                                               }
+                                                       my $chosen=($class && $My::Web::W->{"__PACKAGE__"}=~/^\Q$class\E/);
+                                                       $r.='<td style="padding: 5px;">';
+                                                               $r.=(($My::Web::W->{"section"} || "") eq $section_name ? "<b>$section_name</b>"
+                                                                               : My::Web::a_href($section_path,$section_name,
+                                                                                               "attr"=>($chosen
+                                                                                                               ? 'style="text-decoration: underline; font-weight: bold;"'
+                                                                                                               : 'style="text-decoration: inherit; /* revoke underline */"')));
+                                                       $r.="</td>\n";
+                                                       }
+                                       $r.='</tr></table>'."\n";
+                               $r.='</td>'."\n";
+                       $r.='</tr></table>'."\n";
+                       if (!$My::Web::W->{"heading_novskip"}) {
+                               $r.=WebConfig->vskip_hr();
                                }
+                       return $r;
                        },
-               "footing"=>sub () {
-#                      print "<h1>footing</h1>\n";
-                       },
-               "footing_delimit"=>sub () {
+               ###"footing"=>"<h1>footing</h1>\n",
+               "footing_delimit_sub_push"=>sub () {
                        return if $My::Web::W->{"no_job"};
                        print <<"HERE";
-<table border="0" style="margin: 4ex; padding: 2ex; background: #552222;">
+<table border="0" style="padding: 2ex; background: #552222; color: white;" class="margin-center">
        <tr><td>
-               <b>A programmer for hire:</b>
-               <span style="color: #ffaaaa;">
-                       I am looking for new challenges.
-                       If you find the software here useful, please
-                       @{[ My::Web::a_href($My::Web::W->{"resume_url"},'consider me') ]}
-                       for your next software project.
-               </span>
+               <b>Contractor - Software Engineer:</b>
+               Please check if your planned project
+               @{[ My::Web::a_href($My::Web::W->{"resume_url"},'matches my experience',"attr"=>'style="color: inherit;"') ]},
        </td></tr>
 </table>
 HERE
                        },
                "no_job"=>1,
+               "css_inherit"=>1,
                );
 
 1;