Monotone-Parent: 0dec2fe97ccbe3ebaf8c37cca2fe8536d2ffde6f

Monotone-Revision: 449b9c9fa10daa64618c01940a7d7f15a9d6f168

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-09-29T21:45:36
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2006-09-29 21:45:36 +00:00
parent 1bfbe1caad
commit c3b699db69
1 changed files with 5 additions and 4 deletions

View File

@ -170,11 +170,11 @@ static NSNumber *sharedYes = nil;
toREPORTResponse: (WOResponse *) r
{
SOGoAppointmentObject *realApt;
NSString *uid, *etagLine, *dataLine;
NSString *c_name, *etagLine, *dataLine;
uid = [appointment objectForKey: @"uid"];
c_name = [appointment objectForKey: @"c_name"];
realApt = [SOGoAppointmentObject objectWithName: uid
realApt = [SOGoAppointmentObject objectWithName: c_name
inContainer: self];
[r appendContentString: @" <D:response>\r\n"];
@ -182,7 +182,7 @@ static NSNumber *sharedYes = nil;
[r appendContentString: baseURL];
if (![baseURL hasSuffix: @"/"])
[r appendContentString: @"/"];
[r appendContentString: uid];
[r appendContentString: c_name];
[r appendContentString: @"</D:href>\r\n"];
[r appendContentString: @" <D:propstat>\r\n"];
@ -604,6 +604,7 @@ static NSNumber *sharedYes = nil;
static NSArray *infos = nil; // TODO: move to a plist file
if (infos == nil) {
infos = [[NSArray alloc] initWithObjects:
@"c_name",
@"title", @"location", @"orgmail",
@"status", @"ispublic",
@"isallday", @"isopaque",