Hi there im kinda stucked with the url encoding between python and javascript, i hope you can help me out :S
Javascript:
encodeURIComponent('lôl');
-> "l%C3%B4l"
Python:
import urllib
test = container.REQUEST.form.get('test')
print test
print urllib.unquote(test)
-> "lÃŽl"
-> "lÃŽl"
Javascript encodes "lôl" twice however python does that once with it, i dunno how to escape from there because i receive anyway throgh the Prototype HTTP GET request "l%C3%B4l" instead of "l%F4l"
Best Regards Bny
**edit its on a zope webserver