From: Art Cancro Date: Wed, 12 Nov 2008 16:59:28 +0000 (+0000) Subject: Removed time zone handling from webcit too. X-Git-Tag: v7.86~1794 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=7dcf9c70b4925abe30a6d7a3bf9bfa31f48fea45 Removed time zone handling from webcit too. Someone please kill me. --- diff --git a/webcit/calendar.c b/webcit/calendar.c index 8f465c629..d36745a7b 100644 --- a/webcit/calendar.c +++ b/webcit/calendar.c @@ -283,7 +283,6 @@ void cal_process_attachment(wc_mime_attachment *Mime) return; } - ical_dezonify(cal); cal_process_object(Mime->Data, cal, 0, Mime->msgnum, ChrPtr(Mime->PartNum)); /* Free the memory we obtained from libical's constructor */ @@ -446,7 +445,6 @@ void display_individual_cal(icalcomponent *cal, long msgnum, char *from, int unr len = strlen(from); Cal->from = (char*)malloc(len+ 1); memcpy(Cal->from, from, len + 1); - ical_dezonify(Cal->cal); Cal->cal_msgnum = msgnum; /* Precalculate the starting date and time of this event, and store it in our top-level @@ -508,7 +506,6 @@ void display_individual_cal(icalcomponent *cal, long msgnum, char *from, int unr len = strlen(from); Cal->from = (char*)malloc(len+ 1); memcpy(Cal->from, from, len + 1); - ical_dezonify(Cal->cal); Cal->cal_msgnum = msgnum; ps = icalcomponent_get_first_property(Cal->cal, ICAL_DTSTART_PROPERTY); @@ -973,8 +970,6 @@ void load_ical_object(long msgnum, int unread, cal = icalcomponent_new_from_string(relevant_source); if (cal != NULL) { - ical_dezonify(cal); - /* Simple components of desired type */ if (icalcomponent_isa(cal) == which_kind) { callback(cal, msgnum, from, unread, calv); diff --git a/webcit/event.c b/webcit/event.c index 138bc0ff3..fb72422d0 100644 --- a/webcit/event.c +++ b/webcit/event.c @@ -438,15 +438,6 @@ void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum, wprintf("\n"); - /* Table row displaying raw RRULE data, FIXME remove when finished */ - if (rrule) { - wprintf("\n"); - } - char *frequency_units[] = { _("seconds"), _("minutes"),
"); - wprintf("Raw data"); - wprintf(""); - wprintf("%s", icalrecurrencetype_as_string(&recur)); - wprintf("