]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - html/cgi-bin/credits.cgi
ovpnmain.cgi: Change check for pushed dhcp domains.
[people/teissler/ipfire-2.x.git] / html / cgi-bin / credits.cgi
CommitLineData
ac1cfefa 1#!/usr/bin/perl
70df8302
MT
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
977a52e6 5# Copyright (C) 2011 IPFire Team <info@ipfire.org> #
70df8302
MT
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
ac1cfefa
MT
21
22use strict;
23
24# enable only the following on debugging purpose
25#use warnings;
26#use CGI::Carp 'fatalsToBrowser';
27
986e08d9 28require '/var/ipfire/general-functions.pl';
ac1cfefa
MT
29require "${General::swroot}/lang.pl";
30require "${General::swroot}/header.pl";
31
32&Header::showhttpheaders();
33
34&Header::openpage($Lang::tr{'credits'}, 1, '');
35
36&Header::openbigbox('100%', 'center');
37
41b72de4
MT
38&Header::openbox('100%', 'left', $Lang::tr{'donation'});
39
40print <<END
41<p>$Lang::tr{'donation-text'}</p>
41b72de4 42
d6b4566d 43<div align="center">
fb874f2e
MT
44 <a href="http://www.ipfire.org/donate">
45 <strong>$Lang::tr{'donation'}</strong>
46 </a>
d6b4566d 47</div>
fb874f2e
MT
48<br><br><hr><br>
49<p style="text-align: center;">
50 $Lang::tr{'our donors'}:
51
52 <a href="http://www.irrsinn.de" target="_blank">irrsinn.de gmbh</a>
53</p>
41b72de4
MT
54END
55;
56&Header::closebox();
57
ac1cfefa
MT
58&Header::openbox('100%', 'left', $Lang::tr{'credits'});
59
60print <<END
fb874f2e
MT
61<br>
62<center>
63 $Lang::tr{'visit us at'}: <b><a href='http://www.ipfire.org/' target="_blank">http://www.ipfire.org/</a></b>
64</center>
65<br><hr><br>
872a05ee 66
24249567 67<p><b>Development:</b><br />
98935cc2 68
977a52e6
SS
69Arne Fitzenreiter
70(<a href='mailto:arne.fitzenreiter\@ipfire.org'>arne.fitzenreiter\@ipfire.org</a>) - Maintainer IPFire 2.x <br />
71Michael Tremer
72(<a href='mailto:michael.tremer\@ipfire.org'>michael.tremer\@ipfire.org</a>) - Project Leader <br />
73Christian Schmidt
74(<a href='mailto:christian.schmidt\@ipfire.org'>christian.schmidt\@ipfire.org</a>) - Vice Project Leader <br />
75Stefan Schantl
76(<a href='mailto:stefan.schantl\@ipfire.org'>stefan.schantl\@ipfire.org</a>)<br />
977a52e6
SS
77Heiner Schmeling
78(<a href='mailto:heiner.schmeling\@ipfire.org'>heiner.schmeling\@ipfire.org</a>)<br />
79Ronald Wiesinger
80(<a href='mailto:ronald.wiesinger\@ipfire.org'>ronald.wiesinger\@ipfire.org</a>)<br />
81Silvio Rechenbach
82(<a href='mailto:silvio.rechenbach\@ipfire.org'>silvio.rechenbach\@ipfire.org</a>)<br />
83Dirk Wagner
84(<a href='mailto:dirk.wagner\@ipfire.org'>dirk.wagner\@ipfire.org</a>)<br />
85Erik Kapfer
86(<a href='mailto:erik.kapfer\@ipfire.org'>erik.kapfer\@ipfire.org</a>)<br />
87Alfred Haas
88(<a href='mailto:alfred.haas\@ipfire.org'>alfred.haas\@ipfire.org</a>)<br />
89
90<p><b>Inactive:</b><br />
91
92Peter Pfeiffer
93(<a href='mailto:peter.pfeifer\@ipfire.org'>peter.pfeifer\@ipfire.org</a>)<br />
94Peter Sch&auml;lchli
95(<a href='mailto:peter.schaelchli\@ipfire.org'>peter.schaelchli\@ipfire.org</a>)<br />
d6b4566d
MT
96Jan Paul T&uuml;cking
97(<a href='mailto:jan.tuecking\@ipfire.org'>jan.tuecking\@ipfire.org</a>)<br />
ac1cfefa 98</p>
ac1cfefa
MT
99END
100;
e383179b
MT
101&Header::closebox();
102
fb874f2e
MT
103&Header::openbox("100%", "left", $Lang::tr{'other'});
104print <<END
105 <p>
106 This product includes GeoLite data created by MaxMind, available from
107 <a href='http://www.maxmind.com/' target="_blank">http://www.maxmind.com/</a>.
108 </p>
109END
110;
ac1cfefa
MT
111&Header::closebox();
112
113&Header::closebigbox();
114
115&Header::closepage();