changeset 185:34d8d7bdcd42

Backed out changeset 0e7a88b20c2b Oops, realized that what I did in my last revision wasn't actually a fix. See: http://www.djangoproject.com/documentation/cache/#order-of-middleware-classes
author Atul Varma <varmaa@toolness.com>
date Thu, 17 Apr 2008 11:57:57 -0700
parents 0e7a88b20c2b
children 89c737716bbc
files README personasbackend/settings.py
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/README	Thu Apr 17 11:51:10 2008 -0700
+++ b/README	Thu Apr 17 11:57:57 2008 -0700
@@ -25,6 +25,10 @@
 
   python manage.py test
 
+(NOTE: As of April 17, 2008, the unit tests won't succeed due to what
+appears to be a bug in Django.  See
+http://code.djangoproject.com/ticket/5176 for more information.)
+
 If you need more help, try:
 
   python manage.py --help
--- a/personasbackend/settings.py	Thu Apr 17 11:51:10 2008 -0700
+++ b/personasbackend/settings.py	Thu Apr 17 11:57:57 2008 -0700
@@ -64,10 +64,10 @@
 )
 
 MIDDLEWARE_CLASSES = (
+    'django.middleware.cache.CacheMiddleware',
     'django.middleware.common.CommonMiddleware',
     'django.contrib.sessions.middleware.SessionMiddleware',
     'django.contrib.auth.middleware.AuthenticationMiddleware',
-    'django.middleware.cache.CacheMiddleware',
     'django.middleware.doc.XViewMiddleware',
 )