Commit ee567e36 authored by Ad Schellevis's avatar Ad Schellevis

whitespace, unused classes in diag_logs_filter_dynamic.php

parent 41232ca5
...@@ -54,13 +54,13 @@ include("head.inc"); ...@@ -54,13 +54,13 @@ include("head.inc");
<?php include("fbegin.inc"); ?> <?php include("fbegin.inc"); ?>
<script type="text/javascript"> <script type="text/javascript">
//<![CDATA[ //<![CDATA[
lastsawtime = '<?php echo time(); ?>;'; lastsawtime = '<?=time(); ?>;';
var lines = Array(); var lines = Array();
var timer; var timer;
var updateDelay = 25500; var updateDelay = 25500;
var isBusy = false; var isBusy = false;
var isPaused = false; var isPaused = false;
var nentries = <?php echo $nentries; ?>; var nentries = <?=$nentries; ?>;
<?php <?php
if(isset($config['syslog']['reverse'])) if(isset($config['syslog']['reverse']))
echo "var isReverse = true;\n"; echo "var isReverse = true;\n";
...@@ -70,38 +70,32 @@ include("head.inc"); ...@@ -70,38 +70,32 @@ include("head.inc");
/* Called by the AJAX updater */ /* Called by the AJAX updater */
function format_log_line(row) { function format_log_line(row) {
var i = 0; var i = 0;
var line = '<td class="listMRlr nowrap" align="center">' + row[i++] + '<\/td>'; var line = '<td>' + row[i++] + '<\/td>';
while (i < 6) { while (i < 6) {
line += '<td class="listMRr nowrap">' + row[i++] + '<\/td>'; line += '<td>' + row[i++] + '<\/td>';
} }
return line; return line;
} }
//]]> //]]>
</script> </script>
<script src="/javascript/filter_log.js" type="text/javascript"></script> <script src="/javascript/filter_log.js" type="text/javascript"></script>
<section class="page-content-main"> <section class="page-content-main">
<div class="container-fluid"> <div class="container-fluid">
<div class="row"> <div class="row">
<?php print_service_banner('firewall'); ?> <?php print_service_banner('firewall'); ?>
<?php if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors); ?> <?php if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors); ?>
<section class="col-xs-12"> <section class="col-xs-12">
<div class="tab-content content-box col-xs-12"> <div class="tab-content content-box col-xs-12">
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-striped table-sort"> <table class="table table-striped table-sort">
<thead> <thead>
<tr> <tr>
<td colspan="6" class="listtopic"> <td colspan="6">
<strong><?php printf(gettext("Showing last %s records."),$nentries);?></strong> <strong><?php printf(gettext("Showing last %s records."),$nentries);?></strong>
</td> </td>
</tr> </tr>
<tr> <tr>
<td colspan="5" class="listtopic"> <td colspan="5">
<input type="checkbox" onclick="javascript:toggle_pause();" />&nbsp;<?=gettext("Pause");?> <input type="checkbox" onclick="javascript:toggle_pause();" />&nbsp;<?=gettext("Pause");?>
</td> </td>
<td> <td>
...@@ -114,23 +108,25 @@ include("head.inc"); ...@@ -114,23 +108,25 @@ include("head.inc");
</td> </td>
</tr> </tr>
<tr> <tr>
<td class="listhdrr" width="60"><?=gettext("Act");?></td> <td><?=gettext("Act");?></td>
<td class="listhdrr"><?=gettext("Time");?></td> <td><?=gettext("Time");?></td>
<td class="listhdrr"><?=gettext("If");?></td> <td><?=gettext("If");?></td>
<td class="listhdrr"><?=gettext("Source");?></td> <td><?=gettext("Source");?></td>
<td class="listhdrr"><?=gettext("Destination");?></td> <td><?=gettext("Destination");?></td>
<td class="listhdrr"><?=gettext("Proto");?></td> <td><?=gettext("Proto");?></td>
</tr> </tr>
</thead> </thead>
<tbody id="filter-log-entries"> <tbody id="filter-log-entries">
<?php <?php
$rowIndex = 0; $rowIndex = 0;
foreach ($filterlog as $filterent): foreach ($filterlog as $filterent):
$evenRowClass = $rowIndex % 2 ? " listMReven" : " listMRodd"; $evenRowClass = $rowIndex % 2 ? " listMReven" : " listMRodd";
$rowIndex++;?> $rowIndex++;?>
<tr class="<?=$evenRowClass?>"> <tr class="<?=$evenRowClass?>">
<td class="listMRlr nowrap" align="center"> <td>
<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']) { <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': case 'pass':
echo "play"; /* icon triangle */ echo "play"; /* icon triangle */
break; break;
...@@ -142,25 +138,26 @@ include("head.inc"); ...@@ -142,25 +138,26 @@ include("head.inc");
default: default:
echo 'remove'; /* a x*/ echo 'remove'; /* a x*/
break; break;
} }?>">
?>"></span> </span>
</a> </a>
</td> </td>
<td class="listMRr nowrap"><?php echo htmlspecialchars($filterent['time']);?></td> <td><?=htmlspecialchars($filterent['time']);?></td>
<td class="listMRr nowrap"><?php echo htmlspecialchars($filterent['interface']);?></td> <td><?=htmlspecialchars($filterent['interface']);?></td>
<td class="listMRr nowrap"><?php echo htmlspecialchars($filterent['src']);?></td> <td><?=htmlspecialchars($filterent['src']);?></td>
<td class="listMRr nowrap"><?php echo htmlspecialchars($filterent['dst']);?></td> <td><?=htmlspecialchars($filterent['dst']);?></td>
<?php <?php
if ($filterent['proto'] == "TCP") if ($filterent['proto'] == "TCP") {
$filterent['proto'] .= ":{$filterent['tcpflags']}"; $filterent['proto'] .= ":{$filterent['tcpflags']}";
?> }?>
<td class="listMRr nowrap"><?php echo htmlspecialchars($filterent['proto']);?></td> <td><?=htmlspecialchars($filterent['proto']);?></td>
</tr> </tr>
<?php endforeach; ?> <?php
<tr style="display:none;"><td></td></tr> endforeach; ?>
</tbody> </tbody>
</table> </table>
</div> </div>
</div>
</section> </section>
</div> </div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment