Monotone-Parent: 755524b00e9b962e6240a95f6bfdd559ca240f5a

Monotone-Revision: b37f3f6ae0b2c8936fa170defaec8e6b7c107b85

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-08-14T20:43:55
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2006-08-14 20:43:55 +00:00
parent 55b39d214d
commit 6b539e8e15
8 changed files with 57 additions and 31 deletions
+5 -6
View File
@@ -370,7 +370,7 @@ static BOOL shouldDisplayWeekend = NO;
- (BOOL)shouldDisplayRejectedAppointments {
NSString *bv;
bv = [[[self context] request] formValueForKey:@"dr"];
bv = [self queryParameterForKey: @"dr"];
if (!bv) return NO;
return [bv boolValue];
}
@@ -427,17 +427,15 @@ static BOOL shouldDisplayWeekend = NO;
- (id)redirectForUIDsAction {
NSMutableString *uri;
NSString *uidsString, *loc, *prevMethod, *userFolderID;
WORequest *req;
id <WOActionResults> r;
BOOL useGroups;
unsigned index;
req = [[self context] request];
uidsString = [req formValueForKey:@"userUIDString"];
uidsString = [self queryParameterForKey:@"userUIDString"];
uidsString = [uidsString stringByTrimmingWhiteSpaces];
[self setQueryParameter: nil forKey: @"userUIDString"];
prevMethod = [req formValueForKey:@"previousMethod"];
prevMethod = [self queryParameterForKey:@"previousMethod"];
if(prevMethod == nil)
prevMethod = @"";
@@ -460,6 +458,7 @@ static BOOL shouldDisplayWeekend = NO;
[uri appendString:@"Groups/_custom_"];
[uri appendString:uidsString];
[uri appendString:@"/"];
NSLog (@"Group URI = '%@'", uri);
}
else {
/* check if lastPathComponent is the base that we want to have */