On Fri, 2009-04-10 at 23:40 -0700, Roman Timushev wrote: > Hello, > > My application serves content with different mimetypes: 'application/ > xhtml+xml', 'application/xml', 'application/json'. Specifying mimetype > for every view is not DRY. Is it possible to define default mimetype > for url groups?
It should be easy to write a decorator for the appropriate view functions. Each function returns an HttpResponse object, so call the view then modify the mimetype on the returned object. Mimetypes on URL groups isn't possible. It's also not really the right level, since the URL doesn't really determine the mimetype, in general, so it's not something that would be particularly common to use. It requires more knowledge about the request to determine the MIME type (e.g. the "accept" headers). Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ 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 django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---