Changeset 7620
- Timestamp:
- 06/11/08 22:37:13 (5 months ago)
- Files:
-
- django/trunk/django/conf/global_settings.py (modified) (2 diffs)
- django/trunk/django/db/models/sql/where.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/conf/global_settings.py
r7586 r7620 12 12 DEBUG = False 13 13 TEMPLATE_DEBUG = False 14 # True if BaseHandler.get_response() should propagate raw exceptions 15 # rather than catching them. This is useful under some testing siutations, 16 # and should never be used on a live site. 14 15 # Whether the framework should propagate raw exceptions rather than catching 16 # them. This is useful under some testing siutations and should never be used 17 # on a live site. 17 18 DEBUG_PROPAGATE_EXCEPTIONS = False 18 19 … … 290 291 SESSION_COOKIE_PATH = '/' # The path of the session cookie. 291 292 SESSION_SAVE_EVERY_REQUEST = False # Whether to save the session data on every request. 292 SESSION_EXPIRE_AT_BROWSER_CLOSE = False # Whether a user's session cookie expires when the y close their browser.293 SESSION_EXPIRE_AT_BROWSER_CLOSE = False # Whether a user's session cookie expires when the Web browser is closed. 293 294 SESSION_ENGINE = 'django.contrib.sessions.backends.db' # The module to store session data 294 295 SESSION_FILE_PATH = None # Directory to store session files if using the file session module. If None, the backend will use a sensible default. django/trunk/django/db/models/sql/where.py
r7509 r7620 19 19 20 20 The class is tied to the Query class that created it (in order to create 21 the corre t SQL).21 the correct SQL). 22 22 23 23 The children in this tree are usually either Q-like objects or lists of
