This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, master has been updated via bc3e1b292534d100ed2ee3fc29b6c56d556ba3d5 (commit) via 51d002bdef1b032bdb23c1591e05d27e22c895fc (commit) from bfc35ba280e0beb8b7129049ef14e18c2d32588d (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit bc3e1b292534d100ed2ee3fc29b6c56d556ba3d5 Merge: 51d002bdef1b032bdb23c1591e05d27e22c895fc bfc35ba280e0beb8b7129049ef14e18c2d32588d Author: Christian Schmidt christian.schmidt@ipfire.org Date: Sun May 2 22:19:18 2010 +0200
Merge branch 'master' of git://git.ipfire.org/ipfire-2.x
commit 51d002bdef1b032bdb23c1591e05d27e22c895fc Author: Christian Schmidt christian.schmidt@ipfire.org Date: Sun May 2 22:18:12 2010 +0200
Fixed the missing display of the last chains in the tables.
-----------------------------------------------------------------------
Summary of changes: html/cgi-bin/iptables.cgi | 11 +++++++---- 1 files changed, 7 insertions(+), 4 deletions(-)
Difference in files: diff --git a/html/cgi-bin/iptables.cgi b/html/cgi-bin/iptables.cgi index 080371b..886330d 100644 --- a/html/cgi-bin/iptables.cgi +++ b/html/cgi-bin/iptables.cgi @@ -106,8 +106,9 @@ END }
$lines++; - + } + $chains{$chainname."end"} = $lines-1; close (FILE);
# now the chain hash is extracted to get the correct name of the chain @@ -119,7 +120,7 @@ END # colored gui
print "<form method='post' action='$ENV{'SCRIPT_NAME'}'>\n<select name='selectedchain' style='width: 250px'>\n"; - foreach (keys(%chains)){ + foreach (sort(keys(%chains))){
if ( $_ =~ /end$/ ){ next; @@ -229,6 +230,7 @@ END $manlines++; } + $chainsman{$chainname."end"} = $manlines-1; close (FILE);
# now the chain hash is extracted to get the correct name of the chain @@ -240,7 +242,7 @@ END # colored gui
print "<form method='post' action='$ENV{'SCRIPT_NAME'}'>\n<select name='selectedchain' style='width: 250px'>\n"; - foreach (keys(%chainsman)){ + foreach (sort(keys(%chainsman))){
if ( $_ =~ /end$/ ){ next; @@ -355,6 +357,7 @@ END $natlines++; } + $chainsnat{$chainname."end"} = $natlines-1; close (FILE);
# now the chain hash is extracted to get the correct name of the chain @@ -366,7 +369,7 @@ END # colored gui
print "<form method='post' action='$ENV{'SCRIPT_NAME'}'>\n<select name='selectedchain' style='width: 250px'>\n"; - foreach (keys(%chainsnat)){ + foreach (sort(keys(%chainsnat))){
if ( $_ =~ /end$/ ){ next;
hooks/post-receive -- IPFire 2.x development tree