Monotone-Parent: 07f87d18088071e4dcd72653efb4c3885f66a50f

Monotone-Revision: e83f50e38737703b47fbfe973f685c195a25232d

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-01-24T15:35:44
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2008-01-24 15:35:44 +00:00
parent 847671bb43
commit 377c2f58f2
2 changed files with 12 additions and 0 deletions

View File

@ -1,5 +1,9 @@
2008-01-24 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OGoContentStore/OCSiCalFieldExtractor.m ([OCSiCalFieldExtractor
-extractQuickFieldsFromTodo:_task]): handle recurrence info in
tasks.
* UI/MailPartViewers/UIxMailPartViewer.m ([UIxMailPartViewer
-pathToAttachment]): in the case where the client object is not a
mail body part (when the message IS the attachment), we append 0

View File

@ -282,6 +282,14 @@ static NSNumber *distantFutureNumber = nil;
date = [NSNull null];
[row setObject: date forKey: @"c_enddate"];
if ([_task isRecurrent])
{
[row setObject: [self numberForDate: distantFuture]
forKey: @"c_cycleenddate"];
[row setObject: [_task cycleInfo]
forKey: @"c_cycleinfo"];
}
if ([participants length] > 0)
[row setObject:participants forKey: @"c_participants"];
if ([partmails length] > 0)