sogo/SoObjects/Appointments/SOGoTaskObject.m
Wolfgang Sourdeau 27d987fa50 Monotone-Parent: e14d9f62a6ec2d7e8788ee6cf73d4a47312b8531
Monotone-Revision: de4f10a9425b25e3d10193bba4c7dc640e4d4ba2

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-02-24T20:18:21
Monotone-Branch: ca.inverse.sogo
2011-02-24 20:18:21 +00:00

78 lines
2.1 KiB
Objective-C

/*
Copyright (C) 2004-2005 SKYRIX Software AG
This file is part of OpenGroupware.org.
OGo is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.
OGo is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public
License along with OGo; see the file COPYING. If not, write to the
Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
#import <Foundation/NSException.h>
#import <NGExtensions/NSObject+Logs.h>
#import <NGExtensions/NSNull+misc.h>
#import <NGCards/iCalCalendar.h>
#import <NGCards/iCalToDo.h>
#import <NGCards/iCalEventChanges.h>
#import <NGCards/iCalPerson.h>
#import <SOGo/SOGoUserManager.h>
#import <SoObjects/SOGo/SOGoMailer.h>
#import "NSArray+Appointments.h"
#import "SOGoAptMailNotification.h"
#import "SOGoAppointmentFolder.h"
#import "SOGoTaskOccurence.h"
#import "SOGoTaskObject.h"
@implementation SOGoTaskObject
- (NSString *) componentTag
{
return @"vtodo";
}
- (SOGoComponentOccurence *) occurence: (iCalRepeatableEntityObject *) occ
{
NSArray *allTodos;
allTodos = [[occ parent] todos];
return [SOGoTaskOccurence occurenceWithComponent: occ
withMasterComponent: [allTodos objectAtIndex: 0]
inContainer: self];
}
#warning this code should be put in SOGoCalendarComponent once the UID hack\
in SOGoAppointmentObject is resolved
- (NSException *) saveContentString: (NSString *) newContent
baseVersion: (unsigned int) newVersion
{
NSException *ex;
ex = [super saveContentString: newContent baseVersion: newVersion];
[fullCalendar release];
fullCalendar = nil;
[safeCalendar release];
safeCalendar = nil;
[originalCalendar release];
originalCalendar = nil;
return ex;
}
@end /* SOGoTaskObject */