See ChangeLog

Monotone-Parent: 4eb36e8b2021cf9b64520bb8434bff43f5716ee9
Monotone-Revision: 2a908e25e6cc0e1dd4272685f53fe6594d1c949c

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2009-09-25T14:42:33
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Ludovic Marcotte
2009-09-25 14:42:33 +00:00
parent a8a1f20f35
commit 502279186e
43 changed files with 731 additions and 296 deletions
+5 -5
View File
@@ -55,7 +55,7 @@
#import <SoObjects/Appointments/SOGoAppointmentOccurence.h>
#import <SoObjects/Appointments/SOGoTaskObject.h>
#import <SoObjects/SOGo/iCalEntityObject+Utilities.h>
#import <SoObjects/SOGo/LDAPUserManager.h>
#import <SoObjects/SOGo/SOGoUserManager.h>
#import <SoObjects/SOGo/NSArray+Utilities.h>
#import <SoObjects/SOGo/NSDictionary+Utilities.h>
#import <SoObjects/SOGo/NSScanner+BSJSONAdditions.h>
@@ -243,10 +243,10 @@ iRANGE(2);
NSMutableDictionary *currentAttendeeData;
iCalPerson *currentAttendee;
NSString *uid;
LDAPUserManager *um;
SOGoUserManager *um;
jsonAttendees = [NSMutableDictionary new];
um = [LDAPUserManager sharedUserManager];
um = [SOGoUserManager sharedUserManager];
attendees = [[component attendees] objectEnumerator];
while ((currentAttendee = [attendees nextObject]))
@@ -527,7 +527,7 @@ iRANGE(2);
{
// iCalRecurrenceRule *rrule;
SOGoObject *co;
LDAPUserManager *um;
SOGoUserManager *um;
NSString *owner, *ownerEmail;
if (!component)
@@ -560,7 +560,7 @@ iRANGE(2);
componentCalendar = [componentCalendar container];
[componentCalendar retain];
um = [LDAPUserManager sharedUserManager];
um = [SOGoUserManager sharedUserManager];
owner = [componentCalendar ownerInContext: context];
ownerEmail = [um getEmailForUID: owner];
ASSIGN (ownerAsAttendee, [component findParticipantWithEmail: (id)ownerEmail]);