Re: Inconsistent keyword filtering on FK

2011-06-23 Thread Ethan Miller
On Jun 23, 2011, at 2:30 PM, Ian Clelland wrote: > person_id is a column in the payee table, and Django will construct SQL which > compares against that. It's the reverse actually payee_id is a column on the person table so I guess the resulting SQL would need to be select * from

Re: Inconsistent keyword filtering on FK

2011-06-23 Thread Ethan Miller
On Jun 23, 2011, at 2:21 PM, Cal Leeming [Simplicity Media Ltd] wrote: > Payee.objects.filter( > person = Person(id=26) > ) > > or.. Payee.objects.filter( > person__id = 26 > ) Both of these return the same error - it lists out all the "choices" which are all fields on the payee

Re: Disabling python-caching with mod_python, Apache 2.2

2007-08-13 Thread Ethan Miller
On 8/13/07 10:55 AM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > However, it seems like the requested pages are cached. Not in the > regular way though, it is as though the compiled Python procedures are > compiled, while the data is still up to date. > > I'm wondering if this is a problem