1 # Django settings for paf0 project.
8 # ('Your Name', 'your_email@example.com'),
15 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
16 'NAME': '/var/www/cgi-bin/paf-v1/paf0_db', # Or path to database file if using sqlite3.
17 'USER': '', # Not used with sqlite3.
18 'PASSWORD': '', # Not used with sqlite3.
19 'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
20 'PORT': '', # Set to empty string for default. Not used with sqlite3.
24 # Local time zone for this installation. Choices can be found here:
25 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
26 # although not all choices may be available on all operating systems.
27 # On Unix systems, a value of None will cause Django to use the same
28 # timezone as the operating system.
29 # If running in a Windows environment this must be set to the same as your
31 TIME_ZONE
= 'America/Chicago'
33 # Language code for this installation. All choices can be found here:
34 # http://www.i18nguy.com/unicode/language-identifiers.html
35 LANGUAGE_CODE
= 'fr-fr'
39 # If you set this to False, Django will make some optimizations so as not
40 # to load the internationalization machinery.
43 # If you set this to False, Django will not format dates, numbers and
44 # calendars according to the current locale.
47 # If you set this to False, Django will not use timezone-aware datetimes.
50 # Absolute filesystem path to the directory that will hold user-uploaded files.
51 # Example: "/home/media/media.lawrence.com/media/"
52 MEDIA_ROOT
= os
.path
.join(os
.path
.dirname(__file__
), 'media')
54 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
56 # Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
59 # Absolute path to the directory static files should be collected to.
60 # Don't put anything in this directory yourself; store your static files
61 # in apps' "static/" subdirectories and in STATICFILES_DIRS.
62 # Example: "/home/media/media.lawrence.com/static/"
63 STATIC_ROOT
= '/Users/seangmeng/Dropbox/itc/2012-2013/Python/djcode/sample2/static/'
65 # URL prefix for static files.
66 # Example: "http://media.lawrence.com/static/"
67 STATIC_URL
= '/static/'
70 #i prefix for admin static files -- CSS, JavaScript and images.
71 # Make sure to use a trailing slash.
72 # Examples: "http://foo.com/static/admin/", "/static/admin/".
73 ADMIN_MEDIA_PREFIX
= '/static/admin/'
76 # Put strings here, like "/home/html/static" or "C:/www/django/static".
77 # Always use forward slashes, even on Windows.
78 # Don't forget to use absolute paths, not relative paths.
81 # List of finder classes that know how to find static files in
83 STATICFILES_FINDERS
= (
84 'django.contrib.staticfiles.finders.FileSystemFinder',
85 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
86 # 'django.contrib.staticfiles.finders.DefaultStorageFinder',
89 # Make this unique, and don't share it with anybody.
90 SECRET_KEY
= 'h)ew@!d0!&=afek^r13n5gl@_&zgq**gk*9i4pc^3nv8ay#-ib'
92 # List of callables that know how to import templates from various sources.
94 'django.template.loaders.filesystem.Loader',
95 'django.template.loaders.app_directories.Loader',
96 # 'django.template.loaders.eggs.Loader',
99 MIDDLEWARE_CLASSES
= (
100 'django.middleware.common.CommonMiddleware',
101 'django.contrib.sessions.middleware.SessionMiddleware',
102 'django.middleware.csrf.CsrfViewMiddleware',
103 'django.contrib.auth.middleware.AuthenticationMiddleware',
104 'django.contrib.messages.middleware.MessageMiddleware',
105 # Uncomment the next line for simple clickjacking protection:
106 # 'django.middleware.clickjacking.XFrameOptionsMiddleware',
109 ROOT_URLCONF
= 'paf0.urls'
111 # Python dotted path to the WSGI application used by Django's runserver.
112 WSGI_APPLICATION
= 'paf0.wsgi.application'
115 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
116 # Always use forward slashes, even on Windows.
117 # Don't forget to use absolute paths, not relative paths.
118 os
.path
.join(os
.path
.dirname(__file__
), "templates"),
121 print "template dir: ", os
.path
.join(os
.path
.dirname(__file__
), "templates")
124 'django.contrib.auth',
125 'django.contrib.contenttypes',
126 'django.contrib.sessions',
127 'django.contrib.sites',
128 'django.contrib.messages',
129 'django.contrib.staticfiles',
130 # Uncomment the next line to enable the admin:
131 'django.contrib.admin',
132 # Uncomment the next line to enable admin documentation:
133 # 'django.contrib.admindocs',
140 # A sample logging configuration. The only tangible logging
141 # performed by this configuration is to send an email to
142 # the site admins on every HTTP 500 error when DEBUG=False.
143 # See http://docs.djangoproject.com/en/dev/topics/logging for
144 # more details on how to customize your logging configuration.
147 'disable_existing_loggers': False,
149 'require_debug_false': {
150 '()': 'django.utils.log.RequireDebugFalse'
156 'filters': ['require_debug_false'],
157 'class': 'django.utils.log.AdminEmailHandler'
162 'handlers': ['mail_admins'],
169 LOGIN_REDIRECT_URL
= "/paf-v1/"