Changeset 2782
- Timestamp:
- 04/28/06 20:54:26 (2 years ago)
- Files:
-
- django/branches/magic-removal/docs/middleware.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/magic-removal/docs/middleware.txt
r2527 r2782 25 25 MIDDLEWARE_CLASSES = ( 26 26 "django.middleware.common.CommonMiddleware", 27 "django.contrib.sessions.middleware.SessionMiddleware", 28 "django.contrib.auth.middleware.AuthenticationMiddleware", 27 29 "django.middleware.doc.XViewMiddleware", 28 30 ) … … 103 105 .. _`session documentation`: http://www.djangoproject.com/documentation/sessions/ 104 106 107 django.contrib.auth.middleware.AuthenticationMiddleware 108 ------------------------------------------------------- 109 110 Adds the ``user`` attribute, representing the currently-logged-in user, to 111 every incoming ``HttpRequest`` object. See `Authentication in Web requests`_. 112 113 .. _Authentication in Web requests: http://www.djangoproject.com/documentation/authentication/#authentication-in-web-requests 114 105 115 django.middleware.transaction.TransactionMiddleware 106 116 --------------------------------------------------- … … 118 128 119 129 .. _`transaction management documentation`: http://www.djangoproject.com/documentation/transaction/ 120 121 130 122 131 Writing your own middleware
