]> git.ipfire.org Git - ipfire-2.x.git/blame - html/cgi-bin/credits.cgi
Remove donation button from credits.cgi.
[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
38&Header::openbox('100%', 'left', $Lang::tr{'credits'});
39
40print <<END
d4dc5449 41<br /><center><b><a href='http://www.ipfire.org/' target="_blank">http://www.ipfire.org/</a></b></center>
872a05ee 42<br />
ac1cfefa 43<p>
872a05ee
MT
44 <b>IPFire is based on IPCop and Smoothwall. Many thanks to its developers.</b><br />
45 <b>We want to say thank you to all of the developers who ever contributed anything to IPFire.</b>
46</p>
47
24249567 48<p><b>Development:</b><br />
98935cc2 49
977a52e6
SS
50Arne Fitzenreiter
51(<a href='mailto:arne.fitzenreiter\@ipfire.org'>arne.fitzenreiter\@ipfire.org</a>) - Maintainer IPFire 2.x <br />
52Michael Tremer
53(<a href='mailto:michael.tremer\@ipfire.org'>michael.tremer\@ipfire.org</a>) - Project Leader <br />
54Christian Schmidt
55(<a href='mailto:christian.schmidt\@ipfire.org'>christian.schmidt\@ipfire.org</a>) - Vice Project Leader <br />
56Stefan Schantl
57(<a href='mailto:stefan.schantl\@ipfire.org'>stefan.schantl\@ipfire.org</a>)<br />
58Jan Paul T&uuml;cking
59(<a href='mailto:jan.tuecking\@ipfire.org'>jan.tuecking\@ipfire.org</a>)<br />
60Heiner Schmeling
61(<a href='mailto:heiner.schmeling\@ipfire.org'>heiner.schmeling\@ipfire.org</a>)<br />
62Ronald Wiesinger
63(<a href='mailto:ronald.wiesinger\@ipfire.org'>ronald.wiesinger\@ipfire.org</a>)<br />
64Silvio Rechenbach
65(<a href='mailto:silvio.rechenbach\@ipfire.org'>silvio.rechenbach\@ipfire.org</a>)<br />
66Dirk Wagner
67(<a href='mailto:dirk.wagner\@ipfire.org'>dirk.wagner\@ipfire.org</a>)<br />
68Erik Kapfer
69(<a href='mailto:erik.kapfer\@ipfire.org'>erik.kapfer\@ipfire.org</a>)<br />
70Alfred Haas
71(<a href='mailto:alfred.haas\@ipfire.org'>alfred.haas\@ipfire.org</a>)<br />
72
73<p><b>Inactive:</b><br />
74
75Peter Pfeiffer
76(<a href='mailto:peter.pfeifer\@ipfire.org'>peter.pfeifer\@ipfire.org</a>)<br />
77Peter Sch&auml;lchli
78(<a href='mailto:peter.schaelchli\@ipfire.org'>peter.schaelchli\@ipfire.org</a>)<br />
ac1cfefa 79</p>
872a05ee 80<p>Some parts of the distribution are left ajar on third-party software, that is licensed under the GPL, too.<br />
7e7f3b5d 81There are: Advanced Proxy with URL-Filter and Update-Accelerator, ZERINA, Connection Scheduler, Hddtemp and Wake-on-LAN.<br />
872a05ee 82Distributed by Marco Sondermann, Ufuk Altinkaynak, Thomas Eichstaedt and Olaf Westrik.</p>
ca80b711
AF
83<p>
84
6fea934b 85This product includes GeoLite data created by MaxMind, available from <a href='http://www.maxmind.com/' target="_blank">http://www.maxmind.com/</a>.
ca80b711 86</p>
ac1cfefa
MT
87END
88;
e383179b
MT
89&Header::closebox();
90
0443c2fa 91&Header::openbox('100%', 'left', 'General Public License v3');
3306331d
AF
92if ( -e "/usr/share/doc/licenses/GPLv3" ) {
93 print '<textarea rows="25" cols="75" readonly="true">';
94 print `cat "/usr/share/doc/licenses/GPLv3"`;
95 print '</textarea>';
96}
97else {
98 print '<br /><a href="http://www.gnu.org/licenses/gpl-3.0.txt" target="_blank">GENERAL PUBLIC LICENSE</a><br />';
99}
e383179b 100
ac1cfefa
MT
101&Header::closebox();
102
103&Header::closebigbox();
104
105&Header::closepage();