app/django/views/decorators/gzip.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Fri, 03 Apr 2009 17:27:31 +0000
changeset 2071 0aa24d8655ac
parent 54 03e267d67478
permissions -rw-r--r--
Disable some messages in pylintrc and disable cyclic imports check in silent mode of do_pylint.sh. Patch by: Pawel Solyga Reviewed by: to-be-reviewed

"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)