mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-10 02:55:55 +02:00
* Clamav - Antivirus * rsync - Backuptool Geändert: * Einige neue Prozeduren in der make.sh * Ein paar Backupdateien gelöscht/aufgeräumt * Credits bearbeitet. Noch nicht vollständig. * XAMPP jetzt nichtmehr in der ISO sondern als Paket. * ISO bedeutend kleiner: 144MB -> 61MB * GNUMP3D-Paket erstellt. * Kernel schonmal angepasst für NFS, noch nicht getestet!! git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@113 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
51 lines
1.3 KiB
Perl
51 lines
1.3 KiB
Perl
#!/usr/bin/perl
|
|
#
|
|
# IPFire CGIs
|
|
#
|
|
# This code is distributed under the terms of the GPL
|
|
#
|
|
# (c) The IPFire Team
|
|
#
|
|
|
|
use strict;
|
|
|
|
# enable only the following on debugging purpose
|
|
#use warnings;
|
|
#use CGI::Carp 'fatalsToBrowser';
|
|
|
|
require 'CONFIG_ROOT/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{'credits'});
|
|
|
|
print <<END
|
|
<br /><center><b>Besuchen sie uns auf <a href='http://www.ipfire.org/'>http://www.ipfire.org/</a></b></center>
|
|
<br /><center><b>Visit us on <a href='http://www.ipfire.org/'>http://www.ipfire.org/</a></b></center>
|
|
<p>
|
|
<br /><center><b>IPFire is based on IPCop and Smoothwall. Many thanks to its developers for this great piece of software.</b></center>
|
|
|
|
<p><b>Credits:</b><br />
|
|
Projektleiter - Michael Tremer
|
|
(<a href='mailto:m.s.tremer\@gmail.com'>m.s.tremer\@gmail.com</a>)<br />
|
|
Projektmitglied & Sponsor - Detlef Lampart
|
|
(<a href='mailto:info\@delaco.de'>info\@delaco.de</a>)<br />
|
|
Projektmitglied & Webinterfacedesign - Benedikt Correll
|
|
(<a href='mailto:benedikt_correll\@hotmail.com'>benedikt_correll\@hotmail.com</a>)<br />
|
|
...to be continued
|
|
</p>
|
|
END
|
|
;
|
|
|
|
&Header::closebox();
|
|
|
|
&Header::closebigbox();
|
|
|
|
&Header::closepage();
|