003 File Manager
Current Path:
/usr/src/contrib/subversion/subversion/include/private
usr
/
src
/
contrib
/
subversion
/
subversion
/
include
/
private
/
📁
..
📄
README
(241 B)
📄
ra_svn_sasl.h
(2.63 KB)
📄
ra_svn_wrapped_sasl.h
(3.89 KB)
📄
svn_adler32.h
(1.47 KB)
📄
svn_atomic.h
(4.83 KB)
📄
svn_auth_private.h
(11.32 KB)
📄
svn_branch.h
(22.98 KB)
📄
svn_branch_compat.h
(10.78 KB)
📄
svn_branch_impl.h
(5.67 KB)
📄
svn_branch_nested.h
(7.55 KB)
📄
svn_branch_repos.h
(3.47 KB)
📄
svn_cache.h
(22.67 KB)
📄
svn_cert.h
(2.27 KB)
📄
svn_client_mtcc.h
(7.8 KB)
📄
svn_client_private.h
(22.85 KB)
📄
svn_client_shelf.h
(16.26 KB)
📄
svn_client_shelf2.h
(15.27 KB)
📄
svn_cmdline_private.h
(10.52 KB)
📄
svn_config_private.h
(4.26 KB)
📄
svn_dav_protocol.h
(2.56 KB)
📄
svn_debug.h
(3.35 KB)
📄
svn_delta_private.h
(4.91 KB)
📄
svn_dep_compat.h
(6.64 KB)
📄
svn_diff_private.h
(6 KB)
📄
svn_diff_tree.h
(14.32 KB)
📄
svn_dirent_uri_private.h
(1.85 KB)
📄
svn_doxygen.h
(1.27 KB)
📄
svn_editor.h
(43.09 KB)
📄
svn_element.h
(12.83 KB)
📄
svn_eol_private.h
(3.18 KB)
📄
svn_error_private.h
(1.67 KB)
📄
svn_fs_fs_private.h
(11.08 KB)
📄
svn_fs_private.h
(8.36 KB)
📄
svn_fs_util.h
(11.11 KB)
📄
svn_fspath.h
(5.36 KB)
📄
svn_io_private.h
(6.47 KB)
📄
svn_log.h
(6.96 KB)
📄
svn_magic.h
(2.36 KB)
📄
svn_mergeinfo_private.h
(12.71 KB)
📄
svn_mutex.h
(4.3 KB)
📄
svn_object_pool.h
(4.53 KB)
📄
svn_opt_private.h
(5.73 KB)
📄
svn_packed_data.h
(9.39 KB)
📄
svn_ra_private.h
(12.07 KB)
📄
svn_ra_svn_private.h
(38.63 KB)
📄
svn_repos_private.h
(15.45 KB)
📄
svn_skel.h
(8.46 KB)
📄
svn_sorts_private.h
(7.66 KB)
📄
svn_sqlite.h
(23.22 KB)
📄
svn_string_private.h
(11.05 KB)
📄
svn_subr_private.h
(24.43 KB)
📄
svn_temp_serializer.h
(8.75 KB)
📄
svn_token.h
(3.11 KB)
📄
svn_utf_private.h
(11.18 KB)
📄
svn_wc_private.h
(93.26 KB)
Editing: svn_log.h
/* * svn_log.h: Functions for assembling entries for server-side logs. * See also tools/server-side/svn_server_log_parse.py . * ==================================================================== * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * ==================================================================== */ #ifndef SVN_LOG_H #define SVN_LOG_H #include <apr.h> #include <apr_pools.h> #include <apr_tables.h> #include "svn_types.h" #include "svn_mergeinfo.h" #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ /** * Return a log string for a reparent action. * * @since New in 1.6. */ const char * svn_log__reparent(const char *path, apr_pool_t *pool); /** * Return a log string for a change-rev-prop action. * * @since New in 1.6. */ const char * svn_log__change_rev_prop(svn_revnum_t rev, const char *name, apr_pool_t *pool); /** * Return a log string for a rev-proplist action. * * @since New in 1.6. */ const char * svn_log__rev_proplist(svn_revnum_t rev, apr_pool_t *pool); /** * Return a log string for a rev-prop action. * * @since New in 1.6. */ const char * svn_log__rev_prop(svn_revnum_t rev, const char *name, apr_pool_t *pool); /** * Return a log string for a commit action. * * @since New in 1.6. */ const char * svn_log__commit(svn_revnum_t rev, apr_pool_t *pool); /** * Return a log string for a get-file action. * * @since New in 1.6. */ const char * svn_log__get_file(const char *path, svn_revnum_t rev, svn_boolean_t want_contents, svn_boolean_t want_props, apr_pool_t *pool); /** * Return a log string for a get-dir action. * * @since New in 1.6. */ const char * svn_log__get_dir(const char *path, svn_revnum_t rev, svn_boolean_t want_contents, svn_boolean_t want_props, apr_uint32_t dirent_fields, apr_pool_t *pool); /** * Return a log string for a get-mergeinfo action. * * @since New in 1.6. */ const char * svn_log__get_mergeinfo(const apr_array_header_t *paths, svn_mergeinfo_inheritance_t inherit, svn_boolean_t include_descendants, apr_pool_t *pool); /** * Return a log string for a checkout action. * * @since New in 1.6. */ const char * svn_log__checkout(const char *path, svn_revnum_t rev, svn_depth_t depth, apr_pool_t *pool); /** * Return a log string for an update action. * * @since New in 1.6. */ const char * svn_log__update(const char *path, svn_revnum_t rev, svn_depth_t depth, svn_boolean_t send_copyfrom_args, apr_pool_t *pool); /** * Return a log string for a switch action. * * @since New in 1.6. */ const char * svn_log__switch(const char *path, const char *dst_path, svn_revnum_t revnum, svn_depth_t depth, apr_pool_t *pool); /** * Return a log string for a status action. * * @since New in 1.6. */ const char * svn_log__status(const char *path, svn_revnum_t rev, svn_depth_t depth, apr_pool_t *pool); /** * Return a log string for a diff action. * * @since New in 1.6. */ const char * svn_log__diff(const char *path, svn_revnum_t from_revnum, const char *dst_path, svn_revnum_t revnum, svn_depth_t depth, svn_boolean_t ignore_ancestry, apr_pool_t *pool); /** * Return a log string for a log action. * * @since New in 1.6. */ const char * svn_log__log(const apr_array_header_t *paths, svn_revnum_t start, svn_revnum_t end, int limit, svn_boolean_t discover_changed_paths, svn_boolean_t strict_node_history, svn_boolean_t include_merged_revisions, const apr_array_header_t *revprops, apr_pool_t *pool); /** * Return a log string for a get-locations action. * * @since New in 1.6. */ const char * svn_log__get_locations(const char *path, svn_revnum_t peg_revision, const apr_array_header_t *location_revisions, apr_pool_t *pool); /** * Return a log string for a get-location-segments action. * * @since New in 1.6. */ const char * svn_log__get_location_segments(const char *path, svn_revnum_t peg_revision, svn_revnum_t start, svn_revnum_t end, apr_pool_t *pool); /** * Return a log string for a get-file-revs action. * * @since New in 1.6. */ const char * svn_log__get_file_revs(const char *path, svn_revnum_t start, svn_revnum_t end, svn_boolean_t include_merged_revisions, apr_pool_t *pool); /** * Return a log string for a lock action. * * @since New in 1.6. */ const char * svn_log__lock(apr_hash_t *targets, svn_boolean_t steal, apr_pool_t *pool); /** * Return a log string for an unlock action. * * @since New in 1.6. */ const char * svn_log__unlock(apr_hash_t *targets, svn_boolean_t break_lock, apr_pool_t *pool); /** * Return a log string for a lock action on only one path; this is * just a convenience wrapper around svn_log__lock(). * * @since New in 1.6. */ const char * svn_log__lock_one_path(const char *path, svn_boolean_t steal, apr_pool_t *pool); /** * Return a log string for an unlock action on only one path; this is * just a convenience wrapper around svn_log__unlock(). * * @since New in 1.6. */ const char * svn_log__unlock_one_path(const char *path, svn_boolean_t break_lock, apr_pool_t *pool); /** * Return a log string for a replay action. * * @since New in 1.6. */ const char * svn_log__replay(const char *path, svn_revnum_t rev, apr_pool_t *pool); /** * Return a log string for a get-inherited-props action. * * @since New in 1.8. */ const char * svn_log__get_inherited_props(const char *path, svn_revnum_t rev, apr_pool_t *pool); /** * Return a log string for a list action. * * @since New in 1.10. */ const char * svn_log__list(const char *path, svn_revnum_t revision, apr_array_header_t *patterns, svn_depth_t depth, apr_uint32_t dirent_fields, apr_pool_t *pool); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* SVN_LOG_H */
Upload File
Create Folder