+"product" category in general.
authorshort <>
Mon, 12 Dec 2005 17:43:01 +0000 (17:43 +0000)
committershort <>
Mon, 12 Dec 2005 17:43:01 +0000 (17:43 +0000)
Support also active-section besides inactive and active-target.

WebConfig.pm

index c95e8ca..75def43 100644 (file)
@@ -36,6 +36,8 @@ use My::Web;
 
 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',
@@ -75,6 +77,7 @@ our %WebConfig=(
                                                        .'<tr>'."\n";
                                                my @sections=(
                                                                "/project/"=>"Projects",
+                                                               "/product/"=>"Products",
                                                                "http://cvs.jankratochvil.net/"=>"CVS",
 #                                                                                      "/News.pm"=>"News",
                                                                $resume_url=>"Resume",
@@ -83,18 +86,26 @@ our %WebConfig=(
                                                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"=>'style="text-decoration: inherit; /* revoke underline */;"'));
+                                                                                               "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.="<hr />\n";
-                               $r.=My::Web::vskip("6ex");
+                               $r.=WebConfig->vskip_hr();
                                }
                        return $r;
                        },