Re: Pagination research

2007-02-18 Thread Christoph Haas
Sorry... I was offline for a while (thanks, telco)... On Tuesday 06 February 2007 00:43, David Smith wrote: Regarding queries, you don't need them when you're using assign_mapper For normal queries like model.mytable.get_by(name='Chris') it's great to use the additional methods that

Re: Pagination research

2007-02-05 Thread Christoph Haas
On Saturday 03 February 2007 08:01, dds wrote: Thanks for looking into the pagination stuff. No hope too soon. :) On Jan 29, 11:54 pm, Christoph Haas [EMAIL PROTECTED] wrote: The documentation athttp://pylonshq.com/WebHelpers/module-webhelpers.pagination.htmlcont ains this example:

Re: Pagination research

2007-02-05 Thread Shannon -jj Behrens
On 2/5/07, Christoph Haas [EMAIL PROTECTED] wrote: On Saturday 03 February 2007 08:01, dds wrote: Thanks for looking into the pagination stuff. No hope too soon. :) On Jan 29, 11:54 pm, Christoph Haas [EMAIL PROTECTED] wrote: The documentation

Re: Pagination research

2007-02-05 Thread Chris AtLee
On 2/5/07, Shannon -jj Behrens [EMAIL PROTECTED] wrote: On 2/5/07, Christoph Haas [EMAIL PROTECTED] wrote: On Saturday 03 February 2007 08:01, dds wrote: On Jan 29, 11:54 pm, Christoph Haas [EMAIL PROTECTED] wrote: Are you sure? In the background the orm.py is creating a lazy mapping that

Re: Pagination research

2007-02-05 Thread David Smith
Christoph Haas email-Nf+wZpSdgwd6//[EMAIL PROTECTED] writes: On Saturday 03 February 2007 08:01, dds wrote: Thanks for looking into the pagination stuff. No hope too soon. :) On Jan 29, 11:54 pm, Christoph Haas e...-Nf+wZpSdgwd6//[EMAIL PROTECTED] wrote: The documentation

Re: Pagination research

2007-01-29 Thread Christoph Haas
UPDATE... On Thursday 25 January 2007 16:13, Christoph Haas wrote: I'm using SQLAlchemy and have defined my Table()s in models/__init__.py. To use the pagination I used from webhelpers import pagination in the lib/helpers.py. [...] Since the above query object was ugly I tried to feed

Re: Pagination research

2007-01-26 Thread Shannon -jj Behrens
On 1/25/07, Christoph Haas [EMAIL PROTECTED] wrote: Evening... as some of you may have read on IRC I'm trying to use webhelpers' pagination package. That's a pretty frustrating trip that's more a pydoc text adventure than something that saves me more time than re-inventing the wheel.

Pagination research

2007-01-25 Thread Christoph Haas
Evening... as some of you may have read on IRC I'm trying to use webhelpers' pagination package. That's a pretty frustrating trip that's more a pydoc text adventure than something that saves me more time than re-inventing the wheel. Anyway... I'm using SQLAlchemy and have defined my Table()s in