Changeset 40:d9dcd0379538
- Timestamp:
- 08/24/08 11:57:15 (3 months ago)
- Author:
- Jeffrey Gelens
- Parents:
- 39:8cfe36ca2020 (diff), 37:3f4fe8317095 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
- Branch:
- default
- Message:
-
Removed useless files
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r37
|
r40
|
|
| 20 | 20 | 'django.middleware.gzip.GZipMiddleware', |
| 21 | 21 | 'django.contrib.csrf.middleware.CsrfMiddleware', |
| 22 | | 'gelens_org.utils.middleware.http.XhtmlMortifierMiddleware', |
| | 22 | # 'gelens_org.utils.middleware.http.XhtmlMortifierMiddleware', |
| 23 | 23 | 'django.contrib.sessions.middleware.SessionMiddleware', |
| 24 | 24 | 'django.contrib.auth.middleware.AuthenticationMiddleware', |
-
|
r39
|
r40
|
|
| 4 | 4 | USE_I18N = False |
| 5 | 5 | USE_ETAGS = True |
| 6 | | #DEFAULT_CONTENT_TYPE="application/xhtml+xml" |
| | 6 | DEFAULT_CONTENT_TYPE="application/xhtml+xml" |
| | 7 | DJANGO_ROOT = os.path.abspath(os.path.dirname(__file__)) |
| | 8 | |
| | 9 | MEDIA_ROOT = DJANGO_ROOT + "/static" |
| | 10 | MEDIA_URL = '' |
| | 11 | ADMIN_MEDIA_PREFIX = '/media/' |
| 7 | 12 | |
| 8 | 13 | TEMPLATE_LOADERS = ( |
| … |
… |
|
| 23 | 28 | |
| 24 | 29 | INSTALLED_APPS = ( |
| | 30 | 'django.contrib.auth', |
| 25 | 31 | 'django.contrib.admin', |
| 26 | | 'django.contrib.auth', |
| 27 | 32 | 'django.contrib.comments', |
| 28 | 33 | 'django.contrib.contenttypes', |
| … |
… |
|
| 33 | 38 | 'django.contrib.markup', |
| 34 | 39 | 'gelens_org.blog', |
| | 40 | 'extensions', |
| 35 | 41 | ) |
| | 42 | |
| | 43 | ROOT_URLCONF = 'urls' |
| | 44 | TEMPLATE_DIRS = (DJANGO_ROOT + "/templates",) |
| 36 | 45 | |
| 37 | 46 | try: |