&My::Web::footer call is deprecated now, use just: exit;
[www.jankratochvil.net.git] / project / captive / Thanks.pm
1 # $Id$
2 # Captive project Thanks page Perl template.
3 # Copyright (C) 2003-2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; exactly version 2 of June 1991 is required
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18
19 package project::captive::Thanks;
20 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
21 our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
22 our $CVS_ID=q$Id$;
23 use strict;
24 use warnings;
25
26 use Carp qw(cluck confess);
27 use My::Web;
28 cluck "No Geo::IP!" if !$My::Web::have_Geo_IP;  # For: &a_href_cc
29 Wrequire 'project::Lib';
30
31
32 sub handler
33 {
34 My::Web->init(
35                 "title"=>'Captive NTFS Thanks',
36                 "css_push"=>"./Lib.css",
37                 "heading_novskip"=>1,
38                 "no_job"=>1,
39                 );
40 My::Web->heading();
41 print(project::Lib->section("captive"));
42
43
44 print <<'HERE';
45 <h1>Captive NTFS Thanks</h1>
46
47 <ul>
48 HERE
49
50 sub name ($;$$)
51 {
52 my($name,$pos,$why)=@_;
53
54         my $r="<li>";
55                 $r.='<span class="name">'.$name.'</span>';
56                 $r.=", $pos" if $pos;
57                 $r.=" - $why" if $why;
58         $r.="</li>\n";
59         return $r;
60 }
61
62 print name "Karel Zatoukal",a_href("http://www.sun.com/","Sun Microsystems");
63 print name "Tim Boudreau",a_href("http://www.sun.com/","Sun Microsystems");
64 print name a_href_cc({"CZ"=>'http://www.itpravo.cz/admin.shtml?x=45480'},'Jiri Cermak'),
65                 a_href("http://www.bakernet.com/",'Baker &amp; McKenzie'),
66                 'preflight IT law analysis';
67 print name a_href('http://www.ucw.cz/~mj/','Martin "MJ" Mares');
68 print name "Lubomir Bulej";
69 print name "Tomas Bures";
70 print name a_href_cc({"CZ"=>'http://www.vellum.cz/'},'Lukas "Klokan" Horalek'),undef(),"services hosting";
71 print name a_href('http://www-troja.fjfi.cvut.cz/~drab/','Martin Drab'),undef(),
72                 "betatesting, ".a_href('http://lufs.sourceforge.net/lufs/','LUFS')." patches";
73 print name a_href('http://www.pavouk.org/','Pavel "Pavouk" Ruzicka'),a_href('http://www.gtsgroup.cz/','GTS'),
74                 "betatesting";
75 print name "Christian Kristukat",undef(),a_href('http://www.suse.com/','SUSE')." support";
76 print name "Jesse Glick",a_href("http://www.sun.com/","Sun Microsystems"),"betatesting";
77 print name "Lew",a_href("http://www.pivovary-staropramen.cz/web/en/","Pivovary Staropramen"),"web";
78 print name a_href_cc({"CZ"=>'http://vellum.cz/~mikc/'},'Michal "MIKC" Conos'),undef(),
79                 "betatesting";
80 print name a_href("http://sys.xiloo.com/","Matt Wu"),
81                 a_href("http://sys.xiloo.com/projects/projects.htm#ext2fsd","Ext2fsd")." developer","W32 tips";
82 print name "Steven Edwards"  ,a_href("http://www.reactos.com/","ReactOS")." developer","W32 tips";
83 print name "Casper Hornstrup",a_href("http://www.reactos.com/","ReactOS")." developer","W32 tips";
84 print <<'HERE';
85 <li>Last but not least - Kind greetings to Danese Cooper, Open Source Diva!</li>
86 </ul>
87
88 HERE
89
90
91 exit;
92 }
93 1;