I just recently discovered that actual browsers are displaying utf-8 safe url encodet URL
paths as the right characters. Meaning
http://en.wikipedia.org/wiki/Gew%C3%BCrztraminer
actually displays
http://en.wikipedia.org/wiki/Gewürztraminer
As far as I can see in pier the URL path is tightly coupled to the name of a structure.
And structure names are restricted to only a few characters. The comments in the code
reason this for safe usage in some object protocols. What would be the way to go if I want
to enable those types of URLs? What are the problematic cases if a structure name could
consist of non-7bit characters?
thanks,
Norbert