luci/applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrddisplay.lua
Jo-Philipp Wich 7a3493b1f7 Globally reduce copyright headers
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2015-01-16 23:38:38 +01:00

14 lines
547 B
Lua

-- Copyright 2011 Manuel Munz <freifunk at somakoma de>
-- Licensed to the public under the Apache License 2.0.
m = Map("luci_olsr", translate("OLSR - Display Options"))
s = m:section(TypedSection, "olsr")
s.anonymous = true
res = s:option(Flag, "resolve", translate("Resolve"),
translate("Resolve hostnames on status pages. It is generally safe to allow this, but if you use public IPs and have unstable DNS-Setup then those pages will load really slow. In this case disable it here."))
res.default = "0"
res.optional = true
return m