HsSVN-0.4.3.1: Partial Subversion (SVN) binding for HaskellContentsIndex
Subversion.FileSystem.PathChange
Description
This module only defines two types; PathChange and ChangeKind.
Synopsis
data PathChange = PathChange {
pcChangeKind :: ChangeKind
pcTextMod :: Bool
pcPropMod :: Bool
}
data ChangeKind
= ModifiedPath
| AddedPath
| DeletedPath
| ReplacedPath
Documentation
data PathChange

PathChange describes a change in a revision occured on a path.

Note that svn_fs_path_change_t.node_rev_id is currently unavailable in this binding. Add one if you really need it.

Constructors
PathChange
pcChangeKind :: ChangeKindKind of change.
pcTextMod :: BoolWas the content modified in any way?
pcPropMod :: BoolWere there any properties modified?
show/hide Instances
data ChangeKind
The kind of change that occured on the path.
Constructors
ModifiedPathOnly modified.
AddedPathThe path was added in the txn.
DeletedPathThe path was removed in the txn.
ReplacedPathThe path was removed and re-added in the txn.
show/hide Instances
Produced by Haddock version 2.6.0