#!/usr/bin/perl ############################################################################### # # # IPFire.org - A linux based firewall # # Copyright (C) 2010 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # # the Free Software Foundation, either version 3 of the License, or # # (at your option) any later version. # # # # This program is distributed in the hope that it will be useful, # # but WITHOUT ANY WARRANTY; without even the implied warranty of # # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # # GNU General Public License for more details. # # # # You should have received a copy of the GNU General Public License # # along with this program. If not, see . # # # ############################################################################### use strict; # enable only the following on debugging purpose #use warnings; #use CGI::Carp 'fatalsToBrowser'; require '/var/ipfire/general-functions.pl'; require "${General::swroot}/lang.pl"; require "${General::swroot}/header.pl"; &Header::showhttpheaders(); &Header::openpage($Lang::tr{'credits'}, 1, ''); &Header::openbigbox('100%', 'center'); &Header::openbox('100%', 'left', $Lang::tr{'donation'}); print <$Lang::tr{'donation-text'}


END ; &Header::closebox(); &Header::openbox('100%', 'left', $Lang::tr{'credits'}); print <
http://www.ipfire.org/

IPFire is based on IPCop and Smoothwall. Many thanks to its developers.
We want to say thank you to all of the developers who ever contributed anything to IPFire.

Development:
Project Leader - Michael Tremer (mitch\@ipfire.org)
Vice Project Leader - Christian Schmidt (maniacikarus\@ipfire.org)
Maintainer IPFire 2.x - Arne Fitzenreiter (arne\@ipfire.org)
Developer - Stefan Schantl (stevee\@ipfire.org)
Developer - Jan Paul Tücking (earl\@ipfire.org)
Developer & Webmaster - Heiner Schmeling (cm\@ipfire.org)
Developer (Addons) - Peter Pfeiffer (peterman\@ipfire.org)
Supporter, Wiki-Admin & Sponsor - Ronald Wiesinger (rowie\@ipfire.org)
Supporter & Wiki-Admin - Silvio Rechenbach (exciter\@ipfire.org)
Sponsor - Peter Schaelchli (scp\@ipfire.org)
Sponsor - Sven Nierlein (affect\@versatel.de)
Sponsor - Rene Zingel (linuxadmin\@ipfire.org)

Some parts of the distribution are left ajar on third-party software, that is licensed under the GPL, too.
There are: Advanced Proxy with URL-Filter and Update-Accelerator, ZERINA, Connection Scheduler, Hddtemp and Wake-on-LAN.
Distributed by Marco Sondermann, Ufuk Altinkaynak, Thomas Eichstaedt and Olaf Westrik.

This product includes GeoLite data crated by MaxMind, available from http://www.maxmind.com/.

END ; &Header::closebox(); &Header::openbox('100%', 'left', 'General Public License v3'); if ( -e "/usr/share/doc/licenses/GPLv3" ) { print ''; } else { print '
GENERAL PUBLIC LICENSE
'; } &Header::closebox(); &Header::closebigbox(); &Header::closepage();