adding index.jsp fix
[botlist.git] / botlist_trinity / projects / ghostnet / settings.py
blobf079b29a76f9731e3c9e14bbd1848ab360ec86a8
1 #!/usr/bin/env python
3 # Copyright 2008 Google Inc.
6 import os
8 DEBUG = True
9 TEMPLATE_DEBUG = DEBUG
11 APPEND_SLASH = False
13 # Language code for this installation. All choices can be found here:
14 # http://www.w3.org/TR/REC-html40/struct/dirlang.html#langcodes
15 # http://blogs.law.harvard.edu/tech/stories/storyReader$15
16 LANGUAGE_CODE = 'en-us'
18 SITE_ID = 1
20 # If you set this to False, Django will make some optimizations so as not
21 # to load the internationalization machinery.
22 USE_I18N = True
24 # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
25 # trailing slash.
26 # Examples: "http://foo.com/media/", "/media/".
27 ADMIN_MEDIA_PREFIX = '/media/'
29 # You really should fill this in for your application!
30 # see http://www.djangoproject.com/documentation/settings/#secret-key
31 # Make this unique, and don't share it with anybody.
32 SECRET_KEY = ''
34 # List of callables that know how to import templates from various sources.
35 TEMPLATE_LOADERS = (
36 'django.template.loaders.filesystem.load_template_source',
37 'django.template.loaders.app_directories.load_template_source',
40 MIDDLEWARE_CLASSES = (
41 'django.middleware.common.CommonMiddleware',
42 'django.contrib.sessions.middleware.SessionMiddleware',
43 'django.middleware.doc.XViewMiddleware',
46 ROOT_URLCONF = 'urls'
48 ROOT_PATH = os.path.dirname(__file__)
49 TEMPLATE_DIRS = (
50 os.path.join(ROOT_PATH, 'templates')