mirror of
https://github.com/rxi/lovebird.git
synced 2024-11-15 22:54:21 +00:00
Changed lovebird.template() to return compiled template
lovebird.template() now returns the compiled template as a function rather than the result of the template. To make this possible the parameters and usage of the function has also changed.
This commit is contained in:
parent
fe2e607baa
commit
188d052d34
18
lovebird.lua
18
lovebird.lua
@ -393,21 +393,19 @@ function lovebird.init()
|
||||
end
|
||||
|
||||
|
||||
function lovebird.template(str, env)
|
||||
env = env or {}
|
||||
local keys, vals = {}, {}
|
||||
for k, v in pairs(env) do
|
||||
table.insert(keys, k)
|
||||
table.insert(vals, v)
|
||||
end
|
||||
function lovebird.template(str, params)
|
||||
params = params and ("," .. params) or ""
|
||||
local f = function(x) return string.format(" echo(%q)", x) end
|
||||
str = ("?>"..str.."<?lua"):gsub("%?>(.-)<%?lua", f)
|
||||
str = "local echo, " .. table.concat(keys, ",") .. " = ..." .. str
|
||||
str = "local echo " .. params .. " = ..." .. str
|
||||
local fn = assert(loadstring(str))
|
||||
return function(...)
|
||||
local output = {}
|
||||
local echo = function(str) table.insert(output, str) end
|
||||
assert(loadstring(str))(echo, unpack(vals))
|
||||
fn(echo, ...)
|
||||
return table.concat(map(output, tostring))
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
function lovebird.parseurl(url)
|
||||
@ -501,7 +499,7 @@ function lovebird.onrequest(req, client)
|
||||
xpcall(function()
|
||||
str = "HTTP/1.1 200 OK\r\nContent-Type: text/html\r\n\r\n" ..
|
||||
lovebird.template(lovebird.pages[page],
|
||||
{ lovebird = lovebird, req = req })
|
||||
"lovebird, req")(lovebird, req)
|
||||
end, lovebird.onerror)
|
||||
return str
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user