Minor cleanups
authorepage <eopage@byu.net>
Fri, 6 Feb 2009 02:00:13 +0000 (02:00 +0000)
committerepage <eopage@byu.net>
Fri, 6 Feb 2009 02:00:13 +0000 (02:00 +0000)
git-svn-id: file:///svnroot/gc-dialer/trunk@178 c39d3808-3fe2-4d86-a59f-b7f623ee9f21

TODO
src/evo_backend.py
src/gc_dialer.py

diff --git a/TODO b/TODO
index 711515c..a4978b6 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,3 +1,9 @@
+BUGS
+=================
+
+Themes aren't always working correctly, see http://www.internettablettalk.com/forums/showpost.php?p=262014&postcount=29
+
+
 Ideas
 =================
 User Contacts
index dc42de2..4487b66 100644 (file)
@@ -51,7 +51,7 @@ class EvolutionAddressBook(object):
                                global evolution
                                evolution = None
                self._book = evolution.ebook.open_addressbook(self._bookId)
-       
+
        @classmethod
        def is_supported(cls):
                return evolution is not None
@@ -69,7 +69,7 @@ class EvolutionAddressBook(object):
 
                for bookId in evolution.ebook.list_addressbooks():
                        yield self, bookId[1], bookId[0]
-       
+
        def open_addressbook(self, bookId):
                self._bookId = bookId
                self._book = evolution.ebook.open_addressbook(self._bookId)
@@ -92,7 +92,7 @@ class EvolutionAddressBook(object):
 
                for contact in self._book.get_all_contacts():
                        yield str(contact.get_uid()), contact.props.full_name
-       
+
        def get_contact_details(self, contactId):
                """
                @returns Iterable of (Phone Type, Phone Number)
index 917ec3e..8dc1223 100755 (executable)
@@ -601,6 +601,8 @@ class Dialpad(object):
 
        def attempt_login(self, numOfAttempts = 1):
                """
+               @todo Handle user notification better like attempting to login and failed login
+
                @note Not meant to be called directly, but run as a seperate thread.
                """
                assert 0 < numOfAttempts, "That was pointless having 0 or less login attempts"