mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-21 14:43:31 +00:00
Monotone-Parent: fa2db8adc03dd0adbd001a03cd74271b07fb41fe
Monotone-Revision: d6b4990ef8fb3415624d736697f139942ce37b9b Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-10-16T22:33:17 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -188,4 +188,9 @@
|
||||
[currentAppointment ownerLogin]];
|
||||
}
|
||||
|
||||
- (NSString *) currentAptOwner
|
||||
{
|
||||
return [currentAppointment ownerLogin];
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
@@ -161,4 +161,9 @@
|
||||
referenceDate: [self referenceDate]];
|
||||
}
|
||||
|
||||
- (NSString *) appointmentOwner
|
||||
{
|
||||
return [appointment ownerLogin];
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
@@ -133,4 +133,9 @@
|
||||
return ([[currentTask objectForKey: @"status"] intValue] == 1);
|
||||
}
|
||||
|
||||
- (NSString *) currentTaskOwner
|
||||
{
|
||||
return [currentTask ownerLogin];
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
@@ -43,6 +43,7 @@
|
||||
<var:foreach list="fetchCoreAppointmentsInfos" item="currentAppointment"
|
||||
><tr var:class="currentRowCSSClass"
|
||||
var:id="currentAppointment.c_name"
|
||||
var:owner="currentAptOwner"
|
||||
onclick="return onAppointmentClick(event);"
|
||||
ondblclick="return editDoubleClickedEvent(this);"
|
||||
oncontextmenu="return onAppointmentContextMenu(event, this);"
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
/></var:if
|
||||
><a href="#"
|
||||
onclick="onCalendarSelectAppointment(event, this);"
|
||||
var:owner="appointmentOwner"
|
||||
ondblclick="displayAppointment(event, this);"
|
||||
var:aptCName="appointment.c_name"
|
||||
var:title="tooltip"
|
||||
|
||||
@@ -18,6 +18,7 @@
|
||||
<var:foreach list="fetchCoreTasksInfos" item="currentTask"
|
||||
><var:if condition="shouldDisplayCurrentTask"
|
||||
><li var:id="currentTask.c_name"
|
||||
var:owner="currentTaskOwner"
|
||||
var:class="currentStatusClass"
|
||||
onmousedown="return false;"
|
||||
onclick="return onRowClick(event);"
|
||||
|
||||
Reference in New Issue
Block a user