app/django/views/decorators/gzip.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sun, 04 Oct 2009 15:14:06 +0200 (2009-10-04)
changeset 3005 fbdf957cb3a3
parent 54 03e267d67478
permissions -rw-r--r--
Removed obsolete value to unpack in the updateGHOPTask Task.
"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)