summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js
diff options
context:
space:
mode:
authorAyushman Tripathi <ayushmantripathi7724@gmail.com>2023-06-21 19:14:19 +0530
committerFlorian Eckert <fe@dev.tdt.de>2023-06-22 16:02:29 +0200
commit5865d02bfd9dad34e2d3106d57675045d8eb235c (patch)
tree0beff1e6a8090e95214dbab310f1c6132b21f109 /applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js
parent3b9adf800f6d93ec639577fc1f93ad841f841f1f (diff)
luci-app-uhttpd: some fixes because of the lua to javascript porting
* Fix menu path for uhttpd * Add hint that files could only be uploaded to /etc/luci-uploads * Rename not knowing enable_delete FileUpload option to enable_remove * Update ACL list Signed-off-by: Ayushman Tripathi <ayushmantripathi7724@gmail.com> Improvement of the commit title and description Signed-off-by: Florian Eckert <fe@dev.tdt.de>
Diffstat (limited to 'applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js')
-rw-r--r--applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js b/applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js
index db659f659b..3619e0835f 100644
--- a/applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js
+++ b/applications/luci-app-uhttpd/htdocs/luci-static/resources/view/uhttpd/uhttpd.js
@@ -103,13 +103,13 @@ return view.extend({
rfc1918Filter.default = rfc1918Filter.enabled;
rfc1918Filter.rmempty = false;
- cert_file = ucs.taboption('general', form.FileUpload, 'cert', _('HTTPS Certificate (DER or PEM format)'));
+ cert_file = ucs.taboption('general', form.FileUpload, 'cert', _('HTTPS Certificate (DER or PEM format)'), _('Files can only be uploaded and saved to the /etc/luci-uploads directory.'));
cert_file.root_directory = '/';
- cert_file.enable_delete = false;
+ cert_file.enable_remove = false;
- key_file = ucs.taboption('general', form.FileUpload, 'key', _('HTTPS Private Key (DER or PEM format)'));
+ key_file = ucs.taboption('general', form.FileUpload, 'key', _('HTTPS Private Key (DER or PEM format)'), _('Files can only be uploaded and saved to the /etc/luci-uploads directory.'));
key_file.root_directory = '/';
- key_file.enable_delete = false;
+ key_file.enable_remove = false;
var removeOld = ucs.taboption('general', form.Button, 'remove_old', _('Remove old certificate and key'), _('uHTTPd will generate a new self-signed certificate using the configuration shown below.'));
removeOld.inputstyle = 'remove';