Subversion 1.6.16
|
A structure to represent all the information about a particular log entry. More...
#include <svn_types.h>
Data Fields | |
apr_hash_t * | changed_paths |
A hash containing as keys every path committed in revision; the values are (svn_log_changed_path_t *) stuctures. | |
svn_revnum_t | revision |
The revision of the commit. | |
apr_hash_t * | revprops |
The hash of requested revision properties, which may be NULL if it would contain no revprops. | |
svn_boolean_t | has_children |
Whether or not this message has children. | |
apr_hash_t * | changed_paths2 |
A hash containing as keys every path committed in revision; the values are (svn_log_changed_path2_t *) stuctures. |
A structure to represent all the information about a particular log entry.
svn_log_entry_t
structure in future releases, always use svn_log_entry_create() to allocate the structure.Definition at line 670 of file svn_types.h.
apr_hash_t* svn_log_entry_t::changed_paths |
A hash containing as keys every path committed in revision; the values are (svn_log_changed_path_t
*) stuctures.
The subversion core libraries will always set this field to the same value as changed_paths2 for compatibity reasons.
Definition at line 680 of file svn_types.h.
apr_hash_t* svn_log_entry_t::changed_paths2 |
A hash containing as keys every path committed in revision; the values are (svn_log_changed_path2_t
*) stuctures.
If this value is not NULL
, it MUST have the same value as changed_paths or svn_log_entry_dup() will not create an identical copy.
The subversion core libraries will always set this field to the same value as changed_paths for compatibity with users assuming an older version.
Definition at line 719 of file svn_types.h.
Whether or not this message has children.
When a log operation requests additional merge information, extra log entries may be returned as a result of this entry. The new entries, are considered children of the original entry, and will follow it. When the HAS_CHILDREN flag is set, the receiver should increment its stack depth, and wait until an entry is provided with SVN_INVALID_REVNUM which indicates the end of the children.
For log operations which do not request additional merge information, the HAS_CHILDREN flag is always FALSE.
For more information see: http://subversion.tigris.org/merge-tracking/design.html#commutative-reporting
Definition at line 705 of file svn_types.h.
The revision of the commit.
Definition at line 683 of file svn_types.h.
apr_hash_t* svn_log_entry_t::revprops |
The hash of requested revision properties, which may be NULL if it would contain no revprops.
Definition at line 687 of file svn_types.h.