Re: [patch] webhelpers.paginate fails on explicit mapper

2009-04-23 Thread Christoph Haas
Moin, Clemens... Am Donnerstag, 16. April 2009 18:49:10 schrieb Clemens Hermann: if routes.Mapper is configured with explicit=True (as recommended) then webhelpers.paginate.Page._pagerlink fails. The reason for this is that _pagerlink relies on route memory which is not present in case of

Re: [patch] webhelpers.paginate fails on explicit mapper

2009-04-23 Thread Mike Orr
On Thu, Apr 23, 2009 at 12:08 PM, Christoph Haas em...@christoph-haas.de wrote: Moin, Clemens... Am Donnerstag, 16. April 2009 18:49:10 schrieb Clemens Hermann: if routes.Mapper is configured with explicit=True (as recommended) then webhelpers.paginate.Page._pagerlink fails. The reason for

[patch] webhelpers.paginate fails on explicit mapper

2009-04-16 Thread Clemens Hermann
Hi, if routes.Mapper is configured with explicit=True (as recommended) then webhelpers.paginate.Page._pagerlink fails. The reason for this is that _pagerlink relies on route memory which is not present in case of explicit=True. This patch fixes the issue: http://paste.pocoo.org/show/112812/ I