From: helge Date: Wed, 30 Jun 2004 12:59:27 +0000 (+0000) Subject: git-svn-id: http://svn.opengroupware.org/SOGo/trunk@124 d1b88da0-ebda-0310-925b-ed51d... X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33c7dad35a1d1bb03fbbd11ea21d62315dbe19c7;p=scalable-opengroupware.org git-svn-id: http://svn.opengroupware.org/SOGo/trunk@124 d1b88da0-ebda-0310-925b-ed51d893ca5b --- diff --git a/SOGo/Main/README b/SOGo/Main/README index 4441bfef..9d7a9ab6 100644 --- a/SOGo/Main/README +++ b/SOGo/Main/README @@ -8,5 +8,6 @@ Master Daemon, loads the functionality from product bundles in Library/SOGo. 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 diff --git a/SOGo/UI/Scheduler/ChangeLog b/SOGo/UI/Scheduler/ChangeLog index 4a3d7891..55c14f34 100644 --- a/SOGo/UI/Scheduler/ChangeLog +++ b/SOGo/UI/Scheduler/ChangeLog @@ -1,5 +1,8 @@ 2004-06-30 Helge Hess + * UIxCalView.m: removed -fetchGIDs, moved -fetchCoreInfos to client + object + * all files: removed ZideStore references * UIxCalView.h, UIxAppointmentView.h, UIxAppointmentEditor.m, diff --git a/SOGo/UI/Scheduler/UIxCalView.h b/SOGo/UI/Scheduler/UIxCalView.h index b75ce1f7..ae2e6592 100644 --- a/SOGo/UI/Scheduler/UIxCalView.h +++ b/SOGo/UI/Scheduler/UIxCalView.h @@ -48,7 +48,6 @@ - (NSCalendarDate *)startDate; - (NSCalendarDate *)endDate; -- (NSArray *)fetchGIDs; - (NSArray *)fetchCoreInfos; /* date selection */ diff --git a/SOGo/UI/Scheduler/UIxCalView.m b/SOGo/UI/Scheduler/UIxCalView.m index 333c3664..9510fc33 100644 --- a/SOGo/UI/Scheduler/UIxCalView.m +++ b/SOGo/UI/Scheduler/UIxCalView.m @@ -167,30 +167,8 @@ - (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 */