Monotone-Parent: 54dc6ee0dac49ddab76097b4e22cd6d4d5d91a3d

Monotone-Revision: e6ad80e24c1ede734b861d9072dacbb1338a2067

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-03-07T22:31:02
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-03-07 22:31:02 +00:00
parent dbfa5926b6
commit 18cef1e7c2
3 changed files with 9 additions and 2 deletions
+3
View File
@@ -1,5 +1,8 @@
2007-03-07 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoAuthenticator.m ([SOGoAuthenticator
-userInContext:]): returns "SOGoUser".
* SoObjects/Appointments/SOGoCalendarComponent.m
([SOGoCalendarComponent -contentAsString]): overriden method that
takes the privacy into account and discard the relevant fields if
+4
View File
@@ -34,6 +34,8 @@
@class NSUserDefaults;
@class NSString;
@class SOGoUser;
@interface SOGoAuthenticator : SoHTTPAuthenticator
{
NSUserDefaults *ud;
@@ -47,6 +49,8 @@
- (BOOL) LDAPCheckLogin: (NSString *) _login password: (NSString *) _pwd;
- (SOGoUser *) userInContext: (WOContext *) _ctx;
@end
#endif /* __Main_SOGoAuthenticator_H__ */
+2 -2
View File
@@ -96,9 +96,9 @@ static SOGoAuthenticator *auth = nil;
/* create SOGoUser */
- (SoUser *) userInContext:(WOContext *)_ctx
- (SOGoUser *) userInContext: (WOContext *)_ctx
{
static SoUser *anonymous = nil, *freebusy;
static SOGoUser *anonymous = nil, *freebusy;
SoUser *user;
NSArray *traversalPath;
NSString *login;