Typo.
[www.jankratochvil.net.git] / WebConfig.pm
index 001edc2..d73ecab 100644 (file)
@@ -35,6 +35,8 @@ use My::Web;
 require CGI;
 
 
+my $resume_url="/resume/Resume-JanKratochvil.html.pl/Resume-JanKratochvil.html";
+
 our %WebConfig=(
                "admin_mail"=>'web-www.jankratochvil.net@jankratochvil.net',
                "SendMsg_to"=>'web-www.jankratochvil.net@jankratochvil.net',
@@ -50,6 +52,10 @@ our %WebConfig=(
                "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/"; },
                "heading"=>sub () {
                        print '<table border="0" align="center" style="font-size: larger;">'."\n";
                                print '<col width="20%">'."\n";
@@ -72,11 +78,11 @@ our %WebConfig=(
                                                                .' style="border-collapse: collapse; border-style: solid; border-width: 2px;">'."\n";
                                                        print '<tr>'."\n";
                                                                my @sections=(
-                                                                               My::Web::top_dir()."/project/"=>"Projects",
+                                                                               "/project/"=>"Projects",
                                                                                "http://cvs.jankratochvil.net/"=>"CVS",
-#                                                                              My::Web::top_dir()."/News.html.pl"=>"News",
-                                                                               My::Web::top_dir()."/resume/Resume-JanKratochvil.html.pl/Resume-JanKratochvil.html"=>"Resume",
-                                                                               My::Web::top_dir()."/Contact.html.pl"=>"Contact",
+#                                                                              "/News.html.pl"=>"News",
+                                                                               $resume_url=>"Resume",
+                                                                               "/Contact.html.pl"=>"Contact",
                                                                                );
                                                                while (@sections) {
                                                                        my $section_path=shift @sections;
@@ -97,6 +103,22 @@ our %WebConfig=(
                "footing"=>sub () {
 #                      print "<h1>footing</h1>\n";
                        },
+               "footing_delimit"=>sub () {
+                       return if $My::Web::W->{"no_job"};
+                       print <<"HERE";
+<table border="0" style="margin: 4ex; padding: 2ex; background: #552222;">
+       <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>
+       </td></tr>
+</table>
+HERE
+                       },
                );
 
 1;