pdcounter fix, librarian bump
authorRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Wed, 29 Dec 2010 16:10:26 +0000 (17:10 +0100)
committerRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Wed, 29 Dec 2010 16:10:26 +0000 (17:10 +0100)
lib/librarian
wolnelektury/settings.py
wolnelektury/templates/pdcounter/pd_counter.html

index dd7a759..5329a22 160000 (submodule)
@@ -1 +1 @@
-Subproject commit dd7a7591ae946e6526f7555672517563c994b3ee
+Subproject commit 5329a22cd6643da657dd24546b382ada9e048b68
index 6c890b9..186f4b6 100644 (file)
@@ -30,7 +30,7 @@ DATABASES = {
 # although not all choices may be available on all operating systems.
 # If running in a Windows environment this must be set to the same as your
 # system time zone.
-TIME_ZONE = 'Europe/Warsaw Poland'
+TIME_ZONE = 'Europe/Warsaw'
 
 # Language code for this installation. All choices can be found here:
 # http://www.i18nguy.com/unicode/language-identifiers.html
index af744ae..fd157ad 100644 (file)
@@ -5,6 +5,8 @@
 {% else %}
     $.countdown.setDefaults($.countdown.regional['']);
 {% endif %}
-d = new Date({{ pd_counter }}, 1, 1);
-$('#countdown').countdown({until: d, format: 'ydHMS', serverSync: serverTime});
+d = new Date({{ pd_counter }}, 0, 1);
+function re() {location.reload()};
+$('#countdown').countdown({until: d, format: 'ydHMS', serverSync: serverTime,
+onExpiry: re, alwaysExpire: true});
 </script>