aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/cal-util
diff options
context:
space:
mode:
authorDamon Chaplin <damon@ximian.com>2001-10-25 05:02:43 +0800
committerDamon Chaplin <damon@src.gnome.org>2001-10-25 05:02:43 +0800
commit1c61950527e07b6f0343f0c1a9ecf7d043b7873e (patch)
tree65886d121b33109e53f9c93ece7923bec6c81764 /calendar/cal-util
parentbb7d2c44996f10c4e768f0e86d5f894d607f3864 (diff)
downloadgsoc2013-evolution-1c61950527e07b6f0343f0c1a9ecf7d043b7873e.tar
gsoc2013-evolution-1c61950527e07b6f0343f0c1a9ecf7d043b7873e.tar.gz
gsoc2013-evolution-1c61950527e07b6f0343f0c1a9ecf7d043b7873e.tar.bz2
gsoc2013-evolution-1c61950527e07b6f0343f0c1a9ecf7d043b7873e.tar.lz
gsoc2013-evolution-1c61950527e07b6f0343f0c1a9ecf7d043b7873e.tar.xz
gsoc2013-evolution-1c61950527e07b6f0343f0c1a9ecf7d043b7873e.tar.zst
gsoc2013-evolution-1c61950527e07b6f0343f0c1a9ecf7d043b7873e.zip
when iterating over the subcomponents, use 'subcomp' rather than
2001-10-24 Damon Chaplin <damon@ximian.com> * pcs/cal-backend-file.c (cal_backend_file_update_objects): when iterating over the subcomponents, use 'subcomp' rather than 'icalcomp'. That meant it wasn't working at all well when an entire VCALENDAR was passed in. * cal-util/cal-component.c: handle DURATION property used instead of DTEND or DUE. In cal_component_get_dtend/due we will return DTSTART + DURATION if necessary. In set_dtend/due we remove any DURATION property. Fixes bug #11262. * gui/e-meeting-model.c (build_etable): * gui/e-calendar-table.c (e_calendar_table_init): use U_ for the ECellCombo popdown strings, as it expects UTF-8 strings. svn path=/trunk/; revision=13992
Diffstat (limited to 'calendar/cal-util')
-rw-r--r--calendar/cal-util/cal-component.c89
1 files changed, 89 insertions, 0 deletions
diff --git a/calendar/cal-util/cal-component.c b/calendar/cal-util/cal-component.c
index 58e1d4a945..7750bb224f 100644
--- a/calendar/cal-util/cal-component.c
+++ b/calendar/cal-util/cal-component.c
@@ -88,6 +88,13 @@ struct _CalComponentPrivate {
icalproperty *dtstamp;
+ /* The DURATION property can be used instead of the VEVENT DTEND or
+ the VTODO DUE dates. We do not use it directly ourselves, but we
+ must be able to handle it from incoming data. If a DTEND or DUE
+ is requested, we convert the DURATION if necessary. If DTEND or
+ DUE is set, we remove any DURATION. */
+ icalproperty *duration;
+
struct datetime due;
GSList *exdate_list; /* list of struct datetime */
@@ -306,6 +313,8 @@ free_icalcomponent (CalComponent *comp, gboolean free)
priv->due.prop = NULL;
priv->due.tzid_param = NULL;
+ priv->duration = NULL;
+
priv->exdate_list = free_slist (priv->exdate_list);
g_slist_free (priv->exrule_list);
@@ -633,6 +642,10 @@ scan_property (CalComponent *comp, icalproperty *prop)
scan_datetime (comp, &priv->due, prop);
break;
+ case ICAL_DURATION_PROPERTY:
+ priv->duration = prop;
+ break;
+
case ICAL_EXDATE_PROPERTY:
scan_exdate (comp, prop);
break;
@@ -1971,6 +1984,54 @@ set_datetime (CalComponent *comp, struct datetime *datetime,
}
}
+
+/* This tries to get the DTSTART + DURATION for a VEVENT or VTODO. In a
+ VEVENT this is used for the DTEND if no DTEND exists, In a VTOTO it is
+ used for the DUE date if DUE doesn't exist. */
+static void
+cal_component_get_start_plus_duration (CalComponent *comp,
+ CalComponentDateTime *dt)
+{
+ CalComponentPrivate *priv;
+ struct icaldurationtype duration;
+
+ priv = comp->priv;
+
+ if (!priv->duration)
+ return;
+
+ /* Get the DTSTART time. */
+ get_datetime (&priv->dtstart, icalproperty_get_dtstart, dt);
+ if (!dt->value)
+ return;
+
+ duration = icalproperty_get_duration (priv->duration);
+
+ /* The DURATION shouldn't be negative, but just return DTSTART if it
+ is, i.e. assume it is 0. */
+ if (duration.is_neg)
+ return;
+
+ /* If DTSTART is a DATE value, then we need to check if the DURATION
+ includes any hours, minutes or seconds. If it does, we need to
+ make the DTEND/DUE a DATE-TIME value. If not, we need to subtract
+ one from the days, since the end date will be inclusive. */
+ duration.days += duration.weeks * 7;
+ if (dt->value->is_date) {
+ if (duration.hours != 0 || duration.minutes != 0
+ || duration.seconds != 0) {
+ dt->value->is_date = 0;
+ } else {
+ duration.days--;
+ }
+ }
+
+ /* Add on the DURATION. */
+ icaltime_adjust (dt->value, duration.days, duration.hours,
+ duration.minutes, duration.seconds);
+}
+
+
/**
* cal_component_get_dtend:
* @comp: A calendar component object.
@@ -1992,6 +2053,11 @@ cal_component_get_dtend (CalComponent *comp, CalComponentDateTime *dt)
g_return_if_fail (priv->icalcomp != NULL);
get_datetime (&priv->dtend, icalproperty_get_dtend, dt);
+
+ /* If we don't have a DTEND property, then we try to get DTSTART
+ + DURATION. */
+ if (!dt->value)
+ cal_component_get_start_plus_duration (comp, dt);
}
/**
@@ -2017,6 +2083,15 @@ cal_component_set_dtend (CalComponent *comp, CalComponentDateTime *dt)
icalproperty_set_dtend,
dt);
+ /* Make sure we remove any existing DURATION property, as it can't be
+ used with a DTEND. If DTEND is set to NULL, i.e. removed, we also
+ want to remove any DURATION. */
+ if (priv->duration) {
+ icalcomponent_remove_property (priv->icalcomp, priv->duration);
+ icalproperty_free (priv->duration);
+ priv->duration = NULL;
+ }
+
priv->need_sequence_inc = TRUE;
}
@@ -2143,6 +2218,11 @@ cal_component_get_due (CalComponent *comp, CalComponentDateTime *dt)
g_return_if_fail (priv->icalcomp != NULL);
get_datetime (&priv->due, icalproperty_get_due, dt);
+
+ /* If we don't have a DTEND property, then we try to get DTSTART
+ + DURATION. */
+ if (!dt->value)
+ cal_component_get_start_plus_duration (comp, dt);
}
/**
@@ -2168,6 +2248,15 @@ cal_component_set_due (CalComponent *comp, CalComponentDateTime *dt)
icalproperty_set_due,
dt);
+ /* Make sure we remove any existing DURATION property, as it can't be
+ used with a DTEND. If DTEND is set to NULL, i.e. removed, we also
+ want to remove any DURATION. */
+ if (priv->duration) {
+ icalcomponent_remove_property (priv->icalcomp, priv->duration);
+ icalproperty_free (priv->duration);
+ priv->duration = NULL;
+ }
+
priv->need_sequence_inc = TRUE;
}