Removing @todo/@bugs because we are now on bugs.maemo.org
authorEd Page <eopage@byu.net>
Mon, 25 Jan 2010 18:49:00 +0000 (12:49 -0600)
committerEd Page <eopage@byu.net>
Mon, 25 Jan 2010 18:49:00 +0000 (12:49 -0600)
src/channel/contact_list.py
src/channel/debug_prompt.py
src/channel/text.py
src/connection.py
src/connection_manager.py
src/gvoice/state_machine.py

index 651b0c3..a224ab6 100644 (file)
@@ -17,8 +17,6 @@ class AllContactsListChannel(
        ):
        """
        The group of contacts for whom you receive presence
-
-       @bug On Maemo 5 this is being ignored
        """
 
        def __init__(self, connection, manager, props, listHandle):
@@ -103,10 +101,8 @@ _LIST_TO_FACTORY = {
        # This doesn't make sense to support
        'hide': None,
        # A group of contacts who may send you messages
-       # @todo Allow-List would be cool to support
        'allow': None,
        # A group of contacts who may not send you messages
-       # @todo Deny-List would be cool to support
        'deny': None,
        # On protocols where the user's contacts are stored, this contact list
        # contains all stored contacts regardless of subscription status.
index bd9a613..b6f5ee8 100644 (file)
@@ -15,10 +15,6 @@ _moduleLogger = logging.getLogger("channel.text")
 
 
 class DebugPromptChannel(tp.ChannelTypeText, cmd.Cmd):
-       """
-       @todo Look into implementing ChannelInterfaceMessages for rich text formatting
-       @todo Add a command that initiates a file transfer, giving the log file to the user
-       """
 
        def __init__(self, connection, manager, props, contactHandle):
                self.__manager = manager
index bac40b9..68695db 100644 (file)
@@ -13,11 +13,6 @@ _moduleLogger = logging.getLogger("channel.text")
 
 
 class TextChannel(tp.ChannelTypeText):
-       """
-       @todo Look into implementing ChannelInterfaceMessages for rich text formatting
-
-       @bug Stopped working on Maemo 4.1
-       """
 
        def __init__(self, connection, manager, props, contactHandle):
                self.__manager = manager
index 68fce88..c58aa28 100644 (file)
@@ -1,13 +1,3 @@
-
-"""
-@todo Add params for different state machines update times
-@todo Get a callback for missed calls to force an update of the voicemail state machine
-@todo Get a callback on an incoming call and if its from GV, auto-pickup
-@bug Reporting of network errors on login (I think its because two CM's are attempting to be created for some odd reason)
-@bug Integration with system contacts, like what Sofia does, isn't working
-"""
-
-
 import os
 import weakref
 import logging
@@ -307,8 +297,6 @@ class TheOneRingConnection(
        def _on_connection_change(self, connection, event):
                """
                @note Maemo specific
-
-               @todo Make this delayed to handle background switching of networks.  First I need to verify I receive connected
                """
                if not self.session.is_logged_in():
                        _moduleLogger.info("Received connection change event when not logged in")
index 90252b6..dae1f40 100644 (file)
@@ -13,7 +13,6 @@ _moduleLogger = logging.getLogger("connection_manager")
 
 
 class TheOneRingConnectionManager(tp.ConnectionManager):
-       # @bug Crashing Maemo 4.1's RTComm on occasion
 
        def __init__(self, shutdown_func=None):
                tp.ConnectionManager.__init__(self, constants._telepathy_implementation_name_)
index e55e0ee..0c805a1 100644 (file)
@@ -1,10 +1,5 @@
 #!/usr/bin/env python
 
-"""
-@todo Look into supporting more states for more granular selection of updates
-@todo Could make another state that depends on whether there are open channels or not
-"""
-
 import logging
 
 import gobject