mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-23 04:15:26 +00:00
Monotone-Parent: cd8296d46bb1d0a2657836c7d9b185a97c8a2bf2
Monotone-Revision: 10edd440c92ffe461411fef30ac170659d6adb56 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-11-03T19:39:54 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -145,7 +145,16 @@
|
||||
|
||||
- (NSArray *) additionalFolders
|
||||
{
|
||||
return [[self additionalAddressBooks] componentsSeparatedByString: @","];
|
||||
NSString *folders;
|
||||
NSArray *folderNames;
|
||||
|
||||
folders = [self additionalAddressBooks];
|
||||
if ([folders length] > 0)
|
||||
folderNames = [folders componentsSeparatedByString: @","];
|
||||
else
|
||||
folderNames = nil;
|
||||
|
||||
return folderNames;
|
||||
}
|
||||
|
||||
- (void) setCurrentAdditionalFolder: (NSString *) newCurrentAdditionalFolder
|
||||
|
||||
@@ -93,7 +93,7 @@
|
||||
{
|
||||
[self _addEventToSortedEvents: currentEvent];
|
||||
currentEvent = [events nextObject];
|
||||
NSLog (@"event:\n'%@'", currentEvent);
|
||||
// NSLog (@"event:\n'%@'", currentEvent);
|
||||
}
|
||||
|
||||
return self;
|
||||
|
||||
@@ -52,21 +52,15 @@
|
||||
NSArray *participants; /* array of iCalPerson's */
|
||||
NSArray *resources; /* array of iCalPerson's */
|
||||
NSString *priority;
|
||||
NSString *privacy;
|
||||
NSString *status;
|
||||
NSArray *categories;
|
||||
NSString *accessClass;
|
||||
BOOL isPrivate; /* default: NO */
|
||||
BOOL checkForConflicts; /* default: NO */
|
||||
NSDictionary *cycle;
|
||||
NSString *cycleEnd;
|
||||
NSString *componentOwner;
|
||||
}
|
||||
|
||||
- (void) setAccessClass: (NSString *) _class;
|
||||
- (NSString *) accessClass;
|
||||
|
||||
- (void) setIsPrivate: (BOOL) _yn;
|
||||
- (BOOL) isPrivate;
|
||||
|
||||
- (NSArray *) categoryItems;
|
||||
- (void) setCategories: (NSArray *) _categories;
|
||||
- (NSArray *) categories;
|
||||
@@ -75,6 +69,17 @@
|
||||
- (NSArray *) priorities;
|
||||
- (void) setPriority: (NSString *) _priority;
|
||||
- (NSString *) priority;
|
||||
- (NSString *) itemPriorityText;
|
||||
|
||||
- (NSArray *) privacyClasses;
|
||||
- (void) setPrivacy: (NSString *) _privacy;
|
||||
- (NSString *) privacy;
|
||||
- (NSString *) itemPrivacyText;
|
||||
|
||||
- (NSArray *) statusTypes;
|
||||
- (void) setStatus: (NSString *) _status;
|
||||
- (NSString *) status;
|
||||
- (NSString *) itemStatusText;
|
||||
|
||||
- (void) setItem: (id) _item;
|
||||
- (id) item;
|
||||
|
||||
Reference in New Issue
Block a user