DJANGO + Google App Engine, Getting Started Tutorial

2010-08-23 Thread nobosh
I'm very interested in finding a up-to-date tutorial that shows steps for getting DJANGO running on Google App Engine, anyone know of any such tutorials? Surprisingly, Google's App Engine DJANGO docs are almost a year old. What gives? thanks! -- You received this message because you are subscri

Re: DJANGO + Google App Engine, Getting Started Tutorial

2010-08-24 Thread nobosh
Thanks for pointing that out. On Aug 23, 4:30 am, Steve Holden wrote: > On 8/23/2010 7:29 AM, Russell Keith-Magee wrote:> On Mon, Aug 23, 2010 at > 1:01 PM,nobosh wrote: > >> I'm very interested in finding a up-to-date tutorial that shows steps > >> for gett

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

2010-08-24 Thread nobosh
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, eliminating userids. I'm guessing this is a pretty common request? Does anyone know of any tutorials on how to accomplish this with Django-nor

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 > suppo

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

2010-08-26 Thread nobosh
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 > > &

App for Registration/Authorization which is Email & Password based (not username)

2010-08-26 Thread nobosh
Hello, I'm on day 7 learning Django and would appreciate any info around getting my Django app started with a Registration/Authorization which is Email & Password based (not username). I'll don't currently have a need for usernames. Is there an app or a clean/smart way to implement. I'm trying to a

Re: App for Registration/Authorization which is Email & Password based (not username)

2010-08-26 Thread nobosh
Thanks for the reply. The learning curve to get started has been harder than I expected. I found this: http://github.com/redvasily/django-emailauth Which seems to handle things well but it's still a hack (it's adding IDs in front of the email to create a username. I ran the setup.py and loaded th

Re: App for Registration/Authorization which is Email & Password based (not username)

2010-08-27 Thread nobosh
an_email I'm creating a hash to save as unique in the username field. > > I can help you more if you like, but I did this lot of time ago... it's > complicated :p But django-registration is very good documented > > > > > > On Fri, Aug 27, 2010 at 18:59, Eric Cha

Unistall an App

2010-08-27 Thread nobosh
I ran python setup.py install to install an emailauth app as Im working to create an auth that is email/password based. http://github.com/redvasily/django-emailauth I'm still working to get it installed and working, and would like to uninstall the module because when I create a project and go to