X-Git-Url: https://git.mdrn.pl/django-pagination.git/blobdiff_plain/340445da5b59b97926d2d95496f63fb34bed7de2..abf535d21fd19b257e5d6fecfd60e470cc12de7f:/linaro_django_pagination/middleware.py diff --git a/linaro_django_pagination/middleware.py b/linaro_django_pagination/middleware.py deleted file mode 100644 index 676f909..0000000 --- a/linaro_django_pagination/middleware.py +++ /dev/null @@ -1,17 +0,0 @@ -def get_page(self, suffix): - """ - A function which will be monkeypatched onto the request to get the current - integer representing the current page. - """ - try: - return int(self.REQUEST['page%s' % suffix]) - except (KeyError, ValueError, TypeError): - return 1 - -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): - request.__class__.page = get_page \ No newline at end of file