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 524665 - Unable to import 'main' on startup
Unable to import 'main' on startup
Status: RESOLVED FIXED
Product: gnome-games-superseded
Classification: Deprecated
Component: glchess
2.22.x
Other All
: High critical
: ---
Assigned To: Jason Clinton
GNOME Games maintainers
: 525090 526288 527134 527220 528265 529208 529612 529927 529952 530115 530204 530354 530440 530551 530913 531093 531121 531126 531160 531207 531367 531368 531450 531451 531452 531463 531652 531659 531661 531890 532195 532244 532269 532400 532419 532456 532648 532728 532876 532912 532950 533068 533318 533577 533707 533938 534150 534575 534739 534740 534741 534742 534829 534918 534920 534925 534964 534982 535177 535180 535202 535231 535810 535966 535984 536128 536905 536918 536995 537268 537276 537321 537402 537403 537517 537891 537903 538131 538513 538758 538930 539219 539522 539662 539673 540104 540550 540570 540602 540765 540813 540847 540936 540984 542489 542809 543182 543506 543507 543508 543752 545013 545569 547796 547986 556806 557029 557654 (view as bug list)
Depends on: 528953
Blocks:
 
 
Reported: 2008-03-27 15:57 UTC by stars-c-h
Modified: 2008-10-27 06:47 UTC
See Also:
GNOME target: ---
GNOME version: 2.21/2.22


Attachments
kill off installed_mode, fix sys.path, don't include absbuilddir (3.83 KB, patch)
2008-05-29 23:03 UTC, Jason Clinton
committed Details | Review
Give the users a sane message about their installation being broken (1.90 KB, patch)
2008-06-22 23:56 UTC, Jason Clinton
committed Details | Review

Description stars-c-h 2008-03-27 15:57:50 UTC
Version: 2.22.0

What were you doing when the application crashed?
closed


Distribution: Ubuntu 8.04 (hardy)
Gnome Release: 2.22.0 2008-03-17 (Ubuntu)
BugBuddy Version: 2.22.0

