See ChangeLog

Monotone-Parent: 2977eee44dc8cb28a84d3198502b07eacfaf2472
Monotone-Revision: 4bfa73f8df33a1fad6c74b0321872b8b41b526fa

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2009-12-11T14:14:48
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Ludovic Marcotte
2009-12-11 14:14:48 +00:00
parent 23dc7dd474
commit ff048cdfae
3 changed files with 16 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2009-12-11 Ludovic Marcotte <lmarcotte@inverse.ca>
* Added a patch from Albrecht Gebhardt <albrecht.gebhardt@algepop.net>
that offers a "Reload" button in the Web contacts
management module.
2009-12-11 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/PreferencesUI/UIxPreferences.m (-setUserShortDateFormat:):

View File

@@ -30,5 +30,10 @@
onclick = "return onToolbarDeleteSelectedContacts(this);";
image="tb-mail-delete-flat-24x24.png";
tooltip = "Delete selected card or address book"; }
)
),
( { link = "#";
label = "Reload";
onclick = "return onContactsReload();";
image = "calendar-reload.png";
tooltip = "Reload all contacts"; } )
)

View File

@@ -1298,4 +1298,8 @@ function dropSelectedContacts (action, toId) {
}
function onContactsReload () {
openContactsFolder(Contact.currentAddressBook, true);
}
document.observe("dom:loaded", initContacts);