See ChangeLog

Monotone-Parent: 89320b31db49181dce46dc16f17984d806609750
Monotone-Revision: 3567e5aef4045091a835f8185e4f1ff94e748c78

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2010-08-11T17:23:59
This commit is contained in:
Ludovic Marcotte
2010-08-11 17:23:59 +00:00
parent 15526db831
commit 5c291627a4
4 changed files with 12 additions and 4 deletions
+3
View File
@@ -9,6 +9,9 @@
* SOPE/NGCards/iCalRecurrenceRule.m
Modified setInterval: so that when the value is
equal to 1, we do NOT set it.
* UI/WebServerResources/UIxAclEditor.js
In addUserCallback(), we remove the owner of the
resource if it was added.
2010-08-03 Ludovic Marcotte <lmarcotte@inverse.ca>
+1 -1
View File
@@ -1,6 +1,6 @@
/* UIxAclEditor.m - this file is part of SOGo
*
* Copyright (C) 2006-2009 Inverse inc.
* Copyright (C) 2006-2010 Inverse inc.
*
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
*
+1 -1
View File
@@ -1,6 +1,6 @@
/* UIxObjectActions.m - this file is part of SOGo
*
* Copyright (C) 2007 Inverse inc.
* Copyright (C) 2007-2010 Inverse inc.
*
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
*
+7 -2
View File
@@ -36,14 +36,19 @@ function addUser(userName, userID) {
var elements = url.split("/");
elements[elements.length-1] = ("addUserInAcls?uid="
+ userID);
triggerAjaxRequest(elements.join("/"), addUserCallback);
triggerAjaxRequest(elements.join("/"), addUserCallback, newNode);
result = true;
}
return result;
}
function addUserCallback(http) {
// Ignore response
if (http.readyState == 4) {
if (!isHttpStatus204(http.status)) {
var node = http.callbackData;
node.parentNode.removeChild(node);
}
}
}
function setEventsOnUserNode(node) {