blob: fe1d8fe7ed630b1af988a987e2f1c8d57b87eed2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
local fs = require "nixio.fs"
local file = "/www/luci-static/index_user.html"
m = Map("freifunk", translate("Edit index page"), translate("You can display additional content on the public index page by inserting valid XHTML in the form below.<br />Headlines should be enclosed between <h2> and </h2>."))
s = m:section(NamedSection, "community", "public", "")
s.anonymous = true
di = s:option(Flag, "DefaultText", translate("Disable default content"), translate("If selected then the default content element is not shown."))
di.enabled = "disabled"
di.disabled = "enabled"
di.rmempty = false
t = s:option(TextValue, "_text")
t.rmempty = true
t.rows = 20
function t.cfgvalue()
return fs.readfile(file) or ""
end
function t.write(self, section, value)
return fs.writefile(file, value)
end
function t.remove(self, section)
return fs.unlink(file)
end
return m
|