Hi, i fixed a whitespace middleware bug that had some problems with images served:
import re class StripWhitespaceMiddleware: """ Strips leading and trailing whitespace from response content. """ def __init__(self): self.whitespace = re.compile('\s*\n') def process_response(self, request, response): print dir(response) print response.headers if("text" in response['Content-Type'] ): new_content = self.whitespace.sub('\n', response.content) response.content = new_content return response else: return response --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---