1
|
<?php
|
2
|
/*
|
3
|
* copynotice.inc
|
4
|
*
|
5
|
* part of pfSense (https://www.pfsense.org)
|
6
|
* Copyright (c) 2004-2013 BSD Perimeter
|
7
|
* Copyright (c) 2013-2016 Electric Sheep Fencing
|
8
|
* Copyright (c) 2014-2022 Rubicon Communications, LLC (Netgate)
|
9
|
* All rights reserved.
|
10
|
*
|
11
|
* originally based on m0n0wall (http://m0n0.ch/wall)
|
12
|
* Copyright (c) 2003-2004 Manuel Kasper <mk@neon1.net>.
|
13
|
* All rights reserved.
|
14
|
*
|
15
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
16
|
* you may not use this file except in compliance with the License.
|
17
|
* You may obtain a copy of the License at
|
18
|
*
|
19
|
* http://www.apache.org/licenses/LICENSE-2.0
|
20
|
*
|
21
|
* Unless required by applicable law or agreed to in writing, software
|
22
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
23
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
24
|
* See the License for the specific language governing permissions and
|
25
|
* limitations under the License.
|
26
|
*/
|
27
|
|
28
|
##|+PRIV
|
29
|
##|*IDENT=page-system-copyright
|
30
|
##|*NAME=System: Copyright notice
|
31
|
##|*DESCR=Copyright and usage notice.
|
32
|
##|*MATCH=copynotice.inc*
|
33
|
##|-PRIV
|
34
|
|
35
|
/*
|
36
|
* This file displays the copyright modal when required. (New version installed or completion of the setup wizard)
|
37
|
* The copyright text may have been downloaded from the Netgate server, but if not the default text defined here
|
38
|
* is used
|
39
|
*/
|
40
|
|
41
|
$copyrightfile = "{$g['cf_conf_path']}/copyright";
|
42
|
|
43
|
?>
|
44
|
<div id="usage" class="modal fade" role="dialog">
|
45
|
<div class="modal-dialog modal-lg">
|
46
|
<div class="modal-content">
|
47
|
<?php
|
48
|
if (file_exists($copyrightfile) && (filesize($copyrightfile) > 0)) {
|
49
|
require_once($copyrightfile);
|
50
|
} else {
|
51
|
?>
|
52
|
<div id="main1" class="modal-body modal-lg modal-dialog-scrollable" style="background-color:#1e3f75; color:white;">
|
53
|
<p style="font-size:16px">
|
54
|
<b>Copyright and Trademark Notices.</b>
|
55
|
</p>
|
56
|
<p>
|
57
|
Copyright<sup>©</sup> 2004-2016. Electric Sheep Fencing, LLC ("ESF"). All Rights Reserved. <br />
|
58
|
Copyright<sup>©</sup> 2014-2022. Rubicon Communications, LLC d/b/a Netgate ("Netgate"). All Rights Reserved.
|
59
|
</p>
|
60
|
<p>
|
61
|
All logos, text, and content of ESF and/or Netgate, including underlying HTML code, designs, and graphics used and/or depicted herein are protected under United States and international copyright and trademark laws and treaties, and may not be used or reproduced without the prior express written permission of ESF and/or Netgate.
|
62
|
</p>
|
63
|
<p>
|
64
|
"pfSense" is a registered trademark of ESF, exclusively licensed to Netgate, and may not be used without the prior express written permission of ESF and/or Netgate. All other trademarks shown herein are owned by the respective companies or persons indicated.
|
65
|
</p>
|
66
|
|
67
|
<p>
|
68
|
pfSense<sup>©</sup> software is open source and distributed under the Apache 2.0 license. However, no commercial distribution of ESF and/or Netgate software is allowed without the prior written consent of ESF and/or Netgate.
|
69
|
</p>
|
70
|
<p>
|
71
|
ESF and/or Netgate make no warranty of any kind, including but not limited to the implied warranties of merchantability and fitness for a particular purpose. ESF and/or Netgate shall not be liable for errors contained herein or for any direct, indirect, special, incidental or consequential damages in connection with the furnishing, performance, or use of any software, information, or material.
|
72
|
</p>
|
73
|
|
74
|
<p style="font-size:16px">
|
75
|
<b>Restricted Rights Legend.</b>
|
76
|
</p>
|
77
|
<p>
|
78
|
No part of ESF and/or Netgate's information or materials may be published, distributed, reproduced, publicly displayed, used to create derivative works, or translated to another language, without the prior written consent of ESF and/or Netgate. The information contained herein is subject to change without notice.
|
79
|
</p>
|
80
|
<p>
|
81
|
Use, duplication or disclosure by the U.S. Government may be subject to restrictions as set forth in subparagraph (c) (1) (ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 for DOD agencies, and subparagraphs (c) (1) and (c) (2) of the Commercial Computer Software Restricted Rights clause at FAR 52.227-19 for other agencies.
|
82
|
</p>
|
83
|
<p style="font-size:16px">
|
84
|
<b>Regulatory/Export Compliance.</b>
|
85
|
</p>
|
86
|
<p>
|
87
|
The export and re-export of software is controlled for export purposes by the U.S. Government. By accepting this software and/or documentation, Licensee agrees to comply with all U.S. and foreign export laws and regulations as they relate to software and related documentation. Licensee will not export or re-export outside the United States software or documentation, whether directly or indirectly, to any Prohibited Party and will not cause, approve or otherwise intentionally facilitate others in so doing. A Prohibited Party includes: a party in a U.S. embargoed country or country the United States has named as a supporter of international terrorism; a party involved in proliferation; a party identified by the U.S. Government as a Denied Party; a party named on the U.S. Government's Enemies List; a party prohibited from participation in export or re-export transactions by a U.S. Government General Order; a party listed by the U.S. Government's Office of Foreign Assets Control as ineligible to participate in transactions subject to U.S. jurisdiction; or any party that Licensee knows or has reason to know has violated or plans to violate U.S. or foreign export laws or regulations. Licensee shall ensure that each of its software users complies with U.S. and foreign export laws and regulations as they relate to software and related documentation.
|
88
|
<p>
|
89
|
</div>
|
90
|
|
91
|
<div id="main2" hidden class="modal-body modal-lg" style="background-color:#1e5175; color:white;">
|
92
|
<p align="center" style="font-size:24px">
|
93
|
<b>Thank you!</b>
|
94
|
</p>
|
95
|
<p>
|
96
|
Many people expend a lot of effort improving and expanding pfSense software. It would be very helpful if you would please take a moment to complete this brief and anonymous survey to help guide those efforts.
|
97
|
</p>
|
98
|
<p align="center">
|
99
|
<a href="https://redirects.netgate.com/survey_1" target="_blank" style="color: #bdf4fc; background: #1e5175;text-decoration: underline;">
|
100
|
User survey
|
101
|
</a>
|
102
|
</p>
|
103
|
</div>
|
104
|
|
105
|
<div id="f1" class="modal-footer modal-lg" style="background-color:#1e3f75; color:white;">
|
106
|
<button type="button" class="btn btn-xs btn-success" aria-label="Close" onClick="$('#main1').attr('hidden', true); $('#main2').attr('hidden', false);$('#f1').attr('hidden', true); $('#f2').attr('hidden', false);">
|
107
|
<span aria-hidden="true">
|
108
|
Accept
|
109
|
</span>
|
110
|
</button>
|
111
|
</div>
|
112
|
|
113
|
<div id="f2" hidden class="modal-footer modal-lg" style="background-color:#1e5175; color:white;">
|
114
|
<button type="button" class="btn btn-xs btn-success" aria-label="Close" onClick="$('.modal').modal('hide');">
|
115
|
<span aria-hidden="true">
|
116
|
Close
|
117
|
</span>
|
118
|
</button>
|
119
|
</div>
|
120
|
|
121
|
<?php
|
122
|
}
|
123
|
?>
|
124
|
|
125
|
</div>
|
126
|
</div>
|
127
|
</div>
|
128
|
|
129
|
<?php
|
130
|
|
131
|
if (!file_exists("/tmp/nofile")) :
|
132
|
?>
|
133
|
|
134
|
<script type="text/javascript">
|
135
|
//<![CDATA[
|
136
|
events.push(function() {
|
137
|
$('#usage').modal({backdrop: 'static', keyboard: false});
|
138
|
$('#usage').modal('show');
|
139
|
});
|
140
|
//]]>
|
141
|
</script>
|
142
|
|
143
|
<?php
|
144
|
endif;
|