Closed
Bug 477866
Opened 16 years ago
Closed 16 years ago
Updated chatzilla.jar and chatzilla-service.js to this year's version but now chat won't launch
Categories
(Other Applications Graveyard :: QA Companion, defect)
Tracking
(Not tracked)
RESOLVED
INVALID
People
(Reporter: abillings, Unassigned)
Details
Attachments
(2 files, 3 obsolete files)
I updated the chatzilla.jar and chatzilla-service.js in QAC to the ChatZilla 0.9.84, which is a year (and many bugfixes) later than the version we had before.
Updating just the jar, I received the error:
XML Parsing Error: undefined entity
Location: chrome://chatzilla_qa/content/chatzilla.xul
Line Number 120, Column 7: <button id="server-nick" type="menu" label="" tooltiptext="&server-nick.tooltip;"/>
------^
on launch so I added the chatzilla-service.js as well.
Now, when I attempt to launch chat within my test build of QAC, nothing happens at all. No error messages but no chatzilla window either.
Revisiona 22129 and 22130.
Any ideas?
Reporter | ||
Comment 1•16 years ago
|
||
Error console does show:
No chrome package registered for chrome://chatzilla/content/chatzilla.xul
Reporter | ||
Comment 2•16 years ago
|
||
Within the chatzilla.jar file, there is a /content/chatzilla/chatzilla.xul
Is this just a path problem with the new jar file and I need to update /jar-chrome.manifest to match the new path?
No, that is the same structure as the old jar so the existing manifest files should work.
Reporter | ||
Comment 4•16 years ago
|
||
Attachment #361617 -
Flags: review?(ctalbert)
Reporter | ||
Comment 5•16 years ago
|
||
Reporter | ||
Comment 6•16 years ago
|
||
Attachment #361617 -
Attachment is obsolete: true
Attachment #361617 -
Flags: review?(ctalbert)
Reporter | ||
Comment 7•16 years ago
|
||
Still get this error when I try chat in QAC if I look in the error console:
Error: spawnChatZilla is not defined
Source File: chrome://chatzillaservice_qa/content/chatzilla-service.js
Line: 151
I'm not sure why it is looking in chatzillaservice_qa/content/chatzilla-service.js for components/chatzilla-service.js (it isn't in the chatzilla.jar file and there is no chatzillaservice_qa.jar file. I suspect I screwed up a search and replace).
Reporter | ||
Comment 8•16 years ago
|
||
I had a bad search and replace, which I've fixed.
When I try to launch chat now, nothing happens. If you close QAC, the error console will eventually show:
Error: spawnChatZilla is not defined
Source File: chrome://chatzillaservice/content/chatzilla-service.js
Line: 151
That is part of:
if ("ChatZillaStarting" in hiddenWin)
{
count = count || 0;
if ((new Date() - hiddenWin.ChatZillaStarting) > 10000)
{
dump("cz-service: Continuing to be unable to talk to existing window!\n");
}
else
{
//dump("cz-service: **** Try: " + count + ", delay: " + (new Date() - hiddenWin.ChatZillaStarting) + "\n");
// We have a ChatZilla window, but we're still loading.
hiddenWin.setTimeout(function wrapper(count) {
spawnChatZilla(uri, count + 1);
}, 250, count);
return true;
}
}
but that function is defined on line 110.
I'm updating my diff of changes (except for the jar changes, which cannot be diffed but which are attached).
Reporter | ||
Comment 9•16 years ago
|
||
Attachment #361620 -
Attachment is obsolete: true
Reporter | ||
Comment 10•16 years ago
|
||
Attachment #361639 -
Attachment is obsolete: true
Reporter | ||
Comment 11•16 years ago
|
||
This is fubar'd. Backing it all out and doing it right later.
Status: NEW → RESOLVED
Closed: 16 years ago
Resolution: --- → INVALID
Updated•7 years ago
|
Product: Other Applications → Other Applications Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•