Monotone-Parent: 5e7c2410057553adbfb2bc36dcdf29c89d547250

Monotone-Revision: 33c96e6881c7a8bafb056ea86ca1517c42edb343

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-06-01T19:50:26
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-06-01 19:50:26 +00:00
parent 687cfb8520
commit f3b15c68be
2 changed files with 5 additions and 1 deletions

View File

@@ -1,5 +1,9 @@
2010-06-01 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/WORequest+SOGo.m (-handledByDefaultHandler): test
the request handler key instead of invoking isSoWebDAVRequest,
which performs additional and permission tests.
* Tests/Integration/test-davacl.py
(DAVCalendarAclTest._testRights): reenabled test code even when no
classification rights are available.

View File

@@ -37,7 +37,7 @@
- (BOOL) handledByDefaultHandler
{
#warning this should be changed someday
return ![self isSoWebDAVRequest];
return ![[request requestHandlerKey] isEqualToString:@"dav"];
}
- (NSArray *) _propertiesOfElement: (id <DOMElement>) startElement