Improved ACLs editor window

Monotone-Parent: da6b5b0b22738692fb0aafb95b28a58d2a16855e
Monotone-Revision: 18e33d0c1964c0a62a8a43c69d2300477fb492b5

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2008-12-23T15:51:12
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle
2008-12-23 15:51:12 +00:00
parent e26d380fa2
commit 46ae8aa3d6
21 changed files with 107 additions and 58 deletions

View File

@@ -19,7 +19,7 @@ var contactSelectorAction = 'calendars-contacts';
var eventsToDelete = [];
var calendarsOfEventsToDelete = [];
var usersRightsWindowHeight = 250;
var usersRightsWindowHeight = 215;
var usersRightsWindowWidth = 502;
var calendarEvents = null;
@@ -282,8 +282,10 @@ function deleteEventCallback(http) {
document.deleteEventAjaxRequest = null;
}
}
else
log ("deleteEventCallback Ajax error");
else if (parseInt(http.status) == 403)
window.alert(clabels["You don't have the required privileges to perform the operation."]);
else
log ("deleteEventCallback Ajax error (" + http.status + ")");
}
}