Closed
Bug 392529
Opened 19 years ago
Closed 17 years ago
delete key doesn't delete selected mail filter(s)
Categories
(MailNews Core :: Filters, enhancement)
MailNews Core
Filters
Tracking
(Not tracked)
VERIFIED
FIXED
mozilla1.9.1b3
People
(Reporter: wsmwk, Assigned: InvisibleSmiley)
Details
Attachments
(2 files, 5 obsolete files)
|
1.34 KB,
patch
|
InvisibleSmiley
:
review+
|
Details | Diff | Splinter Review |
|
1.72 KB,
patch
|
InvisibleSmiley
:
review+
InvisibleSmiley
:
superreview+
|
Details | Diff | Splinter Review |
delete key should delete selected filter(s)
follow up to bug 145290 and bug 357470
Updated•19 years ago
|
Severity: normal → enhancement
OS: Windows XP → All
Hardware: PC → All
Updated•18 years ago
|
Product: Core → MailNews Core
| Assignee | ||
Comment 1•17 years ago
|
||
The attached patch adds delete (Delete) and edit (Enter/Return) actions and fixes the toggle action (at least here on Windows pressing Space gave 0 for event.keyCode; jcranmer kindly told me to go for .which).
Assignee: nobody → jh
Status: NEW → ASSIGNED
Attachment #356333 -
Flags: superreview?(bienvenu)
Attachment #356333 -
Flags: review?(bienvenu)
| Assignee | ||
Comment 2•17 years ago
|
||
Seems I was too optimistic. event.which reports Delete as 0. :-(
Attachment #356333 -
Attachment is obsolete: true
Attachment #356410 -
Flags: superreview?(bienvenu)
Attachment #356410 -
Flags: review?(bienvenu)
Attachment #356333 -
Flags: superreview?(bienvenu)
Attachment #356333 -
Flags: review?(bienvenu)
Comment 3•17 years ago
|
||
Comment on attachment 356410 [details] [diff] [review]
Updated, tested patch
Neil might have some thoughts on this...
Attachment #356410 -
Flags: review?(bienvenu) → review?(neil)
Comment 4•17 years ago
|
||
Comment on attachment 356410 [details] [diff] [review]
Updated, tested patch
>+ const key = event.which || event.keyCode;
event.which only exists for backward compatibility. You should use charCode for all characters and keyCode for other keys. Seeing as the previous code already used keyCode I guess you might as well just switch on event.keyCode instead.
Attachment #356410 -
Flags: review?(neil) → review+
| Assignee | ||
Comment 5•17 years ago
|
||
(In reply to comment #4)
> (From update of attachment 356410 [details] [diff] [review])
> >+ const key = event.which || event.keyCode;
> event.which only exists for backward compatibility. You should use charCode for
> all characters and keyCode for other keys. Seeing as the previous code already
> used keyCode I guess you might as well just switch on event.keyCode instead.
See comment 1 for why keyCode alone won't work (the previous code wasn't working!) and SpatialNavigation.js line 92 and the two LoggingPane.js tests for examples that do it like I did. I checked that any || combination of keyCode and charCode works, though so if you want me to change it either way I will do it.
Comment 6•17 years ago
|
||
(In reply to comment #5)
> See comment 1 for why keyCode alone won't work
Sorry, I'd overlooked that. I guess keyCode || charCode will do, but you're really not supposed to do that...
| Assignee | ||
Comment 7•17 years ago
|
||
As discussed on IRC: new patch making clear which property is checked when rather than using event.which||event.keyCode fall back.
It only appeared to me now that this is forked code; TB patch coming up.
Attachment #356410 -
Attachment is obsolete: true
Attachment #357588 -
Flags: review?(neil)
Attachment #356410 -
Flags: superreview?(bienvenu)
| Assignee | ||
Comment 8•17 years ago
|
||
TB doesn't have global button variables, thus I introduced local variables holding the disabled state with the same logic as in updateButtons(). Yet this code is untested (I have no TB set up).
Attachment #357589 -
Flags: review?(neil)
Updated•17 years ago
|
Attachment #357588 -
Flags: review?(neil) → review+
Comment 9•17 years ago
|
||
Comment on attachment 357588 [details] [diff] [review]
Cleaner approach, SM part
>+ if (event.charCode == KeyEvent.DOM_VK_SPACE)
Although I'd still prefer " ".charCodeAt(0)
| Assignee | ||
Comment 10•17 years ago
|
||
First I forgot to copy the filter variable, then I found this can be done much simpler...
Attachment #357589 -
Attachment is obsolete: true
Attachment #357590 -
Flags: review?(neil)
Attachment #357589 -
Flags: review?(neil)
Comment 11•17 years ago
|
||
Comment on attachment 357590 [details] [diff] [review]
Cleaner approach, TB part v2
My review doesn't apply here.
Attachment #357590 -
Flags: review?(neil)
| Assignee | ||
Updated•17 years ago
|
Attachment #357590 -
Flags: review?(bienvenu)
Comment 12•17 years ago
|
||
Comment on attachment 357590 [details] [diff] [review]
Cleaner approach, TB part v2
thx for the patch - can you use let instead of var for "list", and get rid of the temp vars for deleteButton and editButton, e.g.,
if (!document.getElementById("editButton").disabled)
r=me with those changes...
| Assignee | ||
Comment 13•17 years ago
|
||
Review comments addressed
Attachment #357590 -
Attachment is obsolete: true
Attachment #357590 -
Flags: review?(bienvenu)
Comment 14•17 years ago
|
||
Comment on attachment 357588 [details] [diff] [review]
Cleaner approach, SM part
r=me with the superfluous braces on the inner for loop removed.
Attachment #357588 -
Flags: review+
| Assignee | ||
Comment 15•17 years ago
|
||
Review comments addressed, sr=neil over IRC
Attachment #357588 -
Attachment is obsolete: true
Attachment #359587 -
Flags: superreview+
Attachment #359587 -
Flags: review+
| Assignee | ||
Updated•17 years ago
|
Attachment #359560 -
Flags: review+
| Assignee | ||
Updated•17 years ago
|
Keywords: checkin-needed
Updated•17 years ago
|
Attachment #359587 -
Attachment description: SM part v2, r=mnyromyr, sr=neil → SM part v2, r=mnyromyr, sr=neil
[Checkin: Comment 16]
Comment 16•17 years ago
|
||
Comment on attachment 359587 [details] [diff] [review]
SM part v2, r=mnyromyr, sr=neil
[Checkin: Comment 16]
http://hg.mozilla.org/comm-central/rev/15c15e191d58
Comment 17•17 years ago
|
||
Comment on attachment 359560 [details] [diff] [review]
TB part v3, r=bienvenu
[Checkin: Comment 17]
http://hg.mozilla.org/comm-central/rev/c215a361c0df
Attachment #359560 -
Attachment description: TB part v3, r=bienvenu → TB part v3, r=bienvenu
[Checkin: Comment 17]
Updated•17 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 17 years ago
Keywords: checkin-needed
Resolution: --- → FIXED
Target Milestone: --- → mozilla1.9.1b3
| Reporter | ||
Comment 18•17 years ago
|
||
v.fixed thunderbird
Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.1b3pre) Gecko/20090202 Shredder/3.0b2pre
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•