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