Project

General

Profile

Download (11.5 KB) Statistics
| Branch: | Tag: | Revision:
1
<?php
2
/*
3
 * license.php
4
 *
5
 * part of pfSense (https://www.pfsense.org)
6
 * Copyright (c) 2004-2016 Electric Sheep Fencing, LLC
7
 * All rights reserved.
8
 *
9
 * Licensed under the Apache License, Version 2.0 (the "License");
10
 * you may not use this file except in compliance with the License.
11
 * You may obtain a copy of the License at
12
 *
13
 * http://www.apache.org/licenses/LICENSE-2.0
14
 *
15
 * Unless required by applicable law or agreed to in writing, software
16
 * distributed under the License is distributed on an "AS IS" BASIS,
17
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
 * See the License for the specific language governing permissions and
19
 * limitations under the License.
20
 */
21

    
22
##|+PRIV
23
##|*IDENT=page-system-license
24
##|*NAME=System: License
25
##|*DESCR=Allow access to the 'System: License' page.
26
##|*MATCH=license.php*
27
##|-PRIV
28

    
29
require_once("guiconfig.inc");
30
include("head.inc");
31
?>
32
<div class="panel panel-default">
33
	<div class="panel-heading"><h2 class="panel-title"><?=gettext("License")?></h2></div>
34
	<div class="panel-body content">
35
		<p><strong><?php printf(gettext("%s is Copyright &copy; %s %s. All rights reserved."), $g['product_name'], $g['product_copyright_years'], $g['product_copyright'])?></strong></p>
36
		<p><?=gettext("m0n0wall is Copyright &copy; 2002-2015 by Manuel Kasper (mk@neon1.net). All rights reserved.")?></p>
37
 * Licensed under the Apache License, Version 2.0 (the "License");
38
 * you may not use this file except in compliance with the License.
39
 * You may obtain a copy of the License at
40
 *
41
 * http://www.apache.org/licenses/LICENSE-2.0
42
 *
43
 * Unless required by applicable law or agreed to in writing, software
44
 * distributed under the License is distributed on an "AS IS" BASIS,
45
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
46
 * See the License for the specific language governing permissions and
47
 * limitations under the License.
48
	</div>
49
</div>
50
<div class="panel panel-default">
51
	<div class="panel-heading"><h2 class="panel-title"><?=gettext("Third Party Credits")?></h2></div>
52
	<div class="panel-body content">
53
		<p>
54
			<?php printf(gettext("%s is based upon/includes various free software packages, listed below. The authors of %s would like to thank the authors of these software packages for their efforts."), $g['product_name'], $g['product_name'])?><br />
55
		</p>
56
		<ul class="list-group">
57
			<li class="list-group-item">
