Finally merged the branch 'apache20'(+'apache2') back to the main trunk.
[www.jankratochvil.net.git] / project / captive / Resources.html.pl
diff --git a/project/captive/Resources.html.pl b/project/captive/Resources.html.pl
deleted file mode 100755 (executable)
index eb6aacb..0000000
+++ /dev/null
@@ -1,78 +0,0 @@
-#! /usr/bin/perl
-# 
-# $Id$
-# Captive project Resources page Perl template.
-# Copyright (C) 2003 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;
-
-BEGIN{ open F,"Makefile"; our $top_dir=pop @{[split /\s/,(grep /^top_srcdir/,<F>)[0]]}; eval "use lib '$top_dir'"; close F; }
-use My::Web;
-Wrequire 'My::Project';
-
-
-My::Web->init(
-               "__PACKAGE__"=>__PACKAGE__,
-               "title"=>'Captive NTFS Internet Resources',
-               "WebConfig::heading_novskip"=>1,
-               );
-My::Web->heading();
-print My::Project->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,CGI::escapeHTML($text))."</li>\n";
-               }
-print "</ul>\n";
-
-
-My::Web->footer();