I've noticed that if you type that into your browser's address bar each
browser does its own thing, Firefox url-encodes it using a iso-8859-1
(latin-1) encoding of the string, IE url-encodes using utf-8, and I'm
not quite sure what Opera does.
I managed to get all of them to display using
(u'^foo/blåbærsyltetøy/$'.encode('utf-8'), 'myview'),
(u'^foo/blåbærsyltetøy/$'.encode('iso-8859-1'), 'myview'),
(u'^foo/blåbærsyltetøy/$', 'myview'),
I seem to recall that I couldn't get Opera to work without the last
one, but I could be remembering this incorrectly...
Has anyone done anything like this?
-- bjorn
~~~~~~~~~~~~~~~~~
http://blog.tkbe.org
~~~~~~~~~~~~~~~~~