Add myself to authors on this file, and allow my whitespace cleanup hook to cleanup whitespace.
Patch by: Augie Fackler
"Decorator for views that gzips pages if the client supports it."from django.utils.decorators import decorator_from_middlewarefrom django.middleware.gzip import GZipMiddlewaregzip_page = decorator_from_middleware(GZipMiddleware)