107593dc16e1561d1c8e4186a5039c215b140f86
[www.jankratochvil.net.git] / project / surprise / ListItem.pm
1 #! /usr/bin/perl
2
3 # $Id$
4 # Definition of 'My::Project::surprise' for list.cgi.pl
5 # Copyright (C) 2003 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; exactly version 2 of June 1991 is required
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20
21 package project::surprise::ListItem;
22 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
23 our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
24 our $CVS_ID=q$Id$;
25 use strict;
26 use warnings;
27
28 use My::Web;
29
30
31 our @ListItem=(
32                 "name"=>"Partition Surprise",
33                 "priority"=>9,
34                 "download-Page on SourceForge.net"=>"http://sourceforge.net/project/showfiles.php?group_id=10546",
35                 "download-ISO Image from SourceForge.net"=>"http://surprise.sourceforge.net/download/surprise-rel7.iso.zip",
36                 "link-Homepage on SourceForge.net"=>"http://surprise.sourceforge.net/",
37                 "link-Project Page on SourceForge.net"=>"http://sourceforge.net/projects/surprise/",
38                 "summary"=>"Partition manager",
39                 "license"=>"GPL",
40                 "maintenance"=>"update",
41                 "ownership"=><<"HERE",
42 Member of the development team:
43 <ul>
44         <li>@{[ a_href 'http://atrey.karlin.mff.cuni.cz/~jack/','Jan Kara' ]}</li>
45         <li>@{[ a_href 'http://atrey.karlin.mff.cuni.cz/~kral/','Daniel Kral' ]}</li>
46         <li>@{[ a_href 'http://www.jankratochvil.net/','Jan Kratochvil' ]}</li>
47         <li>@{[ a_href 'http://www.ucw.cz/~robert/','Robert Spalek' ]}</li>
48         <li>@{[ a_href 'http://kiwi.ms.mff.cuni.cz/~tom/','Tomas Tichy' ]}</li>
49 </ul>
50 HERE
51                 "language"=>"C",
52                 "description"=><<"HERE",
53 <p>Partition Surprise is a GPL partition managing software for Linux. Partition
54 resizes, moves and conversions is implemented. Limited support of operations on
55 mounted ext2-filesystem included as well.
56 HERE
57                 );
58
59 1;