Changeset 545
- Timestamp:
- 08/22/05 14:19:54 (3 years ago)
- Files:
-
- django/trunk/django/middleware/common.py (modified) (1 diff)
- django/trunk/django/middleware/sessions.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/middleware/common.py
r513 r545 23 23 - Flat files: for 404 responses, a flat file matching the given path 24 24 will be looked up and used if found. 25 26 You probably want the CommonMiddleware object to the first entry in your27 MIDDLEWARE_CLASSES setting;28 25 """ 29 26 django/trunk/django/middleware/sessions.py
r536 r545 53 53 54 54 class SessionMiddleware: 55 def process_ view(self, request, view_func, param_dict):55 def process_request(self, request): 56 56 request.session = SessionWrapper(request.COOKIES.get(SESSION_COOKIE_NAME, None)) 57 57
