summaryrefslogtreecommitdiff
path: root/django/contrib/sessions/backends
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
2012-02-23Cleanup to use get_random_string consistently.Paul McMillan
2012-01-24Fixed #17506 -- Did a minor optimization in the sessions' database backend. T...Julien Phalip
2011-11-27Optimized the cached_db session backend to check if a key exists in the cache...Aymeric Augustin
2011-11-27Fixed #11555 -- Made SessionBase.session_key read-only. Cleaned up code sligh...Aymeric Augustin
2011-11-20Upgraded django.contrib.sessions to be compatible with time zone support.Aymeric Augustin
2011-11-17Fixed #17223 -- Correctly reference the signed cookies session backend. Thank...Jannis Leidel
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
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-06-26Fixed #16199 -- Added a Cookie based session backend. Many thanks to Eric Flo...Jannis Leidel
2011-03-30Removed Django 1.2 compatibility fallback for session data integrity check hash.Luke Plant
2011-03-28Removed a bunch of Python 2.4 workarounds now that we don't support it. Refs ...Adrian Holovaty
2011-02-09Fixed a security issue in the file session backend. Disclosure and new relea...Alex Gaynor
2010-11-14Fixed potential circular import problem.Luke Plant
2010-10-14Fixed #14445 - Use HMAC and constant-time comparison functions where needed.Luke Plant
2010-08-05Converted sessions tests from doctest to unittest.Luke Plant
2010-03-25Fixed #13200 -- Updated the DB session backend to make full use of routers, d...Russell Keith-Magee
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2009-03-01Fixed #9548 -- Correctly detect existence of empty sessions with cache backend.Malcolm Tredinnick
2009-01-10Fixed #6791: added a write-through cache session backend: session data is wri...Jacob Kaplan-Moss
2008-09-01Fixed a small oversight in [8750]; thanks for the sharp eyes, Warren. Fixes #...Jacob Kaplan-Moss
2008-08-30Fixed #8616 (again): prevent a race condition in the session file backend. Ma...Jacob Kaplan-Moss
2008-08-29Reverted #8688 for now, since it merely introduced different bugs, rather thanMalcolm Tredinnick
2008-08-29Fixed #8616 -- Fixed a race condition in the file-based session backend.Malcolm Tredinnick
2008-08-27Fixed #8311 -- Avoid an infinite loop with session key generation when usingMalcolm Tredinnick
2008-08-23Avoid a crash when unencoding session data for the db backend. This is requiredMalcolm Tredinnick
2008-08-21When logging in, change the session key whilst preserving any existingMalcolm Tredinnick
2008-08-20Fixed #8457 -- Fixed a missing import.Malcolm 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-14Fixed #8310 -- Actually use the SystemRandom RNG, if available, which fixes anMalcolm Tredinnick
2008-08-14Fixed #6984 -- Make sure to load session data from the file (if necessary)Malcolm Tredinnick
2008-08-14Implemented a flush() method on sessions that cleans out the session andMalcolm Tredinnick
2008-08-14Added a clear() method to sessions. Patch from mrts. Refs #7515.Malcolm Tredinnick
2008-08-14Added guaranteed atomic creation of new session objects. Slightly backwardsMalcolm Tredinnick
2008-08-02Fixed #7919 -- md5 and sha modules are deprecated since Python 2.5, use hashl...Gary Wilson Jr
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-18Fixed #7429 -- Modified the Session base class a little more dictionary-like ...Russell Keith-Magee
2008-06-07Fixed #2548: added get/set_expiry methods to session objects. Thanks, Amit Up...Jacob Kaplan-Moss
2008-03-20Fixed #5507 -- Use a more portable way to get at the system's tmpdir (fixes aMalcolm Tredinnick
2008-01-06Fixed a subtle corner case whereby sending a bad session ID generates new (un...Malcolm Tredinnick
2007-12-04Fixed #6082: file-based sessions now verify that SESSION_FILE_PATH is a valid...Jacob Kaplan-Moss
2007-12-02Fixed #6087 -- Added setdefault() support to the Session object. Thanks, BenMalcolm Tredinnick
2007-10-20Fixed #4729 -- Restored functionality to the Session class so that popping aMalcolm Tredinnick
2007-09-20Removed trailing whitespace in django/contrib/sessions/backends/base.pyAdrian Holovaty