X-Git-Url: https://git.jankratochvil.net/?p=www.jankratochvil.net.git;a=blobdiff_plain;f=WebConfig.pm;h=d73ecabb7e9b9a72a90efcfc0586ac8774a36f37;hp=cc54d9024aaeac1b20b962356ebfea67d50ffce9;hb=refs%2Fheads%2Fmodperl;hpb=190847cb03690d9a89795e083268f282dc0ee666 diff --git a/WebConfig.pm b/WebConfig.pm index cc54d90..d73ecab 100644 --- a/WebConfig.pm +++ b/WebConfig.pm @@ -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 ''."\n"; print ''."\n"; @@ -61,7 +67,8 @@ our %WebConfig=( .' style="border-collapse: collapse; border-style: solid; border-width: 2px;">'."\n"; print ''."\n"; print ''."\n"; print ''."\n"; print '
'."\n"; - print My::Web::a_href('http://www.jankratochvil.net/','Jan Kratochvil'); + print My::Web::a_href('http://www.jankratochvil.net/','Jan Kratochvil', + "attr"=>'style="text-decoration: inherit; /* revoke underline */;"'); print '
'; @@ -71,18 +78,19 @@ our %WebConfig=( .' style="border-collapse: collapse; border-style: solid; border-width: 2px;">'."\n"; print ''."\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", - 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; my $section_name=shift @sections; print ''; print(($My::Web::W->{"section"} || "") eq $section_name ? "$section_name" - : My::Web::a_href($section_path,$section_name)); + : My::Web::a_href($section_path,$section_name, + "attr"=>'style="text-decoration: inherit; /* revoke underline */;"')); print "\n"; } print ''."\n"; @@ -90,11 +98,27 @@ our %WebConfig=( print ''."\n"; print ''."\n"; print ''."\n"; - print My::Web::vskip("1ex"); + print My::Web::vskip("1ex") if !$My::Web::W->{"WebConfig::heading_novskip"}; }, "footing"=>sub () { # print "

footing

\n"; }, + "footing_delimit"=>sub () { + return if $My::Web::W->{"no_job"}; + print <<"HERE"; + + +
+ A programmer for hire: + + 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. + +
+HERE + }, ); 1;