+link rel
[www.jankratochvil.net.git] / project / Index.html.pl
index 2e42b10..6c82b46 100755 (executable)
@@ -27,56 +27,22 @@ use warnings;
 
 BEGIN{ open F,"Makefile"; our $top_dir=pop @{[split /\s/,(grep /^top_srcdir/,<F>)[0]]}; eval "use lib '$top_dir'"; close F; }
 use My::Web;
-require 'CGI';
-require 'My::Project';
-
-use constant ENTRIES=>"CVS/Entries";
-use constant ENTRIES_LOG=>"CVS/Entries.Log";
+Wrequire 'My::Project';
 
 
 My::Web->init(
                "__PACKAGE__"=>__PACKAGE__,
                "title"=>'Project List',
+               "section"=>"Projects",
+               "rel_up"=>top_dir(),
+               "rel_start"=>top_dir(),
                );
 My::Web->heading();
 
-my $CGI=CGI->new();
-
-print <<'HERE';
-<h1>Project List of <a href="mailto:web-www.jankratochvil.net@jankratochvil.net">Jan Kratochvil</a></h1>
-
-<form action="Index.pl" method="get"><p>
-<select name="description_opt" onchange="this.form.submit();">
-HERE
-print '<option value="0"'.(!$CGI->param("description_opt") ? ' selected="selected"' : '').'>only list</option>'."\n";
-print '<option value="1"'.( $CGI->param("description_opt") ? ' selected="selected"' : '').'>incl. descriptions</option>'."\n";
-print <<'HERE';
-</select>
-<input type="submit" value="Update" />
-</p></form>
-HERE
-
-my %dirs;
-for my $ENTRIES (ENTRIES,ENTRIES_LOG) {
-       local *E;
-       next if !open E,$ENTRIES;
-       while (<E>) {
-               chomp;
-               do { $dirs{$1}=1; next; } if m#^(?:A )?D/([^/]*)/#;
-               next if m#^/([^/]*)/# ;
-               next if /^D$/;
-               warn "File $ENTRIES contains invalid line \"$_\": $!";
-               }
-       close E;
-       }
+print My::Project->views("Detailed");
+print My::Project->platforms(undef());
 
-my %item;
-for my $dir (keys(%dirs)) {
-       require "project::${dir}::ListItem";
-       my $item=eval('\@project::'.$dir.'::ListItem::ListItem');
-       do { warn "Broken project/$dir/ListItem.pm"; next; } if !defined $item;
-       $item{$dir}={ My::Project::project_arr_to_hash(@$item) };
-       }
+my %item=( My::Project::item_hash_read() );
 
 # $col{"name"}{"show"}=1
 # $col{"name"}{"format"}=sub { "<".$_[0].">"; }
@@ -94,68 +60,25 @@ $col{"name"}{"format"}=sub {
                return "<a href=\"".$_[1]."/\">".$_[0]."</a>";
                };
 
-$col{"license"}{"format"}=sub {
-               my %known=(
-                               "PD"=>"<a href=\"http://www.gnu.org/philosophy/categories.html#PublicDomainSoftware\">PD</a>",
-                               "GPL"=>"<a href=\"http://www.gnu.org/licenses/gpl.html\">GPL</a>",
-                               "LGPL"=>"<a href=\"http://www.gnu.org/licenses/lgpl.html\">LGPL</a>",
-                               );
-               return $known{$_[0]} if $known{$_[0]};
-               return $_[0];
-               };
-
-$col{"online-demo"}{"format"}=\&format_url;
-$col{"download"}{"format"}=\&format_url;
-$col{"name"}{""}="Project Name";
-$col{"summary"}{""}="Abstract";
-$col{"license"}{""}="Copying";
-$col{"maintenance"}{""}="State";
-$col{"language"}{""}="Language";
-
-# Fill in cols not contained in @col_order
-if (0) {
-       my %col_order=map(($_=>1),@col_order);
-       push @col_order,map({ ($col_order{$_} ? () : $_); } keys(%{{ map(($_=>1),map((keys(%{$item{$_}})),keys(%item)))}}));
+my @platforms=@My::Project::platforms;
+while (@platforms) {
+       my $platform_sym =shift @platforms;
+       my $platform_name=shift @platforms;
+       print '<a name="'.$platform_sym.'">';
+       print "<h2>$platform_name</h2>";
+       print '</a>'."\n";
+       my @projects=sort {
+                       ($item{$b}{"priority"} <=> $item{$a}{"priority"})
+                       or
+                       (lc($item{$a}{"name"}) cmp lc($item{$b}{"name"}));
+                       } map({ $item{$_}{"platform"} ne $platform_sym ? () : ($_); } keys(%item));
+       for my $project (@projects) {
+               print "<h3>".a_href("/project/$project/",$item{$project}{"name"}.": ".$item{$project}{"summary"})."</h3>\n";
+               print "<blockquote>\n";
+                       print $item{$project}{"description"};
+               print "</blockquote>\n";
+               }
        }
 
-print '<table border="1">'."\n";
-       print '<tr>';
-               for my $col (@col_order) {
-                       next if defined $col{$col}{"show"} && !$col{$col}{"show"};
-                       print '<th>'.($col{$col}{""} || "[$col]").'</th>';
-                       }
-       print '</tr>'."\n";
-       my @rows_ordered=sort {
-                       for my $order_by (@row_order,"name") {
-                               my $order_by=$order_by;
-                               my $minus=($order_by=~s/^(-)//)[0];
-                               my $r=($item{$a}{$order_by} cmp $item{$b}{$order_by});
-                               $r=-$r if $minus;
-                               return $r if $r;
-                               }
-                       return 0;
-                       } keys(%item);
-       for my $row (@rows_ordered) {
-               print '<tr>';
-               for my $col (@col_order) {
-                       next if defined $col{$col}{"show"} && !$col{$col}{"show"};
-                       print '<td>';
-                       if (!$col{$col}{"format"}) {
-                               print(($item{$row}{$col} || ""));
-                               }
-                       else {
-                               print(&{$col{$col}{"format"}}($item{$row}{$col},$row));
-                               }
-                       print '</td>';
-                       }
-               print '</tr>'."\n";
-               if ($CGI->param("description_opt")) {
-                       print '<tr><td style="border: none;"></td>';
-                       print '<td colspan="'.(scalar(@col_order)-1).'"><blockquote>'.$item{$row}{"description"}.'</blockquote></td>';
-                       print '</tr>'."\n";
-                       print '<tr><td style="border: none;" colspan="'.scalar(@col_order).'">&nbsp;</td></tr>'."\n";
-                       }
-               }
-print '</table>'."\n";
 
 My::Web->footer();