app/django/views/decorators/gzip.py
author Sverre Rabbelier <sverre@rabbelier.nl>
Fri, 03 Jul 2009 18:23:12 -0700
changeset 2521 7c120301989c
parent 54 03e267d67478
permissions -rw-r--r--
survey access: stylefix and remove public role type

"Decorator for views that gzips pages if the client supports it."

from django.utils.decorators import decorator_from_middleware
from django.middleware.gzip import GZipMiddleware

gzip_page = decorator_from_middleware(GZipMiddleware)