+2004-08-15 Helge Hess <helge.hess@skyrix.com>
+
+ * SOGoObject.[hm], SOGoUserFolder.[hm]: implemented SOPE
+ -ownerInContext: (v0.9.8)
+
2004-08-14 Helge Hess <helge.hess@skyrix.com>
* v0.9.7
- (NSString *)nameInContainer;
- (id)container;
+/* ownership */
+
+- (NSString *)ownerInContext:(id)_ctx;
+
/* looking up shared objects */
- (SOGoUserFolder *)lookupUserFolder;
return self->container;
}
+/* ownership */
+
+- (NSString *)ownerInContext:(id)_ctx {
+ return [[self container] ownerInContext:_ctx];
+}
+
/* looking up shared objects */
- (SOGoUserFolder *)lookupUserFolder {
- (NSString *)login;
+/* ownership */
+
+- (NSString *)ownerInContext:(id)_ctx;
+
/* pathes */
- (NSString *)ocsUserPath;
return [self nameInContainer];
}
+/* ownership */
+
+- (NSString *)ownerInContext:(id)_ctx {
+ return [self login];
+}
+
/* looking up shared objects */
- (SOGoUserFolder *)lookupUserFolder {
# $Id: Version 170 2004-08-11 10:45:40Z helge $
-SUBMINOR_VERSION:=7
+SUBMINOR_VERSION:=8