Re: Django + GAE, Changing Auth from userid/password to email/password

2010-08-26 Thread dar
Nonrel is more actively discussed on their mailing list: http://groups.google.com/group/django-non-relational GAE python is actively discussed here: http://groups.google.com/group/google-appengine-python The django helper on GAE is discussed here, but there isn't much traffic on the mailing list

Re: Django + GAE, Changing Auth from userid/password to email/password

2010-08-26 Thread Karen Tracey
On Thu, Aug 26, 2010 at 1:38 PM, nobosh wrote: > Good to know I'm not the only one :) this forum seems to be a little > low with activity. Do you know of a better place to get Django > support / advice to help a newbie like myself along? > Low activity? This group gets about 60 posts a day. The

Re: Django + GAE, Changing Auth from userid/password to email/password

2010-08-26 Thread nobosh
Good to know I'm not the only one :) this forum seems to be a little low with activity. Do you know of a better place to get Django support / advice to help a newbie like myself along? On Aug 25, 5:23 pm, James Saxon wrote: > I'm curious too about both questions. > > The only answer I got at one

Re: Django + GAE, Changing Auth from userid/password to email/password

2010-08-25 Thread James Saxon
I'm curious too about both questions. The only answer I got at one point was to capture email and not username on registration, and then set username to the email either in the view (which I believe you'd have to do before the registration signal gets sent???) I haven't implemented it yet. J On

Re: Django + GAE, Changing Auth from userid/password to email/password

2010-08-25 Thread nobosh
Curious. Is the reason for the lack of reply due to no one using google app engine GAE? Thanks On Aug 24, 4:13 pm, nobosh wrote: > Hello, I just got my first app up:http://hellman470.appspot.com/ > > I'm now trying to learn how to change the authentication model to > support email/password, elimi