Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/contrib/sessions/backends/signed_cookies.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #24468 -- Made signed cookies cache backend ↵Tim Graham2015-03-121-1/+3
| | | | resilient to unpickling exceptions.
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-2/+1
|
* Fixed #20922 -- Allowed customizing the serializer used ↵Tim Graham2013-08-221-19/+2
| | | | | | | | | by contrib.sessions Added settings.SESSION_SERIALIZER which is the import path of a serializer to use for sessions. Thanks apollo13, carljm, shaib, akaariai, charettes, and dstufft for reviews.
* Fixed #18194 -- Expiration of file-based sessionsAymeric Augustin2012-10-281-0/+4
| | | | | | | * Prevented stale session files from being loaded * Added removal of stale session files in django-admin.py clearsessions Thanks ej for the report, crodjer and Elvard for their inputs.
* Fixed #19200 -- Session expiry with cached_dbAymeric Augustin2012-10-271-0/+1
| | | | Also did a little bit of cleanup.
* [py3] Switched to Python 3-compatible imports.Aymeric Augustin2012-07-221-1/+1
| | | | | xrange/range will be dealt with in a separate commit due to the huge number of changes.
* Fixed #11555 -- Made SessionBase.session_key read-only. ↵Aymeric Augustin2011-11-271-1/+1
| | | | | | | | | | Cleaned up code slightly. Refs #13478. This also removes the implicit initialization of the session key on the first access in favor of explicit initialization. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17155 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #17223 -- Correctly reference the signed cookies ↵Jannis Leidel2011-11-171-2/+2
| | | | | | session backend. Thanks, Bryan Veloso. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17101 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #16199 -- Added a Cookie based session backend. ↵Jannis Leidel2011-06-261-0/+93
Many thanks to Eric Florenzano for his initial work and Florian Apollaner for reviewing. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16466 bcc190cf-cafb-0310-a4f2-bffc1f526a37