tok-ja_JP
About me
Name | tok-ja_JP |
---|---|
User since | July 10, 2009 |
Number of add-ons developed | 0 add-ons |
Average rating of developer's add-ons | Not yet rated |
My Reviews
LookOut
Rated 3 out of 5 stars
Hi. This add-on is useful. It is necessary to convert it for character-codes other than ASCII.
It is an example for Japanese Shift_JIS.
----before
file.name = tnef_file_munge_fname( attrs[i].values[0], files );
----after
var UConv = Components.classes['@mozilla.org/intl/scriptableunicodeconverter'].getService(Components.interfaces.nsIScriptableUnicodeConverter);
UConv.charset = "Shift_JIS";
file.name = UConv.ConvertToUnicode(tnef_file_munge_fname( attrs[i].values[0], files ));
To create your own collections, you must have a Mozilla Add-ons account.