summaryrefslogtreecommitdiffstats
path: root/src/civetweb/test/ajax/echo.lp
blob: 7276f8137fd1f705e9bb2229b8e23593ee4cf6ab (plain)
1
2
3
4
5
6
7
8
9
<?
-- This *.lp file simply runs the *.lua file in the same directory.
n = string.match(mg.request_info.uri, "^(.*)%.lp$")
if mg.system:find("Windows") then
    n = string.gsub(n, [[/]], [[\]])
end
n = mg.document_root .. n .. ".lua"
dofile(n)
?>