webmcp
view framework/env/request/set_absolute_baseurl.lua @ 498:e360b1933c78
Improve efficiency of table.insert in case of Lua 5.3 (do not use compatibility wrapper)
author | jbe |
---|---|
date | Sun Jul 23 03:43:49 2017 +0200 (2017-07-23) |
parents | 56cb5ed5e692 |
children |
line source
1 --[[--
2 request.set_absolute_baseurl(
3 url -- Base URL of the application
4 )
6 Calling this function is neccessary for every configuration, because an absolute URL is needed for HTTP redirects. If the URL of the application is volatile, and if you don't bother violating the HTTP standard, it is possible to skip calling this function in your configuration.
8 --]]--
10 function request.set_absolute_baseurl(url)
11 request.configure(function()
12 if string.find(url, "/$") then
13 request._absolute_baseurl = url
14 else
15 request._absolute_baseurl = url .. "/"
16 end
17 end)
18 end