|
svn_node_kind_t | kind |
| The kind of node as recorded in the working copy.
|
|
svn_depth_t | depth |
| The depth of the node as recorded in the working copy (svn_depth_unknown for files or when no depth is set)
|
|
svn_filesize_t | filesize |
| The actual size of the working file on disk, or SVN_INVALID_FILESIZE if unknown (or if the item isn't a file at all). More...
|
|
svn_boolean_t | versioned |
| If the path is under version control, versioned is TRUE, otherwise FALSE. More...
|
|
svn_boolean_t | conflicted |
| Set to TRUE if the item is the victim of a conflict. More...
|
|
enum svn_wc_status_kind | node_status |
| The status of the node itself. More...
|
|
enum svn_wc_status_kind | text_status |
| The status of the entry's text. More...
|
|
enum svn_wc_status_kind | prop_status |
| The status of the entry's properties. More...
|
|
svn_boolean_t | copied |
| a file or directory can be 'copied' if it's scheduled for addition-with-history (or part of a subtree that is scheduled as such.).
|
|
svn_revnum_t | revision |
| Base revision. More...
|
|
svn_revnum_t | changed_rev |
| Last revision this was changed.
|
|
apr_time_t | changed_date |
| Date of last commit. More...
|
|
const char * | changed_author |
| Last commit author of this item.
|
|
const char * | repos_root_url |
| The URL of the repository.
|
|
const char * | repos_uuid |
| The UUID of the repository.
|
|
const char * | repos_relpath |
| The in-repository path relative to the repository root. More...
|
|
svn_boolean_t | switched |
| a file or directory can be 'switched' if the switch command has been used. More...
|
|
svn_boolean_t | locked |
| This directory has a working copy lock.
|
|
const svn_lock_t * | lock |
| The repository file lock. More...
|
|
const char * | changelist |
| Which changelist this item is part of, or NULL if not part of any. More...
|
|
svn_node_kind_t | ood_kind |
| Set to the node kind of the youngest commit, or svn_node_none if not out of date. More...
|
|
enum svn_wc_status_kind | repos_node_status |
| The status of the node, based on the text status if the node has no restructuring changes.
|
|
enum svn_wc_status_kind | repos_text_status |
| The entry's text status in the repository. More...
|
|
enum svn_wc_status_kind | repos_prop_status |
| The entry's property status in the repository. More...
|
|
const svn_lock_t * | repos_lock |
| The entry's lock in the repository, if any. More...
|
|
svn_revnum_t | ood_changed_rev |
| Set to the youngest committed revision, or SVN_INVALID_REVNUM if not out of date. More...
|
|
apr_time_t | ood_changed_date |
| Set to the most recent commit date, or 0 if not out of date. More...
|
|
const char * | ood_changed_author |
| Set to the user name of the youngest commit, or NULL if not out of date or non-existent. More...
|
|
const char * | moved_from_abspath |
| Set to the local absolute path that this node was moved from, if this file or directory has been moved here locally and is the root of that move. More...
|
|
const char * | moved_to_abspath |
| Set to the local absolute path that this node was moved to, if this file or directory has been moved away locally and corresponds to the root of the destination side of the move. More...
|
|
svn_boolean_t | file_external |
| TRUE iff the item is a file brought in by an svn:externals definition. More...
|
|
svn_node_kind_t | actual_kind |
| The actual kind of the node in the working copy. More...
|
|
Structure for holding the "status" of a working copy item.
- Note
- Fields may be added to the end of this structure in future versions. Therefore, to preserve binary compatibility, users should not directly allocate structures of this type.
- Since
- New in 1.7.
Definition at line 3686 of file svn_wc.h.
const char* svn_wc_status3_t::moved_to_abspath |
Set to the local absolute path that this node was moved to, if this file or directory has been moved away locally and corresponds to the root of the destination side of the move.
Otherwise set to NULL.
Note: Saying just "root" here could be misleading. For example: svn mv A AA; svn mv AA/B BB; creates a situation where A/B is moved-to BB, but one could argue that the move source's root actually was AA/B. Note that, as far as the working copy is concerned, above case is exactly identical to: svn mv A/B BB; svn mv A AA; In both situations, moved_to_abspath would be set for nodes A (moved to AA) and A/B (moved to BB), only.
This will be NULL for moved-away nodes that were just part of a subtree that was moved along (and are not themselves a root of a different move operation).
- Since
- New in 1.8.
Definition at line 3832 of file svn_wc.h.