-2004-08-11 <helge@agenor.opengroupware.org>
+2004-08-11 Helge Hess <helge.hess@skyrix.com>
+
+ * v0.9.2
+
+ * SOGoAppointmentFolder.m, SOGoGroupAppointmentFolder: added
+ -calendarUIDs method which returns the UIDs of the currently
+ displayed persons (eg the members of a group)
* started SOGoGroupAppointmentFolder
+ (NSString *)globallyUniqueObjectId;
+/* selection */
+
+- (NSArray *)calendarUIDs;
+
/* fetching */
- (NSArray *)fetchCoreInfosFrom:(NSCalendarDate *)_startDate
[super dealloc];
}
+/* selection */
+
+- (NSArray *)calendarUIDs {
+ NSString *s;
+
+ s = [[self container] nameInContainer];
+ return [s isNotNull] ? [NSArray arrayWithObjects:&s count:1] : nil;
+}
+
/* name lookup */
- (BOOL)isValidAppointmentName:(NSString *)_key {
return [[self container] lookupGroupsFolder];
}
+/* selection */
+
+- (NSArray *)calendarUIDs {
+ return [[self container] valueForKey:@"uids"];
+}
+
/* functionality */
- (NSArray *)fetchCoreInfosFrom:(NSCalendarDate *)_startDate
# $Id: Version,v 1.9 2004/05/19 14:30:45 helge Exp $
-SUBMINOR_VERSION:=1
+SUBMINOR_VERSION:=2