+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
+