Author: svn-role
Date: Thu Aug 8 04:00:51 2013
New Revision: 1511571
URL: http://svn.apache.org/r1511571
Log:
Merge r1511057 from trunk:
* r1511057
Fix issue #4044: "svn log -v" fails with a 1.2.x server.
Justification:
Regression in 1.8.0 (ra_serf), basic functionality now fails with older
servers which we still need to support.
Votes:
+1: lgo, gstein, philip
Modified:
subversion/branches/1.8.x/ (props changed)
subversion/branches/1.8.x/STATUS
subversion/branches/1.8.x/subversion/libsvn_ra_serf/util.c
Propchange: subversion/branches/1.8.x/
------------------------------------------------------------------------------
Merged /subversion/trunk:r1511057
Modified: subversion/branches/1.8.x/STATUS
URL:
http://svn.apache.org/viewvc/subversion/branches/1.8.x/STATUS?rev=1511571&r1=1511570&r2=1511571&view=diff
==============================================================================
--- subversion/branches/1.8.x/STATUS (original)
+++ subversion/branches/1.8.x/STATUS Thu Aug 8 04:00:51 2013
@@ -245,14 +245,6 @@ Veto-blocked changes:
Approved changes:
=================
- * r1511057
- Fix issue #4044: "svn log -v" fails with a 1.2.x server.
- Justification:
- Regression in 1.8.0 (ra_serf), basic functionality now fails with older
- servers which we still need to support.
- Votes:
- +1: lgo, gstein, philip
-
* r1507044
Fix a bug in the Perl bindings.
Justification: The bug makes scripts using SVN::Client look like
Modified: subversion/branches/1.8.x/subversion/libsvn_ra_serf/util.c
URL:
http://svn.apache.org/viewvc/subversion/branches/1.8.x/subversion/libsvn_ra_serf/util.c?rev=1511571&r1=1511570&r2=1511571&view=diff
==============================================================================
--- subversion/branches/1.8.x/subversion/libsvn_ra_serf/util.c (original)
+++ subversion/branches/1.8.x/subversion/libsvn_ra_serf/util.c Thu Aug 8
04:00:51 2013
@@ -2417,6 +2417,10 @@ svn_ra_serf__error_on_status(serf_status
"server or an intermediate proxy does not accept "
"chunked encoding. Try setting 'http-chunked-requests' "
"to 'auto' or 'no' in your client configuration."));
+ case 501:
+ return svn_error_createf(SVN_ERR_UNSUPPORTED_FEATURE, NULL,
+ _("The requested feature is not supported by "
+ "'%s'"), path);
}
if (sline.code >= 300)