summaryrefslogtreecommitdiff
path: root/url.c
Commit message (Collapse)AuthorAgeFilesLines
* url_decode: URL scheme ends with a colon and does not require a slashJunio C Hamano2010-06-241-4/+4
| | | | Signed-off-by: Junio C Hamano <gitster@pobox.com>
* url.c: "<scheme>://" part at the beginning should not be URL decodedJunio C Hamano2010-06-231-10/+18
| | | | | | | | | | | | When using the protocol git+ssh:// for example we do not want to decode the '+' as a space. The url decoding must take place only for the server name and parameters. This fixes a regression introduced in 9d2e942. Initial-fix-by: Pascal Obry <pascal.obry@gmail.com> Acked-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
* make url-related functions reusableJeff King2010-05-241-0/+118
The is_url function and url percent-decoding functions were static, but are generally useful. Let's make them available to other parts of the code. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>