]> git.ipfire.org Git - ipfire-2.x.git/blame - html/cgi-bin/credits.cgi
collectd: fix cpufreq plugin enable
[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 #
977a52e6 5# Copyright (C) 2011 IPFire Team <info@ipfire.org> #
70df8302
MT
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
41b72de4
MT
38&Header::openbox('100%', 'left', $Lang::tr{'donation'});
39
40print <<END
41<p>$Lang::tr{'donation-text'}</p>
41b72de4 42
d6b4566d 43<div align="center">
7f7b7b24 44 <a href="https://www.ipfire.org/donate">
fb874f2e
MT
45 <strong>$Lang::tr{'donation'}</strong>
46 </a>
d6b4566d 47</div>
41b72de4
MT
48END
49;
50&Header::closebox();
51
4b74791b 52&Header::openbox('100%', 'left',);
ac1cfefa
MT
53
54print <<END
fb874f2e
MT
55<br>
56<center>
7f7b7b24 57 $Lang::tr{'visit us at'}: <b><a href='https://www.ipfire.org/' target="_blank">https://www.ipfire.org/</a></b>
fb874f2e 58</center>
4b74791b 59<br><br>
872a05ee 60
6feea5f7
MT
61<p>
62 <strong>Core Developers:</strong>
ac1cfefa 63</p>
6feea5f7
MT
64
65<ul style="list-style: none">
66 <li>
67 Michael Tremer
68 (<a href='mailto:michael.tremer\@ipfire.org'>michael.tremer\@ipfire.org</a>)
69 </li>
70 <li>
71 Arne Fitzenreiter
72 (<a href='mailto:arne.fitzenreiter\@ipfire.org'>arne.fitzenreiter\@ipfire.org</a>)
73 </li>
74 <li>
75 Stefan Schantl
76 (<a href='mailto:stefan.schantl\@ipfire.org'>stefan.schantl\@ipfire.org</a>)
77 </li>
78 <li>
79 Alexander Marx
80 (<a href='mailto:alexander.marx\@ipfire.org'>alexander.marx\@ipfire.org</a>)
81 </li>
82</ul>
83
84<p>
85 <strong>Community Developers:</strong>
86</p>
87
88<ul style="list-style: none">
89 <li>
90 Christian Schmidt
91 (<a href='mailto:christian.schmidt\@ipfire.org'>christian.schmidt\@ipfire.org</a>)
92 </li>
93 <li>
94 Jan Paul T&uuml;cking
95 (<a href='mailto:jan.tuecking\@ipfire.org'>jan.tuecking\@ipfire.org</a>)
96 </li>
97 <li>
98 Heiner Schmeling
99 (<a href='mailto:heiner.schmeling\@ipfire.org'>heiner.schmeling\@ipfire.org</a>)
100 </li>
101 <li>
102 Ronald Wiesinger
103 (<a href='mailto:ronald.wiesinger\@ipfire.org'>ronald.wiesinger\@ipfire.org</a>)
104 </li>
105 <li>
106 Silvio Rechenbach
107 (<a href='mailto:silvio.rechenbach\@ipfire.org'>silvio.rechenbach\@ipfire.org</a>)
108 </li>
109 <li>
110 Dirk Wagner
111 (<a href='mailto:dirk.wagner\@ipfire.org'>dirk.wagner\@ipfire.org</a>)
112 </li>
113 <li>
114 Erik Kapfer
115 (<a href='mailto:erik.kapfer\@ipfire.org'>erik.kapfer\@ipfire.org</a>)
116 </li>
117 <li>
118 Alfred Haas
119 (<a href='mailto:alfred.haas\@ipfire.org'>alfred.haas\@ipfire.org</a>)
120 </li>
121 <li>
122 Peter Pfeiffer
123 (<a href='mailto:peter.pfeifer\@ipfire.org'>peter.pfeifer\@ipfire.org</a>)
124 </li>
125 <li>
126 Peter Sch&auml;lchli
127 (<a href='mailto:peter.schaelchli\@ipfire.org'>peter.schaelchli\@ipfire.org</a>)
128 </li>
129</ul>
ac1cfefa
MT
130END
131;
e383179b
MT
132&Header::closebox();
133
fb874f2e
MT
134&Header::openbox("100%", "left", $Lang::tr{'other'});
135print <<END
136 <p>
137 This product includes GeoLite data created by MaxMind, available from
138 <a href='http://www.maxmind.com/' target="_blank">http://www.maxmind.com/</a>.
139 </p>
140END
141;
ac1cfefa
MT
142&Header::closebox();
143
144&Header::closebigbox();
145
146&Header::closepage();