modperl branch collapsed back to MAIN trunk, man!
[www.jankratochvil.net.git] / project / captive / Thanks.html.pl
diff --git a/project/captive/Thanks.html.pl b/project/captive/Thanks.html.pl
new file mode 100755 (executable)
index 0000000..346bbf8
--- /dev/null
@@ -0,0 +1,91 @@
+#! /usr/bin/perl
+# 
+# $Id$
+# Captive project Thanks 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::Thanks;
+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 Thanks',
+               "head_css"=>"
+.name { font-style: italic; }
+",
+               "WebConfig::heading_novskip"=>1,
+               "no_job"=>1,
+               );
+My::Web->heading();
+print My::Project->section("captive");
+
+
+print <<'HERE';
+<h1>Captive NTFS Thanks</h1>
+
+<ul>
+HERE
+
+sub name ($;$$)
+{
+my($name,$pos,$why)=@_;
+
+       my $r="<li>";
+               $r.='<span class="name">'.$name.'</span>';
+               $r.=", $pos" if $pos;
+               $r.=" - $why" if $why;
+       $r.="</li>\n";
+       return $r;
+}
+
+print name "Karel Zatoukal",a_href("http://www.sun.com/","Sun Microsystems");
+print name "Tim Boudreau",a_href("http://www.sun.com/","Sun Microsystems");
+print name a_href_cz('http://www.itpravo.cz/admin.shtml?x=45480','Jiri Cermak'),
+               a_href("http://www.bakernet.com/",'Baker &amp; McKenzie'),
+               'preflight IT law analysis';
+print name a_href('http://www.ucw.cz/~mj/','Martin "MJ" Mares');
+print name "Lubomir Bulej";
+print name "Tomas Bures";
+print name a_href_cz('http://www.vellum.cz/','Lukas "Klokan" Horalek'),undef(),"services hosting";
+print name a_href('http://www-troja.fjfi.cvut.cz/~drab/','Martin Drab'),undef(),
+               "betatesting, ".a_href('http://lufs.sourceforge.net/lufs/','LUFS')." patches";
+print name a_href('http://www.pavouk.org/','Pavel "Pavouk" Ruzicka'),a_href('http://www.gtsgroup.cz/','GTS'),
+               "betatesting";
+print name "Jesse Glick",a_href("http://www.sun.com/","Sun Microsystems"),"betatesting";
+print name a_href_cz('http://vellum.cz/~mikc/','Michal "MIKC" Conos'),undef(),
+               "betatesting";
+print name a_href("http://sys.xiloo.com/","Matt Wu"),
+               a_href("http://sys.xiloo.com/projects/projects.htm#ext2fsd","Ext2fsd")." developer","W32 tips";
+
+print name "Steven Edwards"  ,a_href("http://www.reactos.com/","ReactOS")." developer","W32 tips";
+print name "Casper Hornstrup",a_href("http://www.reactos.com/","ReactOS")." developer","W32 tips";
+print <<'HERE';
+<li>Last but not least - Kind greetings to Danese Cooper, Open Source Diva!</li>
+</ul>
+
+HERE
+
+My::Web->footer();