mirror of
https://github.com/lunarmodules/luasocket.git
synced 2024-12-24 11:38: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
|
||||
-----------------------------------------------------------------------------
|
||||
function _M.build(parsed)
|
||||
local ppath = _M.parse_path(parsed.path or "")
|
||||
local url = _M.build_path(ppath)
|
||||
--local ppath = _M.parse_path(parsed.path or "")
|
||||
--local url = _M.build_path(ppath)
|
||||
local url = parsed.path or ""
|
||||
if parsed.params then url = url .. ";" .. parsed.params end
|
||||
if parsed.query then url = url .. "?" .. parsed.query end
|
||||
local authority = parsed.authority
|
||||
|
@ -1,4 +1,4 @@
|
||||
AuthName "test-auth"
|
||||
AuthType Basic
|
||||
AuthUserFile /Users/diego/impa/luasocket/test/auth/.htpasswd
|
||||
AuthUserFile /home/diego/impa/luasocket/test/auth/.htpasswd
|
||||
Require valid-user
|
||||
|
Loading…
Reference in New Issue
Block a user