]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - html/cgi-bin/credits.cgi
credits.cgi: Update PP information.
[people/pmueller/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) 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
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="HHBTSN9QRWPAY">
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.paypalobjects.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 Arne Fitzenreiter
69 (<a href='mailto:arne.fitzenreiter\@ipfire.org'>arne.fitzenreiter\@ipfire.org</a>) - Maintainer IPFire 2.x <br />
70 Michael Tremer
71 (<a href='mailto:michael.tremer\@ipfire.org'>michael.tremer\@ipfire.org</a>) - Project Leader <br />
72 Christian Schmidt
73 (<a href='mailto:christian.schmidt\@ipfire.org'>christian.schmidt\@ipfire.org</a>) - Vice Project Leader <br />
74 Stefan Schantl
75 (<a href='mailto:stefan.schantl\@ipfire.org'>stefan.schantl\@ipfire.org</a>)<br />
76 Jan Paul T&uuml;cking
77 (<a href='mailto:jan.tuecking\@ipfire.org'>jan.tuecking\@ipfire.org</a>)<br />
78 Heiner Schmeling
79 (<a href='mailto:heiner.schmeling\@ipfire.org'>heiner.schmeling\@ipfire.org</a>)<br />
80 Ronald Wiesinger
81 (<a href='mailto:ronald.wiesinger\@ipfire.org'>ronald.wiesinger\@ipfire.org</a>)<br />
82 Silvio Rechenbach
83 (<a href='mailto:silvio.rechenbach\@ipfire.org'>silvio.rechenbach\@ipfire.org</a>)<br />
84 Dirk Wagner
85 (<a href='mailto:dirk.wagner\@ipfire.org'>dirk.wagner\@ipfire.org</a>)<br />
86 Erik Kapfer
87 (<a href='mailto:erik.kapfer\@ipfire.org'>erik.kapfer\@ipfire.org</a>)<br />
88 Alfred Haas
89 (<a href='mailto:alfred.haas\@ipfire.org'>alfred.haas\@ipfire.org</a>)<br />
90
91 <p><b>Inactive:</b><br />
92
93 Peter Pfeiffer
94 (<a href='mailto:peter.pfeifer\@ipfire.org'>peter.pfeifer\@ipfire.org</a>)<br />
95 Peter Sch&auml;lchli
96 (<a href='mailto:peter.schaelchli\@ipfire.org'>peter.schaelchli\@ipfire.org</a>)<br />
97 </p>
98 <p>Some parts of the distribution are left ajar on third-party software, that is licensed under the GPL, too.<br />
99 There are: Advanced Proxy with URL-Filter and Update-Accelerator, ZERINA, Connection Scheduler, Hddtemp and Wake-on-LAN.<br />
100 Distributed by Marco Sondermann, Ufuk Altinkaynak, Thomas Eichstaedt and Olaf Westrik.</p>
101 <p>
102
103 This product includes GeoLite data created by MaxMind, available from <a href='http://www.maxmind.com/' target="_blank">http://www.maxmind.com/</a>.
104 </p>
105 END
106 ;
107 &Header::closebox();
108
109 &Header::openbox('100%', 'left', 'General Public License v3');
110 if ( -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 }
115 else {
116 print '<br /><a href="http://www.gnu.org/licenses/gpl-3.0.txt" target="_blank">GENERAL PUBLIC LICENSE</a><br />';
117 }
118
119 &Header::closebox();
120
121 &Header::closebigbox();
122
123 &Header::closepage();