From 33c7dad35a1d1bb03fbbd11ea21d62315dbe19c7 Mon Sep 17 00:00:00 2001 From: helge Date: Wed, 30 Jun 2004 12:59:27 +0000 Subject: [PATCH] git-svn-id: http://svn.opengroupware.org/SOGo/trunk@124 d1b88da0-ebda-0310-925b-ed51d893ca5b --- SOGo/Main/README | 3 ++- SOGo/UI/Scheduler/ChangeLog | 3 +++ SOGo/UI/Scheduler/UIxCalView.h | 1 - SOGo/UI/Scheduler/UIxCalView.m | 22 ---------------------- 4 files changed, 5 insertions(+), 24 deletions(-) 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 */ -- 2.39.2