]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - html/cgi-bin/credits.cgi
Add webinterface frontend for fireinfo.
[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 #
5# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
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
872a05ee 68Project Leader - Michael Tremer
98935cc2 69(<a href='mailto:mitch\@ipfire.org'>mitch\@ipfire.org</a>)<br />
872a05ee
MT
70Vice Project Leader - Christian Schmidt
71(<a href='mailto:maniacikarus\@ipfire.org'>maniacikarus\@ipfire.org</a>)<br />
3306331d 72Maintainer IPFire 2.x - Arne Fitzenreiter
6b9f1b88 73(<a href='mailto:arne\@ipfire.org'>arne\@ipfire.org</a>)<br />
1aa998af 74Developer - Stefan Schantl
68b99444
JPT
75(<a href='mailto:Stevee\@ipfire.org'>stevee\@ipfire.org</a>)<br />
76Developer - Jan Paul T&uuml;cking
77(<a href='mailto:earl\@ipfire.org'>earl\@ipfire.org</a>)<br />
e9b3c215 78Developer & Webmaster - Heiner Schmeling
872a05ee 79(<a href='mailto:cm\@ipfire.org'>cm\@ipfire.org</a>)<br />
68b99444
JPT
80Developer (Addons) - Peter Pfeiffer
81(<a href='mailto:peterman\@ipfire.org'>peterman\@ipfire.org</a>)<br />
d4dc5449 82Supporter, Wiki-Admin & Sponsor - Ronald Wiesinger
872a05ee 83(<a href='mailto:rowie\@ipfire.org'>rowie\@ipfire.org</a>)<br />
d4dc5449 84Supporter & Wiki-Admin - Silvio Rechenbach
6b9f1b88 85(<a href='mailto:exciter\@ipfire.org'>exciter\@ipfire.org</a>)<br />
50d966e0
RW
86Sponsor - Peter Schaelchli
87(<a href='mailto:scp\@ipfire.org'>scp\@ipfire.org</a>)<br />
e9b3c215
RW
88Sponsor - Sven Nierlein
89(<a href='mailto:affect\@ipfire.org'>affect\@versatel.de</a>)<br />
90Sponsor - Rene Zingel
91(<a href='mailto:linuxadmin\@ipfire.org'>linuxadmin\@ipfire.org</a>)<br />
ac1cfefa 92</p>
872a05ee 93<p>Some parts of the distribution are left ajar on third-party software, that is licensed under the GPL, too.<br />
7e7f3b5d 94There are: Advanced Proxy with URL-Filter and Update-Accelerator, ZERINA, Connection Scheduler, Hddtemp and Wake-on-LAN.<br />
872a05ee 95Distributed by Marco Sondermann, Ufuk Altinkaynak, Thomas Eichstaedt and Olaf Westrik.</p>
ac1cfefa
MT
96END
97;
e383179b
MT
98&Header::closebox();
99
0443c2fa 100&Header::openbox('100%', 'left', 'General Public License v3');
3306331d
AF
101if ( -e "/usr/share/doc/licenses/GPLv3" ) {
102 print '<textarea rows="25" cols="75" readonly="true">';
103 print `cat "/usr/share/doc/licenses/GPLv3"`;
104 print '</textarea>';
105}
106else {
107 print '<br /><a href="http://www.gnu.org/licenses/gpl-3.0.txt" target="_blank">GENERAL PUBLIC LICENSE</a><br />';
108}
e383179b 109
ac1cfefa
MT
110&Header::closebox();
111
112&Header::closebigbox();
113
114&Header::closepage();