[web2py] Re: Auto Login on Google App engine

2012-03-23 Thread Anthony
> > Thanks. > I have a user object in the memory, may be I can use it to store the data > in session. Let me try this out. > In the meantime, can you explain what does the line no: 1959 (as below) > does ?? > > 1959 user = > Storage

[web2py] Re: Auto Login on Google App engine

2012-03-23 Thread Sushant Taneja
Thanks. I have a user object in the memory, may be I can use it to store the data in session. Let me try this out. In the meantime, can you explain what does the line no: 1959 (as below) does ?? 1959 user = Storage (t

[web2py] Re: Auto Login on Google App engine

2012-03-23 Thread howesc
can you disable auto-login, and then in your wrapping controller (or perhaps there is an onaccept handler) manually add the user data to the session? "login" really just means 'verify that the user exists in the db with the right credentials and then copy some stuff to the session' so you have