]> git.ipfire.org Git - ipfire-2.x.git/blame_incremental - html/cgi-bin/credits.cgi
Update maintainers
[ipfire-2.x.git] / html / cgi-bin / credits.cgi
... / ...
CommitLineData
1#!/usr/bin/perl
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2011 IPFire Team <info@ipfire.org> #
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###############################################################################
21
22use strict;
23
24# enable only the following on debugging purpose
25#use warnings;
26#use CGI::Carp 'fatalsToBrowser';
27
28require '/var/ipfire/general-functions.pl';
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
38&Header::openbox('100%', 'left', $Lang::tr{'donation'});
39
40print <<END
41<p>$Lang::tr{'donation-text'}</p>
42
43<div align="center">
44 <a href="https://www.ipfire.org/donate">
45 <strong>$Lang::tr{'donation'}</strong>
46 </a>
47</div>
48END
49;
50&Header::closebox();
51
52&Header::openbox('100%', 'left',);
53
54print <<END
55<br>
56<center>
57 $Lang::tr{'visit us at'}: <b><a href='https://www.ipfire.org/' target="_blank">https://www.ipfire.org/</a></b>
58</center>
59<br><br>
60
61<p>
62 <!-- CONTRIBUTORS -->
63Michael Tremer,
64Arne Fitzenreiter,
65Christian Schmidt,
66Alexander Marx,
67Matthias Fischer,
68Stefan Schantl,
69Jan Paul Tücking,
70Jonatan Schlag,
71Erik Kapfer,
72Peter Müller,
73Dirk Wagner,
74Marcel Lorenz,
75Alf Høgemark,
76Ben Schweikert,
77Peter Pfeiffer,
78Daniel Glanzmann,
79Heiner Schmeling,
80Daniel Weismüller,
81Timo Eissler,
82Jan Lentfer,
83Marcus Scholz,
84Ersan Yildirim,
85Joern-Ingo Weigert,
86Alfred Haas,
87Wolfgang Apolinarski,
88Lars Schuhmacher,
89Rene Zingel,
90Sascha Kilian,
91Ronald Wiesinger,
92Stephan Feddersen,
93Justin Luth,
94Michael Eitelwein,
95Bernhard Bitsch,
96Dominik Hassler,
97Larsen,
98Gabriel Rolland,
99Stéphane Pautrel,
100Anton D. Seliverstov,
101Bernhard Bittner,
102David Kleuker,
103Hans Horsten,
104Jakub Ratajczak,
105Jorrit de Jonge,
106Jörn-Ingo Weigert,
107Przemek Zdroik,
108Alexander Rudolf Gruber,
109Andrew Bellows,
110Axel Gembe,
111Bernhard Held,
112Christoph Anderegg,
113Daniel Aleksandersen,
114Douglas Duckworth,
115Eberhard Beilharz,
116Ersan Yildirim Ersan,
117Gerd Hoerst,
118H. Horsten,
119Heino Gutschmidt,
120Jan Behrens,
121Jochen Kauz,
122Julian McConnell,
123Kay-Michael Köhler,
124Kim Wölfel,
125Logan Schmidt,
126Nico Prenzel,
127Osmar Gonzalez,
128Paul T. Simmons,
129Robert Möker,
130Stefan Ernst,
131Stefan Ferstl,
132Thomas Ebert,
133Tim FitzGeorge,
134Timmothy Wilson,
135Umberto Parma
136 <!-- END -->
137</p>
138END
139;
140&Header::closebox();
141
142&Header::openbox("100%", "left", $Lang::tr{'other'});
143print <<END
144 <p>
145 This product includes GeoLite data created by MaxMind, available from
146 <a href='http://www.maxmind.com/' target="_blank">http://www.maxmind.com/</a>.
147 </p>
148END
149;
150&Header::closebox();
151
152&Header::closebigbox();
153
154&Header::closepage();