Adding some comments
authorepage <eopage@byu.net>
Sat, 9 Aug 2008 18:02:40 +0000 (18:02 +0000)
committerepage <eopage@byu.net>
Sat, 9 Aug 2008 18:02:40 +0000 (18:02 +0000)
git-svn-id: file:///svnroot/gc-dialer/trunk@131 c39d3808-3fe2-4d86-a59f-b7f623ee9f21

src/evo_backend.py
src/gc_dialer.py

index 6af0012..cd6a50c 100644 (file)
@@ -30,6 +30,9 @@ except ImportError:
 
 
 class EvolutionAddressBook(object):
+       """
+       @note Combined the factory and the addressbook for "simplicity" and "cutting down" the number of allocations/deallocations
+       """
 
        def __init__(self, bookId = None):
                if not self.is_supported():
index 6f5673e..d29c860 100755 (executable)
@@ -150,6 +150,9 @@ def make_idler(func):
 
 
 class DummyAddressBook(object):
+       """
+       Minimal example of both an addressbook factory and an addressbook
+       """
 
        def get_addressbooks(self):
                """
@@ -178,6 +181,9 @@ class DummyAddressBook(object):
 
 
 class SettingsDialog(object):
+       """
+       @todo Remove this.  Currently its only used for addressbooks and I want to make that a combo box on the contacts tab
+       """
 
        def __init__(self, widgetTree, gcDialer):
                self._gcDialer = gcDialer