Compare commits

..

No commits in common. "23879741fb3ad5c022879f407b9b6c677632183d" and "7be758d995798679b959532aec6847d385c616ec" have entirely different histories.

View File

@ -1,23 +1,24 @@
m = Map("zapret", translate("TPWS Proxy Settings"))c = m:section(NamedSection, "tpws", "zapret", translate("Configuration")) m = Map("zapret", translate("TPWS Proxy Settings"))
c = m:section(NamedSection, "tpws", "zapret", translate("Configuration"))
opt = c:option(Value, "opts", translate("TPWS Options")) opt = c:option(Value, "opts", translate("TPWS Options"))
opt.placeholder = "--split-pos=2" opt.placeholder = "--split-pos=2"
function opt.validate(self, value) function checkDoubleMinus(inputString)
-- Split the string into words -- Split the string into words
local words = {} local words = {}
for word in value:gmatch("%S+") do for word in inputString:gmatch("%S+") do
table.insert(words, word) table.insert(words, word)
end end
-- Check each word -- Check each word
for _, word in ipairs(words) do for _, word in ipairs(words) do
if not word:sub(1, 2) == "--" then if not word:sub(1, 2) == "--" then
return nil, opt.error = translate("Error: Not all options start with double dash.") return false, translate("Error: Not all words start with double minuses.")
end end
end end
return value return true
end end
opt.validate = checkDoubleMinus(opt.Value)
b = c:option(Flag, "block_quic", "Block QUIC", translate("Block QUIC protocol to come outside")) b = c:option(Flag, "block_quic", "Block QUIC", translate("Block QUIC protocol to come outside"))
lp = c:option(Value, "port", translate("Listen Port")) lp = c:option(Value, "port", translate("Listen Port"))
lp.datatype = "port" lp.datatype = "port"