From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 16/20] ids.cgi: Use new-style table for whitelist entries Date: Tue, 10 Sep 2024 14:37:29 +0000 Message-ID: <20240910143748.3469271-17-michael.tremer@ipfire.org> In-Reply-To: <20240910143748.3469271-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7687546132031323173==" List-Id: --===============7687546132031323173== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Michael Tremer --- html/cgi-bin/ids.cgi | 52 ++++++++++++++++++++++---------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/html/cgi-bin/ids.cgi b/html/cgi-bin/ids.cgi index 737826580..08db95595 100644 --- a/html/cgi-bin/ids.cgi +++ b/html/cgi-bin/ids.cgi @@ -1241,11 +1241,11 @@ END &Header::openbox('100%', 'center', $Lang::tr{'ids ignored hosts'}); =20 print < + - - - + END # Check if some hosts have been added to be ignored. @@ -1262,10 +1262,6 @@ END # Check if the key (id) number is even or not. if ($cgiparams{'ID'} eq $key) { $col=3D"bgcolor=3D'${Header::colouryellow}'"; - } elsif ($key % 2) { - $col=3D"bgcolor=3D'$color{'color22'}'"; - } else { - $col=3D"bgcolor=3D'$color{'color20'}'"; } =20 # Choose icon for the checkbox. @@ -1283,8 +1279,8 @@ END =20 print < - - + + =20
$Lang::tr{'ip address= '}$Lang::tr{'remark'}$Lang::tr{'ip address'} + $Lang::tr{'remark'} +
$address$remark$address$remark
@@ -1323,12 +1319,10 @@ END =20 # Section to add new elements or edit existing ones. print < -
-
+ + =20 -
- +
END =20 # Assign correct headline and button text. @@ -1339,30 +1333,36 @@ END # Check if an ID (key) has been given, in this case an existing entry shou= ld be edited. if ($cgiparams{'ID'} ne '') { $buttontext =3D $Lang::tr{'update'}; - print "\n"; + print "\n"; =20 # Grab address and remark for the given key. $entry_address =3D $ignored{$cgiparams{'ID'}}[0]; $entry_remark =3D $ignored{$cgiparams{'ID'}}[1]; } else { $buttontext =3D $Lang::tr{'add'}; - print "\n"; + print "\n"; } =20 print < - - - + + + + + + + + =20 - - - + + -
$Lang::tr{'update'}
$Lang::tr{'update'}
$Lang::tr{'dnsforward= add a new entry'}
$Lang::tr{'dnsforward add a new entry'}=
$Lang::tr{'ip address'}: $Lang::tr{'ip address'} + +
$Lang::tr{'remark'} + +
$Lang::tr{'remark'}:
-
+ END =20 &Header::closebox(); --=20 2.39.2 --===============7687546132031323173==--