From: epage Date: Thu, 21 May 2009 02:42:47 +0000 (+0000) Subject: Clearing out completed @todo and @bugs X-Git-Url: http://git.maemo.org/git/?p=gc-dialer;a=commitdiff_plain;h=ef0ce320dac5547892e7cb63698bde95a7063f01 Clearing out completed @todo and @bugs git-svn-id: file:///svnroot/gc-dialer/trunk@300 c39d3808-3fe2-4d86-a59f-b7f623ee9f21 --- diff --git a/src/gc_views.py b/src/gc_views.py index 3aa23cc..d0c46e7 100644 --- a/src/gc_views.py +++ b/src/gc_views.py @@ -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 diff --git a/src/gv_backend.py b/src/gv_backend.py index 6a07045..d5ba0ac 100644 --- a/src/gv_backend.py +++ b/src/gv_backend.py @@ -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": "%s", } 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"]