Globally reduce copyright headers
[project/luci.git] / applications / luci-app-olsr / luasrc / model / cbi / olsr / olsrddisplay.lua
1 -- Copyright 2011 Manuel Munz <freifunk at somakoma de>
2 -- Licensed to the public under the Apache License 2.0.
3
4 m = Map("luci_olsr", translate("OLSR - Display Options"))
5
6 s = m:section(TypedSection, "olsr")
7 s.anonymous = true
8
9 res = s:option(Flag, "resolve", translate("Resolve"),
10         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."))
11 res.default = "0"
12 res.optional = true
13
14 return m