diff options
author | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-07-27 21:27:10 +0000 |
---|---|---|
committer | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-07-27 21:27:10 +0000 |
commit | 747243cc0e35a34cd48c12fed6b7d4430cd68997 (patch) | |
tree | 8d28091077a5cd33e3dd913ec8255e353ee0e184 /lib/uri/common.rb | |
parent | 015fa2a84ff230b7f2096ef8a1a6c3620e14aa8f (diff) |
* lib/uri/common.rb: [DOC] [Bug #9563] Recommend using URI.escape
before parsing a uri to avoid invalid characters. Reported by
Evgeniy Serykh.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46984 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/uri/common.rb')
-rw-r--r-- | lib/uri/common.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/uri/common.rb b/lib/uri/common.rb index 006b271477..6378541cbe 100644 --- a/lib/uri/common.rb +++ b/lib/uri/common.rb @@ -219,6 +219,9 @@ module URI # p uri.host # # => "www.ruby-lang.org" # + # It's recommended to first ::escape the provided +uri_str+ if there are any + # invalid URI characters. + # def self.parse(uri) RFC3986_PARSER.parse(uri) end |