]> err.no Git - scalable-opengroupware.org/commitdiff
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@217 d1b88da0-ebda-0310-925b-ed51d...
authorhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Sun, 15 Aug 2004 11:52:25 +0000 (11:52 +0000)
committerhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Sun, 15 Aug 2004 11:52:25 +0000 (11:52 +0000)
SOGo/SoObjects/SOGo/ChangeLog
SOGo/SoObjects/SOGo/SOGoObject.h
SOGo/SoObjects/SOGo/SOGoObject.m
SOGo/SoObjects/SOGo/SOGoUserFolder.h
SOGo/SoObjects/SOGo/SOGoUserFolder.m
SOGo/SoObjects/SOGo/Version

index 09965357dbc361f8aa5deaeefdb4440aaac9aeae..cc0d66ea3d484d153f2b8b226a473650d6dd3baf 100644 (file)
@@ -1,3 +1,8 @@
+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
index cd3171b78bfc8ca536cd94e901ab092fc45d88ed..de2680a4ffca3dea14eb89d6f3be29e40b5b0b43 100644 (file)
 - (NSString *)nameInContainer;
 - (id)container;
 
+/* ownership */
+
+- (NSString *)ownerInContext:(id)_ctx;
+
 /* looking up shared objects */
 
 - (SOGoUserFolder *)lookupUserFolder;
index 3d70a8e660088ce0279467b569026cb5cc544a2b..fc8fa491baba949578d570545160b4cec017ccb4 100644 (file)
   return self->container;
 }
 
+/* ownership */
+
+- (NSString *)ownerInContext:(id)_ctx {
+  return [[self container] ownerInContext:_ctx];
+}
+
 /* looking up shared objects */
 
 - (SOGoUserFolder *)lookupUserFolder {
index 0198b999ebaae720e30661fb8abc4ff6b3e30c4e..5c54053295642c33d6c01535a327d1642d8e17a9 100644 (file)
 
 - (NSString *)login;
 
+/* ownership */
+
+- (NSString *)ownerInContext:(id)_ctx;
+
 /* pathes */
 
 - (NSString *)ocsUserPath;
index 2c135af4a59777ffe2b6b0af7c7b7c8a81fda52b..32955e94107ddfdd5b4305caadbc7f3b4b05b059 100644 (file)
   return [self nameInContainer];
 }
 
+/* ownership */
+
+- (NSString *)ownerInContext:(id)_ctx {
+  return [self login];
+}
+
 /* looking up shared objects */
 
 - (SOGoUserFolder *)lookupUserFolder {
index 070d88113cc41409bfe2a03b091728598a6e909f..702b267482bc56b02dc3612d0fdd7da6c6e8ae86 100644 (file)
@@ -1,3 +1,3 @@
 # $Id: Version 170 2004-08-11 10:45:40Z helge $
 
-SUBMINOR_VERSION:=7
+SUBMINOR_VERSION:=8