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
ee567e36
Commit
ee567e36
authored
Mar 11, 2016
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
whitespace, unused classes in diag_logs_filter_dynamic.php
parent
41232ca5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
129 additions
and
132 deletions
+129
-132
diag_logs_filter_dynamic.php
src/www/diag_logs_filter_dynamic.php
+129
-132
No files found.
src/www/diag_logs_filter_dynamic.php
View file @
ee567e36
...
...
@@ -54,13 +54,13 @@ include("head.inc");
<?php
include
(
"fbegin.inc"
);
?>
<script
type=
"text/javascript"
>
//
<!
[
CDATA
[
lastsawtime
=
'
<?php
echo
time
();
?>
;
'
;
lastsawtime
=
'
<?=
time
();
?>
;
'
;
var
lines
=
Array
();
var
timer
;
var
updateDelay
=
25500
;
var
isBusy
=
false
;
var
isPaused
=
false
;
var
nentries
=
<?php
echo
$nentries
;
?>
;
var
nentries
=
<?=
$nentries
;
?>
;
<?php
if
(
isset
(
$config
[
'syslog'
][
'reverse'
]))
echo
"var isReverse = true;
\n
"
;
...
...
@@ -70,38 +70,32 @@ include("head.inc");
/* Called by the AJAX updater */
function
format_log_line
(
row
)
{
var
i
=
0
;
var
line
=
'
<td class="listMRlr nowrap" align="center"
>
'
+
row
[
i
++
]
+
'
<
\
/td>
'
;
var
line
=
'
<td
>
'
+
row
[
i
++
]
+
'
<
\
/td>
'
;
while
(
i
<
6
)
{
line
+=
'
<td class="listMRr nowrap"
>
'
+
row
[
i
++
]
+
'
<
\
/td>
'
;
line
+=
'
<td
>
'
+
row
[
i
++
]
+
'
<
\
/td>
'
;
}
return
line
;
}
//]]>
</script>
<script
src=
"/javascript/filter_log.js"
type=
"text/javascript"
></script>
<section
class=
"page-content-main"
>
<div
class=
"container-fluid"
>
<div
class=
"row"
>
<?php
print_service_banner
(
'firewall'
);
?>
<?php
if
(
isset
(
$input_errors
)
&&
count
(
$input_errors
)
>
0
)
print_input_errors
(
$input_errors
);
?>
<section
class=
"col-xs-12"
>
<div
class=
"tab-content content-box col-xs-12"
>
<div
class=
"table-responsive"
>
<table
class=
"table table-striped table-sort"
>
<thead>
<tr>
<td
colspan=
"6"
class=
"listtopic
"
>
<td
colspan=
"6
"
>
<strong>
<?php
printf
(
gettext
(
"Showing last %s records."
),
$nentries
);
?>
</strong>
</td>
</tr>
<tr>
<td
colspan=
"5"
class=
"listtopic
"
>
<td
colspan=
"5
"
>
<input
type=
"checkbox"
onclick=
"javascript:toggle_pause();"
/>
<?=
gettext
(
"Pause"
);
?>
</td>
<td>
...
...
@@ -114,23 +108,25 @@ include("head.inc");
</td>
</tr>
<tr>
<td
class=
"listhdrr"
width=
"60"
>
<?=
gettext
(
"Act"
);
?>
</td>
<td
class=
"listhdrr"
>
<?=
gettext
(
"Time"
);
?>
</td>
<td
class=
"listhdrr"
>
<?=
gettext
(
"If"
);
?>
</td>
<td
class=
"listhdrr"
>
<?=
gettext
(
"Source"
);
?>
</td>
<td
class=
"listhdrr"
>
<?=
gettext
(
"Destination"
);
?>
</td>
<td
class=
"listhdrr"
>
<?=
gettext
(
"Proto"
);
?>
</td>
<td
>
<?=
gettext
(
"Act"
);
?>
</td>
<td
>
<?=
gettext
(
"Time"
);
?>
</td>
<td
>
<?=
gettext
(
"If"
);
?>
</td>
<td
>
<?=
gettext
(
"Source"
);
?>
</td>
<td
>
<?=
gettext
(
"Destination"
);
?>
</td>
<td
>
<?=
gettext
(
"Proto"
);
?>
</td>
</tr>
</thead>
<tbody
id=
"filter-log-entries"
>
<?php
<?php
$rowIndex
=
0
;
foreach
(
$filterlog
as
$filterent
)
:
$evenRowClass
=
$rowIndex
%
2
?
" listMReven"
:
" listMRodd"
;
$rowIndex
++
;
?>
<tr
class=
"
<?=
$evenRowClass
?>
"
>
<td
class=
"listMRlr nowrap"
align=
"center"
>
<a
href=
"#"
onclick=
"javascript:getURL('diag_logs_filter.php?getrulenum=
<?php
echo
"
{
$filterent
[
'rulenum'
]
}
,
{
$filterent
[
'act'
]
}
"
;
?>
', outputrule);"
title=
"
<?php
echo
$filterent
[
'act'
];
?>
"
><span
class=
"glyphicon glyphicon-
<?php
switch
(
$filterent
[
'act'
])
{
<td>
<a
href=
"#"
onclick=
"javascript:getURL('diag_logs_filter.php?getrulenum=
<?=
"
{
$filterent
[
'rulenum'
]
}
,
{
$filterent
[
'act'
]
}
"
;
?>
', outputrule);"
title=
"
<?=
$filterent
[
'act'
];
?>
"
>
<span
class=
"glyphicon glyphicon-
<?php
switch
(
$filterent
[
'act'
])
{
case
'pass'
:
echo
"play"
;
/* icon triangle */
break
;
...
...
@@ -142,25 +138,26 @@ include("head.inc");
default
:
echo
'remove'
;
/* a x*/
break
;
}
?>
"
>
</span>
}
?>
"
>
</span>
</a>
</td>
<td
class=
"listMRr nowrap"
>
<?php
echo
htmlspecialchars
(
$filterent
[
'time'
]);
?>
</td>
<td
class=
"listMRr nowrap"
>
<?php
echo
htmlspecialchars
(
$filterent
[
'interface'
]);
?>
</td>
<td
class=
"listMRr nowrap"
>
<?php
echo
htmlspecialchars
(
$filterent
[
'src'
]);
?>
</td>
<td
class=
"listMRr nowrap"
>
<?php
echo
htmlspecialchars
(
$filterent
[
'dst'
]);
?>
</td>
<?php
if
(
$filterent
[
'proto'
]
==
"TCP"
)
<td>
<?=
htmlspecialchars
(
$filterent
[
'time'
]);
?>
</td>
<td>
<?=
htmlspecialchars
(
$filterent
[
'interface'
]);
?>
</td>
<td>
<?=
htmlspecialchars
(
$filterent
[
'src'
]);
?>
</td>
<td>
<?=
htmlspecialchars
(
$filterent
[
'dst'
]);
?>
</td>
<?php
if
(
$filterent
[
'proto'
]
==
"TCP"
)
{
$filterent
[
'proto'
]
.=
":
{
$filterent
[
'tcpflags'
]
}
"
;
?>
<td
class=
"listMRr nowrap"
>
<?php
echo
htmlspecialchars
(
$filterent
[
'proto'
]);
?>
</td>
}
?>
<td>
<?=
htmlspecialchars
(
$filterent
[
'proto'
]);
?>
</td>
</tr>
<?php
endforeach
;
?>
<tr
style=
"display:none;"
><td></td></tr
>
<?php
endforeach
;
?
>
</tbody>
</table>
</div>
</div>
</section>
</div>
</div>
...
...
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