app/django/views/decorators/gzip.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Wed, 27 May 2009 20:37:04 +0200
changeset 2366 1a954e80d444
parent 54 03e267d67478
permissions -rw-r--r--
Style fixes and pylint: disable-msg comments in different modules.

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