From d5ff9ccf43977ffa10e539637a2cdcbe4008e0f3 Mon Sep 17 00:00:00 2001 From: short <> Date: Wed, 15 Oct 2003 10:38:23 +0000 Subject: [PATCH] rewritten --- Index.html.pl | 76 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100755 Index.html.pl diff --git a/Index.html.pl b/Index.html.pl new file mode 100755 index 0000000..49cb4f4 --- /dev/null +++ b/Index.html.pl @@ -0,0 +1,76 @@ +#! /usr/bin/perl +# +# $Id$ +# Main page Perl template. +# Copyright (C) 2003 Jan Kratochvil +# +# 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 Index; +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/,)[0]]}; eval "use lib '$top_dir'"; close F; } +use My::Web; +require CGI; + + +my $W=My::Web->init( + "__PACKAGE__"=>__PACKAGE__, + "title"=>'Homepage', + ); +My::Web->heading(); + + +print <<"HERE"; +

Jan Kratochvil Homepage

+
+ +

Why did you come here? Shhh...Don't say anything – I'll guess.

+ +

Some paper...no, not a paper...a file...maybe even a folder. It is +so close you can almost touch it, but yet it is unreachable. It lies +behind glass...perhaps you can see it...but you cannot touch it.

+ +

For years, you have dreamed of being able to write to your NTFS partition +from the safety of your favorite OS GNU/Linux. Well, the day of reckoning is at +hand! Those nights lying awake feeling foolish for having that extra VFAT +partition just to exchange files between GNU/Linux and MS-Windows are over!

+ +
+ I am looking for new challenges. + If you find the software here useful, please + @{[ a_href $W->{"resume_url"},'consider me' ]} + for your next software project and + @{[ a_href 'Contact.html.pl','get in touch' ]}. + +

+ + +

Introducing the Captive NTFS Filesystem for GNU/Linux

+ +

The @{[ a_href '/project/captive/','Captive NTFS' ]} filesystem is an +installable filesystem for GNU/Linux which allows read/write access to NTFS +partitions created by Windows NT or 200x. You can download it +@{[ a_href '/project/captive/','here' ]}.

+HERE + + +My::Web->footer(); -- 1.8.3.1