Django

Code

root/django/trunk/django/contrib/sessions


Mode:

Legend:

Added
Modified
Copied or renamed
Rev Chgset Date Author Log Message
(edit) @8812 [8812] 09/01/08 15:25:16 jacob Fixed a small oversight in [8750]; thanks for the sharp eyes, Warren. …
(edit) @8750 [8750] 08/30/08 15:50:41 jacob Fixed #8616 (again): prevent a race condition in the session file backend. …
(edit) @8707 [8707] 08/29/08 12:32:21 mtredinnick Reverted #8688 for now, since it merely introduced different bugs, rather …
(edit) @8688 [8688] 08/28/08 20:44:11 mtredinnick Fixed #8616 -- Fixed a race condition in the file-based session …
(edit) @8620 [8620] 08/27/08 03:58:51 mtredinnick Fixed #8311 -- Avoid an infinite loop with session key generation when …
(edit) @8507 [8507] 08/23/08 17:59:04 mtredinnick Avoid a crash when unencoding session data for the db backend. This is …
(edit) @8459 [8459] 08/21/08 08:54:53 mtredinnick When logging in, change the session key whilst preserving any …
(edit) @8451 [8451] 08/20/08 16:12:45 mtredinnick Fixed #8457 -- Fixed a missing import.
(edit) @8410 [8410] 08/16/08 10:54:36 mtredinnick Fixed #8351 -- Fixed the returned value when we attempt to load a …
(edit) @8381 [8381] 08/15/08 09:59:11 mtredinnick Made a few small tweaks to reduce persistent storage accesses in the …
(edit) @8351 [8351] 08/14/08 14:43:08 mtredinnick Fixed #8314 -- Fixed an infinite loop caused when submitting a session key …
(edit) @8349 [8349] 08/14/08 10:41:38 gwilson Removed some testing code inadvertently commited in [8348].
(edit) @8348 [8348] 08/14/08 10:37:43 gwilson Fixed #8206 -- Removed validate methods of Model and Model fields. They …
(edit) @8346 [8346] 08/14/08 08:54:22 mtredinnick Fixed #8310 -- Actually use the SystemRandom? RNG, if available, which …
(edit) @8344 [8344] 08/13/08 22:58:09 mtredinnick Fixed #6984 -- Make sure to load session data from the file (if …
(edit) @8342 [8342] 08/13/08 22:57:46 mtredinnick Implemented a flush() method on sessions that cleans out the session …
(edit) @8341 [8341] 08/13/08 22:57:30 mtredinnick Added a clear() method to sessions. Patch from mrts. Refs #7515.
(edit) @8340 [8340] 08/13/08 22:57:18 mtredinnick Added guaranteed atomic creation of new session objects. Slightly …
(edit) @8193 [8193] 08/02/08 00:56:57 gwilson Fixed #7919 -- md5 and sha modules are deprecated since Python 2.5, use …
(edit) @8156 [8156] 07/30/08 16:55:47 mtredinnick Removed TEST_COOKIE_NAME and TEST_COOKIE_VALUE constants …
(edit) @8046 [8046] 07/21/08 22:24:09 adrian Fixed #7847 -- Removed a whole bunch of unused imports from throughout the …
(edit) @7725 [7725] 06/23/08 00:08:07 gwilson Several Django styling fixes in the contrib.sessions app.
(edit) @7687 [7687] 06/18/08 07:07:46 russellm Fixed #7429 -- Modified the Session base class a little more …
(edit) @7586 [7586] 06/07/08 15:28:06 jacob Fixed #2548: added get/set_expiry methods to session objects. Thanks, Amit …
(edit) @7329 [7329] 03/20/08 01:43:58 mtredinnick Fixed #5507 -- Use a more portable way to get at the system's tmpdir …
(edit) @7294 [7294] 03/18/08 09:54:39 mtredinnick Added "svn:eol-style native" to every text file in the tree (*.txt, …
(edit) @7131 [7131] 02/18/08 18:08:08 mtredinnick Fixed #6481 -- Fixed a bunch of import problems (and some whitespace …
(edit) @7001 [7001] 01/06/08 06:53:09 mtredinnick Fixed a subtle corner case whereby sending a bad session ID generates new …
(edit) @6890 [6890] 12/04/07 14:29:43 jacob Added a test for [6889]
(edit) @6889 [6889] 12/04/07 14:24:22 jacob Fixed #6082: file-based sessions now verify that SESSION_FILE_PATH is a …
(edit) @6831 [6831] 12/02/07 09:27:29 mtredinnick Fixed #6087 -- Added setdefault() support to the Session object. Thanks, …
(edit) @6796 [6796] 12/01/07 12:10:14 mtredinnick Fixed #6081 -- Removed unused code. Thanks, Ben Slavin.
(edit) @6634 [6634] 10/30/07 22:59:40 gwilson Fixed #5816 -- Fixed a regression from [6333] that generates incorrect …
(edit) @6628 [6628] 10/29/07 18:55:08 gwilson Fixed imports, indention, and a long line.
(edit) @6558 [6558] 10/20/07 05:12:59 mtredinnick Fixed #4729 -- Restored functionality to the Session class so that popping …
(edit) @6545 [6545] 10/20/07 00:13:56 mtredinnick Fixed #4724 -- Added support for configurable session cookie paths. Helps …
(edit) @6425 [6425] 09/25/07 18:16:11 gwilson Fixed #5598 -- Restored needed imports that were removed in [6333]. …
(edit) @6388 [6388] 09/19/07 23:35:03 adrian Removed trailing whitespace in django/contrib/sessions/backends/base.py
(edit) @6386 [6386] 09/19/07 21:19:48 adrian Fixed #5548 -- Reintroduced Jython workaround for os.getpid(), which was …
(edit) @6367 [6367] 09/16/07 23:52:46 gwilson Ignore *.pyc.
(edit) @6365 [6365] 09/16/07 15:11:14 jacob Refs #5513: improved session performance after [6333]'s session …
(edit) @6348 [6348] 09/15/07 21:03:46 mtredinnick Fixed #5501 -- Fixed Python 2.3 and 2.4 incompatibility. Thanks, brosner.
(edit) @6333 [6333] 09/15/07 16:29:14 jacob Fixed #2066: session data can now be stored in the cache or on the …
(edit) @6270 [6270] 09/15/07 04:51:41 mtredinnick Fixed #5486 -- Worked around the lack of os.getpid() in Jython, whilst …
(edit) @5876 [5876] 08/12/07 07:49:01 mtredinnick Fixed #5111 -- Set svn:eol-style to 'native' on files that didn't have …
(edit) @5803 [5803] 08/05/07 00:14:46 gwilson Fixed #2101 -- Renamed maxlength argument to max_length for oldforms …
(edit) @5712 [5712] 07/15/07 22:50:22 mtredinnick Fixed #4199 -- Changed date formatting in HTTP expires header to be …
(edit) @5609 [5609] 07/04/07 07:11:04 mtredinnick Merged Unicode branch into trunk (r4952:5608). This should be …
(edit) @5592 [5592] 07/03/07 10:02:40 adrian Fixed #4729 -- SessionWrapper?.pop now sets modified flag if necessary. …
(edit) @5470 [5470] 06/14/07 19:22:16 mtredinnick Fixed #4531 -- Added a bit more randomness to session idents. Thanks, …
(edit) @5306 [5306] 05/20/07 23:03:53 mtredinnick Fixed #4338 -- Added pop() method to SessionWrapper?. Thanks, Gary Wilson.
(edit) @4771 [4771] 03/21/07 21:20:33 mtredinnick Reduced the chances of session object collision. The window of opportunity …
(edit) @4680 [4680] 03/08/07 02:46:59 mtredinnick Fixed #3586 -- Only output "Vary: Cookie" HTTP header when the session …
(edit) @4423 [4423] 01/24/07 18:47:44 adrian Fixed #2133 -- Invalid session cookie no longer causes fatal error. …
(edit) @4265 [4265] 12/30/06 00:25:49 adrian Fixed #3191 -- Set 'svn:eol-style native' on the files that didn't have …
(edit) @3570 [3570] 08/12/06 01:02:28 adrian Fixed #2523 -- Added SESSION_COOKIE_SECURE setting. Thanks, mir@noris.de
(edit) @3392 [3392] 07/19/06 22:32:24 russellm Fixed formatting of comments.
(edit) @3167 [3167] 06/19/06 23:07:32 mtredinnick Fixed #1422 -- Docstring improvements for the models in the admin app. …
(edit) @3113 [3113] 06/08/06 00:00:13 adrian Fixed #2109 -- Convert old-style classes to new-style classes throughout …
(edit) @3049 [3049] 06/01/06 17:25:06 adrian Fixed #395 -- Added SESSION_EXPIRE_AT_BROWSER_CLOSE setting, which …
(edit) @2847 [2847] 05/04/06 23:41:22 adrian Fixed #1378 -- Added svn:ignore for pyc files for all Django packages
(copy) @2809 [2809] 05/01/06 20:31:56 adrian MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly …
copied from django/branches/magic-removal/django/contrib/sessions:
(edit) @2301 [2301] 02/10/06 15:35:29 adrian magic-removal: Merged to [2300]
Note: See TracRevisionLog for help on using the revision log.