X-Git-Url: https://git.mdrn.pl/django-pagination.git/blobdiff_plain/8df2d3c3985857213effe95e92f86afb2f804290..93b0509ca44dbb1903d3cd9be62c330ec20eeb53:/pagination/middleware.py diff --git a/pagination/middleware.py b/pagination/middleware.py deleted file mode 100644 index 5e917c5..0000000 --- a/pagination/middleware.py +++ /dev/null @@ -1,10 +0,0 @@ -class PaginationMiddleware(object): - """ - Inserts a variable representing the current page onto the request object if - it exists in either **GET** or **POST** portions of the request. - """ - def process_request(self, request): - try: - request.page = int(request.REQUEST['page']) - except (KeyError, ValueError, TypeError): - request.page = 1 \ No newline at end of file