Setup
=====
- Defaults write sogod NGBundlePath '""'
+ Defaults write sogod NGBundlePath '"$HOME/Library/SOGo"'
=> otherwise some bundles will clash with "fat" OGo
+ => the UIx .wox driver must be found
2004-06-30 Helge Hess <helge.hess@opengroupware.org>
+ * UIxCalView.m: removed -fetchGIDs, moved -fetchCoreInfos to client
+ object
+
* all files: removed ZideStore references
* UIxCalView.h, UIxAppointmentView.h, UIxAppointmentEditor.m,
- (NSArray *)fetchCoreInfos {
return [[self clientObject] fetchCoreInfosFrom:[self startDate]
to:[self endDate]];
- NSArray *gids;
-
- if (self->appointments)
- return self->appointments;
-
- [self logWithFormat:@"fetching (%@ => %@) ...",
- [self startDate], [self endDate]];
- gids = [self fetchGIDs];
- [self logWithFormat:@" %i GIDs ...", [gids count]];
-
-#warning ZIDESTORE FETCH BACKEND
-#if 0
- self->appointments =
- [[[self aptManager] coreInfoOfAppointmentsWithGIDs:gids
- inSet:[self aptSetID]] retain];
-#else
- self->appointments = nil;
-#endif
-
- [self logWithFormat:@"fetched %i records.", [self->appointments count]];
- return self->appointments;
}
-
/* date selection & conversion */