From c5403e5f70a9f79bb0bb697d11e1cec374934370 Mon Sep 17 00:00:00 2001 From: Stan Grishin Date: Mon, 26 Aug 2019 23:19:11 -0700 Subject: [PATCH] luci-app-simple-adblock: delete extra file Signed-off-by: Stan Grishin --- .../luasrc/model/cbi/simpleadblock.lua | 69 ------------------- 1 file changed, 69 deletions(-) delete mode 100644 applications/luci-app-simple-adblock/luasrc/model/cbi/simpleadblock.lua diff --git a/applications/luci-app-simple-adblock/luasrc/model/cbi/simpleadblock.lua b/applications/luci-app-simple-adblock/luasrc/model/cbi/simpleadblock.lua deleted file mode 100644 index 22672124f..000000000 --- a/applications/luci-app-simple-adblock/luasrc/model/cbi/simpleadblock.lua +++ /dev/null @@ -1,69 +0,0 @@ -m = Map("simple-adblock", translate("Simple AdBlock Settings")) -s = m:section(NamedSection, "config", "simple-adblock") - --- General options -e = s:option(Flag, "enabled", translate("Start Simple Adblock service")) -e.rmempty = false -function e.write(self, section, value) - if value ~= "1" then - luci.sys.init.stop("simple-adblock") - end - return Flag.write(self, section, value) -end - -o2 = s:option(ListValue, "verbosity", translate("Output Verbosity Setting"),translate("Controls system log and console output verbosity")) -o2:value("0", translate("Suppress output")) -o2:value("1", translate("Some output")) -o2:value("2", translate("Verbose output")) -o2.rmempty = false -o2.default = 2 - -o3 = s:option(ListValue, "force_dns", translate("Force Router DNS"), translate("Forces Router DNS use on local devices, also known as DNS Hijacking")) -o3:value("0", translate("Let local devices use their own DNS servers if set")) -o3:value("1", translate("Force Router DNS server to all local devices")) -o3.rmempty = false -o3.default = 1 - -local sysfs_path = "/sys/class/leds/" -local leds = {} -if nixio.fs.access(sysfs_path) then - leds = nixio.util.consume((nixio.fs.dir(sysfs_path))) -end -if #leds ~= 0 then - o3 = s:option(Value, "led", translate("LED to indicate status"), translate("Pick the LED not already used in") - .. [[ ]] - .. translate("System LED Configuration") .. [[]]) - o3.rmempty = true - o3:value("", translate("none")) - for k, v in ipairs(leds) do - o3:value(v) - end -end - -s2 = m:section(NamedSection, "config", "simple-adblock") --- Whitelisted Domains -d1 = s2:option(DynamicList, "whitelist_domain", translate("Whitelisted Domains"), translate("Individual domains to be whitelisted")) -d1.addremove = false -d1.optional = false - --- Blacklisted Domains -d3 = s2:option(DynamicList, "blacklist_domain", translate("Blacklisted Domains"), translate("Individual domains to be blacklisted")) -d3.addremove = false -d3.optional = false - --- Whitelisted Domains URLs -d2 = s2:option(DynamicList, "whitelist_domains_url", translate("Whitelisted Domain URLs"), translate("URLs to lists of domains to be whitelisted")) -d2.addremove = false -d2.optional = false - --- Blacklisted Domains URLs -d4 = s2:option(DynamicList, "blacklist_domains_url", translate("Blacklisted Domain URLs"), translate("URLs to lists of domains to be blacklisted")) -d4.addremove = false -d4.optional = false - --- Blacklisted Hosts URLs -d5 = s2:option(DynamicList, "blacklist_hosts_url", translate("Blacklisted Hosts URLs"), translate("URLs to lists of hosts to be blacklisted")) -d5.addremove = false -d5.optional = false - -return m -- 2.25.1