After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 475351 - crash in Deskbar: 'NoneType' object has no attribute 'startswith' in history module
crash in Deskbar: 'NoneType' object has no attribute 'startswith' in history ...
Status: RESOLVED FIXED
Product: deskbar-applet
Classification: Deprecated
Component: general
2.20.x
Other All
: Urgent critical
: ---
Assigned To: Deskbar Applet Maintainer(s)
Deskbar Applet Maintainer(s)
: 478963 482569 482745 484539 484542 485020 486968 488155 488705 488909 490190 490608 490907 490910 491008 491023 491180 491231 491596 491864 493065 493199 493516 493924 494069 494930 495118 495238 495422 495731 495878 496086 496192 496366 496477 496532 497091 497797 498795 498893 499370 500048 500125 500135 500215 500253 500518 501075 501136 501170 501275 501401 501528 501582 501636 502478 502611 502624 502751 502829 503060 503329 503401 503692 503958 504446 504605 504731 504796 504914 505874 506291 506465 506592 507659 508097 508199 508440 508774 508852 508984 509002 509642 509790 510045 511674 512176 513457 513989 514285 514647 514667 515188 515391 515925 516147 516463 517196 517733 518076 519688 520008 520354 520696 521304 521701 521777 521944 523227 524239 524430 524667 524688 524754 525044 525639 525928 527248 527608 527816 527899 528934 529066 529555 529597 529644 529901 530260 531828 531964 539296 539946 546611 551351 551556 551813 553478 557614 558388 561985 568963 572534 574559 574643 (view as bug list)
Depends on:
Blocks:
 
 
Reported: 2007-09-10 05:29 UTC by Jay Aranguren
Modified: 2009-03-09 15:25 UTC
See Also:
GNOME target: ---
GNOME version: 2.19/2.20


Attachments
Throw exception when None value is added to history (674 bytes, patch)
2007-10-28 12:24 UTC, Sebastian Pölsterl
none Details | Review

Description Jay Aranguren 2007-09-10 05:29:51 UTC
What were you doing when the application crashed?
search for word 'ploy'


Distribution: Ubuntu 7.10 (gutsy)
Gnome Release: 2.19.92 2007-09-04 (Ubuntu)
BugBuddy Version: 2.18.1

System: Linux 2.6.22-11-generic #1 SMP Fri Sep 7 05:07:05 GMT 2007 i686
X Vendor: The X.Org Foundation
X Vendor Release: 70000000
Selinux: No
Accessibility: Disabled
GTK+ Theme: Human
Icon Theme: Human

Memory status: size: 0 vsize: 0 resident: 0 share: 0 rss: 0 rss_rlim: 0
CPU usage: start_time: 0 rtime: 0 utime: 0 stime: 0 cutime:0 cstime: 0 timeout: 0 it_real_value: 0 frequency: 0



