mirror of
https://github.com/lunarmodules/luasocket.git
synced 2024-11-16 02:08:21 +01:00
Preserve path when parsing urls.
This commit is contained in:
parent
1b4debffee
commit
47e644031f
@ -183,8 +183,9 @@ end
|
|||||||
-- a stringing with the corresponding URL
|
-- a stringing with the corresponding URL
|
||||||
-----------------------------------------------------------------------------
|
-----------------------------------------------------------------------------
|
||||||
function _M.build(parsed)
|
function _M.build(parsed)
|
||||||
local ppath = _M.parse_path(parsed.path or "")
|
--local ppath = _M.parse_path(parsed.path or "")
|
||||||
local url = _M.build_path(ppath)
|
--local url = _M.build_path(ppath)
|
||||||
|
local url = parsed.path or ""
|
||||||
if parsed.params then url = url .. ";" .. parsed.params end
|
if parsed.params then url = url .. ";" .. parsed.params end
|
||||||
if parsed.query then url = url .. "?" .. parsed.query end
|
if parsed.query then url = url .. "?" .. parsed.query end
|
||||||
local authority = parsed.authority
|
local authority = parsed.authority
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
AuthName "test-auth"
|
AuthName "test-auth"
|
||||||
AuthType Basic
|
AuthType Basic
|
||||||
AuthUserFile /Users/diego/impa/luasocket/test/auth/.htpasswd
|
AuthUserFile /home/diego/impa/luasocket/test/auth/.htpasswd
|
||||||
Require valid-user
|
Require valid-user
|
||||||
|
Loading…
Reference in New Issue
Block a user