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