diff options
Diffstat (limited to 'applications/luci-app-simple-adblock/luasrc/view/simple-adblock/buttons.htm')
-rw-r--r-- | applications/luci-app-simple-adblock/luasrc/view/simple-adblock/buttons.htm | 87 |
1 files changed, 0 insertions, 87 deletions
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 <stangri@melmac.ca> -%> - -<%+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%> - <input type="button" class="btn cbi-button cbi-button-apply" id="btn_start" name="start" value="<%:Start%>" - onclick="button_action(this)" /> - <span id="btn_start_spinner" class="btn_spinner"></span> - <input type="button" class="btn cbi-button cbi-button-apply" id="btn_action" name="action" value="<%:Force Re-Download%>" - onclick="button_action(this)" /> - <span id="btn_action_spinner" class="btn_spinner"></span> - <input type="button" class="btn cbi-button cbi-button-reset" id="btn_stop" name="stop" value="<%:Stop%>" - onclick="button_action(this)" /> - <span id="btn_stop_spinner" class="btn_spinner"></span> -   -   -   -   - <input type="button" class="btn cbi-button cbi-button-apply" id="btn_enable" name="enable" value="<%:Enable%>" - onclick="button_action(this)" /> - <span id="btn_enable_spinner" class="btn_spinner"></span> - <input type="button" class="btn cbi-button cbi-button-reset" id="btn_disable" name="disable" value="<%:Disable%>" - onclick="button_action(this)" /> - <span id="btn_disable_spinner" class="btn_spinner"></span> -<%+cbi/valuefooter%> - -<%-if not btn_start_status then%> -<script type="text/javascript">document.getElementById("btn_start").disabled = true;</script> -<%-end%> -<%-if not btn_action_status then%> -<script type="text/javascript">document.getElementById("btn_action").disabled = true;</script> -<%-end%> -<%-if not btn_stop_status then%> -<script type="text/javascript">document.getElementById("btn_stop").disabled = true;</script> -<%-end%> -<%-if not btn_enable_status then%> -<script type="text/javascript">document.getElementById("btn_enable").disabled = true;</script> -<%-end%> -<%-if not btn_disable_status then%> -<script type="text/javascript">document.getElementById("btn_disable").disabled = true;</script> -<%-end%> |