More todo work
authorEd Page <epage@Dulcinea.(none)>
Tue, 14 Apr 2009 02:38:44 +0000 (21:38 -0500)
committerEd Page <epage@Dulcinea.(none)>
Tue, 14 Apr 2009 02:38:44 +0000 (21:38 -0500)
src/gtk_rtmilk.py

index a235205..693cc62 100644 (file)
@@ -87,6 +87,7 @@ class GtkRtMilk(object):
                self._projectsCombo = widgetTree.get_widget("projectsCombo")
                self._onListActivateId = 0
 
+               # @todo Need to figure out how to make the list sortable, especially with weird priority sorting
                self._itemList = gtk.ListStore(
                        gobject.TYPE_STRING, # id
                        gobject.TYPE_BOOLEAN, # is complete
@@ -279,7 +280,7 @@ class GtkRtMilk(object):
                return currentProjectName
 
        def _populate_items(self):
-               # @todo Look using a button for notes and links, and labels for all else
+               # @todo Look into using a button for notes and links, and labels for all else
                currentProject = self._get_project()
                projId = self._manager.lookup_project(currentProject)["id"]
                for taskDetails in self._manager.get_tasks_with_details(projId):
@@ -312,6 +313,7 @@ class GtkRtMilk(object):
 
        def _on_item_select(self, treeView, path, viewColumn):
                # @todo See if there is a way to get a right click / tap'n'hold for more task goodness
+               #       https://garage.maemo.org/plugins/wiki/index.php?TapAndHold&id=40&type=g
                taskId = self._itemList[path[0]][self.ID_IDX]
 
                if viewColumn is self._priorityColumn: