mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-20 19:05:25 +00:00
Monotone-Parent: fb65b0d0f170c30fcadecf001ad33a8fc79e9e89
Monotone-Revision: 794a50b6a0041893b3ec57a38bbb3a7bbf1dee9c Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2010-01-15T15:31:38 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
2010-01-15 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* SoObjects/SOGo/SOGoUserSettings.m
|
||||
(-setCalendarProxyUsers:withWriteAccess:)
|
||||
(calendarProxyUsersWithWriteAccess:)
|
||||
(setCalendarProxySubscriptionUsers:withWriteAccess:)
|
||||
(calendarProxySubscriptionUsersWithWriteAccess:): "Read" and
|
||||
"Write" were inverted.
|
||||
|
||||
2010-01-14 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* SoObjects/Appointments/SOGoAppointmentFolder.m
|
||||
|
||||
@@ -79,7 +79,7 @@ static Class SOGoUserProfileKlass = Nil;
|
||||
NSString *key;
|
||||
|
||||
key = [NSString stringWithFormat: @"CalendarProxy%@Users",
|
||||
(writeAccess ? @"Read" : @"Write")];
|
||||
(writeAccess ? @"Write" : @"Read")];
|
||||
|
||||
[self setObject: proxyUsers forKey: key];
|
||||
}
|
||||
@@ -89,7 +89,7 @@ static Class SOGoUserProfileKlass = Nil;
|
||||
NSString *key;
|
||||
|
||||
key = [NSString stringWithFormat: @"CalendarProxy%@Users",
|
||||
(writeAccess ? @"Read" : @"Write")];
|
||||
(writeAccess ? @"Write" : @"Read")];
|
||||
|
||||
return [self arrayForKey: key];
|
||||
}
|
||||
@@ -101,7 +101,7 @@ static Class SOGoUserProfileKlass = Nil;
|
||||
NSString *key;
|
||||
|
||||
key = [NSString stringWithFormat: @"CalendarProxy%@SubscriptionUsers",
|
||||
(writeAccess ? @"Read" : @"Write")];
|
||||
(writeAccess ? @"Write" : @"Read")];
|
||||
|
||||
[self setObject: subscriptionUsers forKey: key];
|
||||
}
|
||||
@@ -111,7 +111,7 @@ static Class SOGoUserProfileKlass = Nil;
|
||||
NSString *key;
|
||||
|
||||
key = [NSString stringWithFormat: @"CalendarProxy%@SubscriptionUsers",
|
||||
(writeAccess ? @"Read" : @"Write")];
|
||||
(writeAccess ? @"Write" : @"Read")];
|
||||
|
||||
return [self arrayForKey: key];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user