sphinx_django/settings.py
author amit
Thu, 30 Sep 2010 11:36:30 +0530
changeset 0 54f784230511
child 2 f5e18f8ed036
permissions -rw-r--r--
Initial commit of django based commenting system for sphinx. Already has most of the boiler plate code.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
     1
# Django settings for sphinx_django project.
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
     2
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
     3
DEBUG = True
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
     4
TEMPLATE_DEBUG = DEBUG
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
     5
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
     6
ADMINS = (
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
     7
    ('Amit Sethi', 'amit.pureenergy@gmail.com'),
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
     8
)
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
     9
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    10
MANAGERS = ADMINS
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    11
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    12
DATABASE_ENGINE = 'sqlite3'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    13
DATABASE_NAME = 'test.db'             # Or path to database file if using sqlite3.
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    14
DATABASE_USER = ''             # Not used with sqlite3.
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    15
DATABASE_PASSWORD = ''         # Not used with sqlite3.
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    16
DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3.
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    17
DATABASE_PORT = ''             # Set to empty string for default. Not used with sqlite3.
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    18
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    19
# Local time zone for this installation. Choices can be found here:
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    20
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    21
# although not all choices may be available on all operating systems.
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    22
# If running in a Windows environment this must be set to the same as your
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    23
# system time zone.
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    24
TIME_ZONE = 'America/Chicago'
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    25
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    26
# Language code for this installation. All choices can be found here:
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    27
# http://www.i18nguy.com/unicode/language-identifiers.html
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    28
LANGUAGE_CODE = 'en-us'
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    29
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    30
SITE_ID = 1
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    31
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    32
# If you set this to False, Django will make some optimizations so as not
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    33
# to load the internationalization machinery.
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    34
USE_I18N = True
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    35
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    36
# Absolute path to the directory that holds media.
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    37
# Example: "/home/media/media.lawrence.com/"
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    38
MEDIA_ROOT = ''
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    39
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    40
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    41
# trailing slash if there is a path component (optional in other cases).
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    42
# Examples: "http://media.lawrence.com", "http://example.com/media/"
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    43
MEDIA_URL = ''
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    44
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    45
# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    46
# trailing slash.
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    47
# Examples: "http://foo.com/media/", "/media/".
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    48
ADMIN_MEDIA_PREFIX = '/media/'
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    49
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    50
# Make this unique, and don't share it with anybody.
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    51
SECRET_KEY = '21^&3e-nh_hxqkruwj72gtwy^$i6t$#gbn&r36u0tj+ydk&&g8'
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    52
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    53
# List of callables that know how to import templates from various sources.
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    54
TEMPLATE_LOADERS = (
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    55
    'django.template.loaders.filesystem.load_template_source',
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    56
    'django.template.loaders.app_directories.load_template_source',
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    57
#     'django.template.loaders.eggs.load_template_source',
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    58
)
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    59
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    60
MIDDLEWARE_CLASSES = (
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    61
    'django.middleware.common.CommonMiddleware',
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    62
    'django.contrib.sessions.middleware.SessionMiddleware',
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    63
    'django.contrib.auth.middleware.AuthenticationMiddleware',
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    64
)
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    65
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    66
ROOT_URLCONF = 'sphinx_django.urls'
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    67
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    68
TEMPLATE_DIRS = (
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    69
    "/home/amit/review/sphinx_django/templates/"
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    70
    
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    71
    # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    72
    # Always use forward slashes, even on Windows.
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    73
    # Don't forget to use absolute paths, not relative paths.
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    74
)
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    75
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    76
INSTALLED_APPS = (
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    77
    'django.contrib.admin',
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    78
    'django.contrib.auth',
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    79
    'django.contrib.contenttypes',
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    80
    'django.contrib.sessions',
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    81
    'django.contrib.sites',
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    82
    'sphinx_django.sphinxcomment',
54f784230511 Initial commit of django based commenting system for sphinx. Already has
amit
parents:
diff changeset
    83
)