django1/django/contrib/sessions/backends
David Bannon f4416b1a8b Fixed #24915 -- Added stricter session key validation
Changed _session_key attribute to a property and implemented basic
validation in the setter. The session key must be 'truthy' and
at least 8 characters long. Otherwise, the value is set to None.
2015-06-06 20:04:20 -04:00
..
__init__.py Fixed #2066: session data can now be stored in the cache or on the filesystem. This should be fully backwards-compatible (the database cache store is still the default). A big thanks to John D'Agostino for the bulk of this code. 2007-09-15 21:29:14 +00:00
base.py Fixed #24915 -- Added stricter session key validation 2015-06-06 20:04:20 -04:00
cache.py Removed unnecessary arguments in .get method calls 2015-05-13 20:51:18 +02:00
cached_db.py Fixed incorrect session.flush() in cached_db session backend. 2015-05-20 13:48:06 -04:00
db.py Sorted imports with isort; refs #23860. 2015-02-06 08:16:28 -05:00
file.py Sorted imports with isort; refs #23860. 2015-02-06 08:16:28 -05:00
signed_cookies.py Fixed #24468 -- Made signed cookies cache backend resilient to unpickling exceptions. 2015-03-12 08:19:54 -04:00