Hi,
Currently, in the DAV impl. of svn_ra_merge_info(), we use two
different values for the include-parents parameter. 'S:include_parents'
while writing out a DAV request and 'include-parents' while reading it on
the server side.
Pl. find attached a patch to fix this.
[[[
Follow uniform SVN namespace for the 'include-parents' parameter.
(In branches/merge-tracking)
* subversion/libsvn_ra_dav/mergeinfo.c
(svn_ra_dav__get_merge_info): Modify to use the 'S:include-parents'
namespace as used by dav_svn__get_merge_info_report().
]]]
Regards,
Madan.
Index: subversion/libsvn_ra_dav/mergeinfo.c
===================================================================
--- subversion/libsvn_ra_dav/mergeinfo.c (revision 20729)
+++ subversion/libsvn_ra_dav/mergeinfo.c (working copy)
@@ -187,7 +187,7 @@
{
svn_stringbuf_appendcstr(request_body,
apr_psprintf(pool,
- "<S:include_parents/>"));
+ "<S:include-parents/>"));
}
if (paths)
Follow uniform SVN namespace for the 'include-parents' parameter.
(In branches/merge-tracking)
* subversion/libsvn_ra_dav/mergeinfo.c
(svn_ra_dav__get_merge_info): Modify to use the 'S:include-parents'
namespace as used by dav_svn__get_merge_info_report().
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Wed Jul 19 00:42:38 2006