&My::Web::footer call is deprecated now, use just: exit;
[www.jankratochvil.net.git] / project / captive / Resources.pm
1 # $Id$
2 # Captive project Resources page Perl template.
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::captive::Resources;
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 Wrequire 'project::Lib';
28
29
30 sub handler
31 {
32 My::Web->init(
33                 "title"=>'Captive NTFS Internet Resources',
34                 "heading_novskip"=>1,
35                 );
36 My::Web->heading();
37 print(project::Lib->section("captive"));
38
39
40 print "<h1>Captive NTFS Internet Resources</h1>\n";
41 print "<ul>\n";
42         my @URLs=(
43 # no longer valid: 'NTFS Preinstallation and Windows XP'=>'http://www.microsoft.com/hwdev/tech/storage/ntfs-preinstallP.asp',
44                         'Linux-NTFS Project'=>'http://linux-ntfs.sourceforge.net/',
45                         'ReactOS Project'=>'http://www.reactos.com/',
46                         'Ext2 File System Driver'=>'http://sys.xiloo.com/projects/projects.htm#ext2fsd',
47                         'Wine Project'=>'http://www.winehq.com/',
48                         'Memory Support and Windows Operating Systems'=>'http://www.microsoft.com/whdc/hwdev/platform/server/PAE/PAEmem.mspx',
49                         'GnomeVFS - Filesystem Abstraction library'=>'http://developer.gnome.org/doc/API/gnome-vfs/',
50                         'Linux Userland File System (LUFS)'=>'http://lufs.sourceforge.net/lufs/',
51                         'Partition Surprise'=>'http://surprise.sourceforge.net/',
52                         'ntfsresize'=>'http://mlf.linux.rulez.org/mlf/ezaz/ntfsresize.html',
53                         'NTPwd NTFS driver'=>'http://www.cgsecurity.org/ntfs.html',
54                         'Microsoft Windows XP Service Pack 1a'
55                                         =>'http://download.microsoft.com/download/9/7/6/9763833d-bd58-41e2-9911-50f64c7252a3/xpsp1a_en_x86_CHK.exe',
56                         'The NT Cache Manager Description'=>'http://www.osr.com/ntinsider/1996/cacheman.htm',
57                         'Learn About NT'."'".'s File-system Cache'=>'http://www.winntmag.com/Articles/Print.cfm?ArticleID=3864',
58                         'NT File System Developers mailing list'=>'http://www.ntfsd.org/archive/',
59                         'IDA Freeware'=>'http://www.simtel.net/pub/pd/29498.html',
60                         'Argument Passing and Naming Conventions'
61                                         =>'http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclang/html/_core_argument_passing_and_naming_conventions.asp',
62                         'MS-DOS FAT Filesystems Support on Linux'=>'ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/',
63                         'MSDN (Microsoft Developer Network) Kernel-Mode Driver Architecture: Windows DDK'
64                                         =>'http://msdn.microsoft.com/library/default.asp?url=/library/en-us/kmarch/hh/kmarch/kmhdr_6enb.asp',
65                         'GLib, Gnome Utility Library'=>'http://developer.gnome.org/doc/API/2.0/glib/',
66                         'VMware Workstation'=>'http://www.vmware.com/download/workstation.html',
67                         );
68         for (my @URLa=@URLs;@URLa;) {
69                 my $text=shift @URLa;
70                 my $url=shift @URLa;
71                 print "\t<li>".a_href($url,escapeHTML($text))."</li>\n";
72                 }
73 print "</ul>\n";
74
75
76 exit;
77 }
78 1;