app/django/views/decorators/gzip.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Wed, 22 Oct 2008 16:55:35 +0000
changeset 406 cc603a815cad
parent 54 03e267d67478
permissions -rw-r--r--
Fix some wrong paths to templates (committed in r864). Patch by: Pawel Solyga Review 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)