+2004-09-10 Helge Hess <helge.hess@skyrix.com>
+
+ * v0.9.9
+
+ * fixed some gcc warnings
+
+ * GNUmakefile.preamble: added pathes to compile against an FHS SOPE
+
+ * OCSiCalFieldExtractor.m: fixed type of sequence iCalEvent field
+
2004-09-01 Marcus Mueller <znek@mulle-kybernetik.com>
* GNUmakefile: install type models into $(GNUSTEP_USER_ROOT) (v0.9.8)
ADDITIONAL_INCLUDE_DIRS += -I. -I..
-ADDITIONAL_LIB_DIRS += -L./$(GNUSTEP_OBJ_DIR)
+ADDITIONAL_LIB_DIRS += -L./$(GNUSTEP_OBJ_DIR) -L/usr/local/lib -L/usr/lib
ifeq ($(FOUNDATION_LIB),apple)
libOGoContentStore_PREBIND_ADDR="0xC7700000"
- (NSMutableDictionary *)extractQuickFieldsFromEvent:(iCalEvent *)_event {
NSMutableDictionary *row;
NSCalendarDate *startDate, *endDate;
- NSString *uid, *title, *location, *sequence;
+ NSString *uid, *title, *location;
+ NSNumber *sequence;
id participants, partmails;
if (_event == nil)
MAJOR_VERSION=0
MINOR_VERSION=9
-SUBMINOR_VERSION:=8
+SUBMINOR_VERSION:=9
# v0.9.7 requires libGDLAccess v1.1.35
OCSFolderManager *folderManager;
}
-+ (int)run;
++ (int)runWithArgs:(NSArray *)_args;
- (int)run;
@end
return 0;
}
-+ (int)run {
++ (int)runWithArgs:(NSArray *)_args {
return [(Tool *)[[[self alloc] init] autorelease] run];
}
[NSProcessInfo initializeWithArguments:argv count:argc environment:env];
#endif
- rc = [Tool run];
+ rc = [Tool runWithArgs:
+ [[NSProcessInfo processInfo] argumentsWithoutDefaults]];
[pool release];
return rc;
OCSFolderManager *folderManager;
}
-+ (int)run;
++ (int)runWithArgs:(NSArray *)_args;
- (int)run;
@end
return 0;
}
-+ (int)run {
++ (int)runWithArgs:(NSArray *)_args {
return [(Tool *)[[[self alloc] init] autorelease] run];
}
[NSProcessInfo initializeWithArguments:argv count:argc environment:env];
#endif
- rc = [Tool run];
+ rc = [Tool runWithArgs:
+ [[NSProcessInfo processInfo] argumentsWithoutDefaults]];
[pool release];
return rc;
OCSFolderManager *folderManager;
}
-+ (int)run;
++ (int)runWithArgs:(NSArray *)_args;
- (int)run;
@end
return 0;
}
-+ (int)run {
++ (int)runWithArgs:(NSArray *)_args {
return [(Tool *)[[[self alloc] init] autorelease] run];
}
[NSProcessInfo initializeWithArguments:argv count:argc environment:env];
#endif
- rc = [Tool run];
+ rc = [Tool runWithArgs:
+ [[NSProcessInfo processInfo] argumentsWithoutDefaults]];
[pool release];
return rc;
OCSFolderManager *folderManager;
}
-+ (int)run;
++ (int)runWithArgs:(NSArray *)_args;
- (int)run;
@end
/* operation */
- (int)runOnPath:(NSString *)_path {
- NSException *error;
OCSFolder *folder;
[self logWithFormat:@"update quick from store at path: '%@'", _path];
- (int)run {
NSEnumerator *e;
- NSString *type;
NSString *path;
[self logWithFormat:@"manager: %@", self->folderManager];
return 0;
}
-+ (int)run {
++ (int)runWithArgs:(NSArray *)_args {
return [(Tool *)[[[self alloc] init] autorelease] run];
}
[NSProcessInfo initializeWithArguments:argv count:argc environment:env];
#endif
- rc = [Tool run];
+ rc = [Tool runWithArgs:
+ [[NSProcessInfo processInfo] argumentsWithoutDefaults]];
[pool release];
return rc;