Improve the developer API documentation
Improve the code documentation (still much more to do) and also add some more meat to the structure of the developer documentation. Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de> Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:

committed by
Nicolas Sebrecht

parent
e9a7afda6d
commit
6add201436
@ -105,11 +105,24 @@ def AccountHashGenerator(customconfig):
|
||||
|
||||
|
||||
class Account(CustomConfig.ConfigHelperMixin):
|
||||
"""Represents an account (ie. 2 repositories) to sync
|
||||
|
||||
Most of the time you will actually want to use the derived
|
||||
:class:`accounts.SyncableAccount` which contains all functions used
|
||||
for syncing an account."""
|
||||
|
||||
def __init__(self, config, name):
|
||||
"""
|
||||
:param config: Representing the offlineimap configuration file.
|
||||
:type config: :class:`offlineimap.CustomConfig.CustomConfigParser`
|
||||
|
||||
:param name: A string denoting the name of the Account
|
||||
as configured"""
|
||||
self.config = config
|
||||
self.name = name
|
||||
self.metadatadir = config.getmetadatadir()
|
||||
self.localeval = config.getlocaleval()
|
||||
#Contains the current :mod:`offlineimap.ui`, and can be used for logging etc.
|
||||
self.ui = getglobalui()
|
||||
self.refreshperiod = self.getconffloat('autorefresh', 0.0)
|
||||
self.quicknum = 0
|
||||
@ -171,9 +184,11 @@ class Account(CustomConfig.ConfigHelperMixin):
|
||||
|
||||
|
||||
class SyncableAccount(Account):
|
||||
"""A syncable IMAP account.
|
||||
"""A syncable email account connecting 2 repositories
|
||||
|
||||
Derives from class:`Account`."""
|
||||
Derives from :class:`accounts.Account` but contains the additional
|
||||
functions :meth:`syncrunner`, :meth:`sync`, :meth:`syncfolders`,
|
||||
used for syncing."""
|
||||
|
||||
def syncrunner(self, siglistener):
|
||||
self.ui.registerthread(self.name)
|
||||
|
@ -41,9 +41,10 @@ lockfd = None
|
||||
class OfflineImap:
|
||||
"""The main class that encapsulates the high level use of OfflineImap.
|
||||
|
||||
To invoke OfflineImap you would call it with:
|
||||
oi = OfflineImap()
|
||||
oi.run()
|
||||
To invoke OfflineImap you would call it with::
|
||||
|
||||
oi = OfflineImap()
|
||||
oi.run()
|
||||
"""
|
||||
def lock(self, config, ui):
|
||||
global lockfd, hasfcntl
|
||||
|
@ -31,9 +31,11 @@ debugtypes = {'imap': 'IMAP protocol debugging',
|
||||
|
||||
globalui = None
|
||||
def setglobalui(newui):
|
||||
"""Set the global ui object to be used for logging"""
|
||||
global globalui
|
||||
globalui = newui
|
||||
def getglobalui():
|
||||
"""Return the current ui object"""
|
||||
global globalui
|
||||
return globalui
|
||||
|
||||
|
Reference in New Issue
Block a user