* lib/uri/common.rb (URI::REGEXP::PATTERN::HOSTPORT): (?:#{PORT})
-> (?::#{PORT}). [ruby-dev:23170] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5924 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6901d03914
commit
80a0920f5f
@ -1,3 +1,8 @@
|
|||||||
|
Mon Mar 8 19:35:13 2004 akira yamada <akira@arika.org>
|
||||||
|
|
||||||
|
* lib/uri/common.rb (URI::REGEXP::PATTERN::HOSTPORT): (?:#{PORT})
|
||||||
|
-> (?::#{PORT}). [ruby-dev:23170]
|
||||||
|
|
||||||
Mon Mar 8 15:03:24 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
|
Mon Mar 8 15:03:24 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
|
||||||
|
|
||||||
* dir.c (range): treat incomplete '[' as ordinary character (like
|
* dir.c (range): treat incomplete '[' as ordinary character (like
|
||||||
|
@ -90,7 +90,7 @@ module URI
|
|||||||
# port = *digit
|
# port = *digit
|
||||||
PORT = "\d*"
|
PORT = "\d*"
|
||||||
# hostport = host [ ":" port ]
|
# hostport = host [ ":" port ]
|
||||||
HOSTPORT = "#{HOST}(?:#{PORT})?"
|
HOSTPORT = "#{HOST}(?::#{PORT})?"
|
||||||
|
|
||||||
# userinfo = *( unreserved | escaped |
|
# userinfo = *( unreserved | escaped |
|
||||||
# ";" | ":" | "&" | "=" | "+" | "$" | "," )
|
# ";" | ":" | "&" | "=" | "+" | "$" | "," )
|
||||||
|
Loading…
x
Reference in New Issue
Block a user