58
				<strong>FreeBSD</strong> (<a href="http://www.freebsd.org" target="_blank">http://www.freebsd.org</a>)<br />
59
				<?=gettext("Copyright")?> &copy;<?=gettext("1992-2016 The FreeBSD Project. All rights reserved.")?>
60
			</li>
61
			<li class="list-group-item">
62
				<?=gettext("This product includes") . " <strong>PHP</strong>, " . gettext("freely available from")?> (<a href="http://www.php.net/" target="_blank">http://www.php.net</a>).<br />
63
				<?=gettext("Copyright"); ?> &copy; <?=gettext("1999-2016 The PHP Group. All rights reserved.")?>
64
			</li>
65
			<li class="list-group-item">
66
				<strong>PF</strong> originally from OpenBSD (<a href="http://www.openbsd.org/faq/pf" target="_blank">http://www.openbsd.org</a>)
67
			</li>
68
			<li class="list-group-item">
69
				<strong>bind-tools</strong> (<a href="https://www.isc.org/downloads/bind/" target="_blank">https://www.isc.org/downloads/bind/</a>)<br />
70
				<?=gettext("Copyright"); ?> &copy; 2004-2013 Internet Systems Consortium, Inc. ("ISC")
71
			</li>
72
			<li class="list-group-item">
73
				<strong>Bootstrap</strong> HTML, CSS and JS framework (<a href="https://getbootstrap.com/" target="_blank">https://getbootstrap.com/</a>)<br />
74
				<?=gettext("Copyright"); ?> &copy; 2015 Twitter
75
			</li>
76
			<li class="list-group-item">
77
				<strong>ca_root_nss</strong> Root certificates from certificate authorities included in the (<a href="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS" target="_blank">Mozilla
78
NSS library</a>)<br />
79
			</li>
80
			<li class="list-group-item">
81
				<strong>choparp</strong> (<a href="http://choparp.sourceforge.net/" target="_blank">http://choparp.sourceforge.net</a>)<br />
82
				<?=gettext("Copyright"); ?> &copy; 1997 Takamichi Tateoka (tree@mma.club.uec.ac.jp)<br />
83
				<?=gettext("Copyright"); ?> &copy; 2002 Thomas Quinot (thomas@cuivre.fr.eu.org)
84
			</li>
85
			<li class="list-group-item">
86
				<strong>Circular log support for FreeBSD syslogd</strong> (<a href="http://software.wheelhouse.org/syslogd/" target="_blank">http://software.wheelhouse.org/syslogd/</a>)<br />
87
				<?=gettext("Copyright"); ?> &copy; 2001 Jeff Wheelhouse (jdw@wwwi.com)
88
			</li>
89
			<li class="list-group-item">
90
				<strong>cpdup</strong> (<a href="http://apollo.backplane.com/FreeSrc/" target="_blank">http://apollo.backplane.com/FreeSrc/</a>)<br />
91
				<?=gettext("Copyright"); ?> &copy; 1997-1999 Matthew Dillon and Dima Ruban.
92
			</li>
93
			<li class="list-group-item">
94
				<strong>curl</strong> (<a href="https://curl.haxx.se/" target="_blank">https://curl.haxx.se/</a>)<br />
95
				<?=gettext("Copyright"); ?> &copy; 1998-2016 Daniel Stenberg.
96
			</li>
97
			<li class="list-group-item">
98
				<strong>D3.js</strong> (<a href="https://d3js.org/" target="_blank">https://d3js.org/</a>)<br />
99
				<?=gettext("Copyright"); ?> &copy; 2015-2016 Mike Bostock.
100
			</li>
101
			<li class="list-group-item">
102
				<strong>d3pie</strong> (<a href="http://d3pie.org/" target="_blank">http://d3pie.org/</a>)<br />
103
				<?=gettext("Copyright"); ?> &copy; 2014-2016 Benjamin Keen.
104
			</li>
105
			
106
			<li class="list-group-item">
107
				<strong>Dnsmasq</strong> - a DNS forwarder for NAT firewalls (<a href="http://www.thekelleys.org.uk" target="_blank">http://www.thekelleys.org.uk</a>)<br />
108
				<?=gettext("Copyright"); ?> &copy; 2000-2016 Simon Kelley.
109
			</li>
110
			<li class="list-group-item">
111
				<strong>dpinger</strong> - Pinger engine for monitoring latency and loss (<a href="https://github.com/dennypage/dpinger" target="_blank">https://github.com/dennypage/dpinger</a>)<br />
112
				<?=gettext("Copyright"); ?> &copy; 2015-2016 Denny Page.
113
			</li>
114
			<li class="list-group-item">
115
				<strong>ipmitool</strong> - command-line interface to IPMI-enabled devices (<a href="https://sourceforge.net/projects/ipmitool/" target="_blank">https://sourceforge.net/projects/ipmitool/</a>)<br />
116
				<?=gettext("Copyright"); ?> &copy; 2003-2016 Sun Microsystems, Inc.
117
			</li>
118
			<li class="list-group-item">
119
				<strong>ISC DHCP</strong> <?=gettext("server")?> (<a href="http://www.isc.org/products/DHCP/" target="_blank">http://www.isc.org/products/DHCP</a>)<br />
120
				<?=gettext("Copyright"); ?> &copy; <?=gettext("2004-2013 Internet Software Consortium, Inc.")?><br />
121
				<?=gettext("Copyright"); ?> &copy; <?=gettext("1995-2003 Internet Software Consortium")?>
122
			</li>
123
			<li class="list-group-item">
124
				<strong>jQuery</strong> (<a href="https://jquery.com/" target="_blank">https://jquery.com/</a>)<br />
125
				<?=gettext("Copyright"); ?> &copy; 2005-2016 jQuery Foundation and other contributors. 
126
			</li>
127
			<li class="list-group-item">
128
				<strong>MPD</strong> - Multi-link PPP daemon for FreeBSD (<a href="http://mpd.sourceforge.net/" target="_blank">http://mpd.sourceforge.net/</a>)<br />
129
				<?=gettext("Copyright"); ?> &copy; 2003-2004, Archie L. Cobbs, Michael Bretterklieber, Alexander Motin<br />
130
				<?=gettext("All rights reserved.")?>
131
			</li>
132
			<li class="list-group-item">
133
				<strong>nginx</strong> (<a href="http://www.nginx.org" target="_blank">http://www.nginx.org)</a><br />
134
				<?=gettext("Copyright"); ?> &copy;<?=gettext("2011-2016 Nginx, Inc.")?>
135
				<?=gettext("All rights reserved.")?>
136
			</li>
137
			<li class="list-group-item">
138
				<strong>php-radius</strong> (<a href="http://www.mavetju.org/programming/php.php" target="_blank">http://www.mavetju.org/programming/php.php</a>)<br />
139
				<?=gettext("Copyright 2000, 2001, 2002 by Edwin Groothuis. All rights reserved.")?><br />
140
				<?=gettext("This product includes software developed by Edwin Groothuis.")?>
141
			</li>
142
			<li class="list-group-item">
143
				<strong>strongSwan</strong> (<a href="https://www.strongswan.org/" target="_blank">https://www.strongswan.org</a>)<br />
144
				<?=gettext("Copyright"); ?> &copy; <?=gettext("2005-2016 University of Applied Sciences Rapperswil")?>
145
			</li>
146
			<li class="list-group-item">
147
				<strong>wol</strong> (<a href="http://ahh.sourceforge.net/wol" target="_blank">http://ahh.sourceforge.net/wol</a>)<br />
148
				<?=gettext("Copyright"); ?> &copy; 2000,2001,2002,2003,2004 Thomas Krennwallner &lt;krennwallner@aon.at&gt;
149
			</li>
150
			<li class="list-group-item">
151
				<strong>openldap-client</strong> (<a href="http://www.openldap.org/" target="_blank">http://www.openldap.org/</a>)<br />
152
				<?=gettext("Copyright"); ?> &copy; 1999-2016 The OpenLDAP Foundation
153
			</li>
154
			<li class="list-group-item">
155
				<strong>OpenVPN</strong> (<a href="http://openvpn.net/" target="_blank">http://openvpn.net/</a>)<br />
156
				<?=gettext("Copyright (C) 2002-2016 OpenVPN Solutions LLC ")?>
157
			</li>
158
			<li class="list-group-item">
159
				<strong>pftop</strong> (<a href="http://www.eee.metu.edu.tr/~canacar/pftop/" target="_blank">http://www.eee.metu.edu.tr/~canacar/pftop/</a>)<br />
160
				<?=gettext("Copyright"); ?> &copy; 2001, 2007 Can Erkin Acar<br />
161
				<?=gettext("Copyright"); ?> &copy; 2001 Daniel Hartmeier
162
			</li>
163
			<li class="list-group-item">
164
				<strong>radvd</strong> IPv6 router advertisement daemon(<a href="http://www.litech.org/radvd/" target="_blank">http://www.litech.org/radvd/</a>)<br />
165
				<?=gettext("Copyright"); ?> &copy; 1996-2015 Lars Fenneberg, Pedro Roque
166
			</li>
167
			<li class="list-group-item">
168
				<strong>rate</strong> command line traffic analysis tool(<a href="http://s-tech.elsat.net.pl/bmtools/" target="_blank">http://s-tech.elsat.net.pl/bmtools/</a>)<br />
169
				<?=gettext("Copyright"); ?> &copy; 2003-2016 Mateusz 'mteg' Golicz
170
			</li>
171
			<li class="list-group-item">
172
				<strong>relayd</strong> server load balancing with pf (<a href="http://www.openbsd.org" target="_blank">http://www.openbsd.org</a>)<br />
173
				<?=gettext("Copyright"); ?> &copy; 2007-2016 Reyk Floeter
174
			</li>
175
			<li class="list-group-item">
176
				<strong>rrdtool</strong> data logging and graphing system for time series data (<a href="http://oss.oetiker.ch/rrdtool/" target="_blank">http://oss.oetiker.ch/rrdtool/</a>)<br />
177
				<?=gettext("Copyright"); ?> &copy; 1998-2016 Tobias Oetiker
178
			</li>
179
			<li class="list-group-item">
180
				<strong>scponly</strong> (<a href="https://github.com/scponly/scponly/wiki" target="_blank">https://github.com/scponly/scponly/wiki</a>)<br />
181
				<?=gettext("Copyright"); ?> &copy; 2001, 2002, 2003 Joe Boyle
182
			</li>
183
			<li class="list-group-item">
184
				<strong>smartmontools</strong> (<a href="https://www.smartmontools.org/" target="_blank">https://www.smartmontools.org/</a>)<br />
185
				<?=gettext("Copyright"); ?> &copy; 2002-2016 Bruce Allen, Christian Franke
186
			</li>
187
			<li class="list-group-item">
188
				<strong>sortable</strong> Sortable JavaScript and CSS library (<a href="http://github.hubspot.com/sortable/" target="_blank">http://github.hubspot.com/sortable/</a>)<br />
189
				<?=gettext("Copyright"); ?> &copy; 2013 Adam Schwartz
190
			</li>
191
			<li class="list-group-item">
192
				<strong>sqlite3</strong> (<a href="https://www.sqlite.org/" target="_blank">https://www.sqlite.org/</a>)<br />
193
				<?=gettext("Public Domain"); ?>
194
			</li>
195
			<li class="list-group-item">
196
				<strong>Unbound</strong> (<a href="https://www.unbound.net/" target="_blank">https://www.unbound.net/</a>)<br />
197
				<?=gettext("Copyright"); ?> &copy; 2007 NLnet Labs
198
			</li>
199
			<li class="list-group-item">
200
				<strong>xinetd</strong> (<a href="http://www.xinetd.org/" target="_blank">http://www.xinetd.org/</a>)<br />
201
				<?=gettext("Copyright"); ?> &copy; 1992-2016 Panagiotis Tsirigotis
202
			</li>
203
		</ul>
204
	</div>
205
</div>
206

    
207
<?php include("foot.inc");
(88-88/227)