| HsSVN-0.4.3.1: Partial Subversion (SVN) binding for Haskell | Contents | Index |
|
Subversion.FileSystem.PathChange |
|
|
Description |
This module only defines two types; PathChange and ChangeKind.
|
|
Synopsis |
|
|
|
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 :: ChangeKind | Kind of change.
| pcTextMod :: Bool | Was the content modified in any way?
| pcPropMod :: Bool | Were there any properties modified?
|
|
| Instances | |
|
|
data ChangeKind |
The kind of change that occured on the path.
| Constructors | ModifiedPath | Only modified.
| AddedPath | The path was added in the txn.
| DeletedPath | The path was removed in the txn.
| ReplacedPath | The path was removed and re-added in the txn.
|
| Instances | |
|
|
Produced by Haddock version 2.6.0 |