1 |
b46bfcf5
|
Bill Marquette
|
<?php
|
2 |
|
|
/* $Id$ */
|
3 |
6b07c15a
|
Matthew Grooms
|
/*
|
4 |
|
|
license.php
|
5 |
|
|
|
6 |
|
|
Redistribution and use in source and binary forms, with or without
|
7 |
|
|
modification, are permitted provided that the following conditions are met:
|
8 |
|
|
|
9 |
|
|
1. Redistributions of source code must retain the above copyright notice,
|
10 |
|
|
this list of conditions and the following disclaimer.
|
11 |
|
|
|
12 |
|
|
2. Redistributions in binary form must reproduce the above copyright
|
13 |
|
|
notice, this list of conditions and the following disclaimer in the
|
14 |
|
|
documentation and/or other materials provided with the distribution.
|
15 |
|
|
|
16 |
|
|
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
17 |
|
|
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
18 |
|
|
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
19 |
|
|
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
20 |
|
|
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
21 |
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
22 |
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
23 |
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
24 |
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
25 |
|
|
POSSIBILITY OF SUCH DAMAGE.
|
26 |
|
|
*/
|
27 |
7ac5a4cb
|
Scott Ullrich
|
/*
|
28 |
|
|
pfSense_MODULE: routing
|
29 |
|
|
*/
|
30 |
544195a5
|
Erik Kristensen
|
|
31 |
6b07c15a
|
Matthew Grooms
|
##|+PRIV
|
32 |
|
|
##|*IDENT=page-system-license
|
33 |
|
|
##|*NAME=System: License page
|
34 |
|
|
##|*DESCR=Allow access to the 'System: License' page.
|
35 |
|
|
##|*MATCH=license.php*
|
36 |
|
|
##|-PRIV
|
37 |
|
|
|
38 |
|
|
require("guiconfig.inc");
|
39 |
544195a5
|
Erik Kristensen
|
include("head.inc");
|
40 |
|
|
|
41 |
6b07c15a
|
Matthew Grooms
|
?>
|
42 |
5b237745
|
Scott Ullrich
|
|
43 |
|
|
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
|
44 |
|
|
<?php include("fbegin.inc"); ?>
|
45 |
0f3c5f2d
|
Rafael Lucas
|
<p class="pgtitle"><?=gettext("License");?></p>
|
46 |
6484d9e0
|
Scott Ullrich
|
|
47 |
eb094945
|
Carlos Eduardo Ramos
|
<p><strong><?=$g['product_name'];?> <?=gettext("is Copyright");?> © <?=$g['product_copyright_years'];?> <?=gettext("by");?> <?=$g['product_copyright'];?><br>
|
48 |
|
|
<?=gettext("All rights reserved");?>.</strong></p>
|
49 |
6484d9e0
|
Scott Ullrich
|
|
50 |
c80f2b44
|
Chris Buechler
|
<p><strong><?=gettext("m0n0wall is Copyright ");?>© <?=gettext("2002-2014 by Manuel Kasper");?>
|
51 |
5b237745
|
Scott Ullrich
|
(<a href="mailto:mk@neon1.net">mk@neon1.net</a>).<br>
|
52 |
eb094945
|
Carlos Eduardo Ramos
|
<?=gettext("All rights reserved");?>.</strong></p>
|
53 |
0f3c5f2d
|
Rafael Lucas
|
<p> <?=gettext("Redistribution and use in source and binary forms, with or without");?><br>
|
54 |
|
|
<?=gettext("modification, are permitted provided that the following conditions ".
|
55 |
|
|
"are met");?>:<br>
|
56 |
|
|
<br>
|
57 |
|
|
<?=gettext("1. Redistributions of source code must retain the above copyright ".
|
58 |
|
|
"notice,");?><br>
|
59 |
eb094945
|
Carlos Eduardo Ramos
|
<?=gettext("this list of conditions and the following disclaimer");?>.<br>
|
60 |
0f3c5f2d
|
Rafael Lucas
|
<br>
|
61 |
|
|
<?=gettext("2. Redistributions in binary form must reproduce the above copyright");?><br>
|
62 |
|
|
<?=gettext("notice, this list of conditions and the following disclaimer in ".
|
63 |
|
|
"the");?><br>
|
64 |
|
|
<?=gettext("documentation and/or other materials provided with the distribution.");?><br>
|
65 |
|
|
<br>
|
66 |
|
|
<strong><?=gettext("THIS SOFTWARE IS PROVIDED ");?>"<?=gettext("AS IS'' AND ANY EXPRESS ".
|
67 |
|
|
"OR IMPLIED WARRANTIES,");?><br>
|
68 |
|
|
<?=gettext("INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY");?><br>
|
69 |
|
|
<?=gettext("AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT ".
|
70 |
|
|
"SHALL THE");?><br>
|
71 |
|
|
<?=gettext("AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, ".
|
72 |
|
|
"EXEMPLARY,");?><br>
|
73 |
|
|
<?=gettext("OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT ".
|
74 |
|
|
"OF");?><br>
|
75 |
|
|
<?=gettext("SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR ".
|
76 |
|
|
"BUSINESS");?><br>
|
77 |
|
|
<?=gettext("INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER ".
|
78 |
|
|
"IN");?><br>
|
79 |
|
|
<?=gettext("CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)");?><br>
|
80 |
|
|
<?=gettext("ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED ".
|
81 |
|
|
"OF THE");?><br>
|
82 |
|
|
<?=gettext("POSSIBILITY OF SUCH DAMAGE");?></strong>.</p>
|
83 |
5b237745
|
Scott Ullrich
|
<hr size="1">
|
84 |
30ee6258
|
Vinicius Coque
|
<p><?= "{$g['product_name']} " . gettext("is based upon/includes various free software packages, ".
|
85 |
0f3c5f2d
|
Rafael Lucas
|
"listed below.");?><br>
|
86 |
c80f2b44
|
Chris Buechler
|
<?php printf(gettext("The authors of %s would like to thank the authors of these " .
|
87 |
30ee6258
|
Vinicius Coque
|
"software packages for their efforts"),$g['product_name']);?>.</p>
|
88 |
5b237745
|
Scott Ullrich
|
<p>FreeBSD (<a href="http://www.freebsd.org" target="_blank">http://www.freebsd.org</a>)<br>
|
89 |
c80f2b44
|
Chris Buechler
|
<?=gettext("Copyright");?> ©<?=gettext("1992-2014 The FreeBSD Project. All rights reserved");?>.<br>
|
90 |
5b237745
|
Scott Ullrich
|
<br>
|
91 |
eb094945
|
Carlos Eduardo Ramos
|
<?=gettext("This product includes PHP, freely available from");?> <a href="http://www.php.net/" target="_blank">http://www.php.net</a>.<br>
|
92 |
c80f2b44
|
Chris Buechler
|
<?=gettext("Copyright"); ?> © <?=gettext("1999-2014 The PHP Group. All rights reserved.");?>.<br>
|
93 |
5b237745
|
Scott Ullrich
|
<br>
|
94 |
eb094945
|
Carlos Eduardo Ramos
|
<?=gettext("LightTPD"); ?> (<a href="http://www.lighttpd.net" target="_blank">http://www.lighttpd.net)</a><br>
|
95 |
4c6ede42
|
Mathieu Simon
|
<?=gettext("Copyright"); ?> ©<?=gettext("2004, Jan Knescke, incremental");?><jan@kneschke.de>
|
96 |
0f3c5f2d
|
Rafael Lucas
|
<?=gettext("All rights reserved.");?><br>
|
97 |
5b237745
|
Scott Ullrich
|
<br>
|
98 |
0f3c5f2d
|
Rafael Lucas
|
<?=gettext("ISC DHCP server ");?>(<a href="http://www.isc.org/products/DHCP/" target="_blank">http://www.isc.org/products/DHCP</a>)<br>
|
99 |
38d41bb0
|
jim-p
|
<?=gettext("Copyright"); ?> © <?=gettext("2004-2012 Internet Software Consortium, Inc.");?><br>
|
100 |
4c6ede42
|
Mathieu Simon
|
<?=gettext("Copyright"); ?> © <?=gettext("1995-2003 Internet Software Consortium");?><br>
|
101 |
5b237745
|
Scott Ullrich
|
<br>
|
102 |
eb094945
|
Carlos Eduardo Ramos
|
<?=gettext("PF"); ?> (<a href="http://www.openbsd.org/faq/pf" target="_blank">http://www.openbsd.org</a>)<br>
|
103 |
949fe2ff
|
Scott Ullrich
|
<br>
|
104 |
eb094945
|
Carlos Eduardo Ramos
|
<?=gettext("MPD - Multi-link PPP daemon for FreeBSD");?> (<a href="http://www.dellroad.org/mpd" target="_blank">http://www.dellroad.org/mpd</a>)<br>
|
105 |
|
|
<?=gettext("Copyright"); ?> © 2003-2004, Archie L. Cobbs, Michael Bretterklieber, Alexander Motin<br>
|
106 |
0f3c5f2d
|
Rafael Lucas
|
<?=gettext("All rights reserved.");?><br>
|
107 |
5b237745
|
Scott Ullrich
|
<br>
|
108 |
c80f2b44
|
Chris Buechler
|
<?=gettext("Circular log support for FreeBSD syslogd ");?>(<a href="http://software.wheelhouse.org/syslogd/" target="_blank">http://software.wheelhouse.org/syslogd/</a>)<br>
|
109 |
eb094945
|
Carlos Eduardo Ramos
|
<?=gettext("Copyright"); ?> © 2001 Jeff Wheelhouse (jdw@wwwi.com)<br>
|
110 |
5b237745
|
Scott Ullrich
|
<br>
|
111 |
eb094945
|
Carlos Eduardo Ramos
|
<?=gettext("Dnsmasq - a DNS forwarder for NAT firewalls");?> (<a href="http://www.thekelleys.org.uk" target="_blank">http://www.thekelleys.org.uk</a>)<br>
|
112 |
4c6ede42
|
Mathieu Simon
|
<?=gettext("Copyright"); ?> © 2000-2012 Simon Kelley.<br>
|
113 |
5b237745
|
Scott Ullrich
|
<br>
|
114 |
c80f2b44
|
Chris Buechler
|
<?=gettext("IPsec-Tools"); ?> (<a href="http://ipsec-tools.sourceforge.net/" target="_blank">http://ipsec-tools.sourceforge.net/</a>)<br>
|
115 |
eb094945
|
Carlos Eduardo Ramos
|
<?=gettext("Copyright"); ?> © <?=gettext("1995-2002 WIDE Project. All rights reserved.");?><br>
|
116 |
5b237745
|
Scott Ullrich
|
<br>
|
117 |
eb094945
|
Carlos Eduardo Ramos
|
<?=gettext("msntp"); ?> (<a href="http://www.hpcf.cam.ac.uk/export" target="_blank">http://www.hpcf.cam.ac.uk/export</a>)<br>
|
118 |
|
|
<?=gettext("Copyright"); ?> ©<?=gettext(" 1996, 1997, 2000 N.M. Maclaren, University of Cambridge. ".
|
119 |
0f3c5f2d
|
Rafael Lucas
|
"All rights reserved.");?><br>
|
120 |
5b237745
|
Scott Ullrich
|
<br>
|
121 |
eb094945
|
Carlos Eduardo Ramos
|
<?=gettext("UCD-SNMP"); ?> (<a href="http://www.ece.ucdavis.edu/ucd-snmp" target="_blank">http://www.ece.ucdavis.edu/ucd-snmp</a>)<br>
|
122 |
|
|
<?=gettext("Copyright"); ?> © <?=gettext("1989, 1991, 1992 by Carnegie Mellon University.");?><br>
|
123 |
|
|
<?=gettext("Copyright"); ?> © <?=gettext("1996, 1998-2000 The Regents of the University of ".
|
124 |
|
|
"California. All rights reserved");?>.<br>
|
125 |
|
|
<?=gettext("Copyright"); ?> © <?=gettext("2001-2002, Network Associates Technology, Inc. ".
|
126 |
0f3c5f2d
|
Rafael Lucas
|
"All rights reserved.");?><br>
|
127 |
eb094945
|
Carlos Eduardo Ramos
|
<?=gettext("Portions of this code are copyright");?> © <?=gettext("2001-2002, Cambridge ".
|
128 |
0f3c5f2d
|
Rafael Lucas
|
"Broadband Ltd. All rights reserved.");?><br>
|
129 |
5b237745
|
Scott Ullrich
|
<br>
|
130 |
eb094945
|
Carlos Eduardo Ramos
|
<?=gettext("choparp"); ?> (<a href="http://choparp.sourceforge.net/" target="_blank">http://choparp.sourceforge.net</a>)<br>
|
131 |
|
|
<?=gettext("Copyright"); ?> © 1997 Takamichi Tateoka (tree@mma.club.uec.ac.jp)<br>
|
132 |
|
|
<?=gettext("Copyright"); ?> © 2002 Thomas Quinot (thomas@cuivre.fr.eu.org)<br>
|
133 |
5b237745
|
Scott Ullrich
|
<br>
|
134 |
eb094945
|
Carlos Eduardo Ramos
|
<?=gettext("php-radius"); ?> (<a href="http://www.mavetju.org/programming/php.php" target="_blank">http://www.mavetju.org/programming/php.php</a>)<br>
|
135 |
0f3c5f2d
|
Rafael Lucas
|
<?=gettext("Copyright 2000, 2001, 2002 by Edwin Groothuis. All rights reserved.");?><br>
|
136 |
|
|
<?=gettext("This product includes software developed by Edwin Groothuis.");?><br>
|
137 |
5b237745
|
Scott Ullrich
|
<br>
|
138 |
eb094945
|
Carlos Eduardo Ramos
|
<?=gettext("wol"); ?> (<a href="http://ahh.sourceforge.net/wol" target="_blank">http://ahh.sourceforge.net/wol</a>)<br>
|
139 |
|
|
<?=gettext("Copyright"); ?> © 2000,2001,2002,2003,2004 Thomas Krennwallner <krennwallner@aon.at>
|
140 |
b7515bf9
|
Scott Ullrich
|
<br>
|
141 |
eb094945
|
Carlos Eduardo Ramos
|
<?=gettext("OpenVPN"); ?> (<a href="http://openvpn.net/" target="_blank">http://openvpn.net/</a>)
|
142 |
c80f2b44
|
Chris Buechler
|
<?=gettext("Copyright (C) 2002-2005 OpenVPN Solutions LLC ");?>
|
143 |
5b237745
|
Scott Ullrich
|
<?php include("fend.inc"); ?>
|
144 |
|
|
</body>
|
145 |
|
|
</html>
|