diff --git a/ChangeLog b/ChangeLog index 0f8d28664..61fc3d51a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2012-03-16 Jean Raby + + * sogo.spec debian/sogo.postint: upon installation, update timestamp + on WebServerResources/* to let the webserver know the files changed. + Should fix issues where browsers would use a locally cached version + of a resource when the sogo package have just been upgraded. + 2012-03-15 Francis Lachapelle * UI/WebServerResources/generic.js (onPreferencesClick): don't diff --git a/Documentation/SOGo Installation Guide.odt b/Documentation/SOGo Installation Guide.odt index 3caf34cdc..37f9d644c 100644 Binary files a/Documentation/SOGo Installation Guide.odt and b/Documentation/SOGo Installation Guide.odt differ diff --git a/Documentation/SOGo Mobile Devices Configuration.odt b/Documentation/SOGo Mobile Devices Configuration.odt index 66aaed906..4fcb25116 100644 Binary files a/Documentation/SOGo Mobile Devices Configuration.odt and b/Documentation/SOGo Mobile Devices Configuration.odt differ diff --git a/Documentation/SOGo Mozilla Thunderbird Configuration.odt b/Documentation/SOGo Mozilla Thunderbird Configuration.odt index 7b427d8a4..5a5fc8109 100644 Binary files a/Documentation/SOGo Mozilla Thunderbird Configuration.odt and b/Documentation/SOGo Mozilla Thunderbird Configuration.odt differ diff --git a/NEWS b/NEWS index 611a36133..de0038f7b 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -1.3.13 (2012-03-DD) +1.3.13 (2012-03-16) ------------------- New Features - email notifications now includes a new x-sogo-message-type mail header @@ -6,7 +6,7 @@ New Features specify a different IMAP hostname for each user (was already possible for LDAP sources) - default event & task classification can now be set from the preferences window - - contacts from LDAP sources can now be modified by privileges owners (see + - contacts from LDAP sources can now be modified by privileged owners (see the "modifiers" parameter) Enhancements @@ -57,6 +57,8 @@ New Features - show end time in bubble box of events - we now check for new mails in folders for which sieve rules are defined to file messages into + - new parameter DomainFieldName for SQL sources to dynamically determine the + domain of the user Enhancements - updated Ukrainian translation diff --git a/UI/WebServerResources/generic.css b/UI/WebServerResources/generic.css index 72f37f6fd..9f7191845 100644 --- a/UI/WebServerResources/generic.css +++ b/UI/WebServerResources/generic.css @@ -1059,6 +1059,13 @@ DIV.bottomToolbar A.bottomButton SPAN:active .editing > INPUT[type="text"] { width: 98%; } +.safetyBlock +{ position: absolute; + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } + @media print { BODY diff --git a/debian/sogo.postinst b/debian/sogo.postinst index 04d66c1fb..e43bfd92a 100644 --- a/debian/sogo.postinst +++ b/debian/sogo.postinst @@ -18,6 +18,8 @@ PATH=/bin:/sbin:/usr/bin:/usr/sbin case "$1" in configure) + # update timestamp on imgs,css,js to let apache know the files changed + find /usr/lib/GNUstep/SOGo/WebServerResources -exec touch {} \; ;; abort-upgrade|abort-remove|abort-deconfigure) diff --git a/sogo.spec b/sogo.spec index 8d6a15105..8be88354e 100644 --- a/sogo.spec +++ b/sogo.spec @@ -289,6 +289,8 @@ if ! id sogo >& /dev/null; then /usr/sbin/adduser sogo > /dev/null 2>&1; fi /bin/chown sogo /var/log/sogo /bin/chown sogo /var/spool/sogo /bin/chmod 700 /var/spool/sogo +# update timestamp on imgs,css,js to let apache know the files changed +find %{_libdir}/GNUstep/SOGo/WebServerResources -exec touch {} \; /sbin/chkconfig --add sogod %preun @@ -309,6 +311,9 @@ fi # ********************************* changelog ************************* %changelog +* Fri Mar 16 2012 Jean Raby +- %post: update timestamp on imgs,css,js to let apache know the files changed + * Fri Feb 16 2012 Jean Raby - Use globbing to include all sql upgrade scripts instead of listing them all