HTTP: fix - added URL decoding for credentials from the URL.

git-svn-id: https://svn.code.sf.net/p/synalist/code/trunk@134 7c85be65-684b-0410-a082-b2ed4fbef004
This commit is contained in:
geby 2011-01-20 10:27:37 +00:00
parent aec40ee3cc
commit d628e558ef

View File

@ -1,9 +1,9 @@
{==============================================================================| {==============================================================================|
| Project : Ararat Synapse | 003.012.005 | | Project : Ararat Synapse | 003.012.006 |
|==============================================================================| |==============================================================================|
| Content: HTTP client | | Content: HTTP client |
|==============================================================================| |==============================================================================|
| Copyright (c)1999-2010, Lukas Gebauer | | Copyright (c)1999-2011, Lukas Gebauer |
| All rights reserved. | | All rights reserved. |
| | | |
| Redistribution and use in source and binary forms, with or without | | Redistribution and use in source and binary forms, with or without |
@ -33,7 +33,7 @@
| DAMAGE. | | DAMAGE. |
|==============================================================================| |==============================================================================|
| The Initial Developer of the Original Code is Lukas Gebauer (Czech Republic).| | The Initial Developer of the Original Code is Lukas Gebauer (Czech Republic).|
| Portions created by Lukas Gebauer are Copyright (c) 1999-2010. | | Portions created by Lukas Gebauer are Copyright (c) 1999-2011. |
| All Rights Reserved. | | All Rights Reserved. |
|==============================================================================| |==============================================================================|
| Contributor(s): | | Contributor(s): |
@ -397,6 +397,8 @@ begin
FUploadSize := 0; FUploadSize := 0;
URI := ParseURL(URL, Prot, User, Pass, Host, Port, Path, Para); URI := ParseURL(URL, Prot, User, Pass, Host, Port, Path, Para);
User := DecodeURL(user);
Pass := DecodeURL(pass);
if User = '' then if User = '' then
begin begin
User := FUsername; User := FUsername;