See ChangeLog

Monotone-Parent: 6132fa152e84c6f1d0cd0239e2dff1524f6b34c1
Monotone-Revision: 728de9d1f91919c2ef87a31aa2d11b9b1a3a9835

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2012-08-27T15:33:34
maint-2.0.2
Francis Lachapelle 2012-08-27 15:33:34 +00:00
parent 07b41d4420
commit 4d71ec17f6
3 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,9 @@
2012-08-27 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/generic.js (openMailTo): mail addresses
must now be separated by semi-colons and not commas. This allow
display names to contain commas.
* UI/WebServerResources/SchedulerUI.js (tasksListCallback): prefix
tasks with a color box insted of changing the task's background color.

View File

@ -143,7 +143,7 @@ function onComposeToAllAttendees()
}
});
if (window.opener)
window.opener.openMailTo(addresses.join(","));
window.opener.openMailTo(addresses.join(";"));
}
function onComposeToUndecidedAttendees()
@ -165,7 +165,7 @@ function onComposeToUndecidedAttendees()
}
});
if (window.opener)
window.opener.openMailTo(addresses.join(","));
window.opener.openMailTo(addresses.join(";"));
}
function addContact(tag, fullContactName, contactId, contactName, contactEmail) {

View File

@ -319,7 +319,7 @@ function openMailComposeWindow(url, wId) {
}
function openMailTo(senderMailTo) {
var addresses = senderMailTo.split(",");
var addresses = senderMailTo.split(";");
var sanitizedAddresses = new Array();
var subject = extractSubject(senderMailTo);
for (var i = 0; i < addresses.length; i++) {