I have problem with HTTP headers, they're encoded in ASCII and I want to provided a view for downloading files that names can be non ASCII.

response['Content-Disposition'] = 'attachment; filename="%s"' % (vo.filename.encode("ASCII","replace"), )

I don't want to use static files serving for same issue with non ASCII file names but in this case there would be a problem with File system and it's file name encoding. (I don't know target os.)

I've already tried urllib.quote(), but it raises KeyError exception.

Possibly I'm doing something wrong but maybe it's impossible.

link|improve this question

I realise I'm years late, but ... the KeyError exception really bugs me. I don't just mean "every once in awhile I run into this problem," I mean, I submitted a patch to Python to fix this years ago, argued for awhile, then decided they didn't want to change Python 2. I did fix this problem in Python 3, but they never accepted my patch in Python 2. The work-around is to .encode('utf-8') first, and then use urllib.quote. But that's for URL-encoding which isn't the standard way to put these in headers. – mgiuca Apr 11 '11 at 0:36
feedback

5 Answers

up vote 18 down vote accepted

This is a FAQ.

There is no interoperable way to do this. Some browsers implement proprietary extensions (IE, Chrome), other implement RFC 2231 (Firefox, Opera).

See test cases at http://greenbytes.de/tech/tc2231/.

link|improve this answer
Thanks! Easiest things are the hardest to find ;) – Chris Ciesielski Sep 1 '09 at 12:59
More recently, Julian has put together a profile of RFC2231 for this purpose: datatracker.ietf.org/doc/draft-reschke-rfc2231-in-http – Mark Nottingham May 9 '10 at 1:43
2  
Now published as greenbytes.de/tech/webdav/rfc5987.html – Julian Reschke Aug 21 '10 at 5:52
feedback

Don't send a filename in Content-Disposition. There is no way to make non-ASCII header parameters work cross-browser(*).

Instead, send just “Content-Disposition: attachment”, and leave the filename as a URL-encoded UTF-8 string in the trailing (PATH_INFO) part of your URL, for the browser to pick up and use by default. UTF-8 URLs are handled much more reliably by browsers than anything to do with Content-Disposition.

(*: actually, there's not even a current standard that says how it should be done as the relationships between RFCs 2616, 2231 and 2047 are pretty dysfunctional, something that Julian is trying to get cleared up at a spec level. Consistent browser support is in the distant future.)

link|improve this answer
1  
The top answer contains some great information, but you've actually solved the problem. Thanks! – Brandon Bloom Feb 15 '10 at 2:16
Great answer... – cherouvim Mar 10 '10 at 14:37
@Brandon I totally agree. Sadly, this answer has fewer votes, and is not the accepted one (at least as of now). On the other hand, the link provided in Julian's answer is pretty valuable. – allyourcode Aug 20 '10 at 9:04
3  
Since this answer has come out, an RFC on this topic has been issued. Of note is the filename*= construct which only newer browsers support and is guaranteed to let you use UTF-8, encoded as in RFC 5987. tools.ietf.org/html/rfc6266#appendix-D – Alan H. Jan 25 at 0:11
feedback

Note that in 2011, RFC 6266 (especially Appendix D) weighed in on this issue and has specific recommendations to follow.

Namely, you can issue a filename with only ASCII characters, followed by filename* with a RFC 5987-formatted filename for those agents that understand it.

Typically this will look like filename="my-resume.pdf"; filename*=UTF-8''My%20R%C3%A9sum%C3%A9.pdf, where the Unicode filename ("My Résumé.pdf") is encoded into UTF-8 and then percent-encoded (note, do NOT use + for spaces).

Please do actually read RFC 6266 and RFC 5987 (or use a robust and tested library that abstracts this for you), as my summary here is lacking in important detail.

link|improve this answer
feedback

Take a look at this snippets to encode non ascii filenames http://www.djangosnippets.org/snippets/1710/

link|improve this answer
feedback

A hack:

if (Request.UserAgent.Contains("IE"))
{
  // IE will accept URL encoding, but spaces don't need to be, and since they're so common..
  filename = filename.Replace("%", "%25").Replace(";", "%3B").Replace("#", "%23").Replace("&", "%26");
}
link|improve this answer
User-agent sniffing stinks in general, these buggy servers use it and are responsible for a lot of the tc2231/rfc6266 test cases. – Tobu Jan 28 at 18:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.