Closed
Bug 398117
Opened 17 years ago
Closed 17 years ago
Location: of mail folder properties doesn't display path information correctly when local mail folder name contains Japanese character
Categories
(MailNews Core :: Database, defect)
MailNews Core
Database
Tracking
(Not tracked)
RESOLVED
FIXED
mozilla1.9beta3
People
(Reporter: World, Assigned: mkmelin)
References
Details
Attachments
(2 files, 1 obsolete file)
(deleted),
patch
|
Bienvenu
:
review+
Bienvenu
:
superreview+
|
Details | Diff | Splinter Review |
(deleted),
patch
|
mnyromyr
:
review+
Bienvenu
:
superreview+
|
Details | Diff | Splinter Review |
Location: of mail folder properties doesn't display mailbox: URL correctly, when mail folder name contains Japanese character.
(Environment)
OS : MS Win XP SP2, Japanese version
Thunderbird : latest-trunk, version 3.0a1pre (2007093003)
Patch for Bug 180546 is already applied.
Mail folder name : 日本語 (Shift_JIS : 0x93FA, 0x967B, 0x8CEA)
(UTF-8 : 0xE697A5, 0xE69CAC, 0xE8AA9E
File name : 日本語 / 日本語.msf
msgFilterRules.dat
actionValue="mailbox://aaa@aaa.aaa.aaa/Test-2/%E6%97%A5%E6%9C%AC%E8%AA%9E"
(Result)
%E6%97%A5%E6%9C%AC%E8%AA%9E part in displayed mailbox: URL becomes garbage.
Unescaped binary looks to be set in Location: field.
Location filed should display unescaped version, as msgFileterRules.dat does.
Note:
This is not new problem after Bug 180546.
This problem existed when "Copy Folder Location", but I'was expecting that the problem will be resolved if enhancement of Bug 180546 will be implemented, but it was not...
(Off-topic)
Guessing of file path from mailbox: URL is difficult when Japanese character is involved in mail folder name(then file name).
This is one of the reasons why I requested "File Path" information in property in Bug 180546, in addition to Location:(mailbox: URL when local mail folder).
Reporter | ||
Comment 1•17 years ago
|
||
It should be next. Sorry for spam.
Location filed should display ESCAPED version, as msgFileterRules.dat does.
Reporter | ||
Comment 3•17 years ago
|
||
New problem in Location: field of folder property) exists.
Location: field display is different from value by "Copy Folder Location".
(Example of Copy Folder Location of Seamonkey 1.1.4)
mailbox:/C|/wada/MAIL-NEWS/Mail/dion.00.japan.com/<Garbage>
(Example of Location: field in folder property of Thunderbird trunk)
mailbox:C:\Documents(snip)\Mail\aaa.aaa.aaa\Test-2.sbd\<Garbage>
Both "Copy Folder Location" and "Location: in folder property" is different from representation in msgFilterRules.dat.
What should be displayed in Location: field of folder property?
Reporter | ||
Comment 4•17 years ago
|
||
Location: field for local folder was already implemented as exact file path format even when MS Win("mailbox:" is simply added before file path).
Thanks to developer of Bug 180546.
So problem is "garbage" only. And it is should not be displayed as escaped format. It should be converted to appropriate character code to display.
Sorry for my confusion and spam.
Reporter | ||
Updated•17 years ago
|
Summary: Location: of mail folder properties doesn't display mailbox: URL correctly when mail folder name contains Japanese character → Location: of mail folder properties doesn't path information correctly when local mail folder name contains Japanese character
Reporter | ||
Updated•17 years ago
|
Summary: Location: of mail folder properties doesn't path information correctly when local mail folder name contains Japanese character → Location: of mail folder properties doesn't display path information correctly when local mail folder name contains Japanese character
Assignee | ||
Comment 5•17 years ago
|
||
This fixes the problems with the japanese characters for me - tested on linux.
The other part this fixes is that the url apparently was unescaped now, fallout from the string cleanup it seems. So we now had urls like mailbox:C:\path\to\mailbox - that can't be right...
I'm not sure where else than the folder properties this is used, to check it doesn't regress anything.
Assignee: bienvenu → mkmelin+mozilla
Status: NEW → ASSIGNED
Attachment #283405 -
Flags: superreview?(bienvenu)
Attachment #283405 -
Flags: review?(bienvenu)
Assignee | ||
Comment 6•17 years ago
|
||
Oh, and removed an unused var.
Comment 7•17 years ago
|
||
Magnus,
thx for the patch.
We use the folder url when opening attachments from compose windows. You should check that that still works on paths that need to be escaped (e.g., the windows ones that have spaces in them by default)
http://mxr.mozilla.org/mailnews/source/mail/components/compose/content/MsgComposeCommands.js#2872
We also use the folder URL when composing a new newsgroup message:
http://mxr.mozilla.org/mailnews/source/mail/base/content/mailCommands.js#193 but that doesn't use the nsLocalMailFolder version of the method.
Assignee | ||
Comment 8•17 years ago
|
||
I did some testing with folders having spaces. The backslashes are a bit hard to come by on linux;)
Didn't find any problem, maybe a bit surprisingly not with current trunk either - though the location it displays contains spaces.
Comment 9•17 years ago
|
||
Comment on attachment 283405 [details] [diff] [review]
proposed fix (checked in)
ok, thx, Magnus.
Attachment #283405 -
Flags: superreview?(bienvenu)
Attachment #283405 -
Flags: superreview+
Attachment #283405 -
Flags: review?(bienvenu)
Attachment #283405 -
Flags: review+
Assignee | ||
Comment 10•17 years ago
|
||
Hmm, I got some second thought on this.
The value we would get now would now be
mailbox:/home/magnus/.thunderbird/.... though as per comment 1, in filterrules we use something like actionValue="mailbox://user@host/Folder/%E6%97%A5%E6%9C%AC%E8%AA%9E"
Should this be in this format too? And are these kind of urls really clickable on windows?
Assignee | ||
Comment 11•17 years ago
|
||
Seems my testing earlier was incorrect. If I drag-drop a local message to attach it, it can't be opened - not on branch, not on trunk and not with this patch in place either. (IMAP works fine though.)
Seems it's been mailbox: since forever. I would have expected it to be mailbox:// - no dice with that either...
Assignee | ||
Comment 12•17 years ago
|
||
Opening attached messages from the compose window has never worked it seem - bug 271094.
Assignee | ||
Comment 13•17 years ago
|
||
Given that it never worked, I think the patch is ok after all. At least we get back to (almost) branch behavior. I'll check it in at some point if no one objects.
Assignee | ||
Comment 14•17 years ago
|
||
Checking in mailnews/local/src/nsLocalMailFolder.cpp;
/cvsroot/mozilla/mailnews/local/src/nsLocalMailFolder.cpp,v <-- nsLocalMailFolder.cpp
new revision: 1.566; previous revision: 1.565
done
->FIXED
Status: ASSIGNED → RESOLVED
Closed: 17 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla1.9 M10
Depends on: 403724
Reporter | ||
Comment 15•17 years ago
|
||
Re-opening, because problem is not resolved correctly.
Following is test result with Tb latest-trunk (on MS Win-XP).
Thunderbird version 3.0a1pre (2007111403)
Location: display of local mail folder shouldn't be escaped.
Should be converted to system-used-charset for display of text string.
>(Properties/General Information)
> Name : 日本語
> Location: mailbox:C%3A%5CDocuments%20and%20Settings%5Cwada%5CApplication%20Data%5CThunderbird%5CProfiles%5Ccbz7k273.Trunk-Test%5CMail%5Caaa.aaa.aaa%5CTest-2.sbd%5C%E6%97%A5%E6%9C%AC%E8%AA%9E
>(\日本語 part in Location: display)
> %5C%E6%97%A5%E6%9C%AC%E8%AA%9E
>(Real file path for this mail folder)
> C:\Documents and Settings\wada\Application Data\Thunderbird\Profiles\cbz7k273.Trunk-Test\Mail\aaa.aaa.aaa\Test-2.sbd\日本語
>(folder path in messageFilterRules.dat)
> actionValue="mailbox://aaa@aaa.aaa.aaa/Test-2/%E6%97%A5%E6%9C%AC%E8%AA%9E"
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Reporter | ||
Comment 16•17 years ago
|
||
If "Location:" in Properties/"General Information" for "local mail folder", which is mailbox: format, is internal URI for the local mail folder, and if application of usual escaping of URI character is right action, I think current representation and display is definitely proper.
And this won't produce problem when imap: URI and usually won't produce problem when news URI, because IMAP defines "mail folder name" in ascii or equivallence only, and because non-ascii newsgroup name is very very rare and special.
Sorry but I don't know RSS case well.
Above is one of main reasons why we requested "mail folder file path" field for local mail folder by Bug 180546, instead of opening bug for phenomenon of "Copy folder location produces garbage when local mail folder has Japanese name".
But you already morphed Bug 180546 and closed it as FIXED.
Shall we request "mail folder file path" field again by new/separated bug for usability improvement, after closing this bug as FIXED again?
(apparently, the dirty "garbage" itself is already resolved by you.)
Assignee | ||
Comment 17•17 years ago
|
||
No, I think you were correct to reopen this. It's still wrong on windows due to backslashes:(
URLs can't contain non-ascii chars (that's what really causes the original problem), but we could perhaps unescape it before displaying.
Reporter | ||
Comment 18•17 years ago
|
||
(In reply to comment #17)
> still wrong on windows due to backslashes:(
> but we could perhaps unescape it before displaying.
Please note that problem is not only "escaped backslash/space/colon(drive letter separator)". "escaped Unicode binary for non-ascii folder name part" is also a problem. Our expectation is "real file path" like display on MS Windows, in order to reduce number of questions of "where is my mail folder file?" and unwanted/needless bug reports.
Assignee | ||
Updated•17 years ago
|
Attachment #283405 -
Attachment description: proposed fix → proposed fix (checked in)
Assignee | ||
Comment 19•17 years ago
|
||
So after the previous fix windows paths are still quite broken, esp. due to backslashes.
While nsEscapeNativePath could have fixed part of it, I'm not too keen on building the path myself... I'm not sure UNC filepaths are even supported here, but that's when it would have become interesting:) So I suggest we just borrow the file url creation, and smack mailbox: to the start of it instead of file:.
I also suggest we unescape the local mailbox path for display.
This patch also fixes MsgEscapeString which wasn't passing along the escape type it's given, fallout from bug 379070 attachment 269995 [details] [diff] [review].
Attachment #292455 -
Flags: superreview?(bienvenu)
Attachment #292455 -
Flags: review?(mnyromyr)
Comment 20•17 years ago
|
||
Comment on attachment 292455 [details] [diff] [review]
proposed better fix
Looks basically good (short of the problem below), but I can only check Mac and Linux, not Windows...
>Index: mailnews/base/resources/content/folderProps.js
>===================================================================
>+ // Decode the displayed mailbox:// URL as it's useful primarily for debugging,
>+ // whereas imap:// and nntp:// urls are sent around.
>+ locationTextbox.value = (gServerTypeFolder == "pop3" || gServerTypeFolder == "none") ?
>+ decodeURI(gMsgFolder.folderURL): gMsgFolder.folderURL;
This does not suffice, because the folder types "movemail" and "rss" do use mailbox: URIs as well, which won't be decoded - but I think they should be...
Attachment #292455 -
Flags: review?(mnyromyr) → review-
Assignee | ||
Comment 21•17 years ago
|
||
Good catch! Only skip encoding for news and imap.
Attachment #292455 -
Attachment is obsolete: true
Attachment #293662 -
Flags: superreview?(bienvenu)
Attachment #293662 -
Flags: review?(mnyromyr)
Attachment #292455 -
Flags: superreview?(bienvenu)
Updated•17 years ago
|
Attachment #293662 -
Flags: review?(mnyromyr) → review+
Comment 22•17 years ago
|
||
Comment on attachment 293662 [details] [diff] [review]
proposed better fix, v2
Magnus, thx for the patch. If you haven't already, you should make sure that opening attachments works in all the affected cases since we use the folderURL for that - http://mxr.mozilla.org/mailnews/source/mail/components/compose/content/MsgComposeCommands.js#2871
Attachment #293662 -
Flags: superreview?(bienvenu) → superreview+
Assignee | ||
Comment 23•17 years ago
|
||
Opening attached local messages never worked (or perhaps pre tb0.9 sometimes) - bug 271094. It just opens an empty window. This bug doesn't fix that...
Checking in mailnews/base/resources/content/folderProps.js;
/cvsroot/mozilla/mailnews/base/resources/content/folderProps.js,v <-- folderProps.js
new revision: 1.28; previous revision: 1.27
done
Checking in mailnews/base/util/nsMsgUtils.cpp;
/cvsroot/mozilla/mailnews/base/util/nsMsgUtils.cpp,v <-- nsMsgUtils.cpp
new revision: 1.143; previous revision: 1.142
done
Checking in mailnews/base/util/nsMsgUtils.h;
/cvsroot/mozilla/mailnews/base/util/nsMsgUtils.h,v <-- nsMsgUtils.h
new revision: 1.70; previous revision: 1.69
done
Checking in mailnews/local/src/nsLocalMailFolder.cpp;
/cvsroot/mozilla/mailnews/local/src/nsLocalMailFolder.cpp,v <-- nsLocalMailFolder.cpp
new revision: 1.567; previous revision: 1.566
done
->FIXED
Status: REOPENED → RESOLVED
Closed: 17 years ago → 17 years ago
Resolution: --- → FIXED
Target Milestone: mozilla1.9 M10 → mozilla1.9 M11
Comment 24•17 years ago
|
||
Magnus, I meant opening any attachments, e.g., an attached .txt file, not just attached messages - sorry if i wasn't clear.
Assignee | ||
Comment 25•17 years ago
|
||
Oh, yeah, those work fine for me.
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
•