Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
7bc10661
Commit
7bc10661
authored
Apr 12, 2015
by
Franco Fichtner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
src: zap unused headjs.php
parent
0b15d1b6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
159 deletions
+0
-159
priv.defs.inc
src/etc/inc/priv.defs.inc
+0
-6
ACL_Legacy_Page_Map.txt
...ense/mvc/app/models/OPNsense/Core/ACL_Legacy_Page_Map.txt
+0
-1
headjs.php
src/www/headjs.php
+0
-152
No files found.
src/etc/inc/priv.defs.inc
View file @
7bc10661
...
...
@@ -458,12 +458,6 @@ $priv_list['page-diagnostics-haltsystem']['descr'] = gettext("Allow access to th
$priv_list
[
'page-diagnostics-haltsystem'
][
'match'
]
=
array
();
$priv_list
[
'page-diagnostics-haltsystem'
][
'match'
][]
=
"diag_halt.php*"
;
$priv_list
[
'page-requiredforjavascript'
]
=
array
();
$priv_list
[
'page-requiredforjavascript'
][
'name'
]
=
gettext
(
"WebCfg - Required for javascript page"
);
$priv_list
[
'page-requiredforjavascript'
][
'descr'
]
=
gettext
(
"Allow access to the 'Required for javascript' page."
);
$priv_list
[
'page-requiredforjavascript'
][
'match'
]
=
array
();
$priv_list
[
'page-requiredforjavascript'
][
'match'
][]
=
"headjs.php*"
;
$priv_list
[
'page-xmlrpcinterfacestats'
]
=
array
();
$priv_list
[
'page-xmlrpcinterfacestats'
][
'name'
]
=
gettext
(
"WebCfg - XMLRPC Interface Stats page"
);
$priv_list
[
'page-xmlrpcinterfacestats'
][
'descr'
]
=
gettext
(
"Allow access to the 'XMLRPC Interface Stats' page."
);
...
...
src/opnsense/mvc/app/models/OPNsense/Core/ACL_Legacy_Page_Map.txt
View file @
7bc10661
...
...
@@ -74,7 +74,6 @@ page-getstats=getstats.php*
page-diagnostics-interfacetraffic=graph.php*
page-diagnostics-cpuutilization=graph_cpu.php*
page-diagnostics-haltsystem=diag_halt.php*
page-requiredforjavascript=headjs.php*
page-xmlrpcinterfacestats=ifstats.php*
page-system-login/logout=index.php*
page-interfaces=interfaces.php*
...
...
src/www/headjs.php
deleted
100644 → 0
View file @
0b15d1b6
<?php
/*
Copyright (C) 2014-2015 Deciso B.V.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. 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.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
require_once
(
"guiconfig.inc"
);
function
getHeadJS
()
{
global
$g
,
$use_loader_tab_gif
;
$headjs
=
"
var input_errors = '';
jQuery(document).ready(init);
"
;
if
(
session_status
()
==
PHP_SESSION_NONE
)
{
session_start
();
}
$_SESSION
[
'NO_AJAX'
]
==
"True"
?
$noajax
=
"var noAjaxOnSubmit = true;"
:
$noajax
=
"var noAjaxOnSubmit = false;"
;
session_write_close
();
$headjs
.=
"
{
$noajax
}
function init() {
if(jQuery('#submit') && ! noAjaxOnSubmit) {
// debugging helper
//alert('adding observe event for submit button');
jQuery(
\"
#submit
\"
).click(submit_form);
jQuery('#submit').click(function() {return false;});
var to_insert =
\"
<div style='visibility:hidden' id='loading' name='loading'><span class='glyphicon glyphicon-refresh' alt='loader'></span><\/div>
\"
;
jQuery('#submit').before(to_insert);
}
}
function submit_form(e){
// debugging helper
//alert(Form.serialize($('iform')));
if(jQuery('#inputerrors'))
jQuery('#inputerrors').html('<center><b><i>Loading...<\/i><\/b><\/center>');
/* dsh: Introduced because pkg_edit tries to set some hidden fields
* if executing submit's onclick event. The click gets deleted
* by Ajax. Hence using onkeydown instead.
*/
if(jQuery('#submit').prop('keydown')) {
jQuery('#submit').keydown();
jQuery('#submit').css('visibility','hidden');
}
if(jQuery('#cancelbutton'))
jQuery('#cancelbutton').css('visibility','hidden');
jQuery('#loading').css('visibility','visible');
// submit the form using Ajax
}
function formSubmitted(resp) {
var responseText = resp.responseText;
// debugging helper
// alert(responseText);
if(responseText.indexOf('html') > 0) {
/* somehow we have been fed an html page! */
//alert('Somehow we have been fed an html page! Forwarding to /.');
document.location.href = '/';
}
eval(responseText);
}
/* this function will be called if an HTTP error will be triggered */
function formFailure(resp) {
showajaxmessage(resp.responseText);
if(jQuery('#submit'))
jQuery('#submit').css('visibility','visible');
if(jQuery('#cancelbutton'))
jQuery('#cancelbutton').css('visibility','visible');
if(jQuery('#loading'))
jQuery('#loading').css('visibility','hidden');
}
function showajaxmessage(message) {
var message_html;
if (message == '') {
if(jQuery('#submit'))
jQuery('#submit').css('visibility','visible');
if(jQuery('#cancelbutton'))
jQuery('#cancelbutton').css('visibility','visible');
if(jQuery('#loading'))
jQuery('#loading').css('visibility','hidden');
return;
}
message_html = '<table height=
\"
32
\"
width=
\"
100%
\"
summary=
\"
redbox
\"
><tr><td>';
message_html += '<div style=
\"
background-color:#990000
\"
id=
\"
redbox
\"
>';
message_html += '<table width=
\"
100%
\"
summary=
\"
message
\"
><tr><td width=
\"
8%
\"
>';
message_html += '<span class=
\"
glyphicon glyphicon-exclamation-sign
\"
style=
\"
vertical-align:center
\"
alt=
\"
exclamation
\"
></span>';
message_html += '<\/td><td width=
\"
70%
\"
><font color=
\"
white
\"
>';
message_html += '<b>' + message + '<\/b><\/font><\/td>';
if(message.indexOf('apply') > 0) {
message_html += '<td>';
message_html += '<input name=
\"
apply
\"
type=
\"
submit
\"
class=
\"
formbtn
\"
id=
\"
apply
\"
value=
\"
"
.
gettext
(
"Apply changes"
)
.
"
\"
\/>';
message_html += '<\/td>';
}
message_html += '<\/tr><\/table><\/div><\/td><\/table><br \/>';
jQuery('#inputerrors').html(message_html);
if(jQuery('#submit'))
jQuery('#submit').css('visibility','visible');
if(jQuery('#cancelbutton'))
jQuery('#cancelbutton').css('visibility','visible');
if(jQuery('#loading'))
jQuery('#loading').css('visibility','hidden');
if(jQuery('#inputerrors'))
window.scrollTo(0, 0);
}
"
;
return
$headjs
;
}
?>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment