Closed
Bug 471973
Opened 16 years ago
Closed 16 years ago
Make use of alarm interface in backend code
Categories
(Calendar :: Internal Components, defect)
Calendar
Internal Components
Tracking
(Not tracked)
RESOLVED
FIXED
1.0b1
People
(Reporter: Fallen, Assigned: Fallen)
References
Details
Attachments
(1 file)
59.82 KB,
patch
|
dbo
:
review+
|
Details | Diff | Splinter Review |
This patch takes care of using calIAlarm everywhere where we have previously been using alarmOffset/alarmRelated. No UI is changed here and no support for multiple/abosulte alarms is guaranteed, but this is another step into that direction.
I've sent this patch to Andreas for further testing. Please do comment on the code.
Attachment #355220 -
Flags: review?(daniel.boelzle)
Assignee | ||
Comment 1•16 years ago
|
||
Oh btw, I have no problem changing the interface iid for calIItemBase here, I just forgot about it :-)
Updated•16 years ago
|
Attachment #355220 -
Flags: review?(daniel.boelzle) → review+
Comment 2•16 years ago
|
||
Comment on attachment 355220 [details] [diff] [review]
Fix - v1
Overall the changes look good to me, though I haven't tested them; r=dbo
b/calendar>+ let alarms = item.getAlarms({})
>+ .filter(function(x) x.related != x.ALARM_RELATED_ABSOLUTE);
I didn't know that defining function like this is valid :)
>diff --git a/calendar/base/src/calItemBase.js b/calendar/base/src/calItemBase.js
>+ for (let alarmComp in cal.ical.subcomponentIterator(icalcomp, "VALARM")) {
>+ let alarm = cal.createAlarm();
>+ try {
>+ alarm.icalComponent = alarmComp;
>+ if (alarm.related != Components.interfaces.calIAlarm.ALARM_RELATED_ABSOLUTE) {
>+ // TODO ALARMSUPPORT unconditionally add alarm when we
>+ // support multiple alarms.
>+ this.addAlarm(alarm);
> }
Does this mean we yet don't roundtrip multiple resp. absolute alarms?
>+ addAlarm: function cIB_addAlarm(aAlarm) {
>+ try {
>+ // Trigger the icalComponent getter to make sure the alarm is valid.
>+ aAlarm.icalComponent;
>+ } catch (e) {
>+ throw Components.results.NS_ERROR_INVALID_ARG;
>+ }
I don't think we should serialize the VALARM on every addAlarm() when reading/stuffing events objects. I agree it's good to check the alarm object though. Maybe you could add a private addAlarm_() that does not check.
Please use let instead of var in various for loops.
Assignee | ||
Comment 3•16 years ago
|
||
> Does this mean we yet don't roundtrip multiple resp. absolute alarms?
No, we also haven't been doing this before afaik. This is reserved for the next step.
> I don't think we should serialize the VALARM on every addAlarm() when
> reading/stuffing events objects. I agree it's good to check the alarm object
> though. Maybe you could add a private addAlarm_() that does not check.
Done, added a second parameter.
Pushed to comm-central <http://hg.mozilla.org/comm-central/rev/a41dd9c8e51c>
-> FIXED
Status: ASSIGNED → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
Target Milestone: --- → 1.0
Assignee | ||
Comment 4•13 years ago
|
||
These bugs are likely targeted at Lightning 1.0b1, not Lightning 1.0. If this change was done in error, please adjust the target milestone to its correct value. To filter on this bugspam, you can use "lightning-10-target-move".
Target Milestone: 1.0 → 1.0b1
Assignee | ||
Comment 5•13 years ago
|
||
These bugs are likely targeted at Lightning 1.0b1, not Lightning 1.0. If this change was done in error, please adjust the target milestone to its correct value. To filter on this bugspam, you can use "lightning-10-target-move".
You need to log in
before you can comment on or make changes to this bug.
Description
•