1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
/* -*- Mode: java; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
function onUpdateACL(event) {
if ($('uid').value == 'anyone') {
var inputs = $$('#userRightsForm input[type="checkbox"]');
var enabled = false;
for (var i = 0; i < inputs.length; i++) {
if (inputs[i].checked) {
enabled = true;
break;
}
}
if (enabled) {
showConfirmDialog(_("Warning"), _("Any user with an account on this system will be able to access your mailbox \"%{0}\". Are you certain you trust them all?").formatted($("folderName").allTextContent()),
onUpdateACLConfirm, onUpdateACLCancel,
"Give Access", "Keep Private");
return false;
}
}
return onUpdateACLConfirm(event);
}
function onUpdateACLConfirm(event) {
disposeDialog();
$('userRightsForm').submit();
Event.stop(event);
return false;
}
function onUpdateACLCancel(event) {
var inputs = $$('#userRightsForm input[type="checkbox"]');
for (var i = 0; i < inputs.length; i++)
if (inputs[i].checked)
inputs[i].checked = false;
disposeDialog();
}
function onCancelACL(event) {
window.close();
}
function initACLButtons() {
$("updateButton").observe("click", onUpdateACL);
$("cancelButton").observe("click", onCancelACL);
}
document.observe("dom:loaded", initACLButtons);
|