]> err.no Git - scalable-opengroupware.org/commitdiff
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@124 d1b88da0-ebda-0310-925b-ed51d...
authorhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Wed, 30 Jun 2004 12:59:27 +0000 (12:59 +0000)
committerhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Wed, 30 Jun 2004 12:59:27 +0000 (12:59 +0000)
SOGo/Main/README
SOGo/UI/Scheduler/ChangeLog
SOGo/UI/Scheduler/UIxCalView.h
SOGo/UI/Scheduler/UIxCalView.m

index 4441bfefb8788ab3a848706f34f2d9f4811ff9af..9d7a9ab6d9aa17224b15b524b21e53b5b6bf1de9 100644 (file)
@@ -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
index 4a3d7891482b78c46a79e162d3b6e32d88b26b77..55c14f34e25d6b391d65e229b293f2b96af5b0e6 100644 (file)
@@ -1,5 +1,8 @@
 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,
index b75ce1f7575bd8d325f4a071cf258a9471af2910..ae2e65926815ef92bc8233d6c916bbe15ee83129 100644 (file)
@@ -48,7 +48,6 @@
 
 - (NSCalendarDate *)startDate;
 - (NSCalendarDate *)endDate;
-- (NSArray *)fetchGIDs;
 - (NSArray *)fetchCoreInfos;
 
 /* date selection */
index 333c366428497ec00cb867f3bd71ce3f584557ab..9510fc3308b216123ce27b592d3667ac4dac4326 100644 (file)
 - (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 */