Closed Bug 323477 Opened 19 years ago Closed 19 years ago

Cannot delete recurring event from multiweek/month view

Categories

(Calendar :: Sunbird Only, defect)

x86
Linux
defect
Not set
normal

Tracking

(Not tracked)

RESOLVED FIXED

People

(Reporter: calum.mackay, Assigned: michael.buettner)

References

Details

Attachments

(1 file, 2 obsolete files)

Linux/x86 my own build from CVS; 20060113

I find that I cannot delete a weekly-recurring event from within the multiweek view. Neither the Del key, nor the entry from the event's context menu, nor the entry on the Edit menu, do anything at all. No errors on cmdline nor on JS console. I can delete the event in the Week view.

I can delete single non-recurring events in the multiweek view.

To delete a weekly recurring event, from within the multiweek view, I have to either disable the recurrence and then delete the resulting single event, or switch to a different view.
Did some testing:

In the Sunbird/0.3a1+ (win32-2006-01-12-07-trunk) build deleting of recurring events works (via Del-key or context menu). If I delete any event the whole event series is deleted (all views).

In the Sunbird/0.3a1+ (win32-2006-01-13-07-trunk) build I can delete single events out of event series using the Del-key in Day/Week view. Deleting via context menu does not work. In the Multiweek/Month view deleting does not work at all.

Problem applies to all recurring events, not only weekly-recurring events.

In the latest build (win32-2006-01-21-01-trunk) the problem still exist.

(Sometimes I was able to delete events in the Multiweek/Month view. But that happened only if Day/Week view was seelcted before. See Bug 320175 Comment #3 for this)

Checkins to mozilla/calendar between 2006-01-12 06:00 and 2006-01-13 08:00:
http://bonsai.mozilla.org/cvsquery.cgi?treeid=default&module=CalendarClient&branch=HEAD&branchtype=match&dir=mozilla%2Fcalendar&file=&filetype=match&who=&whotype=match&sortby=Date&hours=2&date=explicit&mindate=2006-01-12+06%3A00&maxdate=2006-01-13+08%3A00&cvsroot=%2Fcvsroot
Summary: cannot delete weekly-recurring event from within multiweek view → Cannot delete recurring event from multiweek/month view
(In reply to comment #1)
> Did some testing:
> ...
Great work.  The selection changes seem the most suspicious.  I'd be curious what the selectionManager is doing when you select things, and whether it's getting called at all the proper times.  What event is being placed in the selectedEvents array? the parent? the occurrence? neither?
I added some dumps to see what happens. From what I see this is not a problem with the selection. Pressing Del-Key in Day View calls:

    calViewController.deleteOccurrence called
        calRecurrenceInfo.removeOccurrenceAt() called 
            with aRecurrenceId=2006/01/31 11:00:00 floating
        calRecurrenceInfo.removeOccurrenceAt() finished
    calViewController.deleteOccurrence finished

    calTransaction.doTransaction('delete') called
        StorageProvider.deleteItem() called
          calRecurrenceInfo.removeExceptionFor() called 
              with aRecurrenceId=2006/01/31 11:00:00 floating
          calRecurrenceInfo.removeExceptionFor() finished
        StorageProvider.deleteItem() finished
    calTransaction.doTransaction('delete') finished

Using Delete from menu or context menu in Day View just calls:

    calTransaction.doTransaction('delete') called
        StorageProvider.deleteItem() called
          calRecurrenceInfo.removeExceptionFor() called 
              with aRecurrenceId=2006/01/31 11:00:00 floating
          calRecurrenceInfo.removeExceptionFor() finished
        StorageProvider.deleteItem() finished
    calTransaction.doTransaction('delete') finished

So removeOccurrenceAt() makes it working in the first case. What is removeExceptionFor() suppossed to to?. That does not seem to work.
removeExceptionFor is used for returning a previously listed exception to a recurring event back into the normal series of events.  I'm fairly certain that the call in the storage provider should be removeOccurrenceAt instead.
Just tested with the ics provider (using file:/// url): Deleting of recurring
event via Del-key and menu works in month view, but the whole series is deleted.

Seems there a big differences between storage and ics provider.
Assignee: mostafah → michael.buettner
investigating...
Status: NEW → ASSIGNED
the root cause of this issue is related to the focus-handling of the different views. each view listens for the del/backspace-key, but this event is obviously only received by the view which currently has the focus. since the focus-handling is not performed in a consistent way, we run into all sorts of incorrect behaviors. to make things even worse, each view attachs itself as observer to the compositeCalendar, which is why the behavior is different depending on the order in which the views were selected.

any suggestions how to perform a consistent focus-handling? would it be enough for the month-view to just grab the focus if it is activated? currently it never gets the focus, which is why it doesn't work to delete events in the month-view.

besides the problem with the focus-handling there is still another problem with recurring events. if we delete for example the second occurrence, and afterwards the third occurence, the second one suddenly reappears. this is a seperate issue i'm still looking for.

patch in progress...
Attached patch patch for this task (obsolete) — — Splinter Review
the cause of this issue was indeed related to the focus-handling of the views, but at the end of the day it was just a missing css-style. the month-view never got the focus, which is why the del-key didn't work...
Attachment #209837 - Flags: first-review?
Comment on attachment 209837 [details] [diff] [review]
patch for this task

Michael, please see to it that you always request review from a person. Otherwise the review request might fall through the cracks.
Attachment #209837 - Flags: first-review? → first-review?(jminta)
Comment on attachment 209837 [details] [diff] [review]
patch for this task

After a quick test: This patch seems to fix Bug 320175. But it is still not possible to delete recurring events via toolbar or context menu.
(In reply to comment #9)
aeh, I thought I did exactly that? Isn't it correct to enter the mail-address of the person I request for the review? sorry for the dumb question, this is my first patch...
(In reply to comment #10)
> (From update of attachment 209837 [details] [diff] [review] [edit])
> After a quick test: This patch seems to fix Bug 320175. But it is still not
> possible to delete recurring events via toolbar or context menu.

tried it with lightning only, stupid me ;-) I'll go for sunbird, too...
Comment on attachment 209837 [details] [diff] [review]
patch for this task

OK, so I'm a bit confused given the last few comments, especially the one by ssitter and the fact that I now have 2 requests to review the same patch on 2 different bugs.

As I recall, there were some problems identified with the storage provider in deleting instances of recurring events.  Michael, can you please clarify
(1) What bug(s) this patch is designed to fix.
(2) What work still remains to be done on this bug and others if this patch is checked in.

That will make reviewing this much easier.  Thanks.
(In reply to comment #13)

> As I recall, there were some problems identified with the storage provider in
> deleting instances of recurring events.  Michael, can you please clarify
> (1) What bug(s) this patch is designed to fix.
> (2) What work still remains to be done on this bug and others if this patch is
> checked in.

sorry for the confusion ;-)

1) the submitted patch resolves the problem with deleting events from the month-view (in lightning as well as in sunbird) with the del-key. it doesn't matter if the event has a recurrence rule or not, the problem is that the month-view never got the focus, therefore the appropriate handler was never called.

2) regarding the remaining work, the patch fixes the problem described in bug #320175 (which ssitter pointed me to after i already submitted the patch to bug #323477). bug #320175 could be set to resolved after integration of the patch. for bug #323477 the remaining work is to delete recurring events via toolbar or context menu in sunbird, this needs to be resolved by some other patch i'm currently working on.

regarding the problems with the storage provider not correctly deleting instances of recurring events, i'm currently investigating what's going on there, but it is not related to this patch.
Comment on attachment 209837 [details] [diff] [review]
patch for this task

Cancelling request.  This patch went in on bug 320175.
Attachment #209837 - Attachment is obsolete: true
Attachment #209837 - Flags: first-review?(jminta)
Attached patch proposed patch (obsolete) — — Splinter Review
this patch will now fix the right bug ;-)

the problem was that 'deleteItems' in calendar.js did not handle recurring events at all, i added the appropriate codepath. please note that in case of a recurring event i'm passing the proxy of the occurrence to 'doTransaction', which is consitent with how lightning handles this.
Attachment #210596 - Flags: first-review?(jminta)
Attached patch reworked patch — — Splinter Review
changed the last patch to reflect the result of our discussion regarding bug #325215
Attachment #210596 - Attachment is obsolete: true
Attachment #211127 - Flags: first-review?(jminta)
Attachment #210596 - Flags: first-review?(jminta)
Comment on attachment 211127 [details] [diff] [review]
reworked patch

r=jminta Thanks for the patch!
Attachment #211127 - Flags: first-review?(jminta) → first-review+
patch checked in.
Status: ASSIGNED → RESOLVED
Closed: 19 years ago
Resolution: --- → FIXED
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: