Monotone-Parent: 464f9995a141aebf7f9676a03dc864b160e34646

Monotone-Revision: b13be19bb89d07b843664f919aab722ae8912120

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-11-30T14:33:11
This commit is contained in:
Wolfgang Sourdeau
2011-11-30 14:33:11 +00:00
parent 5e338a9f13
commit 06574a02bc
3 changed files with 16 additions and 0 deletions

View File

@@ -1,5 +1,10 @@
2011-11-30 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Appointments/SOGoAppointmentFolder.m (-davResourceId):
new DAV getter.
* SoObjects/SOGo/SOGoUserFolder.m (-davResourceId): new DAV getter.
* SoObjects/SOGo/SOGoFolder.m (-davPrincipalURL): moved from
SOGoUserFolder.

View File

@@ -2049,6 +2049,12 @@ firstInstanceCalendarDateRange: (NGCalendarDateRange *) fir
return @"";
}
- (NSString *) davResourceId
{
return [NSString stringWithFormat: @"urn:uuid:%@:calendars:%@",
[self ownerInContext: context], [self nameInContainer]];
}
- (NSArray *) davScheduleCalendarTransparency
{
const NSString *opacity;

View File

@@ -635,6 +635,11 @@
getCNForUID: nameInContainer];
}
- (NSString *) davResourceId
{
return [NSString stringWithFormat: @"urn:uuid:%@", nameInContainer];
}
- (NSException *) setDavSignature: (NSString *) newSignature
{
SOGoUserDefaults *ud;