diff --git a/issues/issue-713be72c759f03440bcd67127682ebd3702661e7.yaml b/issues/issue-713be72c759f03440bcd67127682ebd3702661e7.yaml new file mode 100644 index 0000000..0872f00 --- /dev/null +++ b/issues/issue-713be72c759f03440bcd67127682ebd3702661e7.yaml @@ -0,0 +1,24 @@ +--- !ditz.rubyforge.org,2008-03-06/issue +title: make NetworkData a dictionary +desc: Allow NetworkData to be accessed as a dictionary. +type: :feature +component: network +release: 1.0.0 +reporter: Julio Biason +status: :unstarted +disposition: +creation_time: 2009-12-22 12:30:17.804340 Z +references: +- network-3 +id: 713be72c759f03440bcd67127682ebd3702661e7 +log_events: +- - 2009-12-22 12:30:53.772236 Z + - Julio Biason + - created + - |- + This may help with the problem with the prefix for replies (since people can + use the %{var}. +- - 2009-12-22 12:32:16.476249 Z + - Julio Biason + - added reference 1 + - "" diff --git a/issues/issue-95a69f922a192e8b57715432993a07f0edd92c11.yaml b/issues/issue-95a69f922a192e8b57715432993a07f0edd92c11.yaml index a4bd5ef..79ca6e7 100644 --- a/issues/issue-95a69f922a192e8b57715432993a07f0edd92c11.yaml +++ b/issues/issue-95a69f922a192e8b57715432993a07f0edd92c11.yaml @@ -7,8 +7,8 @@ type: :bugfix component: pygtk release: 1.0.0 reporter: Julio Biason -status: :unstarted -disposition: +status: :closed +disposition: :fixed creation_time: 2009-12-21 10:41:32.855458 Z references: [] @@ -18,3 +18,7 @@ log_events: - Julio Biason - created - "" +- - 2009-12-22 11:31:30.148254 Z + - Julio Biason + - closed with disposition fixed + - "" diff --git a/issues/issue-de26ded9beb48644ce9c18e6cd531333a723b812.yaml b/issues/issue-de26ded9beb48644ce9c18e6cd531333a723b812.yaml new file mode 100644 index 0000000..b93702a --- /dev/null +++ b/issues/issue-de26ded9beb48644ce9c18e6cd531333a723b812.yaml @@ -0,0 +1,22 @@ +--- !ditz.rubyforge.org,2008-03-06/issue +title: message url +desc: return the direct url for a message. +type: :feature +component: network +release: 1.0.0 +reporter: Julio Biason +status: :unstarted +disposition: +creation_time: 2009-12-22 12:36:09.292341 Z +references: +- pygtk-12 +id: de26ded9beb48644ce9c18e6cd531333a723b812 +log_events: +- - 2009-12-22 12:36:09.880242 Z + - Julio Biason + - created + - "" +- - 2009-12-22 12:37:19.984250 Z + - Julio Biason + - added reference 1 + - "" diff --git a/issues/issue-f765c17cfc7491492564797ce7612053453eea8c.yaml b/issues/issue-f765c17cfc7491492564797ce7612053453eea8c.yaml new file mode 100644 index 0000000..b92e14f --- /dev/null +++ b/issues/issue-f765c17cfc7491492564797ce7612053453eea8c.yaml @@ -0,0 +1,20 @@ +--- !ditz.rubyforge.org,2008-03-06/issue +title: need prefix for replies +desc: |- + when people reply, some networks add a message as prefix (as do twitter with + @username). we need something to make networks return that. +type: :feature +component: network +release: 1.0.0 +reporter: Julio Biason +status: :unstarted +disposition: +creation_time: 2009-12-22 12:31:41.160379 Z +references: [] + +id: f765c17cfc7491492564797ce7612053453eea8c +log_events: +- - 2009-12-22 12:31:41.768238 Z + - Julio Biason + - created + - "" diff --git a/issues/issue-fc295a72e8c2767cc17ac76830e1286430c77d48.yaml b/issues/issue-fc295a72e8c2767cc17ac76830e1286430c77d48.yaml new file mode 100644 index 0000000..71b07a0 --- /dev/null +++ b/issues/issue-fc295a72e8c2767cc17ac76830e1286430c77d48.yaml @@ -0,0 +1,22 @@ +--- !ditz.rubyforge.org,2008-03-06/issue +title: ask network for prefixes on replies +desc: when user starts a reply, ask the network for the prefix for the reply. +type: :feature +component: pygtk +release: 1.0.0 +reporter: Julio Biason +status: :unstarted +disposition: +creation_time: 2009-12-22 12:33:43.272350 Z +references: +- network-2 +id: fc295a72e8c2767cc17ac76830e1286430c77d48 +log_events: +- - 2009-12-22 12:33:43.864262 Z + - Julio Biason + - created + - "" +- - 2009-12-22 12:34:03.380687 Z + - Julio Biason + - added reference 1 + - "" diff --git a/mitterlib/ui/ui_pygtk.py b/mitterlib/ui/ui_pygtk.py index 5556ef6..119e330 100644 --- a/mitterlib/ui/ui_pygtk.py +++ b/mitterlib/ui/ui_pygtk.py @@ -1058,11 +1058,6 @@ class Interface(object): message.read = False store.prepend([message]) store.sort_column_changed() - if len(results) > 0: - # scroll to the first cell, to "show" that there are new items. - iter = self._grid.get_model().get_iter_first() - path = self._grid.get_model().get_path(iter) - self._grid.scroll_to_cell(path) self._grid.queue_draw() # once our update went fine, we can queue the next one. This avoids