Closed andy-mcgrath closed 6 years ago
Nice work, @apextc ! I'll try to review and merge this within the next few days!
@landro I have an update to the URI::compare as well, do you want it added to this pull request or would you prefer me to create a new one so you can review independently?
If you want to quickly take a look - apextc/TesTcl commit 'rewrite testcl::URI::compare'
Same PR is Ok
Sendt fra min iPhone
- nov. 2018 kl. 14:06 skrev apextc notifications@github.com:
@landro I have an update to the URI::compare as well, do you want it added to this pull request or would you prefer me to create a new one so you can review independently?
If you want to quickly take a look - apextc/TesTcl commit 'rewrite testcl::URI::compare'
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or mute the thread.
Great work @apextc !
Update to
URI::encode
andURI::decode
to use string map.URI::encode
has been added to%7e
/~
excluding letter, number and some select symbols.URI::decode
decodes all characters up to%7e
/~
and string map used to map both upper and lower case charaters.e.g.
%2b
and%2B
map to+
usingstring map {"%2b" "+" "%2B" "+"}
Reference using UTF-8 from HTML URL Encoding Reference