]> git.ipfire.org Git - thirdparty/git.git/commit - http-push.c
http-push: Normalise directory names when pushing to some WebDAV servers
authorTay Ray Chuan <rctay89@gmail.com>
Thu, 25 Nov 2010 08:21:07 +0000 (16:21 +0800)
committerJunio C Hamano <gitster@pobox.com>
Fri, 26 Nov 2010 22:50:45 +0000 (14:50 -0800)
commit0fdadc501ee42c530946731718dfdd710f4005d3
tree698ee83bf813f6765c9e57452cab53b0263c7a02
parentcf688cc27329c478eb9ec9be56144198e4a2025a
http-push: Normalise directory names when pushing to some WebDAV servers

Fix a bug when pushing to WebDAV servers which do not use a trailing
slash for collection names. The previous implementation fails to see
that the requested resource "refs/" is the same resource as "refs"
and loads every reference twice (once for refs/ and once for refs).

This implementation normalises every collection name by appending a
trailing slash if necessary.

This can be tested with old versions of Apache (such as the WebDAV
server of GMX, Apache 2.0.63).

Based-on-patch-by: Gabriel Corona <gabriel.corona@enst-bretagne.fr>
Signed-off-by: Tay Ray Chuan <rctay89@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
http-push.c