Monotone-Parent: 0aa6da157615a44a87763825308c0f8aef065eb3

Monotone-Revision: c599bd47bbff16b4b95b0210fbd260e1d041b4c2

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-10-26T00:40:29
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2006-10-26 00:40:29 +00:00
parent a0d1cf8de1
commit 8fc947aa7e
2 changed files with 5 additions and 0 deletions

View File

@@ -1,5 +1,8 @@
2006-10-25 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/WebServerResources/UIxAppointmentEditor.js: handle conversion
of start and end dates to short string dates.
* UI/MainUI/SOGoUserHomePage.m ([SOGoUserHomePage
-readFreeBusyAction]): new method that returns an array of numbers
corresponding to the state in the freebusy of each "quarter of an

View File

@@ -177,6 +177,8 @@ function saveEvent(sender) {
function _dayAsShortString(node) {
var date = node.value.split("/");
if (date.length != 3)
date = node.value.split("-");
return date[2] + date[1] + date[0];
}