Changeset 1584
- Timestamp:
- 12/08/05 21:39:31 (3 years ago)
- Files:
-
- django/trunk/django/conf/global_settings.py (modified) (1 diff)
- django/trunk/docs/sessions.txt (modified) (1 diff)
- django/trunk/docs/settings.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/conf/global_settings.py
r1379 r1584 194 194 ############ 195 195 196 SESSION_COOKIE_NAME = ' hotclub'# Cookie name. This can be whatever you want.196 SESSION_COOKIE_NAME = 'sessionid' # Cookie name. This can be whatever you want. 197 197 SESSION_COOKIE_AGE = 60 * 60 * 24 * 7 * 2 # Age of cookie, in seconds (default: 2 weeks). 198 198 SESSION_COOKIE_DOMAIN = None # A string like ".lawrence.com", or None for standard domain cookie. django/trunk/docs/sessions.txt
r1304 r1584 216 216 ------------------- 217 217 218 Default: ``'hotclub'`` 218 Default: ``'sessionid'`` (**Django development version.** Previous default was 219 ``'hotclub'``, which was deemed to pornish.) 219 220 220 221 The name of the cookie to use for sessions. This can be whatever you want. 221 222 ``'hotclub'`` is a reference to the Hot Club of France, the band Django223 Reinhardt played in.224 222 225 223 SESSION_SAVE_EVERY_REQUEST django/trunk/docs/settings.txt
r1384 r1584 526 526 ------------------- 527 527 528 Default: ``'hotclub'`` 528 Default: ``'sessionid'`` (**Django development version.** Previous default was 529 ``'hotclub'``, which was deemed to pornish.) 529 530 530 531 The name of the cookie to use for sessions. This can be whatever you want. 531 532 See the `session docs`_. 532 533 ``'hotclub'`` is a reference to the Hot Club of France, the band Django534 Reinhardt played in.535 533 536 534 SESSION_SAVE_EVERY_REQUEST
