summaryrefslogtreecommitdiff
path: root/tests/data/test191
Commit message (Collapse)AuthorAgeFilesLines
* Add FTP keywords for a couple of currently keyword-less FTP testsFabian Keil2012-11-191-0/+6
|
* URL-parsing: consider ? a dividerDaniel Stenberg2010-10-191-1/+1
| | | | | | | | | | | | | | | | | | The URL parser got a little stricter as it now considers a ? to be a host name divider so that the slightly sloppier URLs work too. The problem that made me do this change was the reported problem with an URL like: www.example.com?email=name@example.com This form of URL is not really a legal URL (due to the missing slash after the host name) but is widely accepted by all major browsers and libcurl also already accepted it, it was just the '@' letter that triggered the problem now. The side-effect of this change is that now libcurl no longer accepts the ? letter as part of user-name or password when given in the URL, which it used to accept (and is tested in test 191). That letter is however mentioned in RFC3986 to be required to be percent encoded since it is used as a divider. Bug: http://curl.haxx.se/bug/view.cgi?id=3090268
* Convert (most of) the test data files into genuine XML. A handful stillDan Fandrich2007-01-231-0/+2
| | | | | | are not, due mainly to the lack of support for XML character entities (e.g. & => & ). This will make it easier to validate test files using tools like xmllint, as well as edit and view them using XML tools.
* A minor "syntax error" in numerous test files correctedDaniel Stenberg2005-01-251-1/+1
|
* Eric Vergnaud pointed out that libcurl didn't treat ?-letters in the user nameDaniel Stenberg2004-10-141-0/+33
and password fields properly in URLs, like ftp://us?er:pass?word@site.com/. Added test 191 to verify the fix.