]> err.no Git - scalable-opengroupware.org/commitdiff
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@102 d1b88da0-ebda-0310-925b-ed51d...
authorhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Wed, 30 Jun 2004 09:17:16 +0000 (09:17 +0000)
committerhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Wed, 30 Jun 2004 09:17:16 +0000 (09:17 +0000)
SOGo/Main/product.plist
SOGo/SoObjects/SOGo/README [new file with mode: 0644]
SOGo/SoObjects/SOGo/SOGoObject.h
SOGo/SoObjects/SOGo/SOGoUserFolder.h [new file with mode: 0644]
SOGo/SoObjects/SOGo/SOGoUserFolder.m [new file with mode: 0644]

index cbec188ce0105a667de7802461f5981d2bd1c94c..0f27d86ebb218649787c17aac9bff8ce7febb073 100644 (file)
@@ -8,7 +8,7 @@
       protectedBy   = "View";
       defaultAccess = "allow";
       defaultRoles = {
-        "View"          = "Anonymous";
+        "View"          = "Authenticated";
         "WebDAV Access" = "Authenticated";
       };
       methods = {
         };
       };
     };
+
+    SOGoObject = {
+      protectedBy   = "View";
+      defaultAccess = "allow";
+      defaultRoles = {
+        "View"          = "Authenticated";
+        "WebDAV Access" = "Authenticated";
+      };
+    };
+    SOGoContentObject = {
+      superclass    = "SOGoObject";
+    };
+    SOGoFolder = {
+      superclass    = "SOGoObject";
+    };
+
+    SOGoUserFolder = {
+      superclass    = "SOGoFolder";
+    };
   };
 }
diff --git a/SOGo/SoObjects/SOGo/README b/SOGo/SoObjects/SOGo/README
new file mode 100644 (file)
index 0000000..4ee0d4e
--- /dev/null
@@ -0,0 +1,8 @@
+# $Id$
+
+libSOGo
+=======
+
+Common SOGo objects.
+
+Note that the SOPE objects are registered by the Main bundle products.plist.
index 26abe6cde15e6485e7c1e8a4381be9523a5e175b..889fd5e2da09475309776afb0f1b1740baff73c9 100644 (file)
@@ -25,6 +25,8 @@
 
 #import <Foundation/NSObject.h>
 
+@class OCSFolderManager, OCSFolder;
+
 @interface SOGoObject : NSObject
 {
   NSString *nameInContainer;
diff --git a/SOGo/SoObjects/SOGo/SOGoUserFolder.h b/SOGo/SoObjects/SOGo/SOGoUserFolder.h
new file mode 100644 (file)
index 0000000..d2f91ca
--- /dev/null
@@ -0,0 +1,34 @@
+/*
+  Copyright (C) 2004 SKYRIX Software AG
+
+  This file is part of OpenGroupware.org.
+
+  OGo is free software; you can redistribute it and/or modify it under
+  the terms of the GNU Lesser General Public License as published by the
+  Free Software Foundation; either version 2, or (at your option) any
+  later version.
+
+  OGo is distributed in the hope that it will be useful, but WITHOUT ANY
+  WARRANTY; without even the implied warranty of MERCHANTABILITY or
+  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
+  License for more details.
+
+  You should have received a copy of the GNU Lesser General Public
+  License along with OGo; see the file COPYING.  If not, write to the
+  Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
+  02111-1307, USA.
+*/
+// $Id$
+
+#ifndef __SOGo_SOGoUserFolder_H__
+#define __SOGo_SOGoUserFolder_H__
+
+#include <SOGo/SOGoFolder.h>
+
+@interface SOGoUserFolder : SOGoFolder
+{
+}
+
+@end
+
+#endif /* __SOGo_SOGoUserFolder_H__ */
diff --git a/SOGo/SoObjects/SOGo/SOGoUserFolder.m b/SOGo/SoObjects/SOGo/SOGoUserFolder.m
new file mode 100644 (file)
index 0000000..fb9b456
--- /dev/null
@@ -0,0 +1,32 @@
+/*
+  Copyright (C) 2004 SKYRIX Software AG
+
+  This file is part of OpenGroupware.org.
+
+  OGo is free software; you can redistribute it and/or modify it under
+  the terms of the GNU Lesser General Public License as published by the
+  Free Software Foundation; either version 2, or (at your option) any
+  later version.
+
+  OGo is distributed in the hope that it will be useful, but WITHOUT ANY
+  WARRANTY; without even the implied warranty of MERCHANTABILITY or
+  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
+  License for more details.
+
+  You should have received a copy of the GNU Lesser General Public
+  License along with OGo; see the file COPYING.  If not, write to the
+  Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
+  02111-1307, USA.
+*/
+// $Id$
+
+#include "SOGoUserFolder.h"
+#include "common.h"
+
+@implementation SOGoUserFolder
+
+- (void)dealloc {
+  [super dealloc];
+}
+
+@end /* SOGoUserFolder */