Home | Trees | Index | Help |
|
---|
Package CedarBackup2 :: Package extend :: Module subversion :: Class SubversionConfig |
|
object
--+
|
SubversionConfig
Class representing Subversion configuration.
Subversion configuration is used for backing up Subversion repositories.
The following restrictions exist on data in this class:VALID_COLLECT_MODES
.
VALID_COMPRESS_MODES
.
Repository
objects.
repositories
list, validation is accomplished
through the util.ObjectTypeList
list implementation
that overrides common list methods and transparently ensures that each
element is a Repository
.
Note: Lists within this class are "unordered" for equality comparisons.
Method Summary | |
---|---|
Constructor for the SubversionConfig class. | |
Official string representation for class instance. | |
Informal string representation for class instance. | |
Definition of equals operator for this class. | |
Property target used to get the collect mode. | |
Property target used to get the compress mode. | |
Property target used to get the repositories list. | |
Property target used to set the collect mode. | |
Property target used to set the compress mode. | |
Property target used to set the repositorieslist. | |
Inherited from object | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
x.__hash__() <==> hash(x) | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
helper for pickle | |
helper for pickle | |
x.__setattr__('name', value) <==> x.name = value |
Property Summary | |
---|---|
collectMode : Default collect mode. | |
compressMode : Default compress mode. | |
repositories : List of Subversion repositories to back up. |
Method Details |
---|
__init__(self,
collectMode=None,
compressMode=None,
repositories=None)
Constructor for the |
__repr__(self)
Official string representation for class instance.
|
__str__(self)
Informal string representation for class instance.
|
__cmp__(self,
other)
Definition of equals operator for this class. Lists within this
class are "unordered" for equality comparisons.
|
_getCollectMode(self)Property target used to get the collect mode. |
_getCompressMode(self)Property target used to get the compress mode. |
_getRepositories(self)Property target used to get the repositories list. |
_setCollectMode(self, value)Property target used to set the collect mode. If notNone , the mode must be one of the values in VALID_COLLECT_MODES .
|
_setCompressMode(self, value)Property target used to set the compress mode. If notNone , the mode must be one of the values in VALID_COMPRESS_MODES .
|
_setRepositories(self, value)Property target used to set the repositorieslist. Either the value must beNone or each element must be a
Repository .
|
Property Details |
---|
collectModeDefault collect mode.
|
compressModeDefault compress mode.
|
repositoriesList of Subversion repositories to back up.
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Thu Dec 22 20:45:13 2005 | http://epydoc.sf.net |