Monotone-Parent: 002a7f40ed2519734c4baf4cd4433ecc02b46d54

Monotone-Revision: ebbadbdb3549dd7264241be0a6c21ab9a481341f

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-06-10T21:32:23
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-06-10 21:32:23 +00:00
parent 7ff3aba0c0
commit e71a5a5ebd
3 changed files with 10 additions and 0 deletions
+4
View File
@@ -1,5 +1,9 @@
2010-06-10 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoSystemDefaults.m (-davAuthenticationType):
new method similar to -authenticationType. Currently used for CAS
or non-CAS authentication.
* UI/MainUI/SOGoUserHomePage.m (-logoffAction): split method in
smaller submethods for the sake of clarity. Also, we provide as
"CAS" mode where the redirection is made to the CAS logout page.
+1
View File
@@ -61,6 +61,7 @@
- (NSString *) loginSuffix;
- (NSString *) authenticationType;
- (NSString *) davAuthenticationType;
- (NSString *) CASServiceURL;
- (BOOL) CASLogoutEnabled;
+5
View File
@@ -291,6 +291,11 @@ BootstrapNSUserDefaults ()
return [[self stringForKey: @"SOGoAuthenticationType"] lowercaseString];
}
- (NSString *) davAuthenticationType
{
return [[self stringForKey: @"SOGoDAVAuthenticationType"] lowercaseString];
}
- (NSString *) CASServiceURL
{
return [self stringForKey: @"SOGoCASServiceURL"];