]> git.ipfire.org Git - ipfire-2.x.git/blob - html/cgi-bin/credits.cgi
Updated GeoIP datebase.
[ipfire-2.x.git] / html / cgi-bin / credits.cgi
1 #!/usr/bin/perl
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2010 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
22 use strict;
23
24 # enable only the following on debugging purpose
25 #use warnings;
26 #use CGI::Carp 'fatalsToBrowser';
27
28 require '/var/ipfire/general-functions.pl';
29 require "${General::swroot}/lang.pl";
30 require "${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
40 print <<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">
45 <input type="hidden" name="hosted_button_id" value="10781833">
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
52 END
53 ;
54 &Header::closebox();
55
56 &Header::openbox('100%', 'left', $Lang::tr{'credits'});
57
58 print <<END
59 <br /><center><b><a href='http://www.ipfire.org/' target="_blank">http://www.ipfire.org/</a></b></center>
60 <br />
61 <p>
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
66 <p><b>Development:</b><br />
67
68 Project Leader - Michael Tremer
69 (<a href='mailto:mitch\@ipfire.org'>mitch\@ipfire.org</a>)<br />
70 Vice Project Leader - Christian Schmidt
71 (<a href='mailto:maniacikarus\@ipfire.org'>maniacikarus\@ipfire.org</a>)<br />
72 Maintainer IPFire 2.x - Arne Fitzenreiter
73 (<a href='mailto:arne\@ipfire.org'>arne\@ipfire.org</a>)<br />
74 Developer - Stefan Schantl
75 (<a href='mailto:Stevee\@ipfire.org'>stevee\@ipfire.org</a>)<br />
76 Developer - Jan Paul T&uuml;cking
77 (<a href='mailto:earl\@ipfire.org'>earl\@ipfire.org</a>)<br />
78 Developer & Webmaster - Heiner Schmeling
79 (<a href='mailto:cm\@ipfire.org'>cm\@ipfire.org</a>)<br />
80 Developer (Addons) - Peter Pfeiffer
81 (<a href='mailto:peterman\@ipfire.org'>peterman\@ipfire.org</a>)<br />
82 Supporter, Wiki-Admin & Sponsor - Ronald Wiesinger
83 (<a href='mailto:rowie\@ipfire.org'>rowie\@ipfire.org</a>)<br />
84 Supporter & Wiki-Admin - Silvio Rechenbach
85 (<a href='mailto:exciter\@ipfire.org'>exciter\@ipfire.org</a>)<br />
86 Sponsor - Peter Schaelchli
87 (<a href='mailto:scp\@ipfire.org'>scp\@ipfire.org</a>)<br />
88 Sponsor - Sven Nierlein
89 (<a href='mailto:affect\@ipfire.org'>affect\@versatel.de</a>)<br />
90 Sponsor - Rene Zingel
91 (<a href='mailto:linuxadmin\@ipfire.org'>linuxadmin\@ipfire.org</a>)<br />
92 </p>
93 <p>Some parts of the distribution are left ajar on third-party software, that is licensed under the GPL, too.<br />
94 There are: Advanced Proxy with URL-Filter and Update-Accelerator, ZERINA, Connection Scheduler, Hddtemp and Wake-on-LAN.<br />
95 Distributed by Marco Sondermann, Ufuk Altinkaynak, Thomas Eichstaedt and Olaf Westrik.</p>
96 <p>
97
98 This product includes GeoLite data crated by MaxMind, available from <a href='http://www.maxmind.com/' target="_blank">http://www.maxmind.com/</a>.
99 </p>
100 END
101 ;
102 &Header::closebox();
103
104 &Header::openbox('100%', 'left', 'General Public License v3');
105 if ( -e "/usr/share/doc/licenses/GPLv3" ) {
106 print '<textarea rows="25" cols="75" readonly="true">';
107 print `cat "/usr/share/doc/licenses/GPLv3"`;
108 print '</textarea>';
109 }
110 else {
111 print '<br /><a href="http://www.gnu.org/licenses/gpl-3.0.txt" target="_blank">GENERAL PUBLIC LICENSE</a><br />';
112 }
113
114 &Header::closebox();
115
116 &Header::closebigbox();
117
118 &Header::closepage();