Monotone-Parent: 279fca526b178f040bcbf469c4a1b60370cae7d9

Monotone-Revision: 3dee1ff445f5268ef4c0f3c4ce1e664d14c8dc7c

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-09-10T21:40:39
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2007-09-10 21:40:39 +00:00
parent 6670da2b6f
commit 5b7136db24
2 changed files with 15 additions and 7 deletions

View File

@ -1,5 +1,9 @@
2007-09-10 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/Contacts/UIxContactFoldersView.m ([UIxContactFoldersView
-contactSearchAction]): only return the records which have an
email set.
* SoObjects/Mailer/SOGoMailObject.m ([SOGoMailObject
-trashInContext:_ctx]): no longer expunge the mailbox after
marking a message deleted.

View File

@ -139,25 +139,29 @@
{
WOResponse *response;
NSEnumerator *contacts;
NSString *responseString;
NSString *responseString, *email;
NSDictionary *contact;
response = [context response];
if ([results count] > 0)
{
[response setStatus: 200];
contacts = [results objectEnumerator];
contact = [contacts nextObject];
if (contact)
{
responseString = [NSString stringWithFormat: @"%@:%@:%@",
[contact objectForKey: @"c_uid"],
[contact objectForKey: @"cn"],
[contact objectForKey: @"c_email"]];
[response setStatus: 200];
email = [contact objectForKey: @"c_email"];
if ([email length])
{
responseString = [NSString stringWithFormat: @"%@:%@:%@",
[contact objectForKey: @"c_uid"],
[contact objectForKey: @"cn"],
email];
// [response setHeader: @"text/plain; charset=iso-8859-1"
// forKey: @"Content-Type"];
[response appendContentString: responseString];
[response appendContentString: responseString];
}
// contact = [contacts nextObject];
}
}