Closed
Bug 163597
Opened 22 years ago
Closed 22 years ago
Import AB fr Outlook (Express).:JA name list (group) name doesn't show
Categories
(MailNews Core :: Internationalization, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: jeesun, Assigned: cavin)
References
Details
(Keywords: intl, Whiteboard: [ish1+][verifiedish1])
Attachments
(2 files, 1 obsolete file)
(deleted),
image/jpeg
|
Details | |
(deleted),
patch
|
nhottanscp
:
review+
|
Details | Diff | Splinter Review |
Import AB fr Outlook Ex.:Non-ascii list (group) name doesn't show
Build: 0819 branch
Observed: on JA windows Xp and 98
Steps:
1. Using Outlook Express, create a contact with JA chars.
2. Also create a group with JA name and include the contact created in step 1
3. From branch build mail, go to Tools|Import
4. Select Address Books and then Outlook Express.
5. You'll see a msg indicating "import was successful."
6. Notice that the group name (called list in our AB) isn't showing and its
associated contact (card) is missing.
Note: When the group has EN name, the name itself is showing in AB after
importing process although its associated contact is still missing (this is a
separate core bug)
Reporter | ||
Comment 1•22 years ago
|
||
Notice that the first entry which is a list is missing its JA name and its
cards.
Reporter | ||
Comment 3•22 years ago
|
||
Importing from Outlook has the same problem. Change the summary accordingly.
Summary: Import AB fr Outlook Ex.:JA name list (group) name doesn't show → Import AB fr Outlook (Express).:JA name list (group) name doesn't show
Updated•22 years ago
|
Whiteboard: [ish1+]
Reporter | ||
Comment 6•22 years ago
|
||
*** Bug 174436 has been marked as a duplicate of this bug. ***
Assignee | ||
Comment 7•22 years ago
|
||
Use Assign(NS_ConvertUCS2toUTF8()) instead of AssignWithConversion() for list
name setting.
Comment 8•22 years ago
|
||
Comment on attachment 103268 [details] [diff] [review]
Proposed patch.
r=nhotta
Attachment #103268 -
Flags: review+
Assignee | ||
Comment 9•22 years ago
|
||
Do the same thing for Outlook as well.
Attachment #103268 -
Attachment is obsolete: true
Comment 10•22 years ago
|
||
Comment on attachment 103391 [details] [diff] [review]
Proposed patch, v2
r=nhotta
Attachment #103391 -
Flags: review+
Comment 11•22 years ago
|
||
nsCAutoString column;
- column.AssignWithConversion(pName);
+ column.Assign(NS_ConvertUCS2toUTF8(pName));
do we even need the column local var?
can't we just do:
rv = pDb->AddListName(newRow, NS_ConvertUCS2toUTF8(pName));
Assignee | ||
Comment 12•22 years ago
|
||
Yes, we can. Do I need to post another patch or I can just change it before
checking it in?
Comment 13•22 years ago
|
||
no need for a new patch. just change it before checking in (to trunk and branches)
Assignee | ||
Comment 14•22 years ago
|
||
Adding [fixedish1] to status whiteboard.
Whiteboard: [ish1+] → [ish1+][fixedish1]
Comment 15•22 years ago
|
||
On the build containing the fix, the Japanese list name is imported correctly
either from OE or Outlook Express. But the contacts on the list are still missing.
Assignee | ||
Comment 16•22 years ago
|
||
> But the contacts on the list are still missing.
>
This is bug 149961.
Assignee | ||
Comment 17•22 years ago
|
||
Fix checked in to the trunk.
Status: NEW → RESOLVED
Closed: 22 years ago
Resolution: --- → FIXED
Updated•20 years ago
|
Product: MailNews → Core
Updated•16 years ago
|
Product: Core → MailNews Core
You need to log in
before you can comment on or make changes to this bug.
Description
•