Author: hwright
Date: Wed Jun 13 10:54:22 2012
New Revision: 1349748
URL: http://svn.apache.org/viewvc?rev=1349748&view=rev
Log:
Fix a number of comments which refer to the ernstwhile neon library.
Due to dependencies, this also triggers a complete rebuild, for gstein's
benefit.
* subversion/include/svn_ra.h,
subversion/include/svn_error_codes.h,
subversion/include/svn_auth.h,
subversion/include/private/svn_dav_protocol.h:
Update comment references to either ra_serf, or generic HTTP-speak.
Modified:
subversion/trunk/subversion/include/private/svn_dav_protocol.h
subversion/trunk/subversion/include/svn_auth.h
subversion/trunk/subversion/include/svn_error_codes.h
subversion/trunk/subversion/include/svn_ra.h
Modified: subversion/trunk/subversion/include/private/svn_dav_protocol.h
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/include/private/svn_dav_protocol.h?rev=1349748&r1=1349747&r2=1349748&view=diff
==============================================================================
--- subversion/trunk/subversion/include/private/svn_dav_protocol.h (original)
+++ subversion/trunk/subversion/include/private/svn_dav_protocol.h Wed Jun 13
10:54:22 2012
@@ -1,7 +1,6 @@
/*
* svn_dav_protocol.h: Declarations of the protocol shared by the
- * mod_dav_svn backend for httpd's mod_dav, and its ra_neon and
- * ra_serf RA DAV clients.
+ * mod_dav_svn backend for httpd's mod_dav and its ra_serf RA DAV clients.
*
* ====================================================================
* Licensed to the Apache Software Foundation (ASF) under one
Modified: subversion/trunk/subversion/include/svn_auth.h
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_auth.h?rev=1349748&r1=1349747&r2=1349748&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_auth.h (original)
+++ subversion/trunk/subversion/include/svn_auth.h Wed Jun 13 10:54:22 2012
@@ -416,8 +416,8 @@ typedef svn_error_t *(*svn_auth_username
#define SVN_AUTH_SSL_CNMISMATCH 0x00000004
/** @brief Certificate authority is unknown (i.e. not trusted) */
#define SVN_AUTH_SSL_UNKNOWNCA 0x00000008
-/** @brief Other failure. This can happen if neon has introduced a new
- * failure bit that we do not handle yet. */
+/** @brief Other failure. This can happen if an unknown failure occurs
+ * that we do not handle yet. */
#define SVN_AUTH_SSL_OTHER 0x40000000
/** @} */
Modified: subversion/trunk/subversion/include/svn_error_codes.h
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_error_codes.h?rev=1349748&r1=1349747&r2=1349748&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_error_codes.h (original)
+++ subversion/trunk/subversion/include/svn_error_codes.h Wed Jun 13 10:54:22
2012
@@ -915,7 +915,7 @@ SVN_ERROR_START
"Invalid configuration value")
/** @deprecated To improve consistency between ra layers, this error code
- is replaced in ra_{neon|serf} by SVN_ERR_FS_NOT_FOUND.
+ is replaced in ra_serf by SVN_ERR_FS_NOT_FOUND.
Slated for removal in the next major release. */
SVN_ERRDEF(SVN_ERR_RA_DAV_PATH_NOT_FOUND,
SVN_ERR_RA_DAV_CATEGORY_START + 7,
Modified: subversion/trunk/subversion/include/svn_ra.h
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_ra.h?rev=1349748&r1=1349747&r2=1349748&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_ra.h (original)
+++ subversion/trunk/subversion/include/svn_ra.h Wed Jun 13 10:54:22 2012
@@ -2027,7 +2027,7 @@ svn_ra_print_ra_libraries(svn_stringbuf_
*/
typedef struct svn_ra_plugin_t
{
- /** The proper name of the RA library, (like "ra_neon" or "ra_local") */
+ /** The proper name of the RA library, (like "ra_serf" or "ra_local") */
const char *name;
/** Short doc string printed out by `svn --version` */
@@ -2298,7 +2298,7 @@ typedef svn_error_t *(*svn_ra_init_func_
/* Public RA implementations. */
-/** Initialize libsvn_ra_neon.
+/** Initialize libsvn_ra_serf.
*
* @deprecated Provided for backward compatibility with the 1.1 API. */
SVN_DEPRECATED