----------- .xsession-errors (474 sec old) ---------------------
CheckGmail uses Gtk2::Sexy for clickable URLs in mail messages
Please download and install from CPAN (http://search.cpan.org) if you want to use this feature ...
** Message: failed to load session from /home/baranguren/.nautilus/saved-session-40YFYT
  PID TTY          TIME CMD
/bin/sh: /usr/bin/esd: not found
QSettings::sync: filename is null/empty
QSettings::sync: filename is null/empty
QSettings::sync: filename is null/empty
QSettings::sync: filename is null/empty
/bin/sh: /usr/bin/esd: not found
cairo context error: NULL pointer
cairo context error: NULL pointer
Warning:          Couldn't change directory to "/share/X11/xkb"
                  Root directory (-R) option ignored
--------------------------------------------------
Traceback (most recent call last):
  • File "/usr/lib/python2.5/site-packages/deskbar/gtkexcepthook.py", line 67 in run
    run_old(*args, **kwargs)
  • File "threading.py", line 440 in run
    self.__target(*self.__args, **self.__kwargs)
  • File "/usr/lib/python2.5/site-packages/deskbar/core/ThreadPool.py", line 67 in _worker
    function(*args, **kwargs)
  • File "/usr/lib/deskbar-applet/modules-2.20-compatible/history.py", line 52 in query
    if text.startswith(query):
AttributeError: 'NoneType' object has no attribute 'startswith'

Comment 1 Diego Escalante Urrelo (not reading bugmail) 2007-10-03 07:01:28 UTC
*** Bug 478963 has been marked as a duplicate of this bug. ***
Comment 2 Diego Escalante Urrelo (not reading bugmail) 2007-10-03 07:01:38 UTC
*** Bug 482569 has been marked as a duplicate of this bug. ***
Comment 3 Diego Escalante Urrelo (not reading bugmail) 2007-10-03 07:01:47 UTC
*** Bug 482745 has been marked as a duplicate of this bug. ***
Comment 4 Sebastian Pölsterl 2007-10-08 11:12:25 UTC
*** Bug 484539 has been marked as a duplicate of this bug. ***
Comment 5 Sebastian Pölsterl 2007-10-08 11:12:34 UTC
*** Bug 484542 has been marked as a duplicate of this bug. ***
Comment 6 hcfinucane 2007-10-09 05:47:56 UTC
This has happened to me, but I really have no idea how to reproduce it. Perhaps checking for None before doing string manipulation would help?

Simple patch:
52c52
<             if text.startswith(query):
---
>             if text and text.startswith(query):

This shouldn't have any negative effects because if you skip the if block, you are simply not finding any matches. But because I haven't figured out how to reproduce this bug, I can't test it.
Comment 7 Susana 2007-10-09 19:25:17 UTC
*** Bug 485020 has been marked as a duplicate of this bug. ***
Comment 8 Christoph Wolk 2007-10-15 23:07:18 UTC
*** Bug 486968 has been marked as a duplicate of this bug. ***
Comment 9 Christoph Wolk 2007-10-19 10:39:29 UTC
*** Bug 488155 has been marked as a duplicate of this bug. ***
Comment 10 Christoph Wolk 2007-10-22 10:37:11 UTC
*** Bug 488909 has been marked as a duplicate of this bug. ***
Comment 11 Christoph Wolk 2007-10-25 20:35:27 UTC
*** Bug 490190 has been marked as a duplicate of this bug. ***
Comment 12 Sebastian Pölsterl 2007-10-26 17:39:15 UTC
*** Bug 488705 has been marked as a duplicate of this bug. ***
Comment 13 Christoph Wolk 2007-10-28 04:30:09 UTC
*** Bug 490907 has been marked as a duplicate of this bug. ***
Comment 14 Christoph Wolk 2007-10-28 04:30:29 UTC
*** Bug 490910 has been marked as a duplicate of this bug. ***
Comment 15 Sebastian Pölsterl 2007-10-28 11:19:38 UTC
*** Bug 490608 has been marked as a duplicate of this bug. ***
Comment 16 Sebastian Pölsterl 2007-10-28 11:26:24 UTC
*** Bug 491008 has been marked as a duplicate of this bug. ***
Comment 17 Sebastian Pölsterl 2007-10-28 11:27:07 UTC
*** Bug 491023 has been marked as a duplicate of this bug. ***
Comment 18 Sebastian Pölsterl 2007-10-28 12:24:59 UTC
Created attachment 98018 [details] [review]
Throw exception when None value is added to history

It seems that somehow None is stored as text in history. This patch throws in exception when the text or action that is None is added to history.
Could you please apply this patch, run deskbar from the command line with "/usr/lib/deskbar-applet/deskbar-applet -w" and report the output here, if the exception occurs.
Comment 19 Christoph Wolk 2007-10-28 21:54:54 UTC
*** Bug 491180 has been marked as a duplicate of this bug. ***
Comment 20 Christoph Wolk 2007-10-29 01:20:09 UTC
*** Bug 491231 has been marked as a duplicate of this bug. ***
Comment 21 Christoph Wolk 2007-10-30 09:46:38 UTC
*** Bug 491596 has been marked as a duplicate of this bug. ***
Comment 22 Christoph Wolk 2007-10-31 01:08:51 UTC
*** Bug 491864 has been marked as a duplicate of this bug. ***
Comment 23 Sebastian Pölsterl 2007-11-04 10:49:54 UTC
*** Bug 493065 has been marked as a duplicate of this bug. ***
Comment 24 Sebastian Pölsterl 2007-11-04 10:52:32 UTC
*** Bug 493199 has been marked as a duplicate of this bug. ***
Comment 25 palfrey 2007-11-05 17:46:52 UTC
*** Bug 493516 has been marked as a duplicate of this bug. ***
Comment 26 palfrey 2007-11-08 16:37:10 UTC
*** Bug 494930 has been marked as a duplicate of this bug. ***
Comment 27 Sebastian Pölsterl 2007-11-08 19:01:06 UTC
*** Bug 493924 has been marked as a duplicate of this bug. ***
Comment 28 Sebastian Pölsterl 2007-11-08 19:06:08 UTC
*** Bug 494069 has been marked as a duplicate of this bug. ***
Comment 29 Sebastian Pölsterl 2007-11-09 11:29:22 UTC
*** Bug 495118 has been marked as a duplicate of this bug. ***
Comment 30 Sebastian Pölsterl 2007-11-09 11:34:24 UTC
*** Bug 495238 has been marked as a duplicate of this bug. ***
Comment 31 Sebastian Pölsterl 2007-11-10 11:27:35 UTC
*** Bug 495422 has been marked as a duplicate of this bug. ***
Comment 32 Sebastian Pölsterl 2007-11-11 10:36:26 UTC
*** Bug 495731 has been marked as a duplicate of this bug. ***
Comment 33 Sebastian Pölsterl 2007-11-12 10:44:14 UTC
*** Bug 495878 has been marked as a duplicate of this bug. ***
Comment 34 Sebastian Pölsterl 2007-11-12 10:48:48 UTC
*** Bug 496086 has been marked as a duplicate of this bug. ***
Comment 35 Christoph Wolk 2007-11-13 00:03:31 UTC
*** Bug 496192 has been marked as a duplicate of this bug. ***
Comment 36 Sebastian Pölsterl 2007-11-14 14:42:55 UTC
*** Bug 496366 has been marked as a duplicate of this bug. ***
Comment 37 Sebastian Pölsterl 2007-11-14 14:43:17 UTC
*** Bug 496477 has been marked as a duplicate of this bug. ***
Comment 38 Sebastian Pölsterl 2007-11-14 14:43:38 UTC
*** Bug 496532 has been marked as a duplicate of this bug. ***
Comment 39 palfrey 2007-11-16 13:06:25 UTC
*** Bug 497091 has been marked as a duplicate of this bug. ***
Comment 40 Sebastian Pölsterl 2007-11-18 17:27:32 UTC
*** Bug 497797 has been marked as a duplicate of this bug. ***
Comment 41 Sebastian Pölsterl 2007-11-22 14:04:02 UTC
*** Bug 498795 has been marked as a duplicate of this bug. ***
Comment 42 Sebastian Pölsterl 2007-11-22 14:07:43 UTC
*** Bug 498893 has been marked as a duplicate of this bug. ***
Comment 43 Sebastian Pölsterl 2007-11-25 18:22:49 UTC
I couldn't find the cause of this problem. But it's more or less fixed in svn and will be part of 2.20.2. It now just aborts when None appears and prints an error message.
Comment 44 Sebastian Pölsterl 2007-11-25 19:11:22 UTC
*** Bug 499370 has been marked as a duplicate of this bug. ***
Comment 45 Sebastian Pölsterl 2007-11-28 17:54:46 UTC
*** Bug 500048 has been marked as a duplicate of this bug. ***
Comment 46 Sebastian Pölsterl 2007-11-28 17:56:44 UTC
*** Bug 500125 has been marked as a duplicate of this bug. ***
Comment 47 Sebastian Pölsterl 2007-11-28 17:57:40 UTC
*** Bug 500135 has been marked as a duplicate of this bug. ***
Comment 48 Sebastian Pölsterl 2007-11-28 17:59:49 UTC
*** Bug 500215 has been marked as a duplicate of this bug. ***
Comment 49 Sebastian Pölsterl 2007-11-28 18:00:30 UTC
*** Bug 500253 has been marked as a duplicate of this bug. ***
Comment 50 Sebastian Pölsterl 2007-11-29 21:35:06 UTC
*** Bug 500518 has been marked as a duplicate of this bug. ***
Comment 51 Sebastian Pölsterl 2007-12-02 22:25:51 UTC
*** Bug 501075 has been marked as a duplicate of this bug. ***
Comment 52 Sebastian Pölsterl 2007-12-03 09:28:06 UTC
*** Bug 501136 has been marked as a duplicate of this bug. ***
Comment 53 Sebastian Pölsterl 2007-12-03 09:28:19 UTC
*** Bug 501170 has been marked as a duplicate of this bug. ***
Comment 54 palfrey 2007-12-03 16:10:35 UTC
*** Bug 501275 has been marked as a duplicate of this bug. ***
Comment 55 palfrey 2007-12-04 16:38:09 UTC
*** Bug 501401 has been marked as a duplicate of this bug. ***
Comment 56 palfrey 2007-12-04 16:48:39 UTC
*** Bug 501528 has been marked as a duplicate of this bug. ***
Comment 57 Sebastian Pölsterl 2007-12-06 09:21:00 UTC
*** Bug 501582 has been marked as a duplicate of this bug. ***
Comment 58 Sebastian Pölsterl 2007-12-06 09:21:14 UTC
*** Bug 501636 has been marked as a duplicate of this bug. ***
Comment 59 palfrey 2007-12-10 15:49:48 UTC
*** Bug 502829 has been marked as a duplicate of this bug. ***
Comment 60 palfrey 2007-12-10 15:50:00 UTC
*** Bug 502751 has been marked as a duplicate of this bug. ***
Comment 61 Cosimo Cecchi 2007-12-13 13:15:50 UTC
*** Bug 503401 has been marked as a duplicate of this bug. ***
Comment 62 Cosimo Cecchi 2007-12-13 13:20:29 UTC
*** Bug 503329 has been marked as a duplicate of this bug. ***
Comment 63 Cosimo Cecchi 2007-12-13 13:28:09 UTC
*** Bug 503060 has been marked as a duplicate of this bug. ***
Comment 64 Cosimo Cecchi 2007-12-13 13:39:16 UTC
*** Bug 502624 has been marked as a duplicate of this bug. ***
Comment 65 Cosimo Cecchi 2007-12-13 13:40:14 UTC
*** Bug 502611 has been marked as a duplicate of this bug. ***
Comment 66 Cosimo Cecchi 2007-12-13 13:42:41 UTC
*** Bug 502478 has been marked as a duplicate of this bug. ***
Comment 67 Sebastian Pölsterl 2007-12-16 19:39:21 UTC
*** Bug 503692 has been marked as a duplicate of this bug. ***
Comment 68 Sebastian Pölsterl 2007-12-17 10:28:21 UTC
*** Bug 503958 has been marked as a duplicate of this bug. ***
Comment 69 Sebastian Pölsterl 2007-12-20 23:27:47 UTC
*** Bug 504446 has been marked as a duplicate of this bug. ***
Comment 70 Sebastian Pölsterl 2007-12-20 23:30:39 UTC
*** Bug 504605 has been marked as a duplicate of this bug. ***
Comment 71 Sebastian Pölsterl 2007-12-20 23:33:16 UTC
*** Bug 504731 has been marked as a duplicate of this bug. ***
Comment 72 Sebastian Pölsterl 2007-12-25 11:51:24 UTC
*** Bug 504796 has been marked as a duplicate of this bug. ***
Comment 73 Sebastian Pölsterl 2007-12-25 11:54:16 UTC
*** Bug 504914 has been marked as a duplicate of this bug. ***
Comment 74 Sebastian Pölsterl 2007-12-29 11:56:13 UTC
*** Bug 505874 has been marked as a duplicate of this bug. ***
Comment 75 Sebastian Pölsterl 2008-01-02 11:14:31 UTC
*** Bug 506465 has been marked as a duplicate of this bug. ***
Comment 76 Sebastian Pölsterl 2008-01-02 11:22:51 UTC
*** Bug 506592 has been marked as a duplicate of this bug. ***
Comment 77 Sebastian Pölsterl 2008-01-02 11:30:46 UTC
*** Bug 506291 has been marked as a duplicate of this bug. ***
Comment 78 djchainz 2008-01-09 21:42:32 UTC
I have taken on the edit suggested by hcfinucane@ucdavis.edu in comment #6, and am now testing this.  As the deskbar reloads a few times a day and may crash once a week like this, I hope results will be seen soon.
Comment 79 djchainz 2008-01-10 10:54:41 UTC
That didn't work, but I am now trying:

if text:
	if text.startswith(query):


instead, which I think will.
Comment 80 palfrey 2008-01-10 18:26:43 UTC
*** Bug 508440 has been marked as a duplicate of this bug. ***
Comment 81 Sebastian Pölsterl 2008-01-11 22:00:00 UTC
*** Bug 508097 has been marked as a duplicate of this bug. ***
Comment 82 Sebastian Pölsterl 2008-01-11 22:02:39 UTC
*** Bug 508199 has been marked as a duplicate of this bug. ***
Comment 83 Sebastian Pölsterl 2008-01-11 22:11:15 UTC
*** Bug 508774 has been marked as a duplicate of this bug. ***
Comment 84 Sebastian Pölsterl 2008-01-11 22:12:55 UTC
*** Bug 508852 has been marked as a duplicate of this bug. ***
Comment 85 Sebastian Pölsterl 2008-01-11 22:16:12 UTC
*** Bug 507659 has been marked as a duplicate of this bug. ***
Comment 86 Sebastian Pölsterl 2008-01-13 11:32:53 UTC
*** Bug 508984 has been marked as a duplicate of this bug. ***
Comment 87 Sebastian Pölsterl 2008-01-13 11:36:16 UTC
*** Bug 509002 has been marked as a duplicate of this bug. ***
Comment 88 Sebastian Pölsterl 2008-01-19 14:40:55 UTC
*** Bug 509642 has been marked as a duplicate of this bug. ***
Comment 89 Sebastian Pölsterl 2008-01-19 14:41:29 UTC
*** Bug 509790 has been marked as a duplicate of this bug. ***
Comment 90 Sebastian Pölsterl 2008-01-19 14:42:23 UTC
*** Bug 510045 has been marked as a duplicate of this bug. ***
Comment 91 Sebastian Pölsterl 2008-01-25 18:22:19 UTC
*** Bug 511674 has been marked as a duplicate of this bug. ***
Comment 92 Sebastian Pölsterl 2008-01-28 20:06:59 UTC
*** Bug 512176 has been marked as a duplicate of this bug. ***
Comment 93 Sebastian Pölsterl 2008-01-31 16:07:48 UTC
*** Bug 513457 has been marked as a duplicate of this bug. ***
Comment 94 Gianluca Borello 2008-02-05 09:44:21 UTC
*** Bug 514285 has been marked as a duplicate of this bug. ***
Comment 95 Gianluca Borello 2008-02-05 09:44:25 UTC
*** Bug 513989 has been marked as a duplicate of this bug. ***
Comment 96 Gianluca Borello 2008-02-06 00:32:34 UTC
*** Bug 514647 has been marked as a duplicate of this bug. ***
Comment 97 Sebastian Pölsterl 2008-02-07 16:20:10 UTC
*** Bug 514667 has been marked as a duplicate of this bug. ***
Comment 98 Sebastian Pölsterl 2008-02-09 11:59:17 UTC
*** Bug 515188 has been marked as a duplicate of this bug. ***
Comment 99 Sebastian Pölsterl 2008-02-09 12:00:52 UTC
*** Bug 515391 has been marked as a duplicate of this bug. ***
Comment 100 Gianluca Borello 2008-02-13 16:28:11 UTC
*** Bug 515925 has been marked as a duplicate of this bug. ***
Comment 101 Gianluca Borello 2008-02-13 16:29:09 UTC
*** Bug 516147 has been marked as a duplicate of this bug. ***
Comment 102 Gianluca Borello 2008-02-15 10:31:09 UTC
*** Bug 516463 has been marked as a duplicate of this bug. ***
Comment 103 Sebastian Pölsterl 2008-02-22 10:41:53 UTC
*** Bug 517196 has been marked as a duplicate of this bug. ***
Comment 104 Sebastian Pölsterl 2008-02-22 10:49:04 UTC
*** Bug 517733 has been marked as a duplicate of this bug. ***
Comment 105 Gianluca Borello 2008-02-22 19:34:40 UTC
*** Bug 518076 has been marked as a duplicate of this bug. ***
Comment 106 Gianluca Borello 2008-03-01 09:28:33 UTC
*** Bug 519688 has been marked as a duplicate of this bug. ***
Comment 107 Sebastian Pölsterl 2008-03-03 11:21:25 UTC
*** Bug 520008 has been marked as a duplicate of this bug. ***
Comment 108 Sebastian Pölsterl 2008-03-04 22:17:54 UTC
*** Bug 520354 has been marked as a duplicate of this bug. ***
Comment 109 Gianluca Borello 2008-03-06 22:35:26 UTC
*** Bug 520696 has been marked as a duplicate of this bug. ***
Comment 110 Gianluca Borello 2008-03-09 09:18:57 UTC
*** Bug 521304 has been marked as a duplicate of this bug. ***
Comment 111 Sebastian Pölsterl 2008-03-11 12:30:35 UTC
*** Bug 521701 has been marked as a duplicate of this bug. ***
Comment 112 Gianluca Borello 2008-03-12 13:06:02 UTC
*** Bug 521944 has been marked as a duplicate of this bug. ***
Comment 113 Gianluca Borello 2008-03-12 13:06:11 UTC
*** Bug 521777 has been marked as a duplicate of this bug. ***
Comment 114 Sebastian Pölsterl 2008-03-20 09:50:45 UTC
*** Bug 523227 has been marked as a duplicate of this bug. ***
Comment 115 Gianluca Borello 2008-04-04 07:00:47 UTC
*** Bug 525928 has been marked as a duplicate of this bug. ***
Comment 116 Gianluca Borello 2008-04-04 07:03:03 UTC
*** Bug 525639 has been marked as a duplicate of this bug. ***
Comment 117 Gianluca Borello 2008-04-04 07:03:03 UTC
*** Bug 525044 has been marked as a duplicate of this bug. ***
Comment 118 Gianluca Borello 2008-04-04 07:04:01 UTC
*** Bug 524239 has been marked as a duplicate of this bug. ***
Comment 119 Gianluca Borello 2008-04-04 07:04:20 UTC
*** Bug 524430 has been marked as a duplicate of this bug. ***
Comment 120 Gianluca Borello 2008-04-04 07:04:39 UTC
*** Bug 524667 has been marked as a duplicate of this bug. ***
Comment 121 Gianluca Borello 2008-04-04 07:05:08 UTC
*** Bug 524688 has been marked as a duplicate of this bug. ***
Comment 122 Gianluca Borello 2008-04-04 07:05:24 UTC
*** Bug 524754 has been marked as a duplicate of this bug. ***
Comment 123 Sebastian Pölsterl 2008-04-10 08:52:19 UTC
*** Bug 527248 has been marked as a duplicate of this bug. ***
Comment 124 Gianluca Borello 2008-04-12 00:38:02 UTC
*** Bug 527608 has been marked as a duplicate of this bug. ***
Comment 125 Gianluca Borello 2008-04-13 08:24:01 UTC
*** Bug 527816 has been marked as a duplicate of this bug. ***
Comment 126 Gianluca Borello 2008-04-13 22:09:32 UTC
*** Bug 527899 has been marked as a duplicate of this bug. ***
Comment 127 Gianluca Borello 2008-04-20 08:19:08 UTC
*** Bug 528934 has been marked as a duplicate of this bug. ***
Comment 128 Gianluca Borello 2008-04-20 23:13:09 UTC
*** Bug 529066 has been marked as a duplicate of this bug. ***
Comment 129 Sebastian Pölsterl 2008-04-23 16:32:12 UTC
*** Bug 529555 has been marked as a duplicate of this bug. ***
Comment 130 Gianluca Borello 2008-04-23 21:45:54 UTC
*** Bug 529597 has been marked as a duplicate of this bug. ***
Comment 131 Gianluca Borello 2008-04-24 09:06:46 UTC
*** Bug 529644 has been marked as a duplicate of this bug. ***
Comment 132 Sebastian Pölsterl 2008-04-25 17:29:39 UTC
*** Bug 529901 has been marked as a duplicate of this bug. ***
Comment 133 Gianluca Borello 2008-04-28 11:02:05 UTC
*** Bug 530260 has been marked as a duplicate of this bug. ***
Comment 134 Gianluca Borello 2008-05-07 15:28:41 UTC
*** Bug 531964 has been marked as a duplicate of this bug. ***
Comment 135 Gianluca Borello 2008-05-07 15:28:45 UTC
*** Bug 531828 has been marked as a duplicate of this bug. ***
Comment 136 Sebastian Pölsterl 2008-06-22 11:08:23 UTC
*** Bug 539296 has been marked as a duplicate of this bug. ***
Comment 137 Gianluca Borello 2008-06-24 18:13:54 UTC
this issue is still happening on 2.22.2
Comment 138 Gianluca Borello 2008-06-24 18:14:04 UTC
*** Bug 539946 has been marked as a duplicate of this bug. ***
Comment 139 Sebastian Pölsterl 2008-08-06 16:38:26 UTC
*** Bug 546611 has been marked as a duplicate of this bug. ***
Comment 140 Sebastian Pölsterl 2008-09-09 08:40:33 UTC
*** Bug 551351 has been marked as a duplicate of this bug. ***
Comment 141 Sebastian Pölsterl 2008-09-11 15:51:03 UTC
*** Bug 551556 has been marked as a duplicate of this bug. ***
Comment 142 Sebastian Pölsterl 2008-09-11 15:51:16 UTC
*** Bug 551813 has been marked as a duplicate of this bug. ***
Comment 143 Sebastian Pölsterl 2008-09-24 07:55:38 UTC
*** Bug 553478 has been marked as a duplicate of this bug. ***
Comment 144 Sebastian Pölsterl 2008-10-27 16:02:26 UTC
*** Bug 557614 has been marked as a duplicate of this bug. ***
Comment 145 Susana 2008-11-01 12:21:45 UTC
*** Bug 558388 has been marked as a duplicate of this bug. ***
Comment 146 palfrey 2008-12-03 13:31:36 UTC
*** Bug 561985 has been marked as a duplicate of this bug. ***
Comment 147 Sebastian Pölsterl 2009-01-26 11:19:10 UTC
*** Bug 568963 has been marked as a duplicate of this bug. ***
Comment 148 palfrey 2009-02-20 11:43:12 UTC
*** Bug 572534 has been marked as a duplicate of this bug. ***
Comment 149 Gianluca Borello 2009-03-08 17:47:36 UTC
*** Bug 574559 has been marked as a duplicate of this bug. ***
Comment 150 palfrey 2009-03-09 15:25:52 UTC
*** Bug 574643 has been marked as a duplicate of this bug. ***