Closed
Bug 394781
Opened 18 years ago
Closed 18 years ago
An address database (nsIAddrDatabase) should be got from the directory not from the address book service via uri.
Categories
(MailNews Core :: Address Book, defect)
MailNews Core
Address Book
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: standard8, Assigned: standard8)
References
(Blocks 1 open bug)
Details
Attachments
(2 files)
42.94 KB,
patch
|
Bienvenu
:
review+
mscott
:
superreview+
|
Details | Diff | Splinter Review |
43.80 KB,
patch
|
Bienvenu
:
review+
standard8
:
superreview+
|
Details | Diff | Splinter Review |
I started working on this for bug 387404, but I've spun it off to reduce the size of that patch.
In nsIAddressBook we currently have:
nsIAddrDatabase getAbDatabaseFromURI(in string URI);
This returns a database for the given directory URI. We should really be getting the database from the nsIAbMDBDirectory (or nsIAbLDAPDirectory for replicated ABs).
Therefore I'm proposing we implement some new attributes (databaseFile and database under nsIAbMDBDirectory and similar ones for nsIAbLDAPDirectory) to do this.
This will simplify some of the code, and in the cases where we don't already have a directory, we'll just have to get it from the service RDF which is no problem as we already have the URI :-)
Attachment #279494 -
Flags: superreview?(mscott)
Attachment #279494 -
Flags: review?(bienvenu)
Comment 1•18 years ago
|
||
Comment on attachment 279494 [details] [diff] [review]
The fix v1
this makes so much more sense to me. thx, Mark.
Attachment #279494 -
Flags: review?(bienvenu) → review+
Comment 2•18 years ago
|
||
Comment on attachment 279494 [details] [diff] [review]
The fix v1
cool!
Attachment #279494 -
Flags: superreview?(mscott) → superreview+
Assignee | ||
Comment 3•18 years ago
|
||
I checked this in last night with one minor bustage fix on windows.
Fixed.
Status: NEW → RESOLVED
Closed: 18 years ago
Resolution: --- → FIXED
Comment 4•18 years ago
|
||
I don't seem to be able to add addresses to my address book, either through clicking an e-mail address (the dialog pops up but when I click the OK button I get an exception) or through the "always load remote content from ..." link.
I backed out these changes and it now seems to work again. Let me put them back in and see if I can get the error messages.
Comment 5•18 years ago
|
||
"Click here to always load remote content from newsletter ...":
Error: uncaught exception: [Exception... "Component returned failure code: 0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIAbMDBDirectory.cardForEmailAddress]" nsresult: "0xc1f30001 (NS_ERROR_NOT_INITIALIZED)" location: "JS frame :: chrome://messenger/content/mailWindowOverlay.js :: allowRemoteContentForSender :: line 2306" data: no]
Add to Address Book, click OK button:
Error: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIAbDirectory.addCard]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: chrome://messenger/content/addressbook/abCardOverlay.js :: NewCardOKButton :: line 409" data: no]
Source File: chrome://messenger/content/addressbook/abCardOverlay.js
Line: 409
Assignee | ||
Comment 6•18 years ago
|
||
Just to let you know I'm looking at this. If I can't see an easy fix then I'll back out in an hour or two.
Is it Thunderbird or SeaMonkey that you're using? I'm not seeing the Add to address book error with SeaMonkey.
Assignee | ||
Comment 7•18 years ago
|
||
I've just backed this out - although I can't see Jag's exact problems, I have found one case where we somehow get into an infinite loop :-(
I'll take another look at it all and see if I can get a revised patch soon.
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Comment 8•18 years ago
|
||
It's SeaMonkey, sorry, should've said that before.
Comment 9•18 years ago
|
||
So it looks like GetAbDatabase() is failing. Let me see if I can figure out why.
Comment 10•18 years ago
|
||
mURINoQuery has "moz-abmdbdirectory://abook.mab", so we use "moz-abmdbdirectory:/" are the parentURI to get the resource for.
Assignee | ||
Comment 11•18 years ago
|
||
(In reply to comment #10)
> mURINoQuery has "moz-abmdbdirectory://abook.mab", so we use
> "moz-abmdbdirectory:/" are the parentURI to get the resource for.
Yeah, the mailing list detection is screwed. I fixed that locally, however I've now got the problem that the remote content policy stuff seems to be getting into an infinite loop for some weird reason.
Not sure why your new card ok button didn't work - it seemed to be fine for me.
Comment 12•18 years ago
|
||
I've seen it work and I've seen it fail. I think it fails after I try clicking the link first. But since clicking the ok button ends up calling GetAbDatabase() it should always fail, methinks, unless for some reason it ends up with a different mURINoQuery depending on the order?
Assignee | ||
Comment 13•18 years ago
|
||
Jag, any chance you could give this patch a try please?
Its the same as the first, except in nsAbMDBDirectory::Init, I'm making sure that the mIsMailingList member variable is initialised correctly.
It seems to work ok here, but you were seeing some errors I wasn't.
Assignee | ||
Comment 14•18 years ago
|
||
Comment on attachment 280154 [details] [diff] [review]
Revised patch
David, this patch is virtually the same as the original, except that I've fixed the windows compilation problem (that was I hadn't changed one function call), and I've also added a line to nsAbDirProperty::Init which will initialise mIsMailingList depending on the URI supplied.
This means that when we try and get the database it should now be working out the URI right, and therefore getting the right database (not from a broken uri).
I've given this a run and it certainly fixes my problems that I'd found, so I think its worth landing it again and seeing if we get any other problems.
Note that I'm carrying forward sr as the patch is still doing virtually the same thing.
Attachment #280154 -
Flags: superreview+
Attachment #280154 -
Flags: review?(bienvenu)
Comment 15•18 years ago
|
||
Comment on attachment 280154 [details] [diff] [review]
Revised patch
thx, Mark
Attachment #280154 -
Flags: review?(bienvenu) → review+
Assignee | ||
Comment 16•18 years ago
|
||
Patch checked in again, so hopefully this is fixed now ;-)
Status: REOPENED → RESOLVED
Closed: 18 years ago → 18 years ago
Resolution: --- → FIXED
Updated•17 years ago
|
Product: Core → MailNews Core
You need to log in
before you can comment on or make changes to this bug.
Description
•