aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2007-02-21 02:12:30 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2007-02-21 02:12:30 +0800
commit17601bed85ace2875c3640c4e98c996b5872a9f2 (patch)
tree28f6b3679bbbb80fb16d5e8c11f05e3b9c72d32f
parent14da7a959fe99ea2d2c3d6d5e1c435537a1e0155 (diff)
downloadgsoc2013-evolution-17601bed85ace2875c3640c4e98c996b5872a9f2.tar
gsoc2013-evolution-17601bed85ace2875c3640c4e98c996b5872a9f2.tar.gz
gsoc2013-evolution-17601bed85ace2875c3640c4e98c996b5872a9f2.tar.bz2
gsoc2013-evolution-17601bed85ace2875c3640c4e98c996b5872a9f2.tar.lz
gsoc2013-evolution-17601bed85ace2875c3640c4e98c996b5872a9f2.tar.xz
gsoc2013-evolution-17601bed85ace2875c3640c4e98c996b5872a9f2.tar.zst
gsoc2013-evolution-17601bed85ace2875c3640c4e98c996b5872a9f2.zip
Add the timezone information while publishing the calendars.
svn path=/trunk/; revision=33231
-rw-r--r--plugins/publish-calendar/ChangeLog7
-rw-r--r--plugins/publish-calendar/publish-format-ical.c45
2 files changed, 52 insertions, 0 deletions
diff --git a/plugins/publish-calendar/ChangeLog b/plugins/publish-calendar/ChangeLog
index bd30d3ccf6..7d2c4b360b 100644
--- a/plugins/publish-calendar/ChangeLog
+++ b/plugins/publish-calendar/ChangeLog
@@ -1,3 +1,10 @@
+2007-02-20 Chenthill Palanisamy <pchenthill@novell.com>
+
+ Fixes #238093 (bnc)
+ * publish-format-ical.c: (insert_tz_comps), (append_tz_to_comp),
+ (write_calendar): Add the timezone information while
+ publishing the calendars.
+
2007-02-19 Sankar P <psankar@novell.com>
* url-editor-dialog.c: (set_from_uri):
diff --git a/plugins/publish-calendar/publish-format-ical.c b/plugins/publish-calendar/publish-format-ical.c
index 901a3c079e..61327287dd 100644
--- a/plugins/publish-calendar/publish-format-ical.c
+++ b/plugins/publish-calendar/publish-format-ical.c
@@ -29,6 +29,41 @@
#include <calendar/common/authentication.h>
#include "publish-format-ical.h"
+typedef struct {
+ GHashTable *zones;
+ ECal *ecal;
+} CompTzData;
+
+ static void
+insert_tz_comps (icalparameter *param, void *cb_data)
+{
+ const char *tzid;
+ CompTzData *tdata = cb_data;
+ icaltimezone *zone = NULL;
+ icalcomponent *tzcomp;
+ GError *error = NULL;
+
+ tzid = icalparameter_get_tzid (param);
+
+ if (g_hash_table_lookup (tdata->zones, tzid))
+ return;
+
+ if (!e_cal_get_timezone (tdata->ecal, tzid, &zone, &error)) {
+ g_warning ("Could not get the timezone information for %s : %s \n", tzid, error->message);
+ g_error_free (error);
+ return;
+ }
+
+ tzcomp = icalcomponent_new_clone (icaltimezone_get_component (zone));
+ g_hash_table_insert (tdata->zones, (gpointer) tzid, (gpointer) tzcomp);
+}
+
+static void
+append_tz_to_comp (gpointer key, gpointer value, icalcomponent *toplevel)
+{
+ icalcomponent_add_component (toplevel, (icalcomponent *) value);
+}
+
static gboolean
write_calendar (gchar *uid, ESourceList *source_list, GnomeVFSHandle *handle)
{
@@ -60,13 +95,23 @@ write_calendar (gchar *uid, ESourceList *source_list, GnomeVFSHandle *handle)
char *ical_string;
GnomeVFSFileSize bytes_written = 0;
GnomeVFSResult result;
+ CompTzData tdata;
+
+ tdata.zones = g_hash_table_new (g_str_hash, g_str_equal);
+ tdata.ecal = client;
while (objects) {
icalcomponent *icalcomp = objects->data;
+ icalcomponent_foreach_tzid (icalcomp, insert_tz_comps, &tdata);
icalcomponent_add_component (top_level, icalcomp);
objects = g_list_remove (objects, icalcomp);
}
+ g_hash_table_foreach (tdata.zones, (GHFunc) append_tz_to_comp, top_level);
+
+ g_hash_table_destroy (tdata.zones);
+ tdata.zones = NULL;
+
ical_string = icalcomponent_as_ical_string (top_level);
if ((result = gnome_vfs_write (handle, (gconstpointer) ical_string, strlen (ical_string), &bytes_written)) != GNOME_VFS_OK) {
/* FIXME: EError */