From 5cb14f538fa61736510e37181ac183c842300f34 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Thu, 2 Nov 2006 21:54:41 +0000 Subject: [PATCH] Monotone-Parent: 20330ea37783663bfd53ef168e9710527aff61cf Monotone-Revision: 02eb29bbfbe92d0cd5172a05dce7bc7c9875da19 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-11-02T21:54:41 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 7 +++++++ SoObjects/Appointments/SOGoAppointmentObject.m | 5 +++++ SoObjects/Appointments/SOGoTaskObject.m | 5 +++++ 3 files changed, 17 insertions(+) diff --git a/ChangeLog b/ChangeLog index 4c23be7c8..61392d4b8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ 2006-11-02 Wolfgang Sourdeau + * SoObjects/Appointments/SOGoTaskObject.m ([SOGoTaskObject + -davContentType]): declare "text/calendar". + + * SoObjects/Appointments/SOGoAppointmentObject.m + ([SOGoAppointmentObject -davContentType]): declare + "text/calendar". + * SoObjects/Appointments/SOGoAppointmentFolder.m ([SOGoAppointmentFolder -lookupName:inContext:acquire:]): certain HTTP methods are handled by SOPE and requires nil to be returned, diff --git a/SoObjects/Appointments/SOGoAppointmentObject.m b/SoObjects/Appointments/SOGoAppointmentObject.m index 4de627a55..8389a474e 100644 --- a/SoObjects/Appointments/SOGoAppointmentObject.m +++ b/SoObjects/Appointments/SOGoAppointmentObject.m @@ -814,4 +814,9 @@ static NSString *mailTemplateDefaultLanguage = nil; toAttendees:_attendees]; } +- (NSString *) davContentType +{ + return @"text/calendar"; +} + @end /* SOGoAppointmentObject */ diff --git a/SoObjects/Appointments/SOGoTaskObject.m b/SoObjects/Appointments/SOGoTaskObject.m index f102c00c8..f5ff1795a 100644 --- a/SoObjects/Appointments/SOGoTaskObject.m +++ b/SoObjects/Appointments/SOGoTaskObject.m @@ -782,4 +782,9 @@ static NSString *mailTemplateDefaultLanguage = nil; toAttendees:_attendees]; } +- (NSString *) davContentType +{ + return @"text/calendar"; +} + @end /* SOGoTaskObject */