}
+/* new */
+
+
+- (id)newAction {
+ WORequest *req;
+ WOResponse *r;
+ NSString *uri, *uriFormat, *objectId, *nextMethod;
+
+ /* clientObject *is* SOGoAppointmentFolder, so this should be an instance method? */
+ objectId = [NSClassFromString(@"SOGoAppointmentFolder")
+ globallyUniqueObjectId];
+
+ nextMethod = [NSString stringWithFormat:@"%@/edit", objectId];
+ uriFormat = [self uriAsFormat];
+ uri = [NSString stringWithFormat:uriFormat, nextMethod];
+
+ req = [[self context] request];
+ r = [WOResponse responseWithRequest:req];
+ [r setStatus:302 /* moved */];
+ [r setHeader:uri forKey:@"location"];
+ return r;
+}
+
+
/* save */