A working copy entry – that is, revision control information about one versioned entity.
More...
|
const char * | name |
| entry's name
|
|
svn_revnum_t | revision |
| base revision
|
|
const char * | url |
| url in repository
|
|
const char * | repos |
| canonical repository URL or NULL if not known
|
|
const char * | uuid |
| repository uuid
|
|
svn_node_kind_t | kind |
| node kind (file, dir, ...)
|
|
svn_wc_schedule_t | schedule |
| scheduling (add, delete, replace ...)
|
|
svn_boolean_t | copied |
| in a copied state (possibly because the entry is a child of a path that is svn_wc_schedule_add or svn_wc_schedule_replace, when the entry itself is svn_wc_schedule_normal). More...
|
|
svn_boolean_t | deleted |
| The directory containing this entry had a versioned child of this name, but this entry represents a different revision or a switched path at which no item exists in the repository. More...
|
|
svn_boolean_t | absent |
| absent – we know an entry of this name exists, but that's all (usually this happens because of authz restrictions)
|
|
svn_boolean_t | incomplete |
| for THIS_DIR entry, implies whole entries file is incomplete
|
|
const char * | copyfrom_url |
| copyfrom location
|
|
svn_revnum_t | copyfrom_rev |
| copyfrom revision
|
|
const char * | conflict_old |
| old version of conflicted file. More...
|
|
const char * | conflict_new |
| new version of conflicted file. More...
|
|
const char * | conflict_wrk |
| working version of conflicted file. More...
|
|
const char * | prejfile |
| property reject file. More...
|
|
apr_time_t | text_time |
| last up-to-date time for text contents (0 means no information available)
|
|
apr_time_t | prop_time |
| last up-to-date time for properties (0 means no information available) More...
|
|
const char * | checksum |
| Hex MD5 checksum for the untranslated text base file, can be NULL for backwards compatibility.
|
|
svn_revnum_t | cmt_rev |
| last revision this was changed
|
|
apr_time_t | cmt_date |
| last date this was changed
|
|
const char * | cmt_author |
| last commit author of this item
|
|
const char * | lock_token |
| lock token or NULL if path not locked in this WC More...
|
|
const char * | lock_owner |
| lock owner, or NULL if not locked in this WC More...
|
|
const char * | lock_comment |
| lock comment or NULL if not locked in this WC or no comment More...
|
|
apr_time_t | lock_creation_date |
| Lock creation date or 0 if not locked in this WC. More...
|
|
svn_boolean_t | has_props |
| Whether this entry has any working properties. More...
|
|
svn_boolean_t | has_prop_mods |
| Whether this entry has property modifications. More...
|
|
const char * | cachable_props |
| A space-separated list of all properties whose presence/absence is cached in this entry. More...
|
|
const char * | present_props |
| Cached property existence for this entry. More...
|
|
const char * | changelist |
| which changelist this item is part of, or NULL if not part of any. More...
|
|
apr_off_t | working_size |
| Size of the file after being translated into local representation, or SVN_WC_ENTRY_WORKING_SIZE_UNKNOWN if unknown. More...
|
|
svn_boolean_t | keep_local |
| Whether a local copy of this entry should be kept in the working copy after a deletion has been committed, Only valid for the this-dir entry when it is scheduled for deletion. More...
|
|
svn_depth_t | depth |
| The depth of this entry. More...
|
|
const char * | tree_conflict_data |
| Serialized data for all of the tree conflicts detected in this_dir. More...
|
|
const char * | file_external_path |
| The entry is a intra-repository file external and this is the repository root relative path to the file specified in the externals definition, otherwise NULL if the entry is not a file external. More...
|
|
svn_opt_revision_t | file_external_peg_rev |
| The entry is a intra-repository file external and this is the peg revision number specified in the externals definition. More...
|
|
svn_opt_revision_t | file_external_rev |
| The entry is an intra-repository file external and this is the operative revision number specified in the externals definition. More...
|
|
A working copy entry – that is, revision control information about one versioned entity.
- Deprecated:
- Provided for backward compatibility with the 1.6 API.
Definition at line 2902 of file svn_wc.h.
The directory containing this entry had a versioned child of this name, but this entry represents a different revision or a switched path at which no item exists in the repository.
This typically arises from committing or updating to a deletion of this entry without committing or updating the parent directory.
The schedule can be 'normal' or 'add'.
Definition at line 2947 of file svn_wc.h.
The entry is a intra-repository file external and this is the peg revision number specified in the externals definition.
This field is only valid when the file_external_path field is non-NULL. The only permissible values are svn_opt_revision_unspecified if the entry is not an external, svn_opt_revision_head if the external revision is unspecified or specified with -r HEAD or svn_opt_revision_number for a specific revision number.
- Since
- New in 1.6.
Definition at line 3111 of file svn_wc.h.
The entry is an intra-repository file external and this is the operative revision number specified in the externals definition.
This field is only valid when the file_external_path field is non-NULL. The only permissible values are svn_opt_revision_unspecified if the entry is not an external, svn_opt_revision_head if the external revision is unspecified or specified with -r HEAD or svn_opt_revision_number for a specific revision number.
- Since
- New in 1.6.
Definition at line 3123 of file svn_wc.h.