Class representing Subversion repository directory.
A repository directory is a directory that contains one or more
Subversion repositories.
The following restrictions exist on data in this class:
The repository type value is kept around just for reference. It
doesn't affect the behavior of the backup.
Relative exclusions are allowed here. However, there is no configured
ignore file, because repository dir backups are not recursive.
|
__init__(self,
repositoryType=None,
directoryPath=None,
collectMode=None,
compressMode=None,
relativeExcludePaths=None,
excludePatterns=None)
Constructor for the RepositoryDir class. |
source code
|
|
|
|
|
|
|
|
|
|
|
_getRepositoryType(self)
Property target used to get the repository type. |
source code
|
|
|
|
|
_getDirectoryPath(self)
Property target used to get the repository path. |
source code
|
|
|
|
|
_getCollectMode(self)
Property target used to get the collect mode. |
source code
|
|
|
|
|
_getCompressMode(self)
Property target used to get the compress mode. |
source code
|
|
|
|
|
_getRelativeExcludePaths(self)
Property target used to get the relative exclude paths list. |
source code
|
|
|
_setExcludePatterns(self,
value)
Property target used to set the exclude patterns list. |
source code
|
|
|
_getExcludePatterns(self)
Property target used to get the exclude patterns list. |
source code
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__
|