Closed
Bug 296770
Opened 20 years ago
Closed 18 years ago
Default text in "Mark Messages as Read by Date" dialogue does not respect leading zeros in system date format
Categories
(Thunderbird :: General, defect)
Thunderbird
General
Tracking
(Not tracked)
RESOLVED
FIXED
Thunderbird 3
People
(Reporter: mozilla, Assigned: mkmelin)
Details
Attachments
(2 files, 3 obsolete files)
|
8.72 KB,
patch
|
neil
:
review+
|
Details | Diff | Splinter Review |
|
7.48 KB,
patch
|
Bienvenu
:
superreview+
mscott
:
approval-thunderbird2-
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8b2) Gecko/20050531 Firefox/1.0+ Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8b2) Gecko/20050531 Firefox/1.0+ If the system's date format is set to include leading xeros (e.g. 2005-06-05 and 05/06/2005) the default text in the Mark Messages as Read by Date dialogue omits the leading zeros (e.g. 2005-6-5 and 5/6/2005). The rest of Thunderbird's interface (that I've noticed) shows the correct date format. Reproducible: Always Steps to Reproduce: 1. Set the system date format to YYYY-MM-DD. 2. Open the "Mark Messages as Read by Date" dialogue. Actual Results: Default text in the "To:" field is "2005-6-5". Expected Results: "2005-06-05" This applies to both Thunderbird 1.0.x and 1.1a1.
Comment 1•19 years ago
|
||
This is an automated message, with ID "auto-resolve01". This bug has had no comments for a long time. Statistically, we have found that bug reports that have not been confirmed by a second user after three months are highly unlikely to be the source of a fix to the code. While your input is very important to us, our resources are limited and so we are asking for your help in focussing our efforts. If you can still reproduce this problem in the latest version of the product (see below for how to obtain a copy) or, for feature requests, if it's not present in the latest version and you still believe we should implement it, please visit the URL of this bug (given at the top of this mail) and add a comment to that effect, giving more reproduction information if you have it. If it is not a problem any longer, you need take no action. If this bug is not changed in any way in the next two weeks, it will be automatically resolved. Thank you for your help in this matter. The latest beta releases can be obtained from: Firefox: http://www.mozilla.org/projects/firefox/ Thunderbird: http://www.mozilla.org/products/thunderbird/releases/1.5beta1.html Seamonkey: http://www.mozilla.org/projects/seamonkey/
Comment 2•19 years ago
|
||
This bug has been automatically resolved after a period of inactivity (see above comment). If anyone thinks this is incorrect, they should feel free to reopen it.
Status: UNCONFIRMED → RESOLVED
Closed: 19 years ago
Resolution: --- → EXPIRED
| Assignee | ||
Updated•19 years ago
|
Status: RESOLVED → UNCONFIRMED
Resolution: EXPIRED → ---
| Assignee | ||
Comment 3•19 years ago
|
||
-> NEW using Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8) Gecko/20051117 Thunderbird/1.5 ID:2005111705
Status: UNCONFIRMED → NEW
Ever confirmed: true
OS: Windows XP → All
| Assignee | ||
Comment 4•19 years ago
|
||
This adds the leading zeros as needed, also cleans up a related false warning found when testing the patch.
Assignee: mscott → mkmelin+mozilla
Status: NEW → ASSIGNED
Attachment #222655 -
Flags: superreview?
Attachment #222655 -
Flags: review?
| Assignee | ||
Updated•19 years ago
|
Attachment #222655 -
Flags: superreview?(neil)
Attachment #222655 -
Flags: superreview?
Attachment #222655 -
Flags: review?(neil)
Attachment #222655 -
Flags: review?
Comment 5•19 years ago
|
||
Comment on attachment 222655 [details] [diff] [review] proposed fix Surely this patch forces leading zeros? Perhaps the correct thing to do here is to have a second preference for leading zeros, but if the date format is 0 then you determine it from the date format service. Also I don't have r+sr powers over this code.
Attachment #222655 -
Flags: superreview?(neil)
Attachment #222655 -
Flags: review?(neil)
Attachment #222655 -
Flags: review-
| Assignee | ||
Comment 6•19 years ago
|
||
Addressing review comments. Use leading zeros only when really wanted. (or did you mean you don't have r powers at all for this, neil?)
Attachment #222655 -
Attachment is obsolete: true
Attachment #223357 -
Flags: review?(neil)
Comment 7•19 years ago
|
||
Comment on attachment 223357 [details] [diff] [review] proposed fix, v2 >+ // set up a date with leading zeros for testing if they should be used >+ var testDateString = dateFormatService.FormatDate("", >+ dateFormatService.dateFormatShort, 1999, 12, 1); >+ var testArrayOfStrings = testDateString.split(gSearchDateSeparator); I was trying to figure out why you made a second string and array. Then I realised that the date format tests look for the month and day, and would get confused between a day of "01" and a day of "1". One solution is to use == 1 instead of == "1" as that will match both "1" and "01". Another option is to write gSearchDateLeadingZeros = /0/.test(zeroDateString); - this will be true if the string contains a zero and false if not. Or perhaps you can convince me that your existing way has the most merit. >- getLocaleShortDateFormat(); >- else >+ initLocaleShortDateFormat(); >+ else You accidentally left a space at the end of this line. >+ if(gSearchDateLeadingZeros && month < 10) >+ month = "0" + month; >+ var date = time.getDate(); >+ if(gSearchDateLeadingZeros && date < 10) >+ date = "0" + date; Please put a space between all your if and (s.
| Assignee | ||
Comment 8•19 years ago
|
||
(In reply to comment #7) > realised that the date format tests look for the month and day, and would get > confused between a day of "01" and a day of "1". One solution is to use == 1 > instead of == "1" as that will match both "1" and "01". Another option is to My approach was to test just that, whether it's "1" or "01", so that wouldn't be very useful. Your regexp solution seems good though (lesser code), I'll make a new patch.
| Assignee | ||
Comment 9•19 years ago
|
||
Addressing review comments.
Attachment #223357 -
Attachment is obsolete: true
Attachment #223436 -
Flags: review?(neil)
Attachment #223357 -
Flags: review?(neil)
Comment 10•19 years ago
|
||
Comment on attachment 223436 [details] [diff] [review] proposed fix, v3 >+ if( gSearchDateLeadingZeros && month < 10 ) >+ if( gSearchDateLeadingZeros && date < 10 ) >+ if( !header.isRead ) { // don't do anything until really necessary Nit: these three lines still missing a space between if and (
Attachment #223436 -
Flags: review?(neil) → review+
| Assignee | ||
Comment 11•19 years ago
|
||
Nits picked, carrying forwards neils r+, seeking sr.
Attachment #223440 -
Flags: superreview?(mscott)
| Assignee | ||
Comment 12•18 years ago
|
||
The previous patch bitrotted (fix for bug 351864 was included in this one). The patch has r. David, are you able to sr?
Attachment #223440 -
Attachment is obsolete: true
Attachment #246172 -
Flags: superreview?(bienvenu)
Attachment #223440 -
Flags: superreview?(mscott)
Comment 13•18 years ago
|
||
Comment on attachment 246172 [details] [diff] [review] proposed fix, v3 (unbitrotted) sure, thx for the patch.
Attachment #246172 -
Flags: superreview?(bienvenu) → superreview+
| Assignee | ||
Updated•18 years ago
|
Hardware: PC → All
Whiteboard: [checkin needed]
Comment 14•18 years ago
|
||
Fix checked in.
Status: ASSIGNED → RESOLVED
Closed: 19 years ago → 18 years ago
Resolution: --- → FIXED
Whiteboard: [checkin needed]
Comment 15•18 years ago
|
||
Since the date right now has no leading zeroes, if I try "Mark by date" I can't test this (without resetting my computer's calendar). But I created a date-based message filter, and the fix applies there as well, in TB 3a1-1123, Win2K. I guess this was a relatively simple bug -- but Magnus, now that you're familiar with this code, could you take a whack at bug 224109, and maybe bug 228868? :)
| Assignee | ||
Comment 16•18 years ago
|
||
We'll see... can't say it's a top priority atm.
| Assignee | ||
Updated•18 years ago
|
Attachment #246172 -
Flags: approval-thunderbird2?
Comment 17•18 years ago
|
||
Comment on attachment 246172 [details] [diff] [review] proposed fix, v3 (unbitrotted) I didn't notice this approval until after the l10n string freeze. Sorry Magnus.
Attachment #246172 -
Flags: approval-thunderbird2? → approval-thunderbird2-
| Assignee | ||
Updated•16 years ago
|
Target Milestone: --- → Thunderbird 3
You need to log in
before you can comment on or make changes to this bug.
Description
•