diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2011-05-29 12:14:33 +0300 |
---|---|---|
committer | Ville Skyttä <ville.skytta@iki.fi> | 2011-05-29 12:14:33 +0300 |
commit | c114fd0bf91ca0467ffde7375ac13ce9623d3e11 (patch) | |
tree | 3af3999f8116a748ea97a3a1173cfddcb329c586 /template/default | |
parent | 8c127324a01cf50e26fbcb9cc078f4a516777047 (diff) | |
download | vdradmin-am-c114fd0bf91ca0467ffde7375ac13ce9623d3e11.tar.gz vdradmin-am-c114fd0bf91ca0467ffde7375ac13ce9623d3e11.tar.bz2 |
Allow specifying multiple local subnets.
http://projects.vdr-developer.org/issues/650
Diffstat (limited to 'template/default')
-rw-r--r-- | template/default/config.html | 2 | ||||
-rw-r--r-- | template/default/help_config.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/template/default/config.html b/template/default/config.html index feacf9b..8a2cf92 100644 --- a/template/default/config.html +++ b/template/default/config.html @@ -79,7 +79,7 @@ <tr class="<?% tr_class %?>"> <?% tr_class = (tr_class == "row_odd" ? "row_even" : "row_odd") %?> <td class="col_label"><h5><?% gettext('Local net (no login required):') %?></h5></td> - <td class="col_value"><input type="text" name="LOCAL_NET" value="<?% config.LOCAL_NET | html %?>" size="20" maxlength="50" /></td> + <td class="col_value"><input type="text" name="LOCAL_NET" value="<?% config.LOCAL_NET | html %?>" size="20" maxlength="256" /></td> </tr> <tr class="<?% tr_class %?>"> <?% tr_class = (tr_class == "row_odd" ? "row_even" : "row_odd") %?> diff --git a/template/default/help_config.html b/template/default/help_config.html index 67c195a..b88cc67 100644 --- a/template/default/help_config.html +++ b/template/default/help_config.html @@ -38,7 +38,7 @@ <dt><?% gettext('Number of channels to use:') %?></dt> <dd><?% gettext('VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM\'s memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels.') %?></dd> <dt><?% gettext('Local net (no login required):') %?></dt> - <dd><?% gettext('Here you can specify an IP address or range that can login without providing login information. For example: "192.168.0.0/24" will include any IP starting with "192.168.0", "192.168.0.123/32" will only match "192.168.0.123".') %?></dd> + <dd><?% gettext('Here you can specify subnets from which access to VDRAdmin-AM does not require logging in. For example: "192.168.0.0/24" will include any IP starting with "192.168.0", "192.168.0.123/32" will only match "192.168.0.123". Multiple subnets can be specified by separating them with spaces or commas.') %?></dd> <dt><?% gettext('Language:') %?></dt> <dd><?% gettext('Here you can set the localization VDRAdmin-AM should use.') %?></dd> <dt><?% gettext('Save settings on exit:') %?></dt> |