Closed
Bug 167571
Opened 22 years ago
Closed 22 years ago
fix CAB ui to have an AB picker for which AB to collect into, remove UI and code for "limit CAB size"
Categories
(SeaMonkey :: MailNews: Message Display, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
mozilla1.2beta
People
(Reporter: sspitzer, Assigned: sspitzer)
References
()
Details
Attachments
(1 file, 5 obsolete files)
40.38 KB,
patch
|
Bienvenu
:
superreview+
|
Details | Diff | Splinter Review |
fix CAB ui to have an AB picker for which AB to collect into, remove UI and code
for "limit CAB size".
the picker can only show ABs that are writable (so no LDAP).
I think we should remove the code that does that altogether (from prefs UI,
default pref, and current CAB C++ code)
All this comes from mscott's document about how to fix the CAB. See
http://rocknroll/users/mscott/publish/Documents/cab.html
Size Limit pref bug 158436.
Comment 3•22 years ago
|
||
Here's the document on mozilla.org that talks about the CAB changes we'd like to
make:
http://www.mozilla.org/mailnews/arch/cab.html
Assignee | ||
Comment 4•22 years ago
|
||
*** Bug 158436 has been marked as a duplicate of this bug. ***
Assignee | ||
Comment 5•22 years ago
|
||
patch coming. I got the UI fixed, now just fixing the back end...
Status: NEW → ASSIGNED
Target Milestone: --- → mozilla1.2beta
Assignee | ||
Comment 6•22 years ago
|
||
Assignee | ||
Comment 7•22 years ago
|
||
Attachment #98702 -
Attachment is obsolete: true
Assignee | ||
Comment 8•22 years ago
|
||
Attachment #98735 -
Attachment is obsolete: true
Assignee | ||
Comment 9•22 years ago
|
||
Attachment #98739 -
Attachment is obsolete: true
Assignee | ||
Comment 10•22 years ago
|
||
Attachment #98742 -
Attachment is obsolete: true
Assignee | ||
Comment 11•22 years ago
|
||
Attachment #98745 -
Attachment is obsolete: true
Comment 12•22 years ago
|
||
looks fine.
nit: in the two places this occurrs:
+ if (NS_FAILED(rv) || prefVal.IsEmpty())
+ rv = adCol->SetAbURI(kPersonalAddressbook);
+ else
+ rv = adCol->SetAbURI(prefVal.get());
+
you could just use the ? operator here (up to you)
rv = adCol->SetAbUri((NS_FAILED(rv) || prefVal.IsEmpty()) ? kPersonalAddressBook
: prevVal.get())
Comment 13•22 years ago
|
||
Comment on attachment 98748 [details] [diff] [review]
patch
sr=bienvenu
Attachment #98748 -
Flags: superreview+
Assignee | ||
Comment 14•22 years ago
|
||
I'll follow your suggestion before checking in, thanks.
Assignee | ||
Comment 15•22 years ago
|
||
fixed.
see bug 168115, which covers the "IM" button.
Status: ASSIGNED → RESOLVED
Closed: 22 years ago
Resolution: --- → FIXED
Updated•20 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•