+2005-07-13 Helge Hess <helge.hess@opengroupware.org>
+
+ * SOGoContactObject.m: removed special GET action, the redirect to
+ 'view' seems to be handled by SOPE now. This also makes WebDAV GET
+ work (v0.9.10)
+
2005-03-20 Helge Hess <helge.hess@opengroupware.org>
* SOGoContactFolder.m: changed to use GDLContentStore (v0.9.9)
return [self nameInContainer];
}
-/* GET */
-
-- (id)GETAction:(WOContext *)_ctx {
- // TODO: I guess this should really be done by SOPE (redirect to
- // default method)
- WOResponse *r;
- NSString *uri;
-
- uri = [[_ctx request] uri];
- if (![uri hasSuffix:@"/"]) uri = [uri stringByAppendingString:@"/"];
- uri = [uri stringByAppendingString:@"view"];
-
- r = [_ctx response];
- [r setStatus:302 /* moved */];
- [r setHeader:uri forKey:@"location"];
- return r;
-}
-
/* specialized actions */
- (NSException *)saveRecord:(id)_record {