Home | Trees | Index | Help |
---|
Package svnmailer :: Package browser :: Class Manager |
|
object
--+ |Singleton
--+ | Manager
Method Summary | |
---|---|
Registers a new browser generator | |
_base.BaseGenerator |
Returns an initialized repository browser generator |
Loads the class indexed by name | |
tuple |
Parses the given option value into type and base url |
Inherited from Singleton | |
Non-initialization | |
Returns the one and only instance (Static method) | |
Inherited from object | |
x.__delattr__('name') <==> del x.name... | |
x.__getattribute__('name') <==> x.name... | |
x.__hash__() <==> hash(x)... | |
helper for pickle... | |
helper for pickle... | |
x.__repr__() <==> repr(x)... | |
x.__setattr__('name', value) <==> x.name = value... | |
x.__str__() <==> str(x)... |
Class Variable Summary | |
---|---|
dict | _GENERATORS : The mapping of all available generator names
to their actual implementation classes. |
module | _util : The svnmailer.util module |
Inherited from Singleton | |
NoneType |
__singletoninstance__ = None |
Instance Method Details |
---|
registerGenerator(self, name, classname)Registers a new browser generator
|
select(self, config)Returns an initialized repository browser generator
|
_load(self, name)Loads the class indexed byname
|
_parseBrowserBase(self, base_config)Parses the given option value into type and base url
|
Class Variable Details |
---|
_GENERATORSThe mapping of all available generator names to their actual implementation classes. It should be modified by theregisterGenerator method only. The classes are expressed
by their fully qualified names in string form (like
'svnmailer.browser.generic.Generator'). The dict
is initially filled with the builtin browser generator classes.
({'name': 'classname', ...})
|
_utilThesvnmailer.util module
|
Home | Trees | Index | Help |
---|
Generated by Epydoc 2.0 on Sun Sep 25 20:49:10 2005 | http://epydoc.sf.net |