Changeset 7619 for django/trunk/docs/sessions.txt
- Timestamp:
- 06/11/08 22:36:48 (7 months ago)
- Files:
-
- django/trunk/docs/sessions.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/sessions.txt
r7586 r7619 140 140 141 141 * If ``value`` is a ``datetime`` or ``timedelta`` object, the 142 session will expire at that specific time.143 144 * If ``value`` is ``0`` thenthe user's session cookie will expire145 when the irbrowser is closed.142 session will expire at that specific date/time. 143 144 * If ``value`` is ``0``, the user's session cookie will expire 145 when the user's Web browser is closed. 146 146 147 147 * If ``value`` is ``None``, the session reverts to using the global … … 169 169 170 170 Returns either ``True`` or ``False``, depending on whether the user's 171 session cookie will expire when the irbrowser is closed.171 session cookie will expire when the user's Web browser is closed. 172 172 173 173 You can edit ``request.session`` at any point in your view. You can edit it
