En/na Adam Yearout ha escrit:
I've noticed with the new version of Lightning for Thunderbird that
calendars now have a property labeled "Show in Today Pane". As far as I
can tell, this property defaults to disabled.
This and the new "Show Invitations" property should probably default to
enabled so that it acts similarly to the old version when updating. I've
had users call today asking where all their events went in the Today pane.
Is there any way to possibly manage this preference?
It's stored in storage.sdb so it's not manageable.
The attached patch to lightning (in the js directory) sets the default
as true for "Show in Today Pane" and "Show Invitations".
One could probably hack into sogo integrator the same kind of hack for
"Show Alarms", but I think that'll only work for newly added calendars,
not for existing ones.
Bye
--
Luca Olivetti
Wetron Automatización S.A. http://www.wetron.es/
Tel. +34 93 5883004 (Ext.133) Fax +34 93 5883007
--- calProviderBase.js.orig 2010-05-10 10:53:13.755460805 +0200
+++ calProviderBase.js 2010-05-10 10:53:13.755460805 +0200
@@ -380,7 +380,14 @@
ret = Number(ret);
break;
}
- }
+ } else {
+ switch (aName) {
+ case "showInTodayPane":
+ case "showInvitations":
+ ret = true;
+ break;
+ }
+ }
}
this.mProperties[aName] = ret;
}
--
[email protected]
https://inverse.ca/sogo/lists