1 # Django settings for paf0 project.
8 # ('Your Name', 'your_email@example.com'),
15 'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
16 'NAME': 'paf0', # Or path to database file if using sqlite3.
17 'USER': 'root', # 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/"
65 # URL prefix for static files.
66 # Example: "http://media.lawrence.com/static/"
67 STATIC_URL
= '/static/'
69 # Additional locations of static files
71 # Put strings here, like "/home/html/static" or "C:/www/django/static".
72 # Always use forward slashes, even on Windows.
73 # Don't forget to use absolute paths, not relative paths.
76 # List of finder classes that know how to find static files in
78 STATICFILES_FINDERS
= (
79 'django.contrib.staticfiles.finders.FileSystemFinder',
80 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
81 # 'django.contrib.staticfiles.finders.DefaultStorageFinder',
84 # Make this unique, and don't share it with anybody.
85 SECRET_KEY
= 'h)ew@!d0!&=afek^r13n5gl@_&zgq**gk*9i4pc^3nv8ay#-ib'
87 # List of callables that know how to import templates from various sources.
89 'django.template.loaders.filesystem.Loader',
90 'django.template.loaders.app_directories.Loader',
91 # 'django.template.loaders.eggs.Loader',
94 MIDDLEWARE_CLASSES
= (
95 'django.middleware.common.CommonMiddleware',
96 'django.contrib.sessions.middleware.SessionMiddleware',
97 'django.middleware.csrf.CsrfViewMiddleware',
98 'django.contrib.auth.middleware.AuthenticationMiddleware',
99 'django.contrib.messages.middleware.MessageMiddleware',
100 # Uncomment the next line for simple clickjacking protection:
101 # 'django.middleware.clickjacking.XFrameOptionsMiddleware',
104 ROOT_URLCONF
= 'paf0.urls'
106 # Python dotted path to the WSGI application used by Django's runserver.
107 WSGI_APPLICATION
= 'paf0.wsgi.application'
110 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
111 # Always use forward slashes, even on Windows.
112 # Don't forget to use absolute paths, not relative paths.
113 os
.path
.join(os
.path
.dirname(__file__
), "templates"),
116 print "template dir: ", os
.path
.join(os
.path
.dirname(__file__
), "templates")
119 'django.contrib.auth',
120 'django.contrib.contenttypes',
121 'django.contrib.sessions',
122 'django.contrib.sites',
123 'django.contrib.messages',
124 'django.contrib.staticfiles',
125 # Uncomment the next line to enable the admin:
126 'django.contrib.admin',
127 # Uncomment the next line to enable admin documentation:
128 # 'django.contrib.admindocs',
135 # A sample logging configuration. The only tangible logging
136 # performed by this configuration is to send an email to
137 # the site admins on every HTTP 500 error when DEBUG=False.
138 # See http://docs.djangoproject.com/en/dev/topics/logging for
139 # more details on how to customize your logging configuration.
142 'disable_existing_loggers': False,
144 'require_debug_false': {
145 '()': 'django.utils.log.RequireDebugFalse'
151 'filters': ['require_debug_false'],
152 'class': 'django.utils.log.AdminEmailHandler'
157 'handlers': ['mail_admins'],
164 LOGIN_REDIRECT_URL
= "/"