From 071037ff80119656f46400cb0c2a1453e80c37f1 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 16 Aug 2005 00:41:42 +0000 Subject: [PATCH] Changed 'django-admin startproject' to included MIDDLEWARE_CLASSES in settings/main.py. git-svn-id: http://code.djangoproject.com/svn/django/trunk@512 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/conf/project_template/settings/main.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/django/conf/project_template/settings/main.py b/django/conf/project_template/settings/main.py index b78c846c23..56b1f023ce 100644 --- a/django/conf/project_template/settings/main.py +++ b/django/conf/project_template/settings/main.py @@ -29,6 +29,11 @@ MEDIA_URL = '' # Make this unique, and don't share it with anybody. SECRET_KEY = '' +MIDDLEWARE_CLASSES = ( + "django.middleware.common.CommonMiddleware", + "django.middleware.doc.XViewMiddleware", +) + ROOT_URLCONF = '{{ project_name }}.settings.urls.main' TEMPLATE_DIRS = (