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