Typedefs | |
typedef svn_error_t *(* | svn_changelist_receiver_t )(void *baton, const char *path, const char *changelist, apr_pool_t *pool) |
The callback type used by svn_client_get_changelist. | |
Functions | |
svn_error_t * | svn_client_add_to_changelist (const apr_array_header_t *paths, const char *changelist, svn_depth_t depth, const apr_array_header_t *changelists, svn_client_ctx_t *ctx, apr_pool_t *pool) |
Add each path in paths (recursing to depth as necessary) to changelist. | |
svn_error_t * | svn_client_remove_from_changelists (const apr_array_header_t *paths, svn_depth_t depth, const apr_array_header_t *changelists, svn_client_ctx_t *ctx, apr_pool_t *pool) |
Remove each path in paths (recursing to depth as necessary) from changelists to which they are currently assigned. | |
svn_error_t * | svn_client_get_changelists (const char *path, const apr_array_header_t *changelists, svn_depth_t depth, svn_changelist_receiver_t callback_func, void *callback_baton, svn_client_ctx_t *ctx, apr_pool_t *pool) |
Beginning at path, crawl to depth to discover every path in or under path which belongs to one of the changelists in changelists (an array of const char * changelist names). |
|
The callback type used by svn_client_get_changelist. On each invocation, path is a newly discovered member of the changelist, and baton is a private function closure.
Definition at line 3986 of file svn_client.h. |
|
Add each path in paths (recursing to depth as necessary) to changelist. If a path is already a member of another changelist, then remove it from the other changelist and add it to changelist. (For now, a path cannot belong to two changelists at once.)
changelists is an array of
|
|
Beginning at path, crawl to depth to discover every path in or under path which belongs to one of the changelists in changelists (an array of
If changelists is
If ctx->cancel_func is not
|
|
Remove each path in paths (recursing to depth as necessary) from changelists to which they are currently assigned.
changelists is an array of
|