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 */