~ericmoritz/django-twophase/trunk

« back to all changes in this revision

Viewing changes to examples/includes/settings.py

  • Committer: Eric Moritz
  • Date: 2009-10-24 05:57:45 UTC
  • Revision ID: eric@themoritzfamily.com-20091024055745-d1dr1al7hsez4hgl
Split the SSI code and the template code into two different apps

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
    'django.middleware.common.CommonMiddleware',
62
62
    'django.contrib.sessions.middleware.SessionMiddleware',
63
63
    'django.contrib.auth.middleware.AuthenticationMiddleware',
64
 
    'twophase.middleware.UpdateCacheMiddleware',
65
 
    'twophase.middleware.FetchFromCacheMiddleware',
 
64
    'twophase.twophase_includes.middleware.UpdateCacheMiddleware',
 
65
    'twophase.twophase_incluses.middleware.FetchFromCacheMiddleware',
66
66
)
67
67
 
68
68
ROOT_URLCONF = 'example.urls'
78
78
    'django.contrib.contenttypes',
79
79
    'django.contrib.sessions',
80
80
    'django.contrib.sites',
81
 
    'twophase'
 
81
    'twophase.twophase_includes'
82
82
)
83
83
 
84
84
TEMPLATE_CONTEXT_PROCESSORS = (