+platform
[www.jankratochvil.net.git] / project / surprise / ListItem.pm
index 61ec0ab..29cd2ba 100755 (executable)
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
-package My::Project::surprise;
+package project::surprise::ListItem;
 require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway
-use vars qw($VERSION $CVS_ID);
-$VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
-$CVS_ID=q$Id$;
+our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
+our $CVS_ID=q$Id$;
 use strict;
 use warnings;
 
+use My::Web;
 
-our %ListItem=(
+
+our @ListItem=(
                "name"=>"Partition Surprise",
+               "platform"=>"unixuser",
+               "priority"=>9,
                "download-Page on SourceForge.net"=>"http://sourceforge.net/project/showfiles.php?group_id=10546",
                "download-ISO Image from SourceForge.net"=>"http://surprise.sourceforge.net/download/surprise-rel7.iso.zip",
                "link-Homepage on SourceForge.net"=>"http://surprise.sourceforge.net/",
                "link-Project Page on SourceForge.net"=>"http://sourceforge.net/projects/surprise/",
-               "summary"=>"Partiton manager",
+               "summary"=>"Partition manager",
                "license"=>"GPL",
+               "sponsorship"=>a_href('http://www.suse.com/','SuSE'),
                "maintenance"=>"update",
-               "ownership"=>"Coauthor; development team of 5 people",
+               "ownership"=><<"HERE",
+Member of the development team:
+<ul>
+       <li>@{[ a_href 'http://atrey.karlin.mff.cuni.cz/~jack/','Jan Kara' ]}</li>
+       <li>@{[ a_href 'http://atrey.karlin.mff.cuni.cz/~kral/','Daniel Kral' ]}</li>
+       <li>@{[ a_href 'http://www.jankratochvil.net/','Jan Kratochvil' ]}</li>
+       <li>@{[ a_href 'http://www.ucw.cz/~robert/','Robert Spalek' ]}</li>
+       <li>@{[ a_href 'http://kiwi.ms.mff.cuni.cz/~tom/','Tomas Tichy' ]}</li>
+</ul>
+HERE
                "language"=>"C",
-               "description"=>""
-                               .'<p>Partition Surprise is a GPL partition managing software for Linux. Partition'
-                               .'resizes, moves and conversions is implemented. Limited support of operations on'
-                               .'mounted ext2-filesystem included as well.'
+               "description"=><<"HERE",
+<p>Partition Surprise is a GPL partition managing software for Linux. Partition
+resizes, moves and conversions is implemented. Limited support of operations on
+mounted ext2-filesystem included as well.
+HERE
                );
 
 1;