System: Linux 2.6.24-12-generic #1 SMP Wed Mar 12 22:31:43 UTC 2008 x86_64
X Vendor: The X.Org Foundation
X Vendor Release: 10400090
Selinux: No
Accessibility: Disabled
GTK+ Theme: Glossy
Icon Theme: gnome

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 ---------------------
![1206633412,000,xklavier_evt_xkb.c:xkl_xkb_process_x_event/] 	ATTENTION! Currently cached group 0 is not equal to the current group from the event: 1
![1206633413,000,xklavier_evt_xkb.c:xkl_xkb_process_x_event/] 	ATTENTION! Currently cached group 0 is not equal to the current group from the event: 1
![1206633413,000,xklavier_evt_xkb.c:xkl_xkb_process_x_event/] 	ATTENTION! Currently cached group 0 is not equal to the current group from the event: 1
![1206633422,000,xklavier_evt_xkb.c:xkl_xkb_process_x_event/] 	ATTENTION! Currently cached group 0 is not equal to the current group from the event: 1
![1206633422,000,xklavier_evt_xkb.c:xkl_xkb_process_x_event/] 	ATTENTION! Currently cached group 0 is not equal to the current group from the event: 1
![1206633424,000,xklavier_evt_xkb.c:xkl_xkb_process_x_event/] 	ATTENTION! Currently cached group 0 is not equal to the current group from the event: 1
![1206633424,000,xklavier_evt_xkb.c:xkl_xkb_process_x_event/] 	ATTENTION! Currently cached group 0 is not equal to the current group from the event: 1
![1206633424,000,xklavier_evt_xkb.c:xkl_xkb_process_x_event/] 	ATTENTION! Currently cached group 0 is not equal to the current group from the event: 1
![1206633425,000,xklavier_evt_xkb.c:xkl_xkb_process_xTraceback (most recent call last):
  • File "/usr/games/glchess", line 61 in <module>
    start_game()
  • File "/var/lib/python-support/python2.5/glchess/glchess.py", line 20 in start_game
    import main
ImportError: No module named main
--------------------------------------------------
Traceback (most recent call last):
  • File "/usr/games/glchess", line 61 in <module>
    start_game()
  • File "/var/lib/python-support/python2.5/glchess/glchess.py", line 20 in start_game
    import main
ImportError: No module named main

Comment 1 Gianluca Borello 2008-03-30 10:29:58 UTC
*** Bug 525090 has been marked as a duplicate of this bug. ***
Comment 2 Gianluca Borello 2008-04-05 10:40:02 UTC
*** Bug 526288 has been marked as a duplicate of this bug. ***
Comment 3 Robert Ancell 2008-04-06 08:37:30 UTC
What appears to be happening here is the first glchess module is loaded (glchess.py) but the second one fails. Compare to bug 412690 where the first one was failing. I cannot work out how this is occuring...

Question: Was anyone upgrading when this occured, i.e. were half of the glchess modules on the disk at time of execution?

There are two solutions to this:
1. Take the 'import main' out of start_game() so it is caught when glchess.py is imported.
2. Catch ImportError exceptions during program execution.

Number 2 is probably the safest though it really just hides the problem from the GNOME developers - if glchess is properly installed and your hardware is functional you should never get an ImportError. If we do hide problems we need to implement bug 519185 so the users/distributions have a better chance of diagnosing problems.
Comment 4 palfrey 2008-04-09 15:02:16 UTC
*** Bug 527134 has been marked as a duplicate of this bug. ***
Comment 5 Robert Ancell 2008-04-10 01:11:48 UTC
*** Bug 527220 has been marked as a duplicate of this bug. ***
Comment 6 Robert Ancell 2008-04-10 02:12:00 UTC
Moved the import in 2.22.2:
http://svn.gnome.org/viewvc/gnome-games?view=revision&revision=7608

This should cause the "improperly installed" error dialog to be displayed instead of the crash. Don't know why this problem is occurring though.
Comment 7 Thomas Andersen 2008-04-15 21:06:53 UTC
*** Bug 528265 has been marked as a duplicate of this bug. ***
Comment 8 Gianluca Borello 2008-04-21 16:08:11 UTC
*** Bug 529208 has been marked as a duplicate of this bug. ***
Comment 9 Gianluca Borello 2008-04-23 21:41:35 UTC
*** Bug 529612 has been marked as a duplicate of this bug. ***
Comment 10 Gianluca Borello 2008-04-25 17:45:29 UTC
*** Bug 529927 has been marked as a duplicate of this bug. ***
Comment 11 Gianluca Borello 2008-04-25 19:56:33 UTC
*** Bug 529952 has been marked as a duplicate of this bug. ***
Comment 12 Gianluca Borello 2008-04-27 00:12:18 UTC
*** Bug 530115 has been marked as a duplicate of this bug. ***
Comment 13 Gianluca Borello 2008-04-28 10:53:18 UTC
*** Bug 530204 has been marked as a duplicate of this bug. ***
Comment 14 Gianluca Borello 2008-04-29 10:56:05 UTC
*** Bug 530440 has been marked as a duplicate of this bug. ***
Comment 15 Gianluca Borello 2008-04-29 10:56:10 UTC
*** Bug 530354 has been marked as a duplicate of this bug. ***
Comment 16 Robert Ancell 2008-04-30 00:21:09 UTC
*** Bug 530551 has been marked as a duplicate of this bug. ***
Comment 17 Gianluca Borello 2008-05-01 23:27:25 UTC
*** Bug 530913 has been marked as a duplicate of this bug. ***
Comment 18 Gianluca Borello 2008-05-03 09:03:40 UTC
*** Bug 531093 has been marked as a duplicate of this bug. ***
Comment 19 Gianluca Borello 2008-05-03 09:03:47 UTC
*** Bug 531121 has been marked as a duplicate of this bug. ***
Comment 20 Gianluca Borello 2008-05-03 09:03:53 UTC
*** Bug 531126 has been marked as a duplicate of this bug. ***
Comment 21 Gianluca Borello 2008-05-03 09:04:00 UTC
*** Bug 531160 has been marked as a duplicate of this bug. ***
Comment 22 Gianluca Borello 2008-05-03 15:53:19 UTC
*** Bug 531207 has been marked as a duplicate of this bug. ***
Comment 23 Gianluca Borello 2008-05-04 13:36:34 UTC
*** Bug 531367 has been marked as a duplicate of this bug. ***
Comment 24 Gianluca Borello 2008-05-04 13:36:40 UTC
*** Bug 531368 has been marked as a duplicate of this bug. ***
Comment 25 Gianluca Borello 2008-05-05 10:20:14 UTC
*** Bug 531463 has been marked as a duplicate of this bug. ***
Comment 26 Gianluca Borello 2008-05-05 10:20:19 UTC
*** Bug 531452 has been marked as a duplicate of this bug. ***
Comment 27 Gianluca Borello 2008-05-05 10:20:23 UTC
*** Bug 531451 has been marked as a duplicate of this bug. ***
Comment 28 Gianluca Borello 2008-05-05 10:20:29 UTC
*** Bug 531450 has been marked as a duplicate of this bug. ***
Comment 29 Gianluca Borello 2008-05-06 10:36:40 UTC
*** Bug 531652 has been marked as a duplicate of this bug. ***
Comment 30 Gianluca Borello 2008-05-06 10:36:46 UTC
*** Bug 531659 has been marked as a duplicate of this bug. ***
Comment 31 Gianluca Borello 2008-05-06 10:36:52 UTC
*** Bug 531661 has been marked as a duplicate of this bug. ***
Comment 32 Gianluca Borello 2008-05-07 15:32:15 UTC
*** Bug 531890 has been marked as a duplicate of this bug. ***
Comment 33 Gianluca Borello 2008-05-08 20:11:03 UTC
*** Bug 532195 has been marked as a duplicate of this bug. ***
Comment 34 Gianluca Borello 2008-05-09 10:38:06 UTC
*** Bug 532244 has been marked as a duplicate of this bug. ***
Comment 35 Gianluca Borello 2008-05-09 10:38:10 UTC
*** Bug 532269 has been marked as a duplicate of this bug. ***
Comment 36 Gianluca Borello 2008-05-10 08:15:01 UTC
*** Bug 532400 has been marked as a duplicate of this bug. ***
Comment 37 Gianluca Borello 2008-05-10 08:15:07 UTC
*** Bug 532419 has been marked as a duplicate of this bug. ***
Comment 38 Gianluca Borello 2008-05-10 11:37:02 UTC
*** Bug 532456 has been marked as a duplicate of this bug. ***
Comment 39 Gianluca Borello 2008-05-12 10:18:20 UTC
*** Bug 532728 has been marked as a duplicate of this bug. ***
Comment 40 Gianluca Borello 2008-05-12 10:18:25 UTC
*** Bug 532648 has been marked as a duplicate of this bug. ***
Comment 41 Gianluca Borello 2008-05-13 11:50:42 UTC
*** Bug 532912 has been marked as a duplicate of this bug. ***
Comment 42 Gianluca Borello 2008-05-13 11:51:10 UTC
*** Bug 532876 has been marked as a duplicate of this bug. ***
Comment 43 Gianluca Borello 2008-05-14 11:22:35 UTC
*** Bug 532950 has been marked as a duplicate of this bug. ***
Comment 44 Gianluca Borello 2008-05-14 11:22:41 UTC
*** Bug 533068 has been marked as a duplicate of this bug. ***
Comment 45 Gianluca Borello 2008-05-16 11:16:49 UTC
*** Bug 533318 has been marked as a duplicate of this bug. ***
Comment 46 Gianluca Borello 2008-05-18 08:42:43 UTC
*** Bug 533577 has been marked as a duplicate of this bug. ***
Comment 47 Gianluca Borello 2008-05-20 12:11:19 UTC
*** Bug 533938 has been marked as a duplicate of this bug. ***
Comment 48 Gianluca Borello 2008-05-20 12:11:23 UTC
*** Bug 533707 has been marked as a duplicate of this bug. ***
Comment 49 Gianluca Borello 2008-05-21 11:56:45 UTC
*** Bug 534150 has been marked as a duplicate of this bug. ***
Comment 50 Gianluca Borello 2008-05-24 16:28:02 UTC
*** Bug 534575 has been marked as a duplicate of this bug. ***
Comment 51 Susana 2008-05-25 17:11:46 UTC
*** Bug 534739 has been marked as a duplicate of this bug. ***
Comment 52 Susana 2008-05-25 17:11:52 UTC
*** Bug 534740 has been marked as a duplicate of this bug. ***
Comment 53 Susana 2008-05-25 17:11:58 UTC
*** Bug 534741 has been marked as a duplicate of this bug. ***
Comment 54 Susana 2008-05-25 17:12:03 UTC
*** Bug 534742 has been marked as a duplicate of this bug. ***
Comment 55 Gianluca Borello 2008-05-26 10:22:38 UTC
*** Bug 534829 has been marked as a duplicate of this bug. ***
Comment 56 Gianluca Borello 2008-05-27 10:48:38 UTC
*** Bug 534982 has been marked as a duplicate of this bug. ***
Comment 57 Gianluca Borello 2008-05-27 10:48:51 UTC
*** Bug 534964 has been marked as a duplicate of this bug. ***
Comment 58 Gianluca Borello 2008-05-27 10:48:52 UTC
*** Bug 534925 has been marked as a duplicate of this bug. ***
Comment 59 Gianluca Borello 2008-05-27 10:48:52 UTC
*** Bug 534920 has been marked as a duplicate of this bug. ***
Comment 60 Gianluca Borello 2008-05-27 10:48:57 UTC
*** Bug 534918 has been marked as a duplicate of this bug. ***
Comment 61 Josselin Mouette 2008-05-28 23:51:06 UTC
The cure introduced in r7608 is worse than the disease. Now the defaults are always taken from the build directory, not the installation directory. It does not even start up anymore:

(glchess:12668): libglade-WARNING **: could not find glade file '/scratch/build-area/gnome-games-2.22.2/glchess/glade/glchess.glade'
Traceback (most recent call last):
  • File "/usr/games/glchess", line 58 in <module>
    start_game()
  • File "/var/lib/python-support/python2.5/glchess/glchess.py", line 21 in start_game
    app = main.Application()
  • File "/var/lib/python-support/python2.5/glchess/main.py", line 441 in __init__
    self.ui = UI(self)
  • File "/var/lib/python-support/python2.5/glchess/main.py", line 328 in __init__
    self.controller = gtkui.GtkUI(self)
  • File "/var/lib/python-support/python2.5/glchess/gtkui/gtkui.py", line 221 in __init__
    self._gui = loadGladeFile('glchess.glade')
  • File "/var/lib/python-support/python2.5/glchess/gtkui/gtkui.py", line 46 in loadGladeFile
    return gtk.glade.XML(os.path.join(GLADE_DIR, name), root, domain = DOMAIN)
RuntimeError: could not create GladeXML object

Actually, there is no reason at all to reference the build directory in the installed files, especially in so fragile code paths.
Comment 62 Jason Clinton 2008-05-29 03:44:28 UTC
I don't know jack diddly about Python but my first guess is that we don't have a good sys.path and any attempt to import 'main' would, in the bug filer's example be like trying to import: 

/var/lib/python-support/python2.5/main.py

So it seems to me that we should be using globally unique qualifiers for import like:

import 'glchess/main'

or do something really hackey like look at __FILE__ early and pull out where glchess.py is living on the filesystem and append that directory to the end of sys.path programatically.

Then subsequent calls like 'import "main"' should work.

But you guys are the Python people. What do you think?
Comment 63 Josselin Mouette 2008-05-29 09:54:12 UTC
'import main' in glchess.py will import main.py from the directory where glchess.py is located if it exists, before looking at other modules, so this is not where the problem lies.

The real issue here is the 'installed_mode' hack in defaults.py which is useless and breaks as an unexpected consequence of the change. An installed version should entirely strip the references to the build paths anyway, not use some 'installed_version' property.
Comment 64 Gianluca Borello 2008-05-29 10:38:23 UTC
*** Bug 535202 has been marked as a duplicate of this bug. ***
Comment 65 Gianluca Borello 2008-05-29 10:38:28 UTC
*** Bug 535180 has been marked as a duplicate of this bug. ***
Comment 66 Gianluca Borello 2008-05-29 10:38:33 UTC
*** Bug 535177 has been marked as a duplicate of this bug. ***
Comment 67 Gianluca Borello 2008-05-29 10:38:40 UTC
*** Bug 535231 has been marked as a duplicate of this bug. ***
Comment 68 Jason Clinton 2008-05-29 15:03:33 UTC
I'll generate a patch this morning.
Comment 69 Jason Clinton 2008-05-29 15:37:04 UTC
I found this snippet of code in deskbar-applet; from their Makefile.am, it appears that they once had this same problem and resolved it by doing the following instead:

def check_deskbar_path ():
    root_dir = dirname(dirname(__file__))
    if exists(join(root_dir, "Makefile.am")):
        # Running in uninstalled mode
        sys.path.insert(0, abspath(root_dir))
        logging.info ("Running uninstalled, adding %s to system path" % abspath(root_dir))

Looks hackey but sane. With this, we can kill off the installed_mode variable and just figure out where we are at runtime.
Comment 70 Jason Clinton 2008-05-29 23:03:21 UTC
Created attachment 111769 [details] [review]
kill off installed_mode, fix sys.path, don't include absbuilddir

This fixes this bug and I have committed it to the stable branch. Think this is worth a re-spin of 2.22.2? From the number of duplicates, I'd say yes. Robert, can you audit my work and confirm that this is sane? If so, can you apply the patch and commit to trunk?

Joss, what are your thoughs? (Thanks for the help, BTW)

Leaving bug open until committed to trunk.
Comment 71 Robert Ancell 2008-05-30 00:37:41 UTC
Looks good. We definitely need a respin. I've committed to the trunk.
Comment 72 Jason Clinton 2008-05-30 01:49:30 UTC
Respinning.
Comment 73 Gianluca Borello 2008-05-30 17:04:45 UTC
*** Bug 535810 has been marked as a duplicate of this bug. ***
Comment 74 Gianluca Borello 2008-06-01 00:56:44 UTC
*** Bug 535984 has been marked as a duplicate of this bug. ***
Comment 75 Gianluca Borello 2008-06-01 00:56:51 UTC
*** Bug 535966 has been marked as a duplicate of this bug. ***
Comment 76 Gianluca Borello 2008-06-02 09:30:46 UTC
*** Bug 536128 has been marked as a duplicate of this bug. ***
Comment 77 Gianluca Borello 2008-06-06 10:52:43 UTC
*** Bug 536905 has been marked as a duplicate of this bug. ***
Comment 78 Gianluca Borello 2008-06-06 10:52:49 UTC
*** Bug 536918 has been marked as a duplicate of this bug. ***
Comment 79 Gianluca Borello 2008-06-06 18:13:39 UTC
*** Bug 536995 has been marked as a duplicate of this bug. ***
Comment 80 Gianluca Borello 2008-06-09 15:12:41 UTC
*** Bug 537268 has been marked as a duplicate of this bug. ***
Comment 81 Gianluca Borello 2008-06-09 15:12:46 UTC
*** Bug 537276 has been marked as a duplicate of this bug. ***
Comment 82 Gianluca Borello 2008-06-09 15:12:51 UTC
*** Bug 537321 has been marked as a duplicate of this bug. ***
Comment 83 Gianluca Borello 2008-06-09 15:12:56 UTC
*** Bug 537403 has been marked as a duplicate of this bug. ***
Comment 84 Gianluca Borello 2008-06-09 15:13:01 UTC
*** Bug 537402 has been marked as a duplicate of this bug. ***
Comment 85 Gianluca Borello 2008-06-10 10:55:56 UTC
*** Bug 537517 has been marked as a duplicate of this bug. ***
Comment 86 Gianluca Borello 2008-06-12 11:24:16 UTC
*** Bug 537903 has been marked as a duplicate of this bug. ***
Comment 87 Gianluca Borello 2008-06-12 11:24:20 UTC
*** Bug 537891 has been marked as a duplicate of this bug. ***
Comment 88 Gianluca Borello 2008-06-13 17:32:38 UTC
*** Bug 538131 has been marked as a duplicate of this bug. ***
Comment 89 Gianluca Borello 2008-06-15 22:56:45 UTC
*** Bug 538513 has been marked as a duplicate of this bug. ***
Comment 90 Gianluca Borello 2008-06-17 23:39:26 UTC
*** Bug 538758 has been marked as a duplicate of this bug. ***
Comment 91 Robert Ancell 2008-06-18 00:11:43 UTC
Recent duplicates show this is _still_ occurring in 2.22.2.1
Comment 92 Tero Keinänen 2008-06-18 12:57:24 UTC
*** Bug 538930 has been marked as a duplicate of this bug. ***
Comment 93 Robert Ancell 2008-06-22 04:02:46 UTC
*** Bug 539522 has been marked as a duplicate of this bug. ***
Comment 94 Robert Ancell 2008-06-22 04:03:03 UTC
*** Bug 539219 has been marked as a duplicate of this bug. ***
Comment 95 Jason Clinton 2008-06-22 20:25:55 UTC
Bug 538513 and Bug 538758 appear the have the information needed to resolve this. It's some kind of fuckery in Ubuntu. Why are they still packaging glChess separately?
Comment 96 Jason Clinton 2008-06-22 20:57:42 UTC
The more I look at this the more I'm convinced this is a bug in python-support. I think that uninstalling glchess and installing gnome-games in the same transaction is not handled correctly by the python-support triggers in Ubuntu. Can someone on Ubuntu try opening up aptitude, going to gnome-games and doing a reinstall of gnome-games and gnome-games-data (press "L" to mark a package for reinstall).  I'm willing to bet $5 that that fixes it.

First person to test it gets credit in the next release. :)
Comment 97 Justin Dugger 2008-06-22 21:51:50 UTC
I can confirm that removing glchess and installing gnome-games in one transaction causes the bug, and that reinstalling gnome-games & -data fixes the bug.
Comment 98 mail 2008-06-22 22:01:50 UTC
Yes, it did fix it :P
Comment 99 Jason Clinton 2008-06-22 23:56:43 UTC
Created attachment 113233 [details] [review]
Give the users a sane message about their installation being broken

