See ChangeLog

Monotone-Parent: cb24cbb64f18605eafb31a901df365faf026b2e3
Monotone-Revision: dec9b1733e709c1ad5b0be7dc9d1c4d9b2f6f991

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2009-05-22T21:01:47
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Francis Lachapelle 2009-05-22 21:01:47 +00:00
parent 2fcdaf40e2
commit e225a936ca
2 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2009-05-22 Francis Lachapelle <flachapelle@inverse.ca>
* UI/Scheduler/UIxComponentEditor.m ([UIxComponentEditor
-_toolbarForOwner:andClientObject:]): ignore the participation
status for tasks so the usual edition toolbar appears.
2009-05-21 Ludovic Marcotte <lmarcotte@inverse.ca>
* Regenerated the SOPE patchset so we now correctly

View File

@ -1843,11 +1843,14 @@ RANGE(2);
if ([[component attendees] count]
&& [component userIsParticipant: ownerUser]
&& !isOrganizer)
&& !isOrganizer
// Lightning does not manage participation status within tasks,
// so we also ignore the participation status of tasks in the
// web interface.
&& ![[component tag] isEqualToString: @"VTODO"])
{
participationStatus
= [[component findParticipant: ownerUser] participationStatus];
/* Lightning does not manage participation status within tasks */
if (participationStatus == iCalPersonPartStatAccepted)
toolbarFilename = @"SOGoAppointmentObjectDecline.toolbar";
else if (participationStatus == iCalPersonPartStatDeclined)