Monotone-Parent: e4061b37bffe8a7f2898355a6e8d4036e46115d0

Monotone-Revision: df6e6d4970991afb31fd11ee19fa747e5c5c76d5

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-10-22T22:18:07
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-10-22 22:18:07 +00:00
parent ccdcc62564
commit 747f4c0f19
2 changed files with 9 additions and 1 deletions
+3
View File
@@ -1,5 +1,8 @@
2007-10-22 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Contacts/SOGoContactLDIFEntry.m ([SOGoContactLDIFEntry
-davEntityTag]): modified to return the "hash" of the vCard string.
* UI/MailerUI/UIxMailActions.m ([UIxMailActions
-removeAllLabelsAction]): new method that removes all label flags
from the associated message.
+6 -1
View File
@@ -173,7 +173,12 @@
- (NSString *) davEntityTag
{
return [ldifEntry objectForKey: @"modifyTimeStamp"];
unsigned int hash;
// return [ldifEntry objectForKey: @"modifyTimeStamp"];
hash = [[self contentAsString] hash];
return [NSString stringWithFormat: @"hash%u", hash];
}
- (NSString *) davContentType