menu
[www.jankratochvil.net.git] / project / Index.html.pl
index 33bc3a2..b48fd54 100755 (executable)
@@ -27,9 +27,7 @@ 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;
 Wrequire 'My::Project';
-Wrequire 'project::Platform';
 
 
 My::Web->init(
@@ -39,28 +37,8 @@ My::Web->init(
                );
 My::Web->heading();
 
-my $CGI=CGI->new();
-
-print <<"HERE";
-<h1>Project List of @{[ a_href 'http://www.jankratochvil.net/','Jan Kratochvil' ]}</h1>
-
-<ul>
-       <li>@{[ a_href 'List.html.pl?platform=1','Brief project listing per platform' ]}</li>
-       <li>@{[ a_href 'List.html.pl'           ,'Unified brief project listing' ]}</li>
-</ul>
-HERE
-
-print '<table border="1" align="center" style="border-collapse: collapse; border-style: solid;">'."\n";
-       print '<tr>'."\n";
-               my @platforms=@project::Platform::platforms;
-               while (@platforms) {
-                       my $platform_sym =shift @platforms;
-                       my $platform_name=shift @platforms;
-                       print '<td style="padding: 5px;">'.a_href('#'.$platform_sym,$platform_name)."</td>\n";
-                       }
-       print '</tr>'."\n";
-print '</table>'."\n";
-print vskip "1ex";
+print My::Project->views("Detailed");
+print My::Project->platforms(undef());
 
 my %item=( My::Project::item_hash_read() );
 
@@ -80,7 +58,7 @@ $col{"name"}{"format"}=sub {
                return "<a href=\"".$_[1]."/\">".$_[0]."</a>";
                };
 
-@platforms=@project::Platform::platforms;
+my @platforms=@My::Project::platforms;
 while (@platforms) {
        my $platform_sym =shift @platforms;
        my $platform_name=shift @platforms;