settings.py
author nishanth
Fri, 23 Apr 2010 16:36:40 +0530
changeset 99 cc2ed87ee896
parent 92 bff52631d402
child 100 cdc0a363dc53
permissions -rwxr-xr-x
resolved a bug
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
62
b7e47cc39342 renamed the project to ws_app and modified imports accordingly .
nishanth
parents: 14
diff changeset
     1
# Django settings for ws_app project.
0
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
     2
92
bff52631d402 set debug to false and removed admin url
nishanth
parents: 65
diff changeset
     3
DEBUG = False
0
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
     4
TEMPLATE_DEBUG = DEBUG
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
     5
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
     6
ADMINS = (
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
     7
    # ('Your Name', 'your_email@domain.com'),
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
     8
)
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
     9
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    10
MANAGERS = ADMINS
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    11
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    12
DATABASE_ENGINE = 'sqlite3'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
65
51bec924f97b updated settings to suit fossee server conf.
nishanth
parents: 62
diff changeset
    13
DATABASE_NAME = '/home/hg/repos/ws_app/database/ws.db'             # Or path to database file if using sqlite3.
0
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    14
DATABASE_USER = ''             # Not used with sqlite3.
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    15
DATABASE_PASSWORD = ''         # Not used with sqlite3.
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    16
DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3.
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    17
DATABASE_PORT = ''             # Set to empty string for default. Not used with sqlite3.
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    18
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    19
# Local time zone for this installation. Choices can be found here:
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    20
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    21
# although not all choices may be available on all operating systems.
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    22
# If running in a Windows environment this must be set to the same as your
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    23
# system time zone.
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    24
TIME_ZONE = 'America/Chicago'
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    25
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    26
# Language code for this installation. All choices can be found here:
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    27
# http://www.i18nguy.com/unicode/language-identifiers.html
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    28
LANGUAGE_CODE = 'en-us'
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    29
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    30
SITE_ID = 1
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    31
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    32
# If you set this to False, Django will make some optimizations so as not
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    33
# to load the internationalization machinery.
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    34
USE_I18N = True
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    35
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    36
# Absolute path to the directory that holds media.
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    37
# Example: "/home/media/media.lawrence.com/"
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    38
MEDIA_ROOT = ''
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    39
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    40
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    41
# trailing slash if there is a path component (optional in other cases).
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    42
# Examples: "http://media.lawrence.com", "http://example.com/media/"
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    43
MEDIA_URL = ''
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    44
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    45
# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    46
# trailing slash.
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    47
# Examples: "http://foo.com/media/", "/media/".
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    48
ADMIN_MEDIA_PREFIX = '/media/'
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    49
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    50
# Make this unique, and don't share it with anybody.
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    51
SECRET_KEY = 'xs4ww$xf$1f-pl$1$dwb6bk_neqy$(vq$vr4d9)jo7-h8ft)3l'
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    52
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    53
# List of callables that know how to import templates from various sources.
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    54
TEMPLATE_LOADERS = (
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    55
    'django.template.loaders.filesystem.load_template_source',
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    56
    'django.template.loaders.app_directories.load_template_source',
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    57
#     'django.template.loaders.eggs.load_template_source',
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    58
)
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    59
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    60
MIDDLEWARE_CLASSES = (
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    61
    'django.middleware.common.CommonMiddleware',
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    62
    'django.contrib.sessions.middleware.SessionMiddleware',
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    63
    'django.contrib.auth.middleware.AuthenticationMiddleware',
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    64
)
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    65
62
b7e47cc39342 renamed the project to ws_app and modified imports accordingly .
nishanth
parents: 14
diff changeset
    66
ROOT_URLCONF = 'ws_app.urls'
0
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    67
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    68
TEMPLATE_DIRS = (
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    69
    # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    70
    # Always use forward slashes, even on Windows.
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    71
    # Don't forget to use absolute paths, not relative paths.
65
51bec924f97b updated settings to suit fossee server conf.
nishanth
parents: 62
diff changeset
    72
    '/home/hg/repos/ws_app/templates',
0
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    73
)
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    74
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    75
INSTALLED_APPS = (
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    76
    'django.contrib.auth',
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    77
    'django.contrib.contenttypes',
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    78
    'django.contrib.sessions',
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    79
    'django.contrib.sites',
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    80
    'django.contrib.admin',
62
b7e47cc39342 renamed the project to ws_app and modified imports accordingly .
nishanth
parents: 14
diff changeset
    81
    'ws_app.feedback',
b7e47cc39342 renamed the project to ws_app and modified imports accordingly .
nishanth
parents: 14
diff changeset
    82
    'ws_app.reg',
b7e47cc39342 renamed the project to ws_app and modified imports accordingly .
nishanth
parents: 14
diff changeset
    83
    #'ws_app.quiz',
0
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    84
)
2
c11afa8623f7 incorporated gen_key .
nishanth
parents: 1
diff changeset
    85
c11afa8623f7 incorporated gen_key .
nishanth
parents: 1
diff changeset
    86
AUTH_PROFILE_MODULE = 'reg.Profile'