Moved philo files into a philo subdirectory and added a setup.py file. Philo can...
[philo.git] / contrib / penfield / middleware.py
diff --git a/contrib/penfield/middleware.py b/contrib/penfield/middleware.py
deleted file mode 100644 (file)
index b25a28b..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-from django.http import HttpResponse
-from django.utils.decorators import decorator_from_middleware
-from philo.contrib.penfield.exceptions import HttpNotAcceptable
-
-
-class HttpNotAcceptableMiddleware(object):
-       """Middleware to catch HttpNotAcceptable errors and return an Http406 response.
-       See RFC 2616."""
-       def process_exception(self, request, exception):
-               if isinstance(exception, HttpNotAcceptable):
-                       return HttpResponse(status=406)
-
-
-http_not_acceptable = decorator_from_middleware(HttpNotAcceptableMiddleware)
\ No newline at end of file