diff options
author | Oldřich Jedlička <oldium.pro@gmail.com> | 2020-10-05 09:50:01 +0200 |
---|---|---|
committer | Oldřich Jedlička <oldium.pro@gmail.com> | 2020-10-31 09:40:38 +0100 |
commit | e24415ac12dd485a6ae5a79fc440089227eed222 (patch) | |
tree | 2ce0c40a560b48b64e3ee531e785b6d8fff9bc08 /applications/luci-app-fwknopd/luasrc/view | |
parent | 5a485f8c686cdc918c008e75bbf96bc51515d6aa (diff) |
luci-app-fwknopd: Client-side rendering and improvements/fixes.
* Use client-side rendering.
* Asynchronous QR code generation and on-the-fly updates.
* Added button to generate keys.
* Added keys validation (empty, __CHANGEME__ and CHANGEME values are not
valid).
* Added SOURCE option non-empty validation (SOURCE is mandatory field).
* Added network and DESTINATION options.
* Use checkboxes for Y/N options instead of text fields.
* Fix the qrencode tool, which currently has only `--inline` option, not
`-I`. Use `--inline` instead.
* Improve configuration handling by removing the key type from the config
file. The key type is deduced from the actual values (normal/base64).
* Provide migration script (clean-up of stale keytype/hkeytype values in
config).
* Fixed usage of translations.
Signed-off-by: Oldřich Jedlička <oldium.pro@gmail.com>
Diffstat (limited to 'applications/luci-app-fwknopd/luasrc/view')
-rw-r--r-- | applications/luci-app-fwknopd/luasrc/view/fwknopd-qr.htm | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/applications/luci-app-fwknopd/luasrc/view/fwknopd-qr.htm b/applications/luci-app-fwknopd/luasrc/view/fwknopd-qr.htm deleted file mode 100644 index 5773f523e..000000000 --- a/applications/luci-app-fwknopd/luasrc/view/fwknopd-qr.htm +++ /dev/null @@ -1,2 +0,0 @@ -<% print(luci.sys.exec("sh /usr/sbin/gen-qr.sh " .. self.tmp)) %> -<% self.tmp = self.tmp + 1 %> |