Skip to content

Commit

Permalink
cgi-bin: HTML cleanup, add quotes for attribute values
Browse files Browse the repository at this point in the history
  • Loading branch information
alfh committed Feb 15, 2014
1 parent 2c01f46 commit 631b67b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions html/cgi-bin/ids.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ END
if ( -e "${General::swroot}/snort/enable" || -e "${General::swroot}/snort/enable_green" || -e "${General::swroot}/snort/enable_blue" || -e "${General::swroot}/snort/enable_orange" ) {
&Header::openbox('100%', 'LEFT', $Lang::tr{'intrusion detection system rules'});
# Output display table for rule files
print "<table width='100%'><tr><td valign='TOP'><table>";
print "<table width='100%'><tr><td valign='top'><table>";

print "<form method='post'>";

Expand All @@ -615,7 +615,7 @@ if ( -e "${General::swroot}/snort/enable" || -e "${General::swroot}/snort/enable

# Check if reached half-way through rule file rules to start new column
if ($ruledisplaycnt > $rulecnt) {
print "</table></td><td valign='TOP'><table>";
print "</table></td><td valign='top'><table>";
$ruledisplaycnt = 0;
}

Expand Down Expand Up @@ -666,8 +666,8 @@ if ( -e "${General::swroot}/snort/enable" || -e "${General::swroot}/snort/enable
}

# Output rule file name and checkbox
print "<tr><td class='base' valign='TOP'><input type='checkbox' NAME='SNORT_RULE_$rulefile' $rulechecked> <a href='$rulefilelink'>$rulefile</a></td></tr>";
print "<tr><td class='base' valign='TOP'>";
print "<tr><td class='base' valign='top'><input type='checkbox' NAME='SNORT_RULE_$rulefile' $rulechecked> <a href='$rulefilelink'>$rulefile</a></td></tr>";
print "<tr><td class='base' valign='top'>";

# Check for empty 'Description'
if ($snortrules{$rulefile}{'Description'} eq '') {
Expand All @@ -680,7 +680,7 @@ if ( -e "${General::swroot}/snort/enable" || -e "${General::swroot}/snort/enable
# Check for display flag
if ($displayrulefilerules) {
# Rule file definition rule display
print "<tr><td class='base' valign='TOP'><table border='0'><tr>";
print "<tr><td class='base' valign='top'><table border='0'><tr>";

# Local vars
my $ruledefdisplaycnt = 0;
Expand Down
6 changes: 3 additions & 3 deletions html/cgi-bin/ovpnmain.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -2282,7 +2282,7 @@ ADV_ERROR:
&Header::openbox('100%', 'LEFT', $Lang::tr{'advanced server'});
print <<END
<form method='post' enctype='multipart/form-data'>
<table width='100%' border=0>
<table width='100%' border='0'>
<tr>
<td colspan='4'><b>$Lang::tr{'dhcp-options'}</b></td>
</tr>
Expand Down Expand Up @@ -2485,7 +2485,7 @@ if ($cgiparams{'ACTION'} eq "edit"){
&Header::openbox('100%', 'LEFT', $Lang::tr{'ccd modify'});

print <<END
<table width='100%' border=0>
<table width='100%' border='0'>
<tr><form method='post'>
<td width='10%' nowrap='nowrap'>$Lang::tr{'ccd name'}:</td><td><input type='TEXT' name='ccdname' value='$cgiparams{'ccdname'}' /></td>
<td width='8%'>$Lang::tr{'ccd subnet'}:</td><td><input type='TEXT' name='ccdsubnet' value='$cgiparams{'ccdsubnet'}' readonly /></td></tr>
Expand Down Expand Up @@ -4581,7 +4581,7 @@ END
}
&Header::openbox('100%', 'LEFT', $Lang::tr{'global settings'});
print <<END
<table width='100%' border=0>
<table width='100%' border='0'>
<form method='post'>
<td width='25%'>&nbsp;</td>
<td width='25%'>&nbsp;</td>
Expand Down
4 changes: 2 additions & 2 deletions html/cgi-bin/p2p-block.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ close FILE;
print <<END;
<table width='35%' class='tbl'>
<tr>
<th align=center colspan='2'bgcolor='$color{'color22'}' >
<th align='center' colspan='2' bgcolor='$color{'color22'}' >
<b>$Lang::tr{'protocol'}</b>
</th>
<th align='center'bgcolor='$color{'color22'}' >
<th align='center' bgcolor='$color{'color22'}' >
<b>$Lang::tr{'status'}</b>
</th>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion html/cgi-bin/proxy.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -1206,7 +1206,7 @@ print <<END
<td colspan='4'><b>$Lang::tr{'advproxy destination ports'}</b></td>
</tr>
<tr>
<td width='25%' align=center></td> <td width='20%' align=center></td><td width='25%' align=center></td><td width='30%' align=center></td>
<td width='25%' align='center'></td> <td width='20%' align='center'></td><td width='25%' align='center'></td><td width='30%' align='center'></td>
</tr>
<tr>
<td colspan='2' class='base'>$Lang::tr{'advproxy standard ports'}:</td>
Expand Down
2 changes: 1 addition & 1 deletion html/cgi-bin/tripwire.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ print <<END
<tr><td><br /></td></tr>
<tr><td><pre>$Log</pre></td></tr>
<tr><td><br /></td></tr>
<tr><td align=center>$tripwiresettings{'LOG'}</td></tr>
<tr><td align='center'>$tripwiresettings{'LOG'}</td></tr>
</table>
END
;
Expand Down

0 comments on commit 631b67b

Please sign in to comment.