Hide
original bugid: #6731
The url escapers (under org.mmbase.util) do not work properly - the string to encode is encoded to the wrong format.
According to the specs it should encode to UTF-8, but it uses the system's encoding, resulting in wrong urls.
I changed the code in the classes to use UTF-8 encoding.
In 1.8, the classes were moves to the SCAN application. The transformer classes no longer use the escapers, but use java.net.URLEncoder.
Show
original bugid: #6731
The url escapers (under org.mmbase.util) do not work properly - the string to encode is encoded to the wrong format.
According to the specs it should encode to UTF-8, but it uses the system's encoding, resulting in wrong urls.
I changed the code in the classes to use UTF-8 encoding.
In 1.8, the classes were moves to the SCAN application. The transformer classes no longer use the escapers, but use java.net.URLEncoder.
The url escapers (under org.mmbase.util) do not work properly - the string to encode is encoded to the wrong format.
According to the specs it should encode to UTF-8, but it uses the system's encoding, resulting in wrong urls.