From b7e2aa3f33adebd268caba1b5d2e7f8a54399e42 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Thu, 17 May 2007 23:11:28 +0000 Subject: [PATCH] Monotone-Parent: 348e719bfe3659c60168d0246b20e397d508481a Monotone-Revision: fdc1029cea8bf902ceb3325858089ba7d8fdb070 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-05-17T23:11:28 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 3 +++ SoObjects/SOGo/SOGoObject.h | 2 ++ SoObjects/SOGo/SOGoObject.m | 6 ++++-- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8e747787f..c9c899d31 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2007-05-17 Wolfgang Sourdeau + * SoObjects/SOGo/SOGoObject.m: defined a new constant + "SOGoDefaultUserID". + * SoObjects/SOGo/SOGoFolder.m ([SOGoFolder -setRoles:rolesforUser:uidforObjectAtPath:objectPathArray]): ignore the "AuthorizedSubscriber" role and add the "None" role diff --git a/SoObjects/SOGo/SOGoObject.h b/SoObjects/SOGo/SOGoObject.h index 5b4eeccec..e5a77e739 100644 --- a/SoObjects/SOGo/SOGoObject.h +++ b/SoObjects/SOGo/SOGoObject.h @@ -52,6 +52,8 @@ #define $(class) NSClassFromString(class) +extern NSString *SOGoDefaultUserID; + @interface SOGoObject : NSObject { WOContext *context; diff --git a/SoObjects/SOGo/SOGoObject.m b/SoObjects/SOGo/SOGoObject.m index 5a0e50159..57b13cd78 100644 --- a/SoObjects/SOGo/SOGoObject.m +++ b/SoObjects/SOGo/SOGoObject.m @@ -20,8 +20,8 @@ */ #if LIB_FOUNDATION_LIBRARY -#error SOGo won't work properly with libFoundation. Please use gnustep-base \ - instead. +#error SOGo will not work properly with libFoundation. \ + Please use gnustep-base instead. #endif #import @@ -47,6 +47,8 @@ #import "SOGoObject.h" +NSString *SOGoDefaultUserID = @""; + @interface SOGoObject(Content) - (NSString *)contentAsString; @end