Callback method on session timeout

2010-02-06 Thread adamjamesdrew
Does django have the ability to do a callback when a session time out
occurs?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Callback method on session timeout

2010-02-07 Thread cootetom
What is the problem you are trying to solve with this?




On Feb 7, 12:08 am, adamjamesdrew  wrote:
> Does django have the ability to do a callback when a session time out
> occurs?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Callback method on session timeout

2010-02-07 Thread theiklabs
I have a cpu intensive process that only runs when a user logs in. Once they 
log out or session time out I need to stop this process
Sent from my Verizon Wireless BlackBerry

-Original Message-
From: cootetom 
Date: Sun, 7 Feb 2010 15:21:58 
To: Django users
Subject: Re: Callback method on session timeout

What is the problem you are trying to solve with this?




On Feb 7, 12:08 am, adamjamesdrew  wrote:
> Does django have the ability to do a callback when a session time out
> occurs?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Callback method on session timeout

2010-02-08 Thread theiklabs
I would also like a way to monitor if there are any active connections to a 
certain web page ie domain.com/h.view
Sent from my Verizon Wireless BlackBerry

-Original Message-
From: cootetom 
Date: Sun, 7 Feb 2010 15:21:58 
To: Django users
Subject: Re: Callback method on session timeout

What is the problem you are trying to solve with this?




On Feb 7, 12:08 am, adamjamesdrew  wrote:
> Does django have the ability to do a callback when a session time out
> occurs?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Callback method on session timeout

2010-02-08 Thread Andy McKay

On 2010-02-06, at 4:08 PM, adamjamesdrew wrote:

> Does django have the ability to do a callback when a session time out
> occurs?

No, there is no session time out. Its just that a session isn't valid anymore.
--
  Andy McKay, @clearwind
  http://clearwind.ca/djangoski

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Callback method on session timeout

2010-02-12 Thread adamjamesdrew
So yur saying I'd need to go around checking sessions every so often
to see if they valid if they aint then I can update stuff. Is there an
api to access all sesiion data as admin or do I need to read the cache
or database backend

Andy McKay wrote:
> On 2010-02-06, at 4:08 PM, adamjamesdrew wrote:
>
> > Does django have the ability to do a callback when a session time out
> > occurs?
>
> No, there is no session time out. Its just that a session isn't valid anymore.
> --
>   Andy McKay, @clearwind
>   http://clearwind.ca/djangoski

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.