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