mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-02 18:15:26 +00:00
Monotone-Parent: d8549ba070887e4694d144719b284413458362d9
Monotone-Revision: 0742b132865bb64da2c2aa1944247147ae906d38 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-11-27T17:19:24 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2007-11-27 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* SoObjects/Appointments/SOGoFreeBusyObject.m ([SOGoFreeBusyObject
|
||||
-fetchFreeBusyInfosFrom:_startDateto:_endDate]): specify context
|
||||
when looking up the Calendar folder.
|
||||
|
||||
2007-11-26 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* UI/Scheduler/UIxTaskEditor.m ([UIxTaskEditor -todo]): same as below.
|
||||
|
||||
@@ -80,8 +80,8 @@
|
||||
// SoSecurityManager *sm;
|
||||
NSArray *infos;
|
||||
|
||||
calFolder = [[container lookupName: @"Calendar" inContext: nil acquire: NO]
|
||||
lookupName: @"personal" inContext: nil acquire: NO];
|
||||
calFolder = [[container lookupName: @"Calendar" inContext: context acquire: NO]
|
||||
lookupName: @"personal" inContext: context acquire: NO];
|
||||
// sm = [SoSecurityManager sharedSecurityManager];
|
||||
// if (![sm validatePermission: SOGoPerm_FreeBusyLookup
|
||||
// onObject: calFolder
|
||||
|
||||
@@ -95,8 +95,7 @@ static NSString *defaultModule = nil;
|
||||
NSNumber *status;
|
||||
NSCalendarDate *currentDate;
|
||||
|
||||
record = [records nextObject];
|
||||
while (record)
|
||||
while ((record = [records nextObject]))
|
||||
{
|
||||
status = [record objectForKey: @"c_status"];
|
||||
|
||||
@@ -117,8 +116,6 @@ static NSString *defaultModule = nil;
|
||||
|
||||
for (count = startInterval; count < endInterval; count++)
|
||||
[items replaceObjectAtIndex: count withObject: status];
|
||||
|
||||
record = [records nextObject];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user