Changeset 7405 for django/branches/gis/django/conf/global_settings.py
- Timestamp:
- 04/07/08 15:29:36 (9 months ago)
- Files:
-
- django/branches/gis (modified) (1 prop)
- django/branches/gis/django/conf/global_settings.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/gis
- Property svnmerge-integrated changed from /django/trunk:1-7353 to /django/trunk:1-7404
django/branches/gis/django/conf/global_settings.py
r7354 r7405 71 71 ('pl', gettext_noop('Polish')), 72 72 ('pt', gettext_noop('Portugese')), 73 ('pt-br', gettext_noop('Brazilian ')),73 ('pt-br', gettext_noop('Brazilian Portuguese')), 74 74 ('ro', gettext_noop('Romanian')), 75 75 ('ru', gettext_noop('Russian')), … … 115 115 116 116 # Database connection info. 117 DATABASE_ENGINE = '' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or ' ado_mssql'.117 DATABASE_ENGINE = '' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. 118 118 DATABASE_NAME = '' # Or path to database file if using sqlite3. 119 119 DATABASE_USER = '' # Not used with sqlite3. … … 288 288 SESSION_EXPIRE_AT_BROWSER_CLOSE = False # Whether sessions expire when a user closes his browser. 289 289 SESSION_ENGINE = 'django.contrib.sessions.backends.db' # The module to store session data 290 SESSION_FILE_PATH = None # Directory to store session files if using the file session module. If set to Nonethe backend will use a sensible default.290 SESSION_FILE_PATH = None # Directory to store session files if using the file session module. If None, the backend will use a sensible default. 291 291 292 292 #########
