From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH v2 6/6] zoneconf.cgi: Improve VLAN & STP inputs
Date: Fri, 19 Feb 2021 19:22:27 +0000 [thread overview]
Message-ID: <CBB9ED31-F28F-4303-A0F2-49E94D236167@ipfire.org> (raw)
In-Reply-To: <20210218143016.972-6-hofmann@leo-andres.de>
[-- Attachment #1: Type: text/plain, Size: 2861 bytes --]
Hello,
> On 18 Feb 2021, at 14:30, Leo-Andres Hofmann <hofmann(a)leo-andres.de> wrote:
>
> Add default values and mark fields as required.
>
> Signed-off-by: Leo-Andres Hofmann <hofmann(a)leo-andres.de>
> ---
> html/cgi-bin/zoneconf.cgi | 10 ++++++++--
> 1 file changed, 8 insertions(+), 2 deletions(-)
>
> diff --git a/html/cgi-bin/zoneconf.cgi b/html/cgi-bin/zoneconf.cgi
> index 9d01d06ce..bbd042ffc 100644
> --- a/html/cgi-bin/zoneconf.cgi
> +++ b/html/cgi-bin/zoneconf.cgi
> @@ -478,6 +478,9 @@ END
> if ($access_selected{"NONE"} eq "") {
> $highlight = $_;
> }
> +
> + # default VLAN tag if not configured
> + $zone_vlan_id = 1 unless looks_like_number($zone_vlan_id);
I am not sure if it is a good idea to add a default here.
Isn’t there a danger that people will hit save prematurely and connect the wrong VLAN with another one?
Usability issues like that cannot be prevented entirely, but I was wondering if this didn’t make it easier to run into that error.
>
> print <<END
> <td class="$highlight">
> @@ -486,7 +489,7 @@ END
> <option value="NATIVE" $access_selected{"NATIVE"}>$Lang::tr{"zoneconf access native"}</option>
> <option value="VLAN" $access_selected{"VLAN"} $vlan_disabled>$Lang::tr{"zoneconf access vlan"}</option>
> </select>
> - <input type="number" class="vlanid" id="TAG-$uc-$mac" name="TAG $uc $mac" min="1" max="4095" value="$zone_vlan_id" $field_disabled>
> + <input type="number" class="vlanid" id="TAG-$uc-$mac" name="TAG $uc $mac" min="1" max="4095" value="$zone_vlan_id" required $field_disabled>
> </td>
> END
> ;
> @@ -513,6 +516,9 @@ foreach (@zones) { # load settings and prepare form elements for each zone
> my $stp_available = $ethsettings{"${uc}_MODE"} eq "bridge"; # STP is only available in bridge mode
> my $stp_enabled = $ethsettings{"${uc}_STP"} eq "on";
> my $stp_priority = $ethsettings{"${uc}_STP_PRIORITY"};
> +
> + # set priority to default value if no numerical value is configured
> + $stp_priority = 32768 unless looks_like_number($stp_priority);
This is very good.
Since this is in this patchset and comes with the dependency to the other code above, I cannot pull this in with the STP patchset where it actually belongs.
But I guess we should merge this all together anyways :)
-Michael
>
> # form element modifiers
> my $checked = "";
> @@ -532,7 +538,7 @@ END
> # priority input box HTML
> my $row_2 = <<END
> <td>
> - <input type="number" class="stp-priority" id="STP-PRIORITY-$uc" name="STP-PRIORITY-$uc" min="1" max="65535" value="$stp_priority" $disabled>
> + <input type="number" class="stp-priority" id="STP-PRIORITY-$uc" name="STP-PRIORITY-$uc" min="1" max="65535" value="$stp_priority" required $disabled>
> </td>
> END
> ;
> --
> 2.27.0.windows.1
>
next prev parent reply other threads:[~2021-02-19 19:22 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-18 14:30 [PATCH v2 1/6] zoneconf.cgi: Change NIC display order, improve code Leo-Andres Hofmann
2021-02-18 14:30 ` [PATCH v2 2/6] zoneconf.cgi: Modify CSS to allow additional rows Leo-Andres Hofmann
2021-02-18 14:30 ` [PATCH v2 3/6] zoneconf.cgi: Add STP options to GUI Leo-Andres Hofmann
2021-02-18 14:30 ` [PATCH v2 4/6] zoneconf.cgi: Add Javascript for new GUI elements Leo-Andres Hofmann
2021-02-18 14:30 ` [PATCH v2 5/6] zoneconf.cgi: Import network-functions.pl Leo-Andres Hofmann
2021-02-19 19:24 ` Michael Tremer
2021-02-20 11:07 ` Aw: " Bernhard Bitsch
2021-02-21 10:35 ` Leo Hofmann
2021-02-18 14:30 ` [PATCH v2 6/6] zoneconf.cgi: Improve VLAN & STP inputs Leo-Andres Hofmann
2021-02-19 19:22 ` Michael Tremer [this message]
2021-02-21 10:38 ` Leo Hofmann
2021-02-21 19:06 ` Jonatan Schlag
2021-02-22 23:46 ` Leo Hofmann
2021-02-22 19:02 ` Michael Tremer
2021-02-22 22:27 ` Adolf Belka (ipfire)
2021-02-22 23:22 ` Leo Hofmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CBB9ED31-F28F-4303-A0F2-49E94D236167@ipfire.org \
--to=michael.tremer@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox