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
|
pfSense_MODULE: routing
|
57
|
*/
|
58
|
|
59
|
##|+PRIV
|
60
|
##|*IDENT=page-system-license
|
61
|
##|*NAME=System: License
|
62
|
##|*DESCR=Allow access to the 'System: License' page.
|
63
|
##|*MATCH=license.php*
|
64
|
##|-PRIV
|
65
|
|
66
|
require("guiconfig.inc");
|
67
|
include("head.inc");
|
68
|
?>
|
69
|
<div class="panel panel-default">
|
70
|
<div class="panel-heading"><h4><?=gettext("License")?></h4></div>
|
71
|
<div class="panel-body">
|
72
|
<p>
|
73
|
<strong><?=$g['product_name']?><?=gettext(" is Copyright")?> © <?=$g['product_copyright_years']?><?=gettext(" by ")?><?=$g['product_copyright']?><br />
|
74
|
<?=gettext("All rights reserved")?>.</strong>
|
75
|
</p>
|
76
|
<p>
|
77
|
<strong><?=gettext("m0n0wall is Copyright ")?>© <?=gettext("2002-2015 by Manuel Kasper")?>
|
78
|
(<a href="mailto:mk@neon1.net">mk@neon1.net</a>).<br />
|
79
|
<?=gettext("All rights reserved")?>.</strong>
|
80
|
</p>
|
81
|
<p>
|
82
|
<?=gettext("Redistribution and use in source and binary forms, with or without")?><br />
|
83
|
<?=gettext("modification, are permitted provided that the following conditions ".
|
84
|
"are met")?>:<br />
|
85
|
<br />
|
86
|
<?=gettext("1. Redistributions of source code must retain the above copyright ".
|
87
|
"notice,")?><br />
|
88
|
<?=gettext("this list of conditions and the following disclaimer")?>.<br />
|
89
|
<br />
|
90
|
<?=gettext("2. Redistributions in binary form must reproduce the above copyright")?><br />
|
91
|
<?=gettext("notice, this list of conditions and the following disclaimer in ".
|
92
|
"the")?><br />
|
93
|
<?=gettext("documentation and/or other materials provided with the distribution.")?><br />
|
94
|
<br />
|
95
|
<strong><?=gettext("THIS SOFTWARE IS PROVIDED ")?>"<?=gettext("AS IS'' AND ANY EXPRESS ".
|
96
|
"OR IMPLIED WARRANTIES,")?><br />
|
97
|
<?=gettext("INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY")?><br />
|
98
|
<?=gettext("AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT ".
|
99
|
"SHALL THE")?><br />
|
100
|
<?=gettext("AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, ".
|
101
|
"EXEMPLARY,")?><br />
|
102
|
<?=gettext("OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT ".
|
103
|
"OF")?><br />
|
104
|
<?=gettext("SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR ".
|
105
|
"BUSINESS")?><br />
|
106
|
<?=gettext("INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER ".
|
107
|
"IN")?><br />
|
108
|
<?=gettext("CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)")?><br />
|
109
|
<?=gettext("ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED ".
|
110
|
"OF THE")?><br />
|
111
|
<?=gettext("POSSIBILITY OF SUCH DAMAGE")?></strong>.
|
112
|
</p>
|
113
|
<hr />
|
114
|
<p>
|
115
|
<?= "{$g['product_name']} " . gettext("is based upon/includes various free software packages, ".
|
116
|
"listed below.")?><br />
|
117
|
<?php printf(gettext("The authors of %s would like to thank the authors of these " .
|
118
|
"software packages for their efforts"),$g['product_name'])?>.
|
119
|
</p>
|
120
|
<p>
|
121
|
FreeBSD (<a href="http://www.freebsd.org" target="_blank">http://www.freebsd.org</a>)<br />
|
122
|
<?=gettext("Copyright")?> ©<?=gettext("1992-2015 The FreeBSD Project. All rights reserved")?>.<br />
|
123
|
<br />
|
124
|
<?=gettext("This product includes PHP, freely available from")?><a href="http://www.php.net/" target="_blank">http://www.php.net</a>.<br />
|
125
|
<?=gettext("Copyright"); ?> © <?=gettext("1999-2015 The PHP Group. All rights reserved.")?>.<br />
|
126
|
<br />
|
127
|
<?=gettext("LightTPD"); ?> (<a href="http://www.lighttpd.net" target="_blank">http://www.lighttpd.net)</a><br />
|
128
|
<?=gettext("Copyright"); ?> ©<?=gettext("2004, Jan Knescke, incremental")?><jan@kneschke.de>
|
129
|
<?=gettext("All rights reserved.")?><br />
|
130
|
<br />
|
131
|
<?=gettext("ISC DHCP server ")?>(<a href="http://www.isc.org/products/DHCP/" target="_blank">http://www.isc.org/products/DHCP</a>)<br />
|
132
|
<?=gettext("Copyright"); ?> © <?=gettext("2004-2012 Internet Software Consortium, Inc.")?><br />
|
133
|
<?=gettext("Copyright"); ?> © <?=gettext("1995-2003 Internet Software Consortium")?><br />
|
134
|
<br />
|
135
|
<?=gettext("PF"); ?> (<a href="http://www.openbsd.org/faq/pf" target="_blank">http://www.openbsd.org</a>)<br />
|
136
|
<br />
|
137
|
<?=gettext("MPD - Multi-link PPP daemon for FreeBSD")?> (<a href="http://www.dellroad.org/mpd" target="_blank">http://www.dellroad.org/mpd</a>)<br />
|
138
|
<?=gettext("Copyright"); ?> © 2003-2004, Archie L. Cobbs, Michael Bretterklieber, Alexander Motin<br />
|
139
|
<?=gettext("All rights reserved.")?><br />
|
140
|
<br />
|
141
|
<?=gettext("Circular log support for FreeBSD syslogd ")?>(<a href="http://software.wheelhouse.org/syslogd/" target="_blank">http://software.wheelhouse.org/syslogd/</a>)<br />
|
142
|
<?=gettext("Copyright"); ?> © 2001 Jeff Wheelhouse (jdw@wwwi.com)<br />
|
143
|
<br />
|
144
|
<?=gettext("Dnsmasq - a DNS forwarder for NAT firewalls")?> (<a href="http://www.thekelleys.org.uk" target="_blank">http://www.thekelleys.org.uk</a>)<br />
|
145
|
<?=gettext("Copyright"); ?> © 2000-2012 Simon Kelley.<br />
|
146
|
<br />
|
147
|
<?=gettext("IPsec-Tools"); ?> (<a href="http://ipsec-tools.sourceforge.net/" target="_blank">http://ipsec-tools.sourceforge.net/</a>)<br />
|
148
|
<?=gettext("Copyright"); ?> © <?=gettext("1995-2002 WIDE Project. All rights reserved.")?><br />
|
149
|
<br />
|
150
|
<?=gettext("msntp"); ?> (<a href="http://www.hpcf.cam.ac.uk/export" target="_blank">http://www.hpcf.cam.ac.uk/export</a>)<br />
|
151
|
<?=gettext("Copyright"); ?> ©<?=gettext(" 1996, 1997, 2000 N.M. Maclaren, University of Cambridge. ".
|
152
|
"All rights reserved.")?><br />
|
153
|
<br />
|
154
|
<?=gettext("UCD-SNMP"); ?> (<a href="http://www.ece.ucdavis.edu/ucd-snmp" target="_blank">http://www.ece.ucdavis.edu/ucd-snmp</a>)<br />
|
155
|
<?=gettext("Copyright"); ?> © <?=gettext("1989, 1991, 1992 by Carnegie Mellon University.")?><br />
|
156
|
<?=gettext("Copyright"); ?> © <?=gettext("1996, 1998-2000 The Regents of the University of ".
|
157
|
"California. All rights reserved")?>.<br />
|
158
|
<?=gettext("Copyright"); ?> © <?=gettext("2001-2002, Network Associates Technology, Inc. ".
|
159
|
"All rights reserved.")?><br />
|
160
|
<?=gettext("Portions of this code are copyright")?> © <?=gettext("2001-2002, Cambridge ".
|
161
|
"Broadband Ltd. All rights reserved.")?><br />
|
162
|
<br />
|
163
|
<?=gettext("choparp"); ?> (<a href="http://choparp.sourceforge.net/" target="_blank">http://choparp.sourceforge.net</a>)<br />
|
164
|
<?=gettext("Copyright"); ?> © 1997 Takamichi Tateoka (tree@mma.club.uec.ac.jp)<br />
|
165
|
<?=gettext("Copyright"); ?> © 2002 Thomas Quinot (thomas@cuivre.fr.eu.org)<br />
|
166
|
<br />
|
167
|
<?=gettext("php-radius"); ?> (<a href="http://www.mavetju.org/programming/php.php" target="_blank">http://www.mavetju.org/programming/php.php</a>)<br />
|
168
|
<?=gettext("Copyright 2000, 2001, 2002 by Edwin Groothuis. All rights reserved.")?><br />
|
169
|
<?=gettext("This product includes software developed by Edwin Groothuis.")?><br />
|
170
|
<br />
|
171
|
<?=gettext("wol"); ?> (<a href="http://ahh.sourceforge.net/wol" target="_blank">http://ahh.sourceforge.net/wol</a>)<br />
|
172
|
<?=gettext("Copyright"); ?> © 2000,2001,2002,2003,2004 Thomas Krennwallner <krennwallner@aon.at>
|
173
|
<br />
|
174
|
<?=gettext("OpenVPN"); ?> (<a href="http://openvpn.net/" target="_blank">http://openvpn.net/</a>)
|
175
|
<?=gettext("Copyright (C) 2002-2005 OpenVPN Solutions LLC ")?>
|
176
|
</p>
|
177
|
</div>
|
178
|
</div>
|
179
|
|
180
|
<?php include("foot.inc");
|