Show
Ignore:
Timestamp:
03/28/08 08:51:04 (8 months ago)
Author:
JensDiemer
Message:

Updating the cache middleware:

  • Splitting pagestats from cache is a good idea, after all ;)
  • add a debug information in the response
  • verify the shortcut from the url
  • update unittests
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/pylucid/PyLucid/settings_example.py

    r1510 r1511  
    8484# 
    8585MIDDLEWARE_CLASSES = ( 
     86    # Insert a statistic line into the generated page: 
     87    'PyLucid.middlewares.pagestats.PageStatsMiddleware', 
     88 
    8689    # PyLucidCommonMiddleware loads the django middlewares: 
    8790    #    - 'django.contrib.sessions.middleware.SessionMiddleware' 
     
    9093    'PyLucid.middlewares.common.PyLucidCommonMiddleware', 
    9194 
     95    # Cache all anonymous cms page request, if CACHE_BACKEND worked. 
    9296    'PyLucid.middlewares.cache.CacheMiddleware', 
    9397