diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2010-05-06 01:35:02 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2010-05-06 01:35:02 +0000 |
| commit | 2b05231310c731facea633839fd165e9f0a2194c (patch) | |
| tree | 4776b2a714585724fb33cf9f8fc9d241bdd2d5a6 /docs/topics/http | |
| parent | cfa4a62624a54b47119ec14d624526372f9d7578 (diff) | |
Fixed #8357 -- Clarified what constitutes activity when calculating session expiry. Thanks to timo for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13113 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics/http')
| -rw-r--r-- | docs/topics/http/sessions.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/topics/http/sessions.txt b/docs/topics/http/sessions.txt index bce5e1b2f0..3fa6ffd68c 100644 --- a/docs/topics/http/sessions.txt +++ b/docs/topics/http/sessions.txt @@ -194,6 +194,10 @@ It also has these methods: * If ``value`` is ``None``, the session reverts to using the global session expiry policy. + Reading a session is not considered activity for expiration + purposes. Session expiration is computed from the last time the + session was *modified*. + * ``get_expiry_age()`` .. versionadded:: 1.0 |
