X-Git-Url: http://git.archive.openwrt.org/?a=blobdiff_plain;f=applications%2Fluci-app-adblock%2Fluasrc%2Fmodel%2Fcbi%2Fadblock%2Fblacklist_tab.lua;h=d540c77d108b8b2d9105b5bde7138756ac847cc5;hb=refs%2Fpull%2F1124%2Fhead;hp=fc6b812d15c38db663c5886e689ea13e5185c839;hpb=d3fecae59ebbf4e95e7ca824f0600f801164d03c;p=project%2Fluci.git diff --git a/applications/luci-app-adblock/luasrc/model/cbi/adblock/blacklist_tab.lua b/applications/luci-app-adblock/luasrc/model/cbi/adblock/blacklist_tab.lua index fc6b812d1..d540c77d1 100644 --- a/applications/luci-app-adblock/luasrc/model/cbi/adblock/blacklist_tab.lua +++ b/applications/luci-app-adblock/luasrc/model/cbi/adblock/blacklist_tab.lua @@ -1,11 +1,10 @@ --- Copyright 2016 Hannu Nyman -- Copyright 2017 Dirk Brenken (dev@brenken.org) -- This is free software, licensed under the Apache License, Version 2.0 local fs = require("nixio.fs") local util = require("luci.util") local uci = require("uci") -local adbinput = uci.get("adblock", "blacklist", "adb_src") +local adbinput = uci.get("adblock", "blacklist", "adb_src" or "/etc/adblock/adblock.blacklist") if not nixio.fs.access(adbinput) then m = SimpleForm("error", nil, translate("Input file not found, please check your configuration.")) @@ -13,27 +12,28 @@ if not nixio.fs.access(adbinput) then end m = SimpleForm("input", nil) - m:append(Template("adblock/config_css")) +m:append(Template("adblock/config_css")) +m.reset = false s = m:section(SimpleSection, nil, translatef("This form allows you to modify the content of the adblock blacklist (%s).
", adbinput) - .. translate("Please add only one domain per line. Comments introduced with '#' are allowed - ip addresses, wildcards & regex are not.")) + .. translate("Please add only one domain per line. Comments introduced with '#' are allowed - ip addresses, wildcards and regex are not.")) f = s:option(TextValue, "data") - f.rmempty = true - f.datatype = "string" - f.rows = 20 +f.datatype = "string" +f.rows = 20 +f.rmempty = true - function f.cfgvalue() - return nixio.fs.readfile(adbinput) or "" - end +function f.cfgvalue() + return nixio.fs.readfile(adbinput) or "" +end - function f.write(self, section, data) - return nixio.fs.writefile(adbinput, "\n" .. util.trim(data:gsub("\r\n", "\n")) .. "\n") - end +function f.write(self, section, data) + return nixio.fs.writefile(adbinput, "\n" .. util.trim(data:gsub("\r\n", "\n")) .. "\n") +end - function s.handle(self, state, data) - return true - end +function s.handle(self, state, data) + return true +end return m