Re: Deleting a session variable

2009-01-10 Thread Christian Joergensen
Michael wrote: > Hello, > I'm sure this is a easy question. > > In one of my views I need to delete the session variable > 'request.session['percent']'. However, sometimes 'request.session > ['percent']' never gets created. When this is the case I get an error > when I do 'del request.session['

Re: deleting a session

2008-07-03 Thread Jeff FW
I haven't tried this (I'll try it when I get home), but looking at the session code shows that you should be able to call: request.session.delete() to delete the whole session at once. On Jul 3, 3:52 am, Daniel Hepper <[EMAIL PROTECTED]> wrote: > Try: > > for key in request.session.keys(): >    

Re: deleting a session

2008-07-03 Thread Daniel Hepper
Try: for key in request.session.keys(): del request.session[key] Regards, Daniel Hepper Am Mittwoch, den 02.07.2008, 20:57 -0700 schrieb Bobby Roberts: > > for key in request.session: > > del request.session[key] > > > I get the following error: > > Exception Type: KeyError > E

Re: deleting a session

2008-07-02 Thread Bobby Roberts
> for key in request.session: >     del request.session[key] I get the following error: Exception Type: KeyError Exception Value:0 Exception Location: /usr/lib/python2.5/site-packages/django/contrib/ sessions/backends/base.py in __getitem__, line 31 --~--~-~--~~-

Re: deleting a session

2008-07-02 Thread J. Cliff Dyer
On Wed, 2008-07-02 at 11:52 -0700, Bobby Roberts wrote: > > On Jul 2, 2:50 pm, "Juanjo Conti" <[EMAIL PROTECTED]> wrote: > > You mean in the views? > > > > del request.session['somedata'] > > Well If i have 15 session variables I don't want to have to do it for > each variable. > for key in req

Re: deleting a session

2008-07-02 Thread Juanjo Conti
I am just guessing, but try: request.session.clear() 2008/7/2 Bobby Roberts <[EMAIL PROTECTED]>: > >> On Jul 2, 2:50 pm, "Juanjo Conti" <[EMAIL PROTECTED]> wrote: >> You mean in the views? >> >> del request.session['somedata'] > > Well If i have 15 session variables I don't want to have to do it

Re: deleting a session

2008-07-02 Thread Bobby Roberts
> On Jul 2, 2:50 pm, "Juanjo Conti" <[EMAIL PROTECTED]> wrote: > You mean in the views? > > del request.session['somedata'] Well If i have 15 session variables I don't want to have to do it for each variable. Is there something like del request.session.sessionid or something that will kill all s

Re: deleting a session

2008-07-02 Thread Juanjo Conti
You mean in the views? del request.session['somedata'] 2008/7/2 Bobby Roberts <[EMAIL PROTECTED]>: > > i can't find a way to delete session data (other than user removing > their cookie perhaps?) in the django docs. Is there an easy way to do > this like in ASP? > > > -- Juanjo Conti --~--