fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Work list: don't care about types of objects on other pages.
[wolnelektury.git]
/
wolnelektury
/
utils.py
diff --git
a/wolnelektury/utils.py
b/wolnelektury/utils.py
index
0c256e5
..
e06fb1d
100644
(file)
--- a/
wolnelektury/utils.py
+++ b/
wolnelektury/utils.py
@@
-5,6
+5,8
@@
import pytz
from django.utils import timezone
from django.conf import settings
import pytz
from django.utils import timezone
from django.conf import settings
+from pipeline.storage import GZIPMixin
+from pipeline.storage import PipelineCachedStorage
tz = pytz.timezone(settings.TIME_ZONE)
tz = pytz.timezone(settings.TIME_ZONE)
@@
-15,3
+17,6
@@
def localtime_to_utc(localtime):
def utc_for_js(dt):
return dt.strftime('%Y/%m/%d %H:%M:%S UTC')
def utc_for_js(dt):
return dt.strftime('%Y/%m/%d %H:%M:%S UTC')
+
+class GzipPipelineCachedStorage(GZIPMixin, PipelineCachedStorage):
+ pass