I think that looks fine. I would change the mimetype to "text/plain; charset=UTF-16LE" just to play nice, but it probably will never matter with your Content-Disposition. Also, HttpResponse's mimetype parameter has been deprecated since 1.5; use content_type instead.
On Thu, May 21, 2015 at 3:04 PM, JHeasly <[email protected]> wrote: > Hello all, > > I've got a function-based generic view that I want to return a utf-16le > encoded response (for use as an InDesign tagged text file; the utf-16le is > what InDesign wants). I've got it working here, but am wondering if there's > an more straightforward way. > > For comparison, the "original" utf-8 encoded version is here and shorter. I > tried a > > response.content.encode('utf-16le') > > as response seems to have some sort of HttpResponse wrapper on it. > > Thanks, > John > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/django-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/396a9248-5930-43d9-a3bb-43154fd2ae9b%40googlegroups.com. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAD4ANxX35fr1CBNNumS6eRyKOgbKk4vNrcuFW%3Dyr4Hmkeb-4sA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.

