From 0b895b17940089f854221b340fafae83bcbb2a99 Mon Sep 17 00:00:00 2001 From: Stan Grishin Date: Fri, 4 Nov 2022 00:10:03 +0000 Subject: luci-app-simple-adblock: convert to js Thanks @dibdot, @jow-! Signed-off-by: Stan Grishin Update applications/luci-app-simple-adblock/htdocs/luci-static/resources/simple-adblock/status.js Co-authored-by: Vasili Sviridov Signed-off-by: Stan Grishin Thanks @dibdot, @jow-, @vsviridov! * this includes changes made during review Co-authored-by: Vasili Sviridov Signed-off-by: Stan Grishin --- .../luasrc/view/simple-adblock/buttons.htm | 87 ---------------------- .../luasrc/view/simple-adblock/css.htm | 9 --- .../luasrc/view/simple-adblock/error.htm | 13 ---- .../luasrc/view/simple-adblock/js.htm | 59 --------------- .../luasrc/view/simple-adblock/status.htm | 12 --- 5 files changed, 180 deletions(-) delete mode 100644 applications/luci-app-simple-adblock/luasrc/view/simple-adblock/buttons.htm delete mode 100644 applications/luci-app-simple-adblock/luasrc/view/simple-adblock/css.htm delete mode 100644 applications/luci-app-simple-adblock/luasrc/view/simple-adblock/error.htm delete mode 100644 applications/luci-app-simple-adblock/luasrc/view/simple-adblock/js.htm delete mode 100644 applications/luci-app-simple-adblock/luasrc/view/simple-adblock/status.htm (limited to 'applications/luci-app-simple-adblock/luasrc/view/simple-adblock') diff --git a/applications/luci-app-simple-adblock/luasrc/view/simple-adblock/buttons.htm b/applications/luci-app-simple-adblock/luasrc/view/simple-adblock/buttons.htm deleted file mode 100644 index c8d4e5e8a6..0000000000 --- a/applications/luci-app-simple-adblock/luasrc/view/simple-adblock/buttons.htm +++ /dev/null @@ -1,87 +0,0 @@ -<%# Copyright 2020 Stan Grishin -%> - -<%+simple-adblock/css%> -<%+simple-adblock/js%> - -<%- - local packageName = "simple-adblock" - local serviceRunning, serviceEnabled = false, false; - local tmpfs, tmpfsStatus; - local jsonStatusFile = "/var/run/" .. packageName .. "/" .. packageName .. ".json" - if nixio.fs.access(jsonStatusFile) then - tmpfs = luci.jsonc.parse(luci.util.trim(luci.sys.exec("cat " .. jsonStatusFile))) - if tmpfs and tmpfs['data'] and tmpfs['data']['status'] then - tmpfsStatus = tmpfs['data']['status'] - end - end - if tmpfsStatus == "statusStarting" or tmpfsStatus == "statusRestarting" or - tmpfsStatus == "statusForceReloading" or tmpfsStatus == "statusDownloading" or - tmpfsStatus == "statusError" or tmpfsStatus == "statusWarning" - or tmpfsStatus == "statusSuccess" then - serviceRunning = true - end - - if luci.model.uci.cursor():get(packageName, "config", "enabled") == "1" then - serviceEnabled = true - end - - if serviceEnabled then - btn_start_status = true - btn_action_status = true - btn_stop_status = true - btn_enable_status = false - btn_disable_status = true - else - btn_start_status = false - btn_action_status = false - btn_stop_status = false - btn_enable_status = true - btn_disable_status = false - end - if serviceRunning then - btn_start_status = false - btn_action_status = true - btn_stop_status = true - else - btn_action_status = false - btn_stop_status = false - end --%> - -<%+cbi/valueheader%> - - - - - - -   -   -   -   - - - - -<%+cbi/valuefooter%> - -<%-if not btn_start_status then%> - -<%-end%> -<%-if not btn_action_status then%> - -<%-end%> -<%-if not btn_stop_status then%> - -<%-end%> -<%-if not btn_enable_status then%> - -<%-end%> -<%-if not btn_disable_status then%> - -<%-end%> diff --git a/applications/luci-app-simple-adblock/luasrc/view/simple-adblock/css.htm b/applications/luci-app-simple-adblock/luasrc/view/simple-adblock/css.htm deleted file mode 100644 index 6fb3d51d3b..0000000000 --- a/applications/luci-app-simple-adblock/luasrc/view/simple-adblock/css.htm +++ /dev/null @@ -1,9 +0,0 @@ - diff --git a/applications/luci-app-simple-adblock/luasrc/view/simple-adblock/error.htm b/applications/luci-app-simple-adblock/luasrc/view/simple-adblock/error.htm deleted file mode 100644 index 4ab2e11291..0000000000 --- a/applications/luci-app-simple-adblock/luasrc/view/simple-adblock/error.htm +++ /dev/null @@ -1,13 +0,0 @@ -<%# -Copyright 2017-2019 Stan Grishin (stangri@melmac.net) -This is free software, licensed under the Apache License, Version 2.0 --%> - -<%+cbi/valueheader%> - - - -<%+cbi/valuefooter%> diff --git a/applications/luci-app-simple-adblock/luasrc/view/simple-adblock/js.htm b/applications/luci-app-simple-adblock/luasrc/view/simple-adblock/js.htm deleted file mode 100644 index 51198293f5..0000000000 --- a/applications/luci-app-simple-adblock/luasrc/view/simple-adblock/js.htm +++ /dev/null @@ -1,59 +0,0 @@ - \ No newline at end of file diff --git a/applications/luci-app-simple-adblock/luasrc/view/simple-adblock/status.htm b/applications/luci-app-simple-adblock/luasrc/view/simple-adblock/status.htm deleted file mode 100644 index b02c7faa82..0000000000 --- a/applications/luci-app-simple-adblock/luasrc/view/simple-adblock/status.htm +++ /dev/null @@ -1,12 +0,0 @@ -<%# -Copyright 2017-2018 Dirk Brenken (dev@brenken.org) -This is free software, licensed under the Apache License, Version 2.0 --%> - -<%+cbi/valueheader%> - -
- <%=self:cfgvalue(section):gsub('\n', '
' )%> -
- -<%+cbi/valuefooter%> -- cgit v1.2.3