menu
[MyWeb.git] / Project.pm
index d5473fd..2226a64 100644 (file)
@@ -30,15 +30,15 @@ our @EXPORT=qw();
 our @ISA=qw(My::Web Exporter);
 
 
-use constant ENTRIES    =>top_dir()."/project/CVS/Entries";
-use constant ENTRIES_LOG=>top_dir()."/project/CVS/Entries.Log";
+sub ENTRIES     { return top_dir_disk()."/project/CVS/Entries"; }
+sub ENTRIES_LOG { return top_dir_disk()."/project/CVS/Entries.Log"; }
 
 
 sub print_project ($)
 {
 my($class,$ListItem)=@_;
 
-       print "<h1>".$ListItem->{"name"}."</h1>\n";
+       print "<h1>".$W->{"title"}."</h1>\n";
        print $ListItem->{"description"};
        print "<hr />\n";
        my @table=(
@@ -181,16 +181,16 @@ sub init_project ($%)
 my($class,%args)=@_;
 
        my $ListItem={ project_arr_to_hash(@{$args{"ListItem"}}) };
-       my $name=$ListItem->{"name"};
-       $name=~s#<a\s[^>]*>([^<]*)</a>#$1#g;
        my $W=$class->init(
-                       "title"=>$name,
+                       "title"=>$ListItem->{"name"}.": ".$ListItem->{"summary"},
                        %args,
                        "head_css"=>($args{"head_css"} || "")."
 table.print_project td { vertical-align: top; }
 ",
+                       "WebConfig::heading_novskip"=>1,
                        );
        $class->heading();
+       print $class->platforms($ListItem->{"platform"});
        $class->print_project({ %$ListItem });
        return $W;
 }
@@ -198,7 +198,7 @@ table.print_project td { vertical-align: top; }
 sub item_hash_read ()
 {
        my %dirs;
-       for my $ENTRIES (ENTRIES,ENTRIES_LOG) {
+       for my $ENTRIES (ENTRIES(),ENTRIES_LOG()) {
                local *E;
                next if !open E,$ENTRIES;
                while (<E>) {
@@ -221,4 +221,70 @@ sub item_hash_read ()
        return %item;
 }
 
+our @platforms=(
+               "unixuser"=>"GNU/Linux",
+               "unixdevel"=>"GNU/Linux Development",
+               "web"=>"Web",
+               "amiga"=>"Amiga",
+               "w32"=>"MS-Windows",
+               "dos"=>"MS-DOS",
+               "patch"=>"Patches",
+               );
+
+sub views ($$)
+{
+my($class,$view_selected)=@_;
+
+       my $view=sub ($$)
+               {
+               my($current,$href,$content)=@_;
+
+                       return a_href($href,$content) if $current ne $view_selected;
+                       return "<b>".$content."</b> (current)";
+               };
+
+       return <<"HERE";
+<h1>Project List of @{[ a_href 'http://www.jankratochvil.net/','Jan Kratochvil' ]}</h1>
+
+<ul>
+       <li>@{[ &{$view}('Detailed'     ,top_dir().'/project/','Detailed project listing per platform') ]}</li>
+       <li>@{[ &{$view}('BriefPlatform',top_dir().'/project/List.html.pl?platform=platform',
+                       'Brief project listing per platform') ]}</li>
+       <li>@{[ &{$view}('BriefUnified' ,top_dir().'/project/List.html.pl',
+                       'Unified brief project listing') ]}</li>
+</ul>
+@{[ vskip "1ex" ]}
+HERE
+}
+
+sub platforms ($;$)
+{
+my($class,$platform_selected)=@_;
+
+       my $r="";
+       $r.='<table border="0" align="center"><tr>'."\n";
+               $r.='<td>Projects:&nbsp;&nbsp;</td>';
+               $r.='<td>';
+                       $r.='<table border="1" align="center" style="border-collapse: collapse; border-style: solid;">'."\n";
+                               $r.='<tr>'."\n";
+                                       my @platforms=@platforms;
+                                       while (@platforms) {
+                                               my $platform_sym =shift @platforms;
+                                               my $platform_name=shift @platforms;
+                                               my $chosen=($platform_selected && $platform_selected eq $platform_sym);
+                                               $r.='<td style="padding: 5px;">';
+                                                       $r.=a_href((!$platform_selected ? "" : top_dir()."/project/").'#'.$platform_sym,$platform_name,
+                                                                       "attr"=>($chosen
+                                                                                       ? 'style="text-decoration: underline; font-weight: bold;"'
+                                                                                       : 'style="text-decoration: inherit; /* revoke underline */"'));
+                                               $r.="</td>\n";
+                                               }
+                               $r.='</tr>'."\n";
+                       $r.='</table>'."\n";
+               $r.='</td>'."\n";
+       $r.='</tr></table>'."\n";
+       $r.=vskip "1ex";
+       $r;
+}
+
 1;