Django

Code

Changeset 7620

Show
Ignore:
Timestamp:
06/11/08 22:37:13 (5 months ago)
Author:
adrian
Message:

Negligible comment typo fixes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/conf/global_settings.py

    r7586 r7620  
    1212DEBUG = False 
    1313TEMPLATE_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. 
    1718DEBUG_PROPAGATE_EXCEPTIONS = False 
    1819 
     
    290291SESSION_COOKIE_PATH = '/'                               # The path of the session cookie. 
    291292SESSION_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 they close their browser
     293SESSION_EXPIRE_AT_BROWSER_CLOSE = False                 # Whether a user's session cookie expires when the Web browser is closed
    293294SESSION_ENGINE = 'django.contrib.sessions.backends.db'  # The module to store session data 
    294295SESSION_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  
    1919 
    2020    The class is tied to the Query class that created it (in order to create 
    21     the corret SQL). 
     21    the correct SQL). 
    2222 
    2323    The children in this tree are usually either Q-like objects or lists of