Changes between Version 82 and Version 83 of RemovingTheMagic


Ignore:
Timestamp:
Feb 27, 2006, 5:25:00 PM (19 years ago)
Author:
jkocherhans
Comment:

added note about request.user middleware

Legend:

Unmodified
Added
Removed
Modified
  • RemovingTheMagic

    v82 v83  
    634634New behavior: Any exception that has a {{{silent_variable_failure}}} attribute fails silently in the template system. {{{django.core.template.SilentVariableFailure}}} no longer exists.
    635635
     636=== Request.user is now set via middleware ===
     637
     638It used to be set in the modepython and wsgi handlers. You will need to add "django.contrib.auth.middleware.RequestUserMiddleware" somewhere '''after''' "django.contrib.sessions.middleware.SessionMiddleware" in your settings.py file. Otherwise authentication won't work.
     639
     640
    636641== New functionality you can start using ==
    637642
Back to Top