Give the users a sane message about their installation being broken instead of crashing in commit r7728, closing. Patch attached for distros and maybe stable branch.
Comment 100 Josselin Mouette 2008-06-23 00:03:47 UTC
Does running 'update-python-modules -p' fix the issue when it occurs? If so, that bug is http://bugs.debian.org/486516 as Jason suggested.
Comment 101 Jason Clinton 2008-06-23 03:34:58 UTC
*** Bug 539673 has been marked as a duplicate of this bug. ***
Comment 102 Gianluca Borello 2008-06-23 09:29:03 UTC
*** Bug 539662 has been marked as a duplicate of this bug. ***
Comment 103 Jason Clinton 2008-06-23 13:34:28 UTC
python-support 0.8.2 is out with a fix for distros.
Comment 104 Jason Clinton 2008-06-23 15:59:30 UTC
Ubuntu's seb128 is uploading a copy of gnome-games-data that conflicts with glchess
Comment 105 Gianluca Borello 2008-06-25 07:47:28 UTC
*** Bug 540104 has been marked as a duplicate of this bug. ***
Comment 106 Jason Clinton 2008-06-28 03:09:09 UTC
*** Bug 540550 has been marked as a duplicate of this bug. ***
Comment 107 Gianluca Borello 2008-06-28 07:52:25 UTC
*** Bug 540570 has been marked as a duplicate of this bug. ***
Comment 108 Robert Ancell 2008-06-29 09:25:03 UTC
*** Bug 540602 has been marked as a duplicate of this bug. ***
Comment 109 Jason Clinton 2008-06-29 18:52:05 UTC
*** Bug 540765 has been marked as a duplicate of this bug. ***
Comment 110 Jason Clinton 2008-06-30 03:22:34 UTC
*** Bug 540813 has been marked as a duplicate of this bug. ***
Comment 111 Jason Clinton 2008-06-30 03:26:17 UTC
*** Bug 540847 has been marked as a duplicate of this bug. ***
Comment 112 Jason Clinton 2008-06-30 16:17:49 UTC
*** Bug 540936 has been marked as a duplicate of this bug. ***
Comment 113 Jason Clinton 2008-06-30 20:48:34 UTC
*** Bug 540984 has been marked as a duplicate of this bug. ***
Comment 114 Robert Ancell 2008-07-11 07:50:59 UTC
*** Bug 542489 has been marked as a duplicate of this bug. ***
Comment 115 Robert Ancell 2008-07-11 07:52:10 UTC
Removing people from this bug to stop duplicate reports being received. Please re-attach if you are still interested.
Comment 116 Robert Ancell 2008-07-16 00:20:54 UTC
*** Bug 543182 has been marked as a duplicate of this bug. ***
Comment 117 Robert Ancell 2008-07-16 00:20:58 UTC
*** Bug 542809 has been marked as a duplicate of this bug. ***
Comment 118 Gianluca Borello 2008-07-18 08:50:18 UTC
*** Bug 543508 has been marked as a duplicate of this bug. ***
Comment 119 Gianluca Borello 2008-07-18 08:50:24 UTC
*** Bug 543507 has been marked as a duplicate of this bug. ***
Comment 120 Gianluca Borello 2008-07-18 08:50:31 UTC
*** Bug 543506 has been marked as a duplicate of this bug. ***
Comment 121 Robert Ancell 2008-07-20 03:12:39 UTC
*** Bug 543752 has been marked as a duplicate of this bug. ***
Comment 122 Susana 2008-07-29 18:22:37 UTC
*** Bug 545013 has been marked as a duplicate of this bug. ***
Comment 123 Gianluca Borello 2008-07-30 22:43:51 UTC
*** Bug 545569 has been marked as a duplicate of this bug. ***
Comment 124 Robert Ancell 2008-09-21 11:42:34 UTC
*** Bug 547796 has been marked as a duplicate of this bug. ***
Comment 125 Robert Ancell 2008-09-21 11:42:40 UTC
*** Bug 547986 has been marked as a duplicate of this bug. ***
Comment 126 Robert Ancell 2008-10-18 06:25:08 UTC
*** Bug 556806 has been marked as a duplicate of this bug. ***
Comment 127 Gianluca Borello 2008-10-20 08:17:15 UTC
*** Bug 557029 has been marked as a duplicate of this bug. ***
Comment 128 Robert Ancell 2008-10-27 06:47:20 UTC
*** Bug 557654 has been marked as a duplicate of this bug. ***