You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by hw...@apache.org on 2012/05/04 16:13:22 UTC

svn commit: r1333974 - /subversion/branches/ev2-export/subversion/libsvn_client/commit.c

Author: hwright
Date: Fri May  4 14:13:21 2012
New Revision: 1333974

URL: http://svn.apache.org/viewvc?rev=1333974&view=rev
Log:
On the ev2-export branch:
Update commit to use the improved temporary ra Ev2 fetcher.

* subversion/libsvn_client/commit.c
  (get_ra_editor): Use svn_ra__get_commit_ev2().

Modified:
    subversion/branches/ev2-export/subversion/libsvn_client/commit.c

Modified: subversion/branches/ev2-export/subversion/libsvn_client/commit.c
URL: http://svn.apache.org/viewvc/subversion/branches/ev2-export/subversion/libsvn_client/commit.c?rev=1333974&r1=1333973&r2=1333974&view=diff
==============================================================================
--- subversion/branches/ev2-export/subversion/libsvn_client/commit.c (original)
+++ subversion/branches/ev2-export/subversion/libsvn_client/commit.c Fri May  4 14:13:21 2012
@@ -663,14 +663,17 @@ get_ra_editor(svn_editor_t **editor,
     }
 
   /* Fetch RA commit editor. */
-  SVN_ERR(svn_ra__register_editor_shim_callbacks(ra_session,
-                        svn_client__get_shim_callbacks(ctx->wc_ctx,
-                                                       relpath_map, pool)));
-  SVN_ERR(svn_ra_get_commit_editor4(ra_session, editor,
-                                    commit_revprops, commit_callback,
-                                    commit_baton, lock_tokens, keep_locks,
-                                    ctx->cancel_func, ctx->cancel_baton,
-                                    pool, pool));
+  SVN_ERR(svn_ra__get_commit_ev2(editor, ra_session,
+                                 commit_revprops, commit_callback,
+                                 commit_baton, lock_tokens, keep_locks,
+                                 svn_client__ra_provide_base,
+                                 svn_client__ra_provide_props,
+                                 svn_client__ra_get_copysrc_kind,
+                                 svn_client__ra_make_cb_baton(ctx->wc_ctx,
+                                                              relpath_map,
+                                                              pool),
+                                 ctx->cancel_func, ctx->cancel_baton,
+                                 pool, pool));
 
   return SVN_NO_ERROR;
 }



Re: svn commit: r1333974 - /subversion/branches/ev2-export/subversion/libsvn_client/commit.c

Posted by Greg Stein <gs...@gmail.com>.
On May 4, 2012 10:13 AM, <hw...@apache.org> wrote:
>
> Author: hwright
> Date: Fri May  4 14:13:21 2012
> New Revision: 1333974
>
> URL: http://svn.apache.org/viewvc?rev=1333974&view=rev
> Log:
> On the ev2-export branch:
> Update commit to use the improved temporary ra Ev2 fetcher.

Temporary? Not intended to be...

Cheers,
-g