summaryrefslogtreecommitdiff
path: root/django/contrib/sessions/backends/cache.py
AgeCommit message (Expand)Author
2012-03-23Fixed #17810 (again). Catch session key errors.Aymeric Augustin
2012-03-23Fixed an incompatibility with Python 2.5 in the changes done in r17795. Refs ...Jannis Leidel
2012-03-23Fixed #17810. Catch session key errors.Paul McMillan
2011-11-27Fixed #11555 -- Made SessionBase.session_key read-only. Cleaned up code sligh...Aymeric Augustin
2011-09-10Corrected an issue which could allow attackers to manipulate session data usi...Russell Keith-Magee
2011-09-09Replaced `has_key()` calls with `in` to ease Python 3 port. Thanks, Martin vo...Jannis Leidel
2009-03-01Fixed #9548 -- Correctly detect existence of empty sessions with cache backend.Malcolm Tredinnick
2008-08-27Fixed #8311 -- Avoid an infinite loop with session key generation when usingMalcolm Tredinnick
2008-08-16Fixed #8351 -- Fixed the returned value when we attempt to load a cache-backe...Malcolm Tredinnick
2008-08-15Made a few small tweaks to reduce persistent storage accesses in the sessionMalcolm Tredinnick
2008-08-14Fixed #8314 -- Fixed an infinite loop caused when submitting a session key (viaMalcolm Tredinnick
2008-08-14Implemented a flush() method on sessions that cleans out the session andMalcolm Tredinnick
2008-08-14Added guaranteed atomic creation of new session objects. Slightly backwardsMalcolm Tredinnick
2008-07-22Fixed #7847 -- Removed a whole bunch of unused imports from throughout the co...Adrian Holovaty
2008-06-23Several Django styling fixes in the `contrib.sessions` app.Gary Wilson Jr
2008-06-07Fixed #2548: added get/set_expiry methods to session objects. Thanks, Amit Up...Jacob Kaplan-Moss
2007-09-15Fixed #2066: session data can now be stored in the cache or on the filesystem...Jacob Kaplan-Moss