aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamon Chaplin <damon@ximian.com>2001-10-23 08:29:53 +0800
committerDamon Chaplin <damon@src.gnome.org>2001-10-23 08:29:53 +0800
commit8c83f5222f938d2a6bf9256014a0423af32ac73a (patch)
treed381be48dbeb92be0c5431de6cad037881dae0b0
parent04bda8ad1e0cb676d711dbf0f22ff9f4fb615891 (diff)
downloadgsoc2013-evolution-8c83f5222f938d2a6bf9256014a0423af32ac73a.tar
gsoc2013-evolution-8c83f5222f938d2a6bf9256014a0423af32ac73a.tar.gz
gsoc2013-evolution-8c83f5222f938d2a6bf9256014a0423af32ac73a.tar.bz2
gsoc2013-evolution-8c83f5222f938d2a6bf9256014a0423af32ac73a.tar.lz
gsoc2013-evolution-8c83f5222f938d2a6bf9256014a0423af32ac73a.tar.xz
gsoc2013-evolution-8c83f5222f938d2a6bf9256014a0423af32ac73a.tar.zst
gsoc2013-evolution-8c83f5222f938d2a6bf9256014a0423af32ac73a.zip
set the default timezone on the server.
2001-10-22 Damon Chaplin <damon@ximian.com> * e-summary-tasks.c (generate_html): set the default timezone on the server. * e-summary-calendar.c (e_cal_comp_util_compare_event_timezones): update to check for DATE values. (uids_to_array): pass the default timezone to cal_recur_generate_instances. (generate_html): set the default timezone on the server. svn path=/trunk/; revision=13921
-rw-r--r--my-evolution/ChangeLog11
-rw-r--r--my-evolution/e-summary-calendar.c17
-rw-r--r--my-evolution/e-summary-tasks.c6
3 files changed, 33 insertions, 1 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog
index 23f2885a0a..259c22143a 100644
--- a/my-evolution/ChangeLog
+++ b/my-evolution/ChangeLog
@@ -1,3 +1,14 @@
+2001-10-22 Damon Chaplin <damon@ximian.com>
+
+ * e-summary-tasks.c (generate_html): set the default timezone on the
+ server.
+
+ * e-summary-calendar.c (e_cal_comp_util_compare_event_timezones):
+ update to check for DATE values.
+ (uids_to_array): pass the default timezone
+ to cal_recur_generate_instances.
+ (generate_html): set the default timezone on the server.
+
2001-10-22 Ettore Perazzoli <ettore@ximian.com>
* e-summary-preferences.c (e_summary_configure): Remove the
diff --git a/my-evolution/e-summary-calendar.c b/my-evolution/e-summary-calendar.c
index 34dcdf1506..71352b951c 100644
--- a/my-evolution/e-summary-calendar.c
+++ b/my-evolution/e-summary-calendar.c
@@ -99,6 +99,14 @@ e_cal_comp_util_compare_event_timezones (CalComponent *comp,
cal_component_get_dtstart (comp, &start_datetime);
cal_component_get_dtend (comp, &end_datetime);
+ /* If either the DTSTART or the DTEND is a DATE value, we return TRUE.
+ Maybe if one was a DATE-TIME we should check that, but that should
+ not happen often. */
+ if (start_datetime.value->is_date || end_datetime.value->is_date) {
+ retval = TRUE;
+ goto out;
+ }
+
/* FIXME: DURATION may be used instead. */
if (cal_component_compare_tzid (tzid, start_datetime.tzid)
&& cal_component_compare_tzid (tzid, end_datetime.tzid)) {
@@ -244,7 +252,8 @@ uids_to_array (ESummary *summary,
recur->summary = summary;
cal_recur_generate_instances (event->comp, begin, end,
add_recurrances, recur,
- cal_client_resolve_tzid_cb, client);
+ cal_client_resolve_tzid_cb, client,
+ recur->summary->tz);
g_free (recur);
g_free (event->uid);
g_free (event);
@@ -294,6 +303,12 @@ generate_html (gpointer data)
char *tmp;
time_t t, begin, end, f;
+ /* Set the default timezone on the server. */
+ if (summary->tz) {
+ cal_client_set_default_timezone (calendar->client,
+ summary->tz);
+ }
+
t = time (NULL);
begin = time_day_begin_with_zone (t, summary->tz);
switch (summary->preferences->days) {
diff --git a/my-evolution/e-summary-tasks.c b/my-evolution/e-summary-tasks.c
index 529af3f90e..1b2548ac57 100644
--- a/my-evolution/e-summary-tasks.c
+++ b/my-evolution/e-summary-tasks.c
@@ -217,6 +217,12 @@ generate_html (gpointer data)
char *tmp;
time_t t;
+ /* Set the default timezone on the server. */
+ if (summary->tz) {
+ cal_client_set_default_timezone (tasks->client,
+ summary->tz);
+ }
+
t = time (NULL);
uids = cal_client_get_uids (tasks->client, CALOBJ_TYPE_TODO);