diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-12-06 01:41:10 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-12-06 01:41:10 +0000 |
commit | 68b18291acc84bc4068e531d3085bfda8a5419de (patch) | |
tree | c6a0545858488d00eeafafda273c97e08982746a /lib/uri | |
parent | 41bfc7a7218d34b9b9ffbe8154a728b2e044211f (diff) |
* lib/uri/common.rb (URI::Parser#initialize_pattern):
refix for restrict the pattern.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30091 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/uri')
-rw-r--r-- | lib/uri/common.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/uri/common.rb b/lib/uri/common.rb index 0ffd6ddcc4..e2ccbdc846 100644 --- a/lib/uri/common.rb +++ b/lib/uri/common.rb @@ -260,7 +260,7 @@ module URI # hostname = *( domainlabel "." ) toplabel [ "." ] # reg-name = *( unreserved / pct-encoded / sub-delims ) # RFC3986 unless hostname - ret[:HOSTNAME] = hostname = "(?:[a-zA-Z0-9\\-._~!$&'()*+,;=]|%\\h\\h)*" + ret[:HOSTNAME] = hostname = "(?:[a-zA-Z0-9\\-.]|%\\h\\h)+" end # RFC 2373, APPENDIX B: |