diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-05 05:06:49 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-05 05:06:49 +0800 |
commit | 45ebcc48ee83de3c5a991ffd4095280770cb22b1 (patch) | |
tree | e07956a3a64e67cbc59f12405a71230a7f9756de /calendar/cal-util | |
parent | 524de5fe838f5d8d6569d81ac1484fd771d025d6 (diff) | |
download | gsoc2013-evolution-45ebcc48ee83de3c5a991ffd4095280770cb22b1.tar gsoc2013-evolution-45ebcc48ee83de3c5a991ffd4095280770cb22b1.tar.gz gsoc2013-evolution-45ebcc48ee83de3c5a991ffd4095280770cb22b1.tar.bz2 gsoc2013-evolution-45ebcc48ee83de3c5a991ffd4095280770cb22b1.tar.lz gsoc2013-evolution-45ebcc48ee83de3c5a991ffd4095280770cb22b1.tar.xz gsoc2013-evolution-45ebcc48ee83de3c5a991ffd4095280770cb22b1.tar.zst gsoc2013-evolution-45ebcc48ee83de3c5a991ffd4095280770cb22b1.zip |
vCalendar gets fully saved -mig
svn path=/trunk/; revision=107
Diffstat (limited to 'calendar/cal-util')
-rw-r--r-- | calendar/cal-util/calobj.c | 86 |
1 files changed, 83 insertions, 3 deletions
diff --git a/calendar/cal-util/calobj.c b/calendar/cal-util/calobj.c index 6dd7fa98db..8c5605c688 100644 --- a/calendar/cal-util/calobj.c +++ b/calendar/cal-util/calobj.c @@ -9,6 +9,7 @@ #include <string.h> #include <glib.h> #include "calobj.h" +#include "timeutil.h" #include "versit/vcc.h" iCalObject * @@ -66,9 +67,15 @@ ical_new (char *comment, char *organizer, char *summary) } static void +my_free (gpointer data, gpointer user_dat_ignored) +{ + g_free (data); +} + +static void list_free (GList *list) { - g_list_foreach (list, g_free, 0); + g_list_foreach (list, my_free, 0); g_list_free (list); } @@ -259,11 +266,37 @@ to_str (int num) return buf; } +/* + * stores a GList in the property, using SEP as the value separator + */ +static void +store_list (VObject *o, char *prop, GList *values, char sep) +{ + GList *l; + int len; + char *result, *p; + + for (len = 0, l = values; l; l = l->next) + len += strlen (l->data) + 1; + + result = g_malloc (len); + for (p = result, l = values; l; l = l->next){ + int len = strlen (l->data); + + strcpy (p, l->data); + p [len] = sep; + p += len+1; + } + addPropValue (o, prop, result); + g_free (p); +} + VObject * ical_object_to_vobject (iCalObject *ical) { VObject *o; - + GList *l; + if (ical->type == ICAL_EVENT) o = newVObject (VCEventProp); else @@ -288,7 +321,54 @@ ical_object_to_vobject (iCalObject *ical) /* completed */ if (ical->completed) addPropValue (o, VCDTendProp, isodate_from_time_t (ical->completed)); - + + /* last_mod */ + addPropValue (o, VCLastModifiedProp, isodate_from_time_t (ical->last_mod)); + + /* exdate */ + if (ical->exdate) + store_list (o, VCExpDateProp, ical->exdate, ','); + + /* description/comment */ + if (ical->comment) + addPropValue (o, VCDescriptionProp, ical->comment); + + /* summary */ + if (ical->summary) + addPropValue (o, VCSummaryProp, ical->summary); + + /* status */ + addPropValue (o, VCStatusProp, ical->status); + + /* class */ + addPropValue (o, VCClassProp, ical->class); + + /* categories */ + if (ical->categories) + store_list (o, VCCategoriesProp, ical->categories, ','); + + /* resources */ + if (ical->categories) + store_list (o, VCCategoriesProp, ical->resources, ";"); + + /* priority */ + addPropValue (o, VCPriorityProp, to_str (ical->priority)); + + /* transparency */ + addPropValue (o, VCTranspProp, to_str (ical->transp)); + + /* related */ + store_list (o, VCRelatedToProp, ical->related, ";"); + + /* attach */ + for (l = ical->attach; l; l = l->next) + addPropValue (o, VCAttachProp, l->data); + + /* url */ + if (ical->url) + addPropValue (o, VCURLProp, ical->url); + + /* FIXME: alarms */ return o; } |