&My::Web::footer call is deprecated now, use just: exit;
[www.jankratochvil.net.git] / project / ntfsprogsgnomevfs / Index.pm
1 # $Id$
2 # Main page of 'My::Project::ntfsprogsgnomevfs'
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::ntfsprogsgnomevfs::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"=>sub {
32                                 return a_href('http://linux-ntfs.sourceforge.net/','Linux NTFS').' '
33                                                 .a_href('http://www.gnome.org/softwaremap/projects/GnomeVFS','GnomeVFS');
34                                 },
35                 "platform"=>"patch",
36                 "priority"=>475,
37                 "icon"=>"ntfs-icon.jpeg",
38                 "summary"=>sub {
39                                 return a_href('http://www.gnome.org/softwaremap/projects/GnomeVFS','GnomeVFS')
40                                                 .' interface for '.a_href('http://linux-ntfs.sourceforge.net/','Linux NTFS')
41                                                 .' library';
42                                 },
43                 "cvs"=>"ntfsprogs-gnomevfs",
44                 "license"=>"GPL",
45                 "maintenance"=>"accepted",
46                 "language"=>"C",
47                 "description"=><<"HERE",
48 <p>Provide <code>libntfs</code> handler to access files by URL:
49 <code>file:///dev/hda1#libntfs:/autoexec.bat</code></p>
50 HERE
51                 );
52
53 sub handler
54 {
55 project::Lib->init();
56
57
58 print <<"HERE";
59 <p>Module got integrated to
60 @{[ a_href 'http://sourceforge.net/forum/forum.php?forum_id=327273','ntfsprogs-1.8.0beta2' ]}.</p>
61 HERE
62
63
64 exit;
65 }
66 1;