#116 closed enhancement (invalid)
Different Encodings for AJAX
Reported by: | john | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | ajax | Version: | |
Keywords: | iso-8859-1 | Cc: | |
Blocked by: | Blocking: |
Description
AJAX requests should have an option to support multiple file encodings (for i18n support).
Change History (3)
comment:1 Changed 16 years ago by
Keywords: | iso-8859-1 added |
---|
comment:2 Changed 16 years ago by
I dont know much about this but...
In jQuery we are using: encodeURIComponent().
At http://xkr.us/articles/javascript/encode-compare/, It says which one is best to use in which condition.
It says this: The escape() method does not encode the + character which is interpreted as a space on the server side as well as generated by forms with spaces in their fields. Due to this shortcoming, you should avoid use of escape() whenever possible. The best alternative is usually encodeURIComponent().
Now this limitation can be bad in many cases. If the problem is being created by encoding... can't it just be removed so that users can use appropriate coding depending on thr need?
comment:3 Changed 16 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
fyi: in prototype.js other encoding than uft-8 works if one uses the escape() method instead of the encodeURI() method