]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - html/cgi-bin/credits.cgi
Merge branch 'master' of git://git.ipfire.org/ipfire-2.x
[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) 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 ###############################################################################
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', 'Version');
39 print "This is ".`cat /etc/system-release`;
40 print " - Pakfire ".`cat /opt/pakfire/etc/pakfire.conf | grep "version =" | cut -d\\" -f2`;
41 print "<br />".`uname -a`;
42 print "<br /><br /><br /><br />";
43 &Header::closebox();
44
45 &Header::openbox('100%', 'left', $Lang::tr{'donation'});
46
47 print <<END
48 <p>$Lang::tr{'donation-text'}</p>
49 <div align="center">
50 <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
51 <input type="hidden" name="cmd" value="_s-xclick">
52 <input type="hidden" name="hosted_button_id" value="10781833">
53 <input type="image" src=$Lang::tr{'donation-link'} border="0" name="submit" alt="PayPal - The safer, easier way to pay online.">
54 <img alt="" border="0" src="https://www.paypal.com/de_DE/i/scr/pixel.gif" width="1" height="1">
55 </form>
56 </div>
57 <br />
58
59 END
60 ;
61 &Header::closebox();
62
63 &Header::openbox('100%', 'left', $Lang::tr{'credits'});
64
65 print <<END
66 <br /><center><b><a href='http://www.ipfire.org/' target="_blank">http://www.ipfire.org/</a></b></center>
67 <br />
68 <p>
69 <b>IPFire is based on IPCop and Smoothwall. Many thanks to its developers.</b><br />
70 <b>We want to say thank you to all of the developers who ever contributed anything to IPFire.</b>
71 </p>
72
73 <p><b>Development:</b><br />
74
75 Project Leader - Michael Tremer
76 (<a href='mailto:mitch\@ipfire.org'>mitch\@ipfire.org</a>)<br />
77 Vice Project Leader - Christian Schmidt
78 (<a href='mailto:maniacikarus\@ipfire.org'>maniacikarus\@ipfire.org</a>)<br />
79 Maintainer IPFire 2.x - Arne Fitzenreiter
80 (<a href='mailto:arne\@ipfire.org'>arne\@ipfire.org</a>)<br />
81 Developer - Stefan Schantl
82 (<a href='mailto:Stevee\@ipfire.org'>stevee\@ipfire.org</a>)<br />
83 Developer - Jan Paul T&uuml;cking
84 (<a href='mailto:earl\@ipfire.org'>earl\@ipfire.org</a>)<br />
85 Developer & Webmaster - Heiner Schmeling
86 (<a href='mailto:cm\@ipfire.org'>cm\@ipfire.org</a>)<br />
87 Developer (Addons) - Peter Pfeiffer
88 (<a href='mailto:peterman\@ipfire.org'>peterman\@ipfire.org</a>)<br />
89 Supporter, Wiki-Admin & Sponsor - Ronald Wiesinger
90 (<a href='mailto:rowie\@ipfire.org'>rowie\@ipfire.org</a>)<br />
91 Supporter & Wiki-Admin - Silvio Rechenbach
92 (<a href='mailto:exciter\@ipfire.org'>exciter\@ipfire.org</a>)<br />
93 Sponsor - Peter Schaelchli
94 (<a href='mailto:scp\@ipfire.org'>scp\@ipfire.org</a>)<br />
95 Sponsor - Sven Nierlein
96 (<a href='mailto:affect\@ipfire.org'>affect\@versatel.de</a>)<br />
97 Sponsor - Rene Zingel
98 (<a href='mailto:linuxadmin\@ipfire.org'>linuxadmin\@ipfire.org</a>)<br />
99 </p>
100 <p>Some parts of the distribution are left ajar on third-party software, that is licensed under the GPL, too.<br />
101 There are: Advanced Proxy with URL-Filter and Update-Accelerator, ZERINA, Connection Scheduler, Hddtemp and Wake-on-LAN.<br />
102 Distributed by Marco Sondermann, Ufuk Altinkaynak, Thomas Eichstaedt and Olaf Westrik.</p>
103 END
104 ;
105 &Header::closebox();
106
107 &Header::openbox('100%', 'left', 'General Public License v3');
108 if ( -e "/usr/share/doc/licenses/GPLv3" ) {
109 print '<textarea rows="25" cols="75" readonly="true">';
110 print `cat "/usr/share/doc/licenses/GPLv3"`;
111 print '</textarea>';
112 }
113 else {
114 print '<br /><a href="http://www.gnu.org/licenses/gpl-3.0.txt" target="_blank">GENERAL PUBLIC LICENSE</a><br />';
115 }
116
117 &Header::closebox();
118
119 &Header::closebigbox();
120
121 &Header::closepage();