X-Git-Url: http://git.jankratochvil.net/?a=blobdiff_plain;f=project%2Fsurprise%2FListItem.pm;h=29cd2ba3311d0bf2a3d8e4e88c5948d0d79004e4;hb=dd8c6d6f376afc2f7a33118154707cc8e9e9059e;hp=1d2b9006b93a99fa3804159975e3e24fe5e19644;hpb=6c38d0b98dfd3c66f1802b962aa7c53f3bd325b5;p=www.jankratochvil.net.git diff --git a/project/surprise/ListItem.pm b/project/surprise/ListItem.pm index 1d2b900..29cd2ba 100755 --- a/project/surprise/ListItem.pm +++ b/project/surprise/ListItem.pm @@ -18,17 +18,19 @@ # 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", @@ -36,13 +38,24 @@ our %ListItem=( "link-Project Page on SourceForge.net"=>"http://sourceforge.net/projects/surprise/", "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: + +HERE "language"=>"C", - "description"=>"" - .'

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", +

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;