Clearing out completed @todo and @bugs
authorepage <eopage@byu.net>
Thu, 21 May 2009 02:42:47 +0000 (02:42 +0000)
committerepage <eopage@byu.net>
Thu, 21 May 2009 02:42:47 +0000 (02:42 +0000)
git-svn-id: file:///svnroot/gc-dialer/trunk@300 c39d3808-3fe2-4d86-a59f-b7f623ee9f21

src/gc_views.py
src/gv_backend.py

index 3aa23cc..d0c46e7 100644 (file)
@@ -17,11 +17,6 @@ Lesser General Public License for more details.
 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
-
-@todo Look into a messages view
-       @li https://www.google.com/voice/inbox/recent/voicemail/
-       @li https://www.google.com/voice/inbox/recent/sms/
-       Would need to either use both json and html or just html
 """
 
 from __future__ import with_statement
index 6a07045..d5ba0ac 100644 (file)
@@ -314,7 +314,6 @@ class GVDialer(object):
 
        def get_recent(self):
                """
-               @todo Sort this stuff
                @returns Iterable of (personsName, phoneNumber, date, action)
                """
                sortedRecent = [
@@ -553,7 +552,7 @@ class GVDialer(object):
                        "high": "<b>%s</b>",
                }
                for voicemailData in parsedVoicemail:
-                       exactTime = voicemailData["time"] # @todo Parse This
+                       exactTime = voicemailData["time"]
                        header = "%s %s" % (voicemailData["prettyNumber"], voicemailData["location"])
                        message = " ".join((
                                messagePartFormat[quality] % part
@@ -601,7 +600,7 @@ class GVDialer(object):
 
        def _decorate_sms(self, parsedSms):
                for messageData in parsedSms:
-                       exactTime = messageData["time"] # @todo Parse This
+                       exactTime = messageData["time"]
                        header = "%s" % (messageData["prettyNumber"])
                        number = messageData["number"]
                        relativeTime = messageData["relTime"]