]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - html/cgi-bin/credits.cgi
credits.cgi: read gpl from external file.
[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
ad35f3d2 38&Header::openbox('100%', 'left', 'Version');
ec2eef2b
AF
39print "This is ".`cat /etc/system-release`;
40print " - Pakfire ".`cat /opt/pakfire/etc/pakfire.conf | grep "version =" | cut -d\\" -f2`;
68b99444
JPT
41print "<br />".`uname -a`;
42print "<br /><br /><br /><br />";
43&Header::closebox();
44
45&Header::openbox('100%', 'left', $Lang::tr{'donation'});
46
47print <<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">
2dc28acc 52 <input type="hidden" name="hosted_button_id" value="10781833">
68b99444
JPT
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
59END
60;
ad35f3d2
CS
61&Header::closebox();
62
ac1cfefa
MT
63&Header::openbox('100%', 'left', $Lang::tr{'credits'});
64
65print <<END
d4dc5449 66<br /><center><b><a href='http://www.ipfire.org/' target="_blank">http://www.ipfire.org/</a></b></center>
872a05ee 67<br />
ac1cfefa 68<p>
872a05ee
MT
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
24249567 73<p><b>Development:</b><br />
98935cc2 74
872a05ee 75Project Leader - Michael Tremer
98935cc2 76(<a href='mailto:mitch\@ipfire.org'>mitch\@ipfire.org</a>)<br />
872a05ee
MT
77Vice Project Leader - Christian Schmidt
78(<a href='mailto:maniacikarus\@ipfire.org'>maniacikarus\@ipfire.org</a>)<br />
3306331d 79Maintainer IPFire 2.x - Arne Fitzenreiter
6b9f1b88 80(<a href='mailto:arne\@ipfire.org'>arne\@ipfire.org</a>)<br />
1aa998af 81Developer - Stefan Schantl
68b99444
JPT
82(<a href='mailto:Stevee\@ipfire.org'>stevee\@ipfire.org</a>)<br />
83Developer - Jan Paul T&uuml;cking
84(<a href='mailto:earl\@ipfire.org'>earl\@ipfire.org</a>)<br />
e9b3c215 85Developer & Webmaster - Heiner Schmeling
872a05ee 86(<a href='mailto:cm\@ipfire.org'>cm\@ipfire.org</a>)<br />
68b99444
JPT
87Developer (Addons) - Peter Pfeiffer
88(<a href='mailto:peterman\@ipfire.org'>peterman\@ipfire.org</a>)<br />
d4dc5449 89Supporter, Wiki-Admin & Sponsor - Ronald Wiesinger
872a05ee 90(<a href='mailto:rowie\@ipfire.org'>rowie\@ipfire.org</a>)<br />
d4dc5449 91Supporter & Wiki-Admin - Silvio Rechenbach
6b9f1b88 92(<a href='mailto:exciter\@ipfire.org'>exciter\@ipfire.org</a>)<br />
50d966e0
RW
93Sponsor - Peter Schaelchli
94(<a href='mailto:scp\@ipfire.org'>scp\@ipfire.org</a>)<br />
e9b3c215
RW
95Sponsor - Sven Nierlein
96(<a href='mailto:affect\@ipfire.org'>affect\@versatel.de</a>)<br />
97Sponsor - Rene Zingel
98(<a href='mailto:linuxadmin\@ipfire.org'>linuxadmin\@ipfire.org</a>)<br />
ac1cfefa 99</p>
872a05ee 100<p>Some parts of the distribution are left ajar on third-party software, that is licensed under the GPL, too.<br />
7e7f3b5d 101There are: Advanced Proxy with URL-Filter and Update-Accelerator, ZERINA, Connection Scheduler, Hddtemp and Wake-on-LAN.<br />
872a05ee 102Distributed by Marco Sondermann, Ufuk Altinkaynak, Thomas Eichstaedt and Olaf Westrik.</p>
ac1cfefa
MT
103END
104;
e383179b
MT
105&Header::closebox();
106
0443c2fa 107&Header::openbox('100%', 'left', 'General Public License v3');
3306331d
AF
108if ( -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}
113else {
114 print '<br /><a href="http://www.gnu.org/licenses/gpl-3.0.txt" target="_blank">GENERAL PUBLIC LICENSE</a><br />';
115}
e383179b 116
ac1cfefa
MT
117&Header::closebox();
118
119&Header::closebigbox();
120
121&Header::closepage();