Closed
Bug 221631
Opened 21 years ago
Closed 21 years ago
vcard do not support accented characters
Categories
(MailNews Core :: Backend, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
mozilla1.6alpha
People
(Reporter: pascalc, Assigned: mscott)
References
Details
Attachments
(1 file, 1 obsolete file)
1.59 KB,
patch
|
Details | Diff | Splinter Review |
build 2003100804 WinXP
1 create a vcard for an account with fields that contain accented latin characters
ex : Aménagement
is changed into : Aménagement
Comment 3•21 years ago
|
||
Comment 4•21 years ago
|
||
we do UTF to UCS2 here because we do UCS2 to UTF8 in nsAbCardProperty.cpp:
static VObject* myAddPropValue(VObject *o, const char *propName, const PRUnichar
*propValue, PRBool *aCardHasData)
{
if (aCardHasData)
*aCardHasData = PR_TRUE;
return addPropValue(o, propName, NS_ConvertUCS2toUTF8(propValue).get());
}
there's a similar issue in mimevcrd.cpp, looking into it...
Comment 5•21 years ago
|
||
our vcard attachments are in utf8
Attachment #133139 -
Attachment is obsolete: true
Comment 6•21 years ago
|
||
fixed.
this has r/sr=bienvenu
Status: ASSIGNED → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Updated•20 years ago
|
Product: MailNews → Core
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
•