| author | ymh <ymh.work@gmail.com> |
| Fri, 24 Jun 2011 03:31:05 +0200 | |
| changeset 56 | e70cbbc093cc |
| parent 55 | e1098febb9d3 |
| child 57 | 9eddefcafe8e |
| permissions | -rw-r--r-- |
| 0 | 1 |
# Django settings for hdabo project. |
2 |
||
3 |
DEBUG = True |
|
4 |
TEMPLATE_DEBUG = DEBUG |
|
5 |
||
6 |
ADMINS = ( |
|
7 |
# ('Your Name', 'your_email@example.com'), |
|
8 |
) |
|
9 |
||
10 |
MANAGERS = ADMINS |
|
11 |
||
12 |
DATABASES = { |
|
13 |
'default': { |
|
14 |
'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. |
|
| 21 | 15 |
'NAME': '', # Or path to database file if using sqlite3. |
16 |
'USER': '', # Not used with sqlite3. |
|
17 |
'PASSWORD': '', # Not used with sqlite3. |
|
18 |
'HOST': '', # Set to empty string for localhost. Not used with sqlite3. |
|
19 |
'PORT': '', # Set to empty string for default. Not used with sqlite3. |
|
| 0 | 20 |
} |
21 |
} |
|
22 |
||
23 |
# Local time zone for this installation. Choices can be found here: |
|
24 |
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name |
|
25 |
# although not all choices may be available on all operating systems. |
|
26 |
# On Unix systems, a value of None will cause Django to use the same |
|
27 |
# timezone as the operating system. |
|
28 |
# If running in a Windows environment this must be set to the same as your |
|
29 |
# system time zone. |
|
30 |
TIME_ZONE = 'America/Chicago' |
|
31 |
||
32 |
# Language code for this installation. All choices can be found here: |
|
33 |
# http://www.i18nguy.com/unicode/language-identifiers.html |
|
34 |
LANGUAGE_CODE = 'en-us' |
|
35 |
||
36 |
SITE_ID = 1 |
|
37 |
||
38 |
# If you set this to False, Django will make some optimizations so as not |
|
39 |
# to load the internationalization machinery. |
|
40 |
USE_I18N = True |
|
41 |
||
42 |
# If you set this to False, Django will not format dates, numbers and |
|
43 |
# calendars according to the current locale |
|
44 |
USE_L10N = True |
|
45 |
||
46 |
# Absolute filesystem path to the directory that will hold user-uploaded files. |
|
47 |
# Example: "/home/media/media.lawrence.com/media/" |
|
48 |
MEDIA_ROOT = '' |
|
49 |
||
50 |
# URL that handles the media served from MEDIA_ROOT. Make sure to use a |
|
51 |
# trailing slash. |
|
52 |
# Examples: "http://media.lawrence.com/media/", "http://example.com/media/" |
|
53 |
MEDIA_URL = '' |
|
54 |
||
55 |
# Absolute path to the directory static files should be collected to. |
|
56 |
# Don't put anything in this directory yourself; store your static files |
|
57 |
# in apps' "static/" subdirectories and in STATICFILES_DIRS. |
|
58 |
# Example: "/home/media/media.lawrence.com/static/" |
|
59 |
STATIC_ROOT = '' |
|
60 |
||
61 |
# URL prefix for static files. |
|
62 |
# Example: "http://media.lawrence.com/static/" |
|
63 |
STATIC_URL = '/static/' |
|
64 |
||
65 |
# URL prefix for admin static files -- CSS, JavaScript and images. |
|
66 |
# Make sure to use a trailing slash. |
|
67 |
# Examples: "http://foo.com/static/admin/", "/static/admin/". |
|
68 |
ADMIN_MEDIA_PREFIX = '/static/admin/' |
|
69 |
||
70 |
# Additional locations of static files |
|
71 |
STATICFILES_DIRS = ( |
|
72 |
# Put strings here, like "/home/html/static" or "C:/www/django/static". |
|
73 |
# Always use forward slashes, even on Windows. |
|
74 |
# Don't forget to use absolute paths, not relative paths. |
|
75 |
) |
|
76 |
||
77 |
# List of finder classes that know how to find static files in |
|
78 |
# various locations. |
|
79 |
STATICFILES_FINDERS = ( |
|
80 |
'django.contrib.staticfiles.finders.FileSystemFinder', |
|
81 |
'django.contrib.staticfiles.finders.AppDirectoriesFinder', |
|
82 |
# 'django.contrib.staticfiles.finders.DefaultStorageFinder', |
|
83 |
) |
|
84 |
||
85 |
# Make this unique, and don't share it with anybody. |
|
86 |
SECRET_KEY = '1anp2v#36%z(pahi5ytghik&-eg8t96)&$t)b%i=7@%=)u$pyn' |
|
87 |
||
88 |
# List of callables that know how to import templates from various sources. |
|
89 |
TEMPLATE_LOADERS = ( |
|
90 |
'django.template.loaders.filesystem.Loader', |
|
91 |
'django.template.loaders.app_directories.Loader', |
|
92 |
# 'django.template.loaders.eggs.Loader', |
|
93 |
) |
|
94 |
||
|
49
55e5f8a878ae
add the version context_processor and correct css to display it correctly
ymh <ymh.work@gmail.com>
parents:
47
diff
changeset
|
95 |
# List of processors used by RequestContext to populate the context. |
|
55e5f8a878ae
add the version context_processor and correct css to display it correctly
ymh <ymh.work@gmail.com>
parents:
47
diff
changeset
|
96 |
# Each one should be a callable that takes the request object as its |
|
55e5f8a878ae
add the version context_processor and correct css to display it correctly
ymh <ymh.work@gmail.com>
parents:
47
diff
changeset
|
97 |
# only parameter and returns a dictionary to add to the context. |
|
55e5f8a878ae
add the version context_processor and correct css to display it correctly
ymh <ymh.work@gmail.com>
parents:
47
diff
changeset
|
98 |
TEMPLATE_CONTEXT_PROCESSORS = ( |
|
55e5f8a878ae
add the version context_processor and correct css to display it correctly
ymh <ymh.work@gmail.com>
parents:
47
diff
changeset
|
99 |
'django.contrib.auth.context_processors.auth', |
|
55e5f8a878ae
add the version context_processor and correct css to display it correctly
ymh <ymh.work@gmail.com>
parents:
47
diff
changeset
|
100 |
'django.core.context_processors.debug', |
|
55e5f8a878ae
add the version context_processor and correct css to display it correctly
ymh <ymh.work@gmail.com>
parents:
47
diff
changeset
|
101 |
'django.core.context_processors.i18n', |
|
55e5f8a878ae
add the version context_processor and correct css to display it correctly
ymh <ymh.work@gmail.com>
parents:
47
diff
changeset
|
102 |
'django.core.context_processors.media', |
|
55e5f8a878ae
add the version context_processor and correct css to display it correctly
ymh <ymh.work@gmail.com>
parents:
47
diff
changeset
|
103 |
'django.core.context_processors.static', |
|
55e5f8a878ae
add the version context_processor and correct css to display it correctly
ymh <ymh.work@gmail.com>
parents:
47
diff
changeset
|
104 |
'django.contrib.messages.context_processors.messages', |
|
55e5f8a878ae
add the version context_processor and correct css to display it correctly
ymh <ymh.work@gmail.com>
parents:
47
diff
changeset
|
105 |
'hdabo.context_processors.version', |
|
55e5f8a878ae
add the version context_processor and correct css to display it correctly
ymh <ymh.work@gmail.com>
parents:
47
diff
changeset
|
106 |
) |
|
55e5f8a878ae
add the version context_processor and correct css to display it correctly
ymh <ymh.work@gmail.com>
parents:
47
diff
changeset
|
107 |
|
| 0 | 108 |
MIDDLEWARE_CLASSES = ( |
109 |
'django.middleware.common.CommonMiddleware', |
|
110 |
'django.contrib.sessions.middleware.SessionMiddleware', |
|
111 |
'django.middleware.csrf.CsrfViewMiddleware', |
|
112 |
'django.contrib.auth.middleware.AuthenticationMiddleware', |
|
113 |
'django.contrib.messages.middleware.MessageMiddleware', |
|
114 |
) |
|
115 |
||
|
55
e1098febb9d3
Merge with 1f01957a3eaed11ca63e7f75da1b326f8ac8de15 + some optimisations
ymh <ymh.work@gmail.com>
parents:
49
diff
changeset
|
116 |
|
| 0 | 117 |
ROOT_URLCONF = 'hdabo.urls' |
118 |
||
119 |
TEMPLATE_DIRS = ( |
|
120 |
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". |
|
121 |
# Always use forward slashes, even on Windows. |
|
122 |
# Don't forget to use absolute paths, not relative paths. |
|
123 |
) |
|
124 |
||
125 |
INSTALLED_APPS = ( |
|
126 |
'django.contrib.auth', |
|
127 |
'django.contrib.contenttypes', |
|
128 |
'django.contrib.sessions', |
|
129 |
'django.contrib.sites', |
|
130 |
'django.contrib.messages', |
|
| 21 | 131 |
'django.contrib.staticfiles', |
| 0 | 132 |
'django.contrib.admin', |
| 2 | 133 |
'django_extensions', |
|
11
143ab88d17f8
add ordered manytomany fields and indexing
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
134 |
'haystack', |
| 0 | 135 |
'hdabo', |
136 |
) |
|
137 |
||
138 |
# A sample logging configuration. The only tangible logging |
|
139 |
# performed by this configuration is to send an email to |
|
140 |
# the site admins on every HTTP 500 error. |
|
141 |
# See http://docs.djangoproject.com/en/dev/topics/logging for |
|
142 |
# more details on how to customize your logging configuration. |
|
143 |
LOGGING = { |
|
144 |
'version': 1, |
|
145 |
'disable_existing_loggers': False, |
|
146 |
'handlers': { |
|
147 |
'mail_admins': { |
|
148 |
'level': 'ERROR', |
|
149 |
'class': 'django.utils.log.AdminEmailHandler' |
|
150 |
} |
|
151 |
}, |
|
152 |
'loggers': { |
|
153 |
'django.request': { |
|
154 |
'handlers': ['mail_admins'], |
|
155 |
'level': 'ERROR', |
|
156 |
'propagate': True, |
|
157 |
}, |
|
158 |
} |
|
159 |
} |
|
160 |
||
|
11
143ab88d17f8
add ordered manytomany fields and indexing
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
161 |
HAYSTACK_SITECONF = 'hdabo.search.sites' |
| 0 | 162 |
|
| 24 | 163 |
WIKIPEDIA_API_URL = "http://fr.wikipedia.org/w/api.php" |
164 |
||
| 47 | 165 |
DBPEDIA_URI_TEMPLATE = "http://dbpedia.org/resource/%s" |
166 |
||
|
55
e1098febb9d3
Merge with 1f01957a3eaed11ca63e7f75da1b326f8ac8de15 + some optimisations
ymh <ymh.work@gmail.com>
parents:
49
diff
changeset
|
167 |
SEARCH_STAR_CHARACTER = "*" |
|
e1098febb9d3
Merge with 1f01957a3eaed11ca63e7f75da1b326f8ac8de15 + some optimisations
ymh <ymh.work@gmail.com>
parents:
49
diff
changeset
|
168 |
PAGINATION_DEFAULT_NB_BY_PAGE = 50 |
|
e1098febb9d3
Merge with 1f01957a3eaed11ca63e7f75da1b326f8ac8de15 + some optimisations
ymh <ymh.work@gmail.com>
parents:
49
diff
changeset
|
169 |
|
| 0 | 170 |
from hdabo.config import * #@UnusedWildImport |