+2004-08-26 Helge Hess <helge.hess@skyrix.com>
+
+ * OCSFolderManager.m: added contact type model per default (v0.9.5)
+
2004-08-25 Helge Hess <helge.hess@skyrix.com>
* GNUmakefile: automatically install OCSTypeModels (v0.9.4)
return nil;
}
if ((self = [super init])) {
- OCSFolderType *cal;
+ OCSFolderType *cal, *contact;
self->channelManager = [[OCSChannelManager defaultChannelManager] retain];
self->folderInfoLocation = [_url retain];
return nil;
}
- cal = [[OCSFolderType alloc] initWithFolderTypeName:@"appointment"];
- self->nameToType =
- [[NSDictionary alloc] initWithObjectsAndKeys:cal, @"appointment", nil];
- [cal release]; cal = nil;
+ /* register default folder types */
+
+ cal = [[OCSFolderType alloc] initWithFolderTypeName:@"appointment"];
+ contact = [[OCSFolderType alloc] initWithFolderTypeName:@"contact"];
+ self->nameToType = [[NSDictionary alloc] initWithObjectsAndKeys:
+ cal, @"appointment",
+ contact, @"contact",
+ nil];
+ [cal release]; cal = nil;
+ [contact release]; contact = nil;
}
return self;
}
+2004-08-26 Helge Hess <helge.hess@skyrix.com>
+
+ * GNUmakefile.preamble: fixed superflous libjs (v0.9.8)
+
2004-08-11 Helge Hess <helge.hess@skyrix.com>
* added SOGoGroupPage and SOGoGroupsPage (default views for the group