+Support for: $W->{"css_push"}
[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 My::Web;
27 Wrequire 'project::Lib';
28
29
30 sub handler
31 {
32 My::Web->init(
33                 "title"=>'Captive NTFS Thanks',
34                 "css_push"=>"./Lib.css",
35                 "heading_novskip"=>1,
36                 "no_job"=>1,
37                 );
38 My::Web->heading();
39 print(project::Lib->section("captive"));
40
41
42 print <<'HERE';
43 <h1>Captive NTFS Thanks</h1>
44
45 <ul>
46 HERE
47
48 sub name ($;$$)
49 {
50 my($name,$pos,$why)=@_;
51
52         my $r="<li>";
53                 $r.='<span class="name">'.$name.'</span>';
54                 $r.=", $pos" if $pos;
55                 $r.=" - $why" if $why;
56         $r.="</li>\n";
57         return $r;
58 }
59
60 print name "Karel Zatoukal",a_href("http://www.sun.com/","Sun Microsystems");
61 print name "Tim Boudreau",a_href("http://www.sun.com/","Sun Microsystems");
62 print name a_href_cz('http://www.itpravo.cz/admin.shtml?x=45480','Jiri Cermak'),
63                 a_href("http://www.bakernet.com/",'Baker &amp; McKenzie'),
64                 'preflight IT law analysis';
65 print name a_href('http://www.ucw.cz/~mj/','Martin "MJ" Mares');
66 print name "Lubomir Bulej";
67 print name "Tomas Bures";
68 print name a_href_cz('http://www.vellum.cz/','Lukas "Klokan" Horalek'),undef(),"services hosting";
69 print name a_href('http://www-troja.fjfi.cvut.cz/~drab/','Martin Drab'),undef(),
70                 "betatesting, ".a_href('http://lufs.sourceforge.net/lufs/','LUFS')." patches";
71 print name a_href('http://www.pavouk.org/','Pavel "Pavouk" Ruzicka'),a_href('http://www.gtsgroup.cz/','GTS'),
72                 "betatesting";
73 print name "Christian Kristukat",undef(),a_href('http://www.suse.com/','SUSE')." support";
74 print name "Jesse Glick",a_href("http://www.sun.com/","Sun Microsystems"),"betatesting";
75 print name "Lew",a_href("http://www.pivovary-staropramen.cz/web/en/","Pivovary Staropramen"),"web";
76 print name a_href_cz('http://vellum.cz/~mikc/','Michal "MIKC" Conos'),undef(),
77                 "betatesting";
78 print name a_href("http://sys.xiloo.com/","Matt Wu"),
79                 a_href("http://sys.xiloo.com/projects/projects.htm#ext2fsd","Ext2fsd")." developer","W32 tips";
80 print name "Steven Edwards"  ,a_href("http://www.reactos.com/","ReactOS")." developer","W32 tips";
81 print name "Casper Hornstrup",a_href("http://www.reactos.com/","ReactOS")." developer","W32 tips";
82 print <<'HERE';
83 <li>Last but not least - Kind greetings to Danese Cooper, Open Source Diva!</li>
84 </ul>
85
86 HERE
87
88
89 My::Web->footer();
90 }
91 1;