Monotone-Parent: 5b58952c744a56c2daa202719e938af43febea1a

Monotone-Revision: 93abc80affc5d745f61c233177d8bc8592b79465

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-06-01T20:55:34
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-06-01 20:55:34 +00:00
parent 21ddea5959
commit 1510a2ec92
2 changed files with 3 additions and 19 deletions
+3
View File
@@ -1,5 +1,8 @@
2007-06-01 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/Contacts/UIxContactsListView.m ([-canAccessContentAction]):
removed method because the same exists in UIxFolderActions.m
* UI/Contacts/UIxContactsUserRightsEditor.m
([UIxContactsUserRightsEditor
-setUserCanReadObjects:userCanReadObjects]): new method.
-19
View File
@@ -175,23 +175,4 @@
return YES;
}
- (WOResponse *) canAccessContentAction
{
WOResponse *response;
NSString *clientClass;
clientClass = NSStringFromClass([[self clientObject] class]);
response = [context response];
[response setStatus: 200];
[response setHeader: @"text/plain; charset=\"ascii\""
forKey: @"content-type"];
[response
appendContentString:
([clientClass isEqualToString: @"SOGoContactLDAPFolder"])
? @"1" : @"0"];
return response;
}
@end /* UIxContactsListView */