Browse Source

fixed the jump to start; bunch of new bugs

master
Julio Biason 15 years ago
parent
commit
d375dac3ae
  1. 24
      issues/issue-713be72c759f03440bcd67127682ebd3702661e7.yaml
  2. 8
      issues/issue-95a69f922a192e8b57715432993a07f0edd92c11.yaml
  3. 22
      issues/issue-de26ded9beb48644ce9c18e6cd531333a723b812.yaml
  4. 20
      issues/issue-f765c17cfc7491492564797ce7612053453eea8c.yaml
  5. 22
      issues/issue-fc295a72e8c2767cc17ac76830e1286430c77d48.yaml
  6. 5
      mitterlib/ui/ui_pygtk.py

24
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 <julio.biason@gmail.com>
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 <julio.biason@gmail.com>
- 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 <julio.biason@gmail.com>
- added reference 1
- ""

8
issues/issue-95a69f922a192e8b57715432993a07f0edd92c11.yaml

@ -7,8 +7,8 @@ type: :bugfix
component: pygtk
release: 1.0.0
reporter: Julio Biason <julio.biason@gmail.com>
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 <julio.biason@gmail.com>
- created
- ""
- - 2009-12-22 11:31:30.148254 Z
- Julio Biason <julio.biason@gmail.com>
- closed with disposition fixed
- ""

22
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 <julio.biason@gmail.com>
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 <julio.biason@gmail.com>
- created
- ""
- - 2009-12-22 12:37:19.984250 Z
- Julio Biason <julio.biason@gmail.com>
- added reference 1
- ""

20
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 <julio.biason@gmail.com>
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 <julio.biason@gmail.com>
- created
- ""

22
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 <julio.biason@gmail.com>
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 <julio.biason@gmail.com>
- created
- ""
- - 2009-12-22 12:34:03.380687 Z
- Julio Biason <julio.biason@gmail.com>
- added reference 1
- ""

5
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

Loading…
Cancel
Save