[ANNOUNCE] Django 1.2.7 -- corrects issue with 1.2.6 release package

2011-09-10 Thread James Bennett
Due to an issue with yesterday's 1.2.6 release package, today we are issuing Django 1.2.7. All users of 1.2.X Django should upgrade to 1.2.7, rather than to 1.2.6. Details here: https://www.djangoproject.com/weblog/2011/sep/10/127/ -- "Bureaucrat Conrad, you are technically correct -- the

Re: Improved password hashing for 1.4

2011-09-10 Thread Paul McMillan
> Having recently written a Python implementation of PBKDF2 myself, I'd > just like to quietly point out that it is not a hashing algorithm. It > is a Key Derivation Function. That is, it's a way of generating key > material for crypto functions, from a password source. Yes, you're absolutely

Re: plea for re-opening ticket 13125 marked as won't fix

2011-09-10 Thread Florian Apolloner
Stupid question, but why do you let inactive users login at all? I mean is this really a problem of the decorator and not of the login system you use?! -- You received this message because you are subscribed to the Google Groups "Django developers" group. To view this discussion on the web

Re: Proposal for a new templatetag definition syntax

2011-09-10 Thread Alex Gaynor
On Fri, Sep 9, 2011 at 6:16 PM, Wim Feijen wrote: > Hi Alex, > > Probably I am thinking way too simple, but if you gave me a free > choice of how to write templatetags in my code, I would prefer: > > def mytag(foo, bar): > # some code > return output > > or: > >

Re: Improved password hashing for 1.4

2011-09-10 Thread Russell Keith-Magee
On Sat, Sep 10, 2011 at 11:54 AM, Paul McMillan wrote: > In conjunction with Justine Tunney, Isaac Kelly and Russell KM, I'd > like to introduce our plan of attack for including significantly > better password hashing in Django 1.4. One of the key goals with this > push is to

Re: Fixture loading using bulk_create

2011-09-10 Thread Alex Gaynor
On Sat, Sep 10, 2011 at 8:19 AM, Anssi Kääriäinen wrote: > > > On Sep 10, 1:55 pm, "Jonas H." wrote: > > I started hacking the loaddata command to make use of the shiny new > > `bulk_create` code -- however, it seems that fixture loading (at least > >

Re: Fixture loading using bulk_create

2011-09-10 Thread Anssi Kääriäinen
On Sep 10, 1:55 pm, "Jonas H." wrote: > I started hacking the loaddata command to make use of the shiny new > `bulk_create` code -- however, it seems that fixture loading (at least > in its current incarnation) is incompatible to bulk inserts, for this > reasons: > > 1. It's

Fixture loading using bulk_create

2011-09-10 Thread Jonas H.
I started hacking the loaddata command to make use of the shiny new `bulk_create` code -- however, it seems that fixture loading (at least in its current incarnation) is incompatible to bulk inserts, for this reasons: 1. It's possible to have model objects overridden by fixtures. e.g. in

Re: Improved password hashing for 1.4

2011-09-10 Thread Daniel Swarbrick
On Sep 10, 5:54 am, Paul McMillan wrote: > > The default password hashing algorithm will be changed to PBKDF2. > We'll include a pure python implementation, but preferably load faster > versions if available at the system level. > Having recently written a Python implementation