From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel =?utf-8?q?Weism=C3=BCller?= To: development@lists.ipfire.org Subject: Re: [PATCH] zoneconf.cgi: Improve the usability of the zone configuration by marking assigned NICs in the zone color. The highlighting is initially applied to the static HTML output, and JavaScript is used to dynamically follow changes made by the user. Date: Thu, 12 Nov 2020 13:40:07 +0100 Message-ID: <1556f4a1-d135-2ce1-4f77-0472275df61f@ipfire.org> In-Reply-To: <06299a2d-c302-4712-8a2a-6842ccb3b24b@Leo-Laptop.local> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8961953909630209163==" List-Id: --===============8961953909630209163== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Hello Regardless of the advice and improvement requests of others, I have=20 applied the patch to my IPFire. So far everything works as expected and I could not find any errors or=20 misbehaviour. Greetings Daniel Am 10.11.2020 um 13:37 schrieb Leo-Andres Hofmann: > Discussion: https://lists.ipfire.org/pipermail/development/2020-October/008= 567.html > > Signed-off-by: Leo-Andres Hofmann > --- > html/cgi-bin/zoneconf.cgi | 89 +++++++++++++++++++++++++++++---------- > 1 file changed, 67 insertions(+), 22 deletions(-) > > diff --git a/html/cgi-bin/zoneconf.cgi b/html/cgi-bin/zoneconf.cgi > index d99a3e611..2501901c4 100644 > --- a/html/cgi-bin/zoneconf.cgi > +++ b/html/cgi-bin/zoneconf.cgi > @@ -26,7 +26,7 @@ require '/var/ipfire/general-functions.pl'; > require "${General::swroot}/lang.pl"; > require "${General::swroot}/header.pl"; > =20 > -my $css =3D < +my $extraHead =3D < > + > + > END > ; > =20 > @@ -162,7 +200,7 @@ foreach (@nics) { > } > } > =20 > -&Header::openpage($Lang::tr{"zoneconf title"}, 1, $css); > +&Header::openpage($Lang::tr{"zoneconf title"}, 1, $extraHead); > &Header::openbigbox('100%', 'center'); > =20 > ### Evaluate POST parameters ### > @@ -312,8 +350,8 @@ if ($cgiparams{"ACTION"} eq $Lang::tr{"save"}) { > print <
> > - > - > + > END > ; > =20 > @@ -332,7 +370,7 @@ foreach (@zones) { > my $red_restricted =3D ($uc eq "RED" && ! ($red_type eq "STATIC" || $re= d_type eq "DHCP")); > =20 > if ($red_restricted) { > - print ""; > + print "\t\t\n"; > =20 > next; # We're done here > } > @@ -350,7 +388,7 @@ foreach (@zones) { > } > =20 > print < - "; > +print "\t\n"; > =20 > my $slightlygrey =3D ""; > =20 > @@ -370,12 +408,13 @@ foreach (@nics) { > my $nic =3D $_->[1]; > my $wlan =3D $_->[2]; > =20 > - print ""; > + print "\t\n\t\t\n"; > =20 > # Iterate through all zones and check if the current NIC is assigned to = it > foreach (@zones) { > my $uc =3D uc $_; > my $dev_name =3D $ethsettings{"${uc}_DEV"}; > + my $highlight =3D ""; > =20 > if ($dev_name eq "") { # Again, skip the zone if it is not activated > next; > @@ -391,9 +430,10 @@ foreach (@nics) { > =20 > if ($mac eq $ethsettings{"${uc}_MACADDR"}) { > $checked =3D "checked"; > + $highlight =3D $_; > } > =20 > - print ""; > + print "\t\t= \n"; > next; # We're done here > } > } > @@ -430,21 +470,26 @@ foreach (@nics) { > =20 > $access_selected{"NONE"} =3D ($access_selected{"NATIVE"} eq "") && ($ac= cess_selected{"VLAN"} eq "") ? "selected" : ""; > my $vlan_disabled =3D ($wlan) ? "disabled" : ""; > + =09 > + # If the interface is assigned, hightlight table cell > + if ($access_selected{"NONE"} eq "") { > + $highlight =3D $_; > + } > =20 > print < - > + > END > ; > } > =20 > - print ""; > + print "\t\n"; > =20 > if ($slightlygrey) { > $slightlygrey =3D ""; --===============8961953909630209163==--
> +
$uc ($red_type)$uc ($red_type)$uc
> +
$uc
>
$nic
$mac
$nic
$mac
> - > - > - > + > + > +