summaryrefslogtreecommitdiffhomepage
path: root/libs/web/luasrc/dispatcher.lua
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2011-10-26 02:17:45 +0000
committerJo-Philipp Wich <jow@openwrt.org>2011-10-26 02:17:45 +0000
commite12b8dbc1f8d4a0d820d89ab8ade4bc6f740bb63 (patch)
tree05076813df6ac4ce3a94d2a0c1d7997831db3f4a /libs/web/luasrc/dispatcher.lua
parent8c9aef1b2de7df6838b939c9eb314ad613bab3d9 (diff)
libs/web: move ifattr() and attr() helpers into dispatcher scope to make them avilable to all templates, remove duplicate exports in cbi tempalte scope
Diffstat (limited to 'libs/web/luasrc/dispatcher.lua')
-rw-r--r--libs/web/luasrc/dispatcher.lua18
1 files changed, 17 insertions, 1 deletions
diff --git a/libs/web/luasrc/dispatcher.lua b/libs/web/luasrc/dispatcher.lua
index c1e8d990f..b1ed62b82 100644
--- a/libs/web/luasrc/dispatcher.lua
+++ b/libs/web/luasrc/dispatcher.lua
@@ -281,6 +281,20 @@ function dispatch(request)
assert(media, "No valid theme found")
end
+ local function ifattr(cond, key, val)
+ if cond then
+ local env = getfenv(1)
+ return string.format(
+ ' %s="%s"', tostring(key),
+ luci.util.pcdata(tostring( val
+ or (type(env[key]) ~= "function" and env[key])
+ or "" ))
+ )
+ else
+ return ''
+ end
+ end
+
tpl.context.viewns = setmetatable({
write = luci.http.write;
include = function(name) tpl.Template(name):render(getfenv(2)) end;
@@ -290,7 +304,9 @@ function dispatch(request)
pcdata = util.pcdata;
media = media;
theme = fs.basename(media);
- resource = luci.config.main.resourcebase
+ resource = luci.config.main.resourcebase;
+ ifattr = ifattr;
+ attr = function(...) return ifattr(true, ...) end
}, {__index=function(table, key)
if key == "controller" then
return build_url()