Hi, thirst thank you for working on this so fast. I will comment on this patch inline, but first one note on the commit message. The commit message should be split up. When you use 'git commit -sv' an editor will open and in this editor, the first line makes up the subject of the mail the lines after the second makes up the commit message. The first line should not be longer than 50 characters to avoid, a subject like in this E-Mail. For further information on a good commit message see: https://blog.ipfire.org/post/how-to-write-a-good-commit-message "Leo-Andres Hofmann" hofmann(a)leo-andres.de – 10. November 2020 13:37 > Discussion: lists.ipfire.org/pipermail/development/2020- > October/008567.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"; > > -my $css = < +my $extraHead = < > + > + > END > ; Could you put this in a separate file (zoneconf.js) please? It's hard to read here and we should try to at least avoid introducing new mixing of languages (Perl and js). Also, we can use formatter and linter of this separate file easier. This should apply to the CSS as well, but that is not your mistake and therefore not part of the patch. > > @@ -162,7 +200,7 @@ foreach (@nics) { > } > } > > -&Header::openpage($Lang::tr{"zoneconf title"}, 1, $css); > +&Header::openpage($Lang::tr{"zoneconf title"}, 1, $extraHead); > &Header::openbigbox('100%', 'center'); > > ### Evaluate POST parameters ### > @@ -312,8 +350,8 @@ if ($cgiparams{"ACTION"} eq $Lang::tr{"save"}) { > print <
> > - > - > + > END > ; > > @@ -332,7 +370,7 @@ foreach (@zones) { > my $red_restricted = ($uc eq "RED" && ! ($red_type eq "STATIC" || > $red_type eq "DHCP")); > > if ($red_restricted) { > - print ""; > + print "\t\t\n"; @Micheal or somebody else, do we have a function to print lines intended like in the network code of ipfire 3.x? Something like print_indented > > next; # We're done here > } > @@ -350,7 +388,7 @@ foreach (@zones) { > } > > print < - "; > +print "\t\n"; > > my $slightlygrey = ""; > > @@ -370,12 +408,13 @@ foreach (@nics) { > my $nic = $_->[1]; > my $wlan = $_->[2]; > > - print ""; > + print "\t\n\t\t\n"; > > # Iterate through all zones and check if the current NIC is assigned > to it > foreach (@zones) { > my $uc = uc $_; > my $dev_name = $ethsettings{"${uc}_DEV"}; > + my $highlight = ""; > > if ($dev_name eq "") { # Again, skip the zone if it is not activated > next; > @@ -391,9 +430,10 @@ foreach (@nics) { > > if ($mac eq $ethsettings{"${uc}_MACADDR"}) { > $checked = "checked"; > + $highlight = $_; > } > > - print ""; > + print "\t\t\n"; > next; # We're done here This is very hard to read, could we split this up please? > } > } > @@ -430,21 +470,26 @@ foreach (@nics) { > > $access_selected{"NONE"} = ($access_selected{"NATIVE"} eq "") && > ($access_selected{"VLAN"} eq "") ? "selected" : ""; > my $vlan_disabled = ($wlan) ? "disabled" : ""; > + > + # If the interface is assigned, hightlight table cell > + if ($access_selected{"NONE"} eq "") { > + $highlight = $_; > + } > > print < - > + > END > ; > } Same here, when you only change the indention it is hard to see the actual change of the javascript. To sum things up, please do not get upset about my comments. It might be sometimes annoying, but doing things in a high-quality way makes our work in a few years when we might have a look at this again easier. Greetings Jonatan > - print ""; + print "\t\n"; if ($slightlygrey) { $slightlygrey = ""; -- 2.27.0.windows.1
> +
$uc ($red_type)$uc ($red_type)$uc
> +
$uc
Should be not part of this patch, but does not matter much. You can use 'git add -i' to pick those changes and but them in a separate patch like "cleaning up code". >
$nic
$mac
$nic
$mac
id='PPPACCESS $mac' name='PPPACCESS' value='$mac' $checked> type='radio' id='PPPACCESS $mac' name='PPPACCESS' value='$mac' data- > zone='RED' data-mac='$mac' onchange='highlightAccess(this)' > $checked> > - > - > - > + > + > +