From: Ed Page Date: Mon, 25 Jan 2010 18:49:00 +0000 (-0600) Subject: Removing @todo/@bugs because we are now on bugs.maemo.org X-Git-Url: http://git.maemo.org/git/?p=theonering;a=commitdiff_plain;h=4f7f7378a6bcd5ed4bc332659a133fcd67dfda22 Removing @todo/@bugs because we are now on bugs.maemo.org --- diff --git a/src/channel/contact_list.py b/src/channel/contact_list.py index 651b0c3..a224ab6 100644 --- a/src/channel/contact_list.py +++ b/src/channel/contact_list.py @@ -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. diff --git a/src/channel/debug_prompt.py b/src/channel/debug_prompt.py index bd9a613..b6f5ee8 100644 --- a/src/channel/debug_prompt.py +++ b/src/channel/debug_prompt.py @@ -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 diff --git a/src/channel/text.py b/src/channel/text.py index bac40b9..68695db 100644 --- a/src/channel/text.py +++ b/src/channel/text.py @@ -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 diff --git a/src/connection.py b/src/connection.py index 68fce88..c58aa28 100644 --- a/src/connection.py +++ b/src/connection.py @@ -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") diff --git a/src/connection_manager.py b/src/connection_manager.py index 90252b6..dae1f40 100644 --- a/src/connection_manager.py +++ b/src/connection_manager.py @@ -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_) diff --git a/src/gvoice/state_machine.py b/src/gvoice/state_machine.py index e55e0ee..0c805a1 100644 --- a/src/gvoice/state_machine.py +++ b/src/gvoice/state_machine.py @@ -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