Skip to content

Commit

Permalink
more RFC links
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Jan 13, 2014
1 parent 938d916 commit 701af99
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,5 +1,5 @@

4.68 2014-01-12
4.68 2014-01-13
- Removed deprecated http_proxy attribute from Mojo::UserAgent.
- Removed deprecated https_proxy attribute from Mojo::UserAgent.
- Removed deprecated name attribute from Mojo::UserAgent.
Expand Down
6 changes: 4 additions & 2 deletions lib/Mojo/Util.pm
Expand Up @@ -633,14 +633,16 @@ Unquote string.
my $escaped = url_escape $str;
my $escaped = url_escape $str, '^A-Za-z0-9\-._~';
Percent encode unsafe characters in string, the pattern used defaults to
Percent encode unsafe characters in string as described in
L<RFC 3986|http://tools.ietf.org/search/rfc3986>, the pattern used defaults to
C<^A-Za-z0-9\-._~>.
=head2 url_unescape
my $str = url_unescape $escaped;
Decode percent encoded characters in string.
Decode percent encoded characters in string as described in
L<RFC 3986|http://tools.ietf.org/search/rfc3986>.
=head2 xml_escape
Expand Down

0 comments on commit 701af99

Please sign in to comment.