summaryrefslogtreecommitdiff
path: root/django/contrib/sessions
AgeCommit message (Expand)Author
2008-09-17Fixed #9096 -- Fixed a slightly out-of-date comment.Malcolm Tredinnick
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-14Removed some testing code inadvertently commited in [8348].Gary Wilson Jr
2008-08-14Fixed #8206 -- Removed validate methods of Model and Model fields. They are a...Gary Wilson Jr
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-30Removed TEST_COOKIE_NAME and TEST_COOKIE_VALUE constants fromMalcolm 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-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-02-19Fixed #6481 -- Fixed a bunch of import problems (and some whitespace cleanups).Malcolm Tredinnick
2008-01-06Fixed a subtle corner case whereby sending a bad session ID generates new (un...Malcolm Tredinnick
2007-12-04Added a test for [6889]Jacob Kaplan-Moss
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-12-01Fixed #6081 -- Removed unused code. Thanks, Ben Slavin.Malcolm Tredinnick
2007-10-31Fixed #5816 -- Fixed a regression from [6333] that generates incorrect cookie...Gary Wilson Jr
2007-10-29Fixed imports, indention, and a long line.Gary Wilson Jr
2007-10-20Fixed #4729 -- Restored functionality to the Session class so that popping aMalcolm Tredinnick
2007-10-20Fixed #4724 -- Added support for configurable session cookie paths. Helps withMalcolm Tredinnick
2007-09-25Fixed #5598 -- Restored needed imports that were removed in [6333]. Thanks, ...Gary Wilson Jr
2007-09-20Removed trailing whitespace in django/contrib/sessions/backends/base.pyAdrian Holovaty
2007-09-20Fixed #5548 -- Reintroduced Jython workaround for os.getpid(), which was lost...Adrian Holovaty
2007-09-16Refs #5513: improved session performance after [6333]'s session refactoring. ...Jacob Kaplan-Moss
2007-09-16Fixed #5501 -- Fixed Python 2.3 and 2.4 incompatibility. Thanks, brosner.Malcolm Tredinnick
2007-09-15Fixed #2066: session data can now be stored in the cache or on the filesystem...Jacob Kaplan-Moss
2007-09-15Fixed #5486 -- Worked around the lack of os.getpid() in Jython, whilst still ...Malcolm Tredinnick
2007-08-05Fixed #2101 -- Renamed `maxlength` argument to `max_length` for oldforms `For...Gary Wilson Jr
2007-07-16Fixed #4199 -- Changed date formatting in HTTP expires header to be specMalcolm Tredinnick
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-07-03Fixed #4729 -- SessionWrapper.pop now sets modified flag if necessary. Thanks...Adrian Holovaty
2007-06-15Fixed #4531 -- Added a bit more randomness to session idents. Thanks, FrankMalcolm Tredinnick
2007-05-21Fixed #4338 -- Added pop() method to SessionWrapper. Thanks, Gary Wilson.Malcolm Tredinnick
2007-03-22Reduced the chances of session object collision. The window of opportunity isMalcolm Tredinnick