You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2012/09/27 13:51:41 UTC

svn commit: r1390955 - in /subversion/branches/10Gb/subversion/include: svn_delta.h svn_fs.h svn_ra_svn.h svn_repos.h

Author: stefan2
Date: Thu Sep 27 11:51:40 2012
New Revision: 1390955

URL: http://svn.apache.org/viewvc?rev=1390955&view=rev
Log:
Stabilization went pretty well for this branch.
Tentatively schedule API changes for 1.8 instead of 1.9.

* subversion/include/svn_delta.h
  (svn_txdelta_send_contents): due for release in 1.8

* subversion/include/svn_fs.h
  (svn_fs_process_contents_func_t,
   svn_fs_try_process_file_contents): ditto

* subversion/include/svn_ra_svn.h
  (svn_ra_svn_cmd_t,
   svn_ra_svn_create_conn3,
   svn_ra_svn_zero_copy_limit,
   svn_ra_svn_write_templated_cmd): ditto
  (svn_ra_svn_write_cmd): deprecate in 1.8

* subversion/include/svn_repos.h
  (svn_repos_begin_report3): due for release in 1.8
  (svn_repos_begin_report2): deprecate in 1.8

Modified:
    subversion/branches/10Gb/subversion/include/svn_delta.h
    subversion/branches/10Gb/subversion/include/svn_fs.h
    subversion/branches/10Gb/subversion/include/svn_ra_svn.h
    subversion/branches/10Gb/subversion/include/svn_repos.h

Modified: subversion/branches/10Gb/subversion/include/svn_delta.h
URL: http://svn.apache.org/viewvc/subversion/branches/10Gb/subversion/include/svn_delta.h?rev=1390955&r1=1390954&r2=1390955&view=diff
==============================================================================
--- subversion/branches/10Gb/subversion/include/svn_delta.h (original)
+++ subversion/branches/10Gb/subversion/include/svn_delta.h Thu Sep 27 11:51:40 2012
@@ -457,7 +457,7 @@ svn_txdelta_send_txstream(svn_txdelta_st
  *
  * All temporary allocation is performed in @a pool.
  *
- * @since New in 1.9.
+ * @since New in 1.8.
  */
 svn_error_t *
 svn_txdelta_send_contents(const unsigned char *contents,

Modified: subversion/branches/10Gb/subversion/include/svn_fs.h
URL: http://svn.apache.org/viewvc/subversion/branches/10Gb/subversion/include/svn_fs.h?rev=1390955&r1=1390954&r2=1390955&view=diff
==============================================================================
--- subversion/branches/10Gb/subversion/include/svn_fs.h (original)
+++ subversion/branches/10Gb/subversion/include/svn_fs.h Thu Sep 27 11:51:40 2012
@@ -1982,7 +1982,7 @@ svn_fs_file_contents(svn_stream_t **cont
  *
  * Allocations must be made in @a pool.
  *
- * @since New in 1.9
+ * @since New in 1.8.
  */
 typedef svn_error_t *
 (*svn_fs_process_contents_func_t)(const unsigned char *contents,
@@ -2004,7 +2004,7 @@ typedef svn_error_t *
  * @note @a processor is expected to be relatively short function with
  * at most O(content size) runtime.
  * 
- * @since New in 1.9
+ * @since New in 1.8.
  */
 svn_error_t *
 svn_fs_try_process_file_contents(svn_boolean_t *success,

Modified: subversion/branches/10Gb/subversion/include/svn_ra_svn.h
URL: http://svn.apache.org/viewvc/subversion/branches/10Gb/subversion/include/svn_ra_svn.h?rev=1390955&r1=1390954&r2=1390955&view=diff
==============================================================================
--- subversion/branches/10Gb/subversion/include/svn_ra_svn.h (original)
+++ subversion/branches/10Gb/subversion/include/svn_ra_svn.h Thu Sep 27 11:51:40 2012
@@ -160,7 +160,7 @@ typedef svn_error_t *(*svn_ra_svn_edit_c
 /**
  * List of all commands supported by the SVN:// protocol.
  *
- * @since New in 1.9.
+ * @since New in 1.8
  */
 typedef enum svn_ra_svn_cmd_t
 {
@@ -238,7 +238,7 @@ svn_ra_svn__set_shim_callbacks(svn_ra_sv
  *
  * Allocate the result in @a pool.
  *
- * @since New in 1.9.
+ * @since New in 1.8
  */
 svn_ra_svn_conn_t *svn_ra_svn_create_conn3(apr_socket_t *sock,
                                            apr_file_t *in_file,
@@ -301,7 +301,7 @@ svn_ra_svn_compression_level(svn_ra_svn_
 
 /** Return the zero-copy data block limit to use for network transmissions
  *
- * @since New in 1.9.
+ * @since New in 1.8.
  */
 apr_size_t
 svn_ra_svn_zero_copy_limit(svn_ra_svn_conn_t *conn);
@@ -536,7 +536,7 @@ svn_ra_svn_handle_commands(svn_ra_svn_co
 /** Write a command over the network, using the same format string notation
  * as svn_ra_svn_write_tuple().
  *
- * @deprecated Provided for backward compatibility with the 1.9 API.
+ * @deprecated Provided for backward compatibility with the 1.7 API.
  * Use svn_ra_svn_write_templated_cmd instead.
  */
 SVN_DEPRECATED
@@ -549,6 +549,8 @@ svn_ra_svn_write_cmd(svn_ra_svn_conn_t *
 /** Write a command of type @a cmd over the network connection @a conn.
  * The parameters to be provided are command-specific.  @a pool will be
  * used for allocations.
+ * 
+ * @since New in 1.8.
  */
 svn_error_t *
 svn_ra_svn_write_templated_cmd(svn_ra_svn_conn_t *conn,

Modified: subversion/branches/10Gb/subversion/include/svn_repos.h
URL: http://svn.apache.org/viewvc/subversion/branches/10Gb/subversion/include/svn_repos.h?rev=1390955&r1=1390954&r2=1390955&view=diff
==============================================================================
--- subversion/branches/10Gb/subversion/include/svn_repos.h (original)
+++ subversion/branches/10Gb/subversion/include/svn_repos.h Thu Sep 27 11:51:40 2012
@@ -881,7 +881,7 @@ svn_repos_hooks_setenv(svn_repos_t *repo
  * than or equal to the depth of the working copy, then the editor
  * operations will affect only paths at or above @a depth.
  *
- * @since New in 1.9.
+ * @since New in 1.8.
  */
 svn_error_t *
 svn_repos_begin_report3(void **report_baton,
@@ -907,7 +907,7 @@ svn_repos_begin_report3(void **report_ba
  *
  * @since New in 1.5.
  * 
- * @deprecated Provided for backward compatibility with the 1.8 API.
+ * @deprecated Provided for backward compatibility with the 1.7 API.
  */
 svn_error_t *
 svn_repos_begin_report2(void **report_baton,