Am Dienstag, 31. Juli 2007 11:26 schrieb james_027: > Hi, > > I want to make sure that my understanding is right. is middleware the > place where I can add more attribute to the HttpRequest Object and > manipulate the added attribte? > > Is this advisable? if Not where is the right place to do it?
The methods of each middleware are called one for every request. If your changes need information from the request, that's the right place. If you want to add a method which should be added once the server (mod_python, scgi, ...) starts you can use this place too. But it is better if you use the module level of the middleware: MyMiddleWare.py foofunc() # executed on server start class MyMiddleWare: def process_request(...): # executed for every request. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---