app/django/views/decorators/gzip.py
author Lennard de Rijk <ljvderijk@gmail.com>
Thu, 24 Sep 2009 20:31:56 +0200
changeset 2969 d0914c76ecc3
parent 54 03e267d67478
permissions -rw-r--r--
Corrected an import in the student_school_type update module.

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