]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - html/cgi-bin/credits.cgi
Merge branch 'next'
[people/pmueller/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">
7f7b7b24 44 <a href="https://www.ipfire.org/donate">
fb874f2e
MT
45 <strong>$Lang::tr{'donation'}</strong>
46 </a>
d6b4566d 47</div>
41b72de4
MT
48END
49;
50&Header::closebox();
51
4b74791b 52&Header::openbox('100%', 'left',);
ac1cfefa
MT
53
54print <<END
fb874f2e
MT
55<br>
56<center>
7f7b7b24 57 $Lang::tr{'visit us at'}: <b><a href='https://www.ipfire.org/' target="_blank">https://www.ipfire.org/</a></b>
fb874f2e 58</center>
4b74791b 59<br><br>
872a05ee 60
6feea5f7 61<p>
1fb7f56e
MT
62 <!-- CONTRIBUTORS -->
63Michael Tremer,
64Arne Fitzenreiter,
65Christian Schmidt,
66Alexander Marx,
1fb7f56e 67Stefan Schantl,
3bc001db 68Matthias Fischer,
1ee8c673 69Jan Paul Tücking,
1fb7f56e 70Peter Müller,
c3f99697 71Jonatan Schlag,
3bc001db 72Erik Kapfer,
f9e4f4dc 73Dirk Wagner,
f9b7bc92 74Marcel Lorenz,
1fb7f56e
MT
75Alf Høgemark,
76Ben Schweikert,
77Peter Pfeiffer,
78Daniel Glanzmann,
79Heiner Schmeling,
1fb7f56e 80Daniel Weismüller,
1ee8c673 81Timo Eissler,
1fb7f56e
MT
82Jan Lentfer,
83Marcus Scholz,
84Ersan Yildirim,
85Joern-Ingo Weigert,
3c6423cd 86Alexander Koch,
c3f99697 87Stephan Feddersen,
f9b7bc92 88Wolfgang Apolinarski,
f6a1d9e9 89Alfred Haas,
1fb7f56e
MT
90Lars Schuhmacher,
91Rene Zingel,
92Sascha Kilian,
c8ee8f37 93Stéphane Pautrel,
1fb7f56e 94Ronald Wiesinger,
171512b7
MT
95Florian Bührle,
96Bernhard Bitsch,
1fb7f56e
MT
97Justin Luth,
98Michael Eitelwein,
c3f99697 99Alex Koch,
1fb7f56e
MT
100Dominik Hassler,
101Larsen,
f6a1d9e9 102Gabriel Rolland,
1fb7f56e
MT
103Anton D. Seliverstov,
104Bernhard Bittner,
105David Kleuker,
106Hans Horsten,
107Jakub Ratajczak,
108Jorrit de Jonge,
1ee8c673 109Jörn-Ingo Weigert,
1fb7f56e 110Przemek Zdroik,
c3f99697 111Ramax Lo,
171512b7 112Tim FitzGeorge,
4b4b29b3 113Alexander Rudolf Gruber,
1fb7f56e
MT
114Andrew Bellows,
115Axel Gembe,
116Bernhard Held,
117Christoph Anderegg,
118Daniel Aleksandersen,
119Douglas Duckworth,
120Eberhard Beilharz,
121Ersan Yildirim Ersan,
122Gerd Hoerst,
123H. Horsten,
124Heino Gutschmidt,
125Jan Behrens,
126Jochen Kauz,
127Julian McConnell,
1fb7f56e
MT
128Kay-Michael Köhler,
129Kim Wölfel,
130Logan Schmidt,
131Nico Prenzel,
145343d5 132Oliver Fuhrer,
1fb7f56e
MT
133Osmar Gonzalez,
134Paul T. Simmons,
f6a1d9e9 135Rob Brewer,
1fb7f56e
MT
136Robert Möker,
137Stefan Ernst,
138Stefan Ferstl,
139Thomas Ebert,
140Timmothy Wilson,
141Umberto Parma
142 <!-- END -->
ac1cfefa 143</p>
ac1cfefa
MT
144END
145;
e383179b
MT
146&Header::closebox();
147
fb874f2e
MT
148&Header::openbox("100%", "left", $Lang::tr{'other'});
149print <<END
150 <p>
151 This product includes GeoLite data created by MaxMind, available from
152 <a href='http://www.maxmind.com/' target="_blank">http://www.maxmind.com/</a>.
153 </p>
154END
155;
ac1cfefa
MT
156&Header::closebox();
157
158&Header::closebigbox();
159
160&Header::closepage();