Re: [ANN] Django 1.4.2 and 1.3.4 remedy security issues

2012-10-17 Thread Ross Poulton
Django==1.3.4 doesn't appear to be on Pypi, is it likely to be there soon? On Thursday, 18 October 2012 09:38:49 UTC+11, James Bennett wrote: > > Django 1.4.2 and 1.3.4 have just been released in response to a > security issue reported to us. > > Details are here: > >

Re: Proposal: Day of Week Filter in ORM on Date / DateTime Fields

2008-09-29 Thread Ross Poulton
On Sep 30, 12:29 pm, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > I've been thinking through, with a couple of different people, how we > can support extra lookup types on fields and so I'm going to reserve > judgement on this particular implementation until I have some thoughts > in order on

Re: Proposal: Day of Week Filter in ORM on Date / DateTime Fields

2008-09-29 Thread Ross Poulton
My latest patch added to ticket # 7672 works against the latest SVN checkout (r9097). All it needs in my opinion is a decision on the best way to handle Oracle dates, and testing against Oracle. Ross --~--~-~--~~~---~--~~ You received this message because you are

Proposal: Day of Week Filter in ORM on Date / DateTime Fields

2008-09-29 Thread Ross Poulton
When working with any calendar or event tracking information in Django it would be useful to be able to filter for items based on day of week: Event.objects.filter(event_date__week_day=1) # objects from any month/year/date, provided it's a Sunday will generate: SELECT ... WHERE