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