1
|
<?php
|
2
|
/*
|
3
|
license.php
|
4
|
*/
|
5
|
/* ====================================================================
|
6
|
* Copyright (c) 2004-2015 Electric Sheep Fencing, LLC. All rights reserved.
|
7
|
*
|
8
|
* Redistribution and use in source and binary forms, with or without modification,
|
9
|
* are permitted provided that the following conditions are met:
|
10
|
*
|
11
|
* 1. Redistributions of source code must retain the above copyright notice,
|
12
|
* this list of conditions and the following disclaimer.
|
13
|
*
|
14
|
* 2. Redistributions in binary form must reproduce the above copyright
|
15
|
* notice, this list of conditions and the following disclaimer in
|
16
|
* the documentation and/or other materials provided with the
|
17
|
* distribution.
|
18
|
*
|
19
|
* 3. All advertising materials mentioning features or use of this software
|
20
|
* must display the following acknowledgment:
|
21
|
* "This product includes software developed by the pfSense Project
|
22
|
* for use in the pfSense software distribution. (http://www.pfsense.org/).
|
23
|
*
|
24
|
* 4. The names "pfSense" and "pfSense Project" must not be used to
|
25
|
* endorse or promote products derived from this software without
|
26
|
* prior written permission. For written permission, please contact
|
27
|
* coreteam@pfsense.org.
|
28
|
*
|
29
|
* 5. Products derived from this software may not be called "pfSense"
|
30
|
* nor may "pfSense" appear in their names without prior written
|
31
|
* permission of the Electric Sheep Fencing, LLC.
|
32
|
*
|
33
|
* 6. Redistributions of any form whatsoever must retain the following
|
34
|
* acknowledgment:
|
35
|
*
|
36
|
* "This product includes software developed by the pfSense Project
|
37
|
* for use in the pfSense software distribution (http://www.pfsense.org/).
|
38
|
*
|
39
|
* THIS SOFTWARE IS PROVIDED BY THE pfSense PROJECT ``AS IS'' AND ANY
|
40
|
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
41
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
42
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE pfSense PROJECT OR
|
43
|
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
44
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
45
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
46
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
47
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
48
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
49
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
50
|
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
51
|
*
|
52
|
* ====================================================================
|
53
|
*
|
54
|
*/
|
55
|
|
56
|
##|+PRIV
|
57
|
##|*IDENT=page-system-license
|
58
|
##|*NAME=System: License
|
59
|
##|*DESCR=Allow access to the 'System: License' page.
|
60
|
##|*MATCH=license.php*
|
61
|
##|-PRIV
|
62
|
|
63
|
require("guiconfig.inc");
|
64
|
include("head.inc");
|
65
|
?>
|
66
|
<div class="panel panel-default">
|
67
|
<div class="panel-heading"><h2 class="panel-title"><?=gettext("License")?></h2></div>
|
68
|
<div class="panel-body content">
|
69
|
<p><strong><?php printf(gettext("%s is Copyright © %s %s. All rights reserved."), $g['product_name'], $g['product_copyright_years'], $g['product_copyright'])?></strong></p>
|
70
|
<p><?=gettext("m0n0wall is Copyright © 2002-2015 by Manuel Kasper (mk@neon1.net). All rights reserved.")?></p>
|
71
|
<p><?=gettext("Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:")?></p>
|
72
|
<ol type="1">
|
73
|
<li><?=gettext("Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.")?></li>
|
74
|
<li><?=gettext("Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.")?></li>
|
75
|
<li><?=gettext("All advertising materials mentioning features or use of this software must display the following acknowledgment:")?>
|
76
|
<p></p><p><?php printf(gettext("\"This product includes software developed by the %s Project for use in the %s® software distribution."), $g['product_name'], $g['product_name'])?> (<a href="http://<?=$g['product_website']?>/" target="_blank">http://<?=$g['product_website']?>/</a>)."</p>
|
77
|
</li>
|
78
|
<li><?php printf(gettext("The names \"%s\" and \"%s Project\" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact"), $g['product_name'], $g['product_name'])?> <a href="mailto:<?=$g['product_email']?>"><?=$g['product_email']?></a>.</li>
|
79
|
<li><?php printf(gettext("Products derived from this software may not be called \"%s\" nor may \"%s\" appear in their names without prior written permission of the %s."), $g['product_name'], $g['product_name'], $g['product_copyright'])?></li>
|
80
|
<li><?=gettext("Redistributions of any form whatsoever must retain the following acknowledgment:")?>
|
81
|
<p></p><p><?php printf(gettext("\"This product includes software developed by the %s Project for use in the %s software distribution"), $g['product_name'], $g['product_name'])?> (<a href="http://<?=$g['product_website']?>/" target="_blank">http://<?=$g['product_website']?>/</a>)."</p>
|
82
|
</li>
|
83
|
</ol>
|
84
|
<p class="text-uppercase"><?php printf(gettext("THIS SOFTWARE IS PROVIDED BY THE %s PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES "
|
85
|
. "OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE %s PROJECT OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, "
|
86
|
. "INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, "
|
87
|
. "DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING "
|
88
|
. "NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."), $g['product_name'], $g['product_name'])?></p>
|
89
|
</div>
|
90
|
</div>
|
91
|
<div class="panel panel-default">
|
92
|
<div class="panel-heading"><h2 class="panel-title"><?=gettext("Third Party Credits")?></h2></div>
|
93
|
<div class="panel-body content">
|
94
|
<p>
|
95
|
<?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 />
|
96
|
</p>
|
97
|
<ul class="list-group">
|
98
|
<li class="list-group-item">
|
99
|
<strong>FreeBSD</strong> (<a href="http://www.freebsd.org" target="_blank">http://www.freebsd.org</a>)<br />
|
100
|
<?=gettext("Copyright")?> ©<?=gettext("1992-2016 The FreeBSD Project. All rights reserved.")?>
|
101
|
</li>
|
102
|
<li class="list-group-item">
|
103
|
<?=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 />
|
104
|
<?=gettext("Copyright"); ?> © <?=gettext("1999-2016 The PHP Group. All rights reserved.")?>
|
105
|
</li>
|
106
|
<li class="list-group-item">
|
107
|
<strong>nginx</strong> (<a href="http://www.nginx.org" target="_blank">http://www.nginx.org)</a><br />
|
108
|
<?=gettext("Copyright"); ?> ©<?=gettext("2011-2016 Nginx, Inc.")?>
|
109
|
<?=gettext("All rights reserved.")?>
|
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>PF</strong> (<a href="http://www.openbsd.org/faq/pf" target="_blank">http://www.openbsd.org</a>)
|
118
|
</li>
|
119
|
<li class="list-group-item">
|
120
|
<strong>MPD</strong> - Multi-link PPP daemon for FreeBSD (<a href="http://mpd.sourceforge.net/" target="_blank">http://mpd.sourceforge.net/</a>)<br />
|
121
|
<?=gettext("Copyright"); ?> © 2003-2004, Archie L. Cobbs, Michael Bretterklieber, Alexander Motin<br />
|
122
|
<?=gettext("All rights reserved.")?>
|
123
|
</li>
|
124
|
<li class="list-group-item">
|
125
|
<strong>Circular log support for FreeBSD syslogd</strong> (<a href="http://software.wheelhouse.org/syslogd/" target="_blank">http://software.wheelhouse.org/syslogd/</a>)<br />
|
126
|
<?=gettext("Copyright"); ?> © 2001 Jeff Wheelhouse (jdw@wwwi.com)
|
127
|
</li>
|
128
|
<li class="list-group-item">
|
129
|
<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 />
|
130
|
<?=gettext("Copyright"); ?> © 2000-2012 Simon Kelley.
|
131
|
</li>
|
132
|
<li class="list-group-item">
|
133
|
<strong>strongSwan</strong> (<a href="https://www.strongswan.org/" target="_blank">https://www.strongswan.org</a>)<br />
|
134
|
<?=gettext("Copyright"); ?> © <?=gettext("2005-2016 University of Applied Sciences Rapperswil")?>
|
135
|
</li>
|
136
|
<li class="list-group-item">
|
137
|
<strong>choparp</strong> (<a href="http://choparp.sourceforge.net/" target="_blank">http://choparp.sourceforge.net</a>)<br />
|
138
|
<?=gettext("Copyright"); ?> © 1997 Takamichi Tateoka (tree@mma.club.uec.ac.jp)<br />
|
139
|
<?=gettext("Copyright"); ?> © 2002 Thomas Quinot (thomas@cuivre.fr.eu.org)
|
140
|
</li>
|
141
|
<li class="list-group-item">
|
142
|
<strong>php-radius</strong> (<a href="http://www.mavetju.org/programming/php.php" target="_blank">http://www.mavetju.org/programming/php.php</a>)<br />
|
143
|
<?=gettext("Copyright 2000, 2001, 2002 by Edwin Groothuis. All rights reserved.")?><br />
|
144
|
<?=gettext("This product includes software developed by Edwin Groothuis.")?>
|
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"); ?> © 2000,2001,2002,2003,2004 Thomas Krennwallner <krennwallner@aon.at>
|
149
|
</li>
|
150
|
<li class="list-group-item">
|
151
|
<strong>OpenVPN</strong> (<a href="http://openvpn.net/" target="_blank">http://openvpn.net/</a>)<br />
|
152
|
<?=gettext("Copyright (C) 2002-2016 OpenVPN Solutions LLC ")?>
|
153
|
</li>
|
154
|
</ul>
|
155
|
</div>
|
156
|
</div>
|
157
|
|
158
|
<?php include("foot.inc");
|