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");
<?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();" />&nbsp;<?=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>
......
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