We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
var u:URI = new URI("http://test.com/"); u.chdir("al%e9atoire/");
currently this breaks (%e9 isn't UTF-8, it's ascii) with an exception from decodeURI http://www.w3schools.com/tags/ref_urlencode.asp http://www.utf8-chartable.de/
The way I fixed this was changing these two functions in URI.as:
static public function unescapeChars(escaped:String /*, onlyHighASCII:Boolean = false*/) : String { return unescape(escaped); } static public function fastEscapeChars(unescaped:String, bitmap:URIEncodingBitmap) : String { return escape(unescaped); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
var u:URI = new URI("http://test.com/");
u.chdir("al%e9atoire/");
currently this breaks (%e9 isn't UTF-8, it's ascii) with an exception from decodeURI
http://www.w3schools.com/tags/ref_urlencode.asp
http://www.utf8-chartable.de/
The way I fixed this was changing these two functions in URI.as:
The text was updated successfully, but these errors were encountered: