Finally merged the branch 'apache20'(+'apache2') back to the main trunk.
[www.jankratochvil.net.git] / project / captive / Resources.pm
diff --git a/project/captive/Resources.pm b/project/captive/Resources.pm
new file mode 100755 (executable)
index 0000000..b3f7392
--- /dev/null
@@ -0,0 +1,78 @@
+# $Id$
+# Captive project Resources page Perl template.
+# Copyright (C) 2003-2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
+# 
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; exactly version 2 of June 1991 is required
+# 
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+# 
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+
+package project::captive::Resources;
+require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway
+our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
+our $CVS_ID=q$Id$;
+use strict;
+use warnings;
+
+use My::Web;
+Wrequire 'project::Lib';
+
+
+sub handler
+{
+My::Web->init(
+               "title"=>'Captive NTFS Internet Resources',
+               "heading_novskip"=>1,
+               );
+My::Web->heading();
+print(project::Lib->section("captive"));
+
+
+print "<h1>Captive NTFS Internet Resources</h1>\n";
+print "<ul>\n";
+       my @URLs=(
+# no longer valid: 'NTFS Preinstallation and Windows XP'=>'http://www.microsoft.com/hwdev/tech/storage/ntfs-preinstallP.asp',
+                       'Linux-NTFS Project'=>'http://linux-ntfs.sourceforge.net/',
+                       'ReactOS Project'=>'http://www.reactos.com/',
+                       'Ext2 File System Driver'=>'http://sys.xiloo.com/projects/projects.htm#ext2fsd',
+                       'Wine Project'=>'http://www.winehq.com/',
+                       'Memory Support and Windows Operating Systems'=>'http://www.microsoft.com/whdc/hwdev/platform/server/PAE/PAEmem.mspx',
+                       'GnomeVFS - Filesystem Abstraction library'=>'http://developer.gnome.org/doc/API/gnome-vfs/',
+                       'Linux Userland File System (LUFS)'=>'http://lufs.sourceforge.net/lufs/',
+                       'Partition Surprise'=>'http://surprise.sourceforge.net/',
+                       'ntfsresize'=>'http://mlf.linux.rulez.org/mlf/ezaz/ntfsresize.html',
+                       'NTPwd NTFS driver'=>'http://www.cgsecurity.org/ntfs.html',
+                       'Microsoft Windows XP Service Pack 1a'
+                                       =>'http://download.microsoft.com/download/9/7/6/9763833d-bd58-41e2-9911-50f64c7252a3/xpsp1a_en_x86_CHK.exe',
+                       'The NT Cache Manager Description'=>'http://www.osr.com/ntinsider/1996/cacheman.htm',
+                       'Learn About NT'."'".'s File-system Cache'=>'http://www.winntmag.com/Articles/Print.cfm?ArticleID=3864',
+                       'NT File System Developers mailing list'=>'http://www.ntfsd.org/archive/',
+                       'IDA Freeware'=>'http://www.simtel.net/pub/pd/29498.html',
+                       'Argument Passing and Naming Conventions'
+                                       =>'http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclang/html/_core_argument_passing_and_naming_conventions.asp',
+                       'MS-DOS FAT Filesystems Support on Linux'=>'ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/',
+                       'MSDN (Microsoft Developer Network) Kernel-Mode Driver Architecture: Windows DDK'
+                                       =>'http://msdn.microsoft.com/library/default.asp?url=/library/en-us/kmarch/hh/kmarch/kmhdr_6enb.asp',
+                       'GLib, Gnome Utility Library'=>'http://developer.gnome.org/doc/API/2.0/glib/',
+                       'VMware Workstation'=>'http://www.vmware.com/download/workstation.html',
+                       );
+       for (my @URLa=@URLs;@URLa;) {
+               my $text=shift @URLa;
+               my $url=shift @URLa;
+               print "\t<li>".a_href($url,escapeHTML($text))."</li>\n";
+               }
+print "</ul>\n";
+
+
+exit;
+}
+1;