Trying to fix a bug with the linewrap bugfix
[gc-dialer] / src / backends / null_backend.py
index c07f724..6909c7c 100644 (file)
@@ -25,6 +25,9 @@ class NullDialer(object):
        def __init__(self):
                pass
 
+       def is_quick_login_possible(self):
+               return False
+
        def is_authed(self, force = False):
                return False
 
@@ -34,12 +37,24 @@ class NullDialer(object):
        def logout(self):
                self.clear_caches()
 
-       def dial(self, number):
+       def call(self, number):
                return True
 
+       def cancel(self, outgoingNumber=None):
+               pass
+
        def send_sms(self, number, message):
                raise NotImplementedError("SMS Is Not Supported")
 
+       def search(self, query):
+               return []
+
+       def get_feed(self, feed):
+               return {}
+
+       def download(self, messageId, adir):
+               return ""
+
        def clear_caches(self):
                pass
 
@@ -55,9 +70,6 @@ class NullDialer(object):
                """
                return ""
 
-       def set_sane_callback(self):
-               pass
-
        def get_callback_numbers(self):
                return {}