Monotone-Parent: 591189cd04bcdbe3a11183a6aca2bd58edc2ebea

Monotone-Revision: ccda1427d14d0786cfb28dbb253a43ab22a93a2e

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-08-11T20:56:14
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-08-11 20:56:14 +00:00
parent ee13adbf9b
commit 4e74655335
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -1,5 +1,10 @@
2010-08-11 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/WebServerResources/SchedulerUI.js: (initCalendars): avoid
setting "showCompletedTasks" when in a popup, since this needs
access to a UserDefaults dictionary which is not present nor event
required.
* Main/SOGo+DAV.m (-davCurrentUserPrincipal): new method
implementing the "{DAV:}current-user-principal" property.
+1 -1
View File
@@ -2722,7 +2722,6 @@ function onDocumentKeydown(event) {
function initCalendars() {
sorting["attribute"] = "start";
sorting["ascending"] = true;
showCompletedTasks = parseInt(UserSettings['ShowCompletedTasks']);
if (!$(document.body).hasClassName("popup")) {
var node = $("filterpopup");
@@ -2735,6 +2734,7 @@ function initCalendars() {
initDateSelectorEvents();
initCalendarSelector();
configureSearchField();
showCompletedTasks = parseInt(UserSettings['ShowCompletedTasks']);
configureLists();
$("calendarList").attachMenu("calendarsMenu");
$(document.body).observe("click", onBodyClickHandler);