mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-11 00:08:51 +00:00
Monotone-Parent: 231480c78015ecf458ae4ed73f647d1f0a3baf81
Monotone-Revision: 62e332ed96e664a182b2a83d34f70c435afdb0c3 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-10-11T18:22:30 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -11,6 +11,7 @@
|
||||
SOGoAppointmentFolder = {
|
||||
superclass = "SOGoFolder";
|
||||
};
|
||||
|
||||
SOGoGroupAppointmentFolder = {
|
||||
superclass = "SOGoAppointmentFolder";
|
||||
};
|
||||
@@ -19,6 +20,10 @@
|
||||
superclass = "SOGoContentObject";
|
||||
};
|
||||
|
||||
SOGoTaskObject = {
|
||||
superclass = "SOGoContentObject";
|
||||
};
|
||||
|
||||
SOGoFreeBusyObject = {
|
||||
superclass = "SOGoContentObject";
|
||||
};
|
||||
|
||||
@@ -2,11 +2,12 @@
|
||||
( { link = "#";
|
||||
isSafe = NO;
|
||||
label = "New Event";
|
||||
onclick = "return newEvent(this);";
|
||||
onclick = "return newEvent(this, 'event');";
|
||||
image = "new-event.png"; },
|
||||
{ link = "new_task";
|
||||
enabled = "NO";
|
||||
label="New Task";
|
||||
image = "new-task.png";
|
||||
onclick = "return newEvent(this, 'task');";
|
||||
image = "new-task.png"; },
|
||||
{ link = "edit";
|
||||
label="Edit";
|
||||
|
||||
@@ -49,6 +49,10 @@
|
||||
protectedBy = "View";
|
||||
pageName = "UIxCalAptListView";
|
||||
};
|
||||
taskslist = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxCalTasksListView";
|
||||
};
|
||||
dayview = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxCalDayView";
|
||||
@@ -74,10 +78,6 @@
|
||||
protectedBy = "View";
|
||||
pageName = "UIxCalDayListview";
|
||||
};
|
||||
dayprintview = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxCalDayPrintview";
|
||||
};
|
||||
weekoverview = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxCalWeekOverview";
|
||||
@@ -94,27 +94,24 @@
|
||||
protectedBy = "View";
|
||||
pageName = "UIxCalWeekColumnsview";
|
||||
};
|
||||
weekprintview = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxCalWeekPrintview";
|
||||
};
|
||||
monthoverview = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxCalMonthOverview";
|
||||
};
|
||||
monthprintview = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxCalMonthPrintview";
|
||||
};
|
||||
yearoverview = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxCalYearOverview";
|
||||
};
|
||||
new = {
|
||||
newevent = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxAppointmentEditor";
|
||||
actionName = "new";
|
||||
};
|
||||
newtask = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxTaskEditor";
|
||||
actionName = "new";
|
||||
};
|
||||
show = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxCalView";
|
||||
@@ -134,10 +131,6 @@
|
||||
|
||||
SOGoAppointmentObject = {
|
||||
methods = {
|
||||
printview = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxAppointmentPrintview";
|
||||
};
|
||||
view = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxAppointmentView";
|
||||
@@ -151,11 +144,20 @@
|
||||
protectedBy = "View";
|
||||
pageName = "UIxAppointmentEditor";
|
||||
};
|
||||
editAsAppointment = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxAppointmentEditor";
|
||||
};
|
||||
save = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxAppointmentEditor";
|
||||
actionName = "save";
|
||||
};
|
||||
saveAsAppointment = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxAppointmentEditor";
|
||||
actionName = "save";
|
||||
};
|
||||
accept = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxAppointmentEditor";
|
||||
@@ -173,5 +175,57 @@
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
SOGoTaskObject = {
|
||||
methods = {
|
||||
view = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxTaskView";
|
||||
};
|
||||
delete = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxTaskView";
|
||||
actionName = "delete";
|
||||
};
|
||||
edit = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxTaskEditor";
|
||||
};
|
||||
editAsTask = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxTaskEditor";
|
||||
};
|
||||
save = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxTaskEditor";
|
||||
actionName = "save";
|
||||
};
|
||||
saveAsTask = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxTaskEditor";
|
||||
actionName = "save";
|
||||
};
|
||||
changeStatus = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxTaskEditor";
|
||||
actionName = "changeStatus";
|
||||
};
|
||||
accept = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxTaskEditor";
|
||||
actionName = "accept";
|
||||
};
|
||||
decline = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxTaskEditor";
|
||||
actionName = "decline";
|
||||
};
|
||||
test = {
|
||||
protectedBy = "View";
|
||||
pageName = "UIxTaskEditor";
|
||||
actionName = "test";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user