summaryrefslogtreecommitdiff
path: root/lib/uri
diff options
context:
space:
mode:
authorakira <akira@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-22 04:06:09 +0000
committerakira <akira@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-22 04:06:09 +0000
commit329b4782ff5eaae607dc3a05bc6e0004dd9fddd1 (patch)
treeb097753b92d1d59245ce4aea9ec855213d002807 /lib/uri
parent883857d8429c9cd94ffa9ff8968ee1afa243a0bf (diff)
* lib/uri/mailto.rb (URI::MailTo::to_s): should include fragment.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5804 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/uri')
-rw-r--r--lib/uri/mailto.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/uri/mailto.rb b/lib/uri/mailto.rb
index f01673fd63..3f2439ed34 100644
--- a/lib/uri/mailto.rb
+++ b/lib/uri/mailto.rb
@@ -59,6 +59,10 @@ module URI
\\?
(#{HEADER_PATTERN}(?:\\&#{HEADER_PATTERN})*) (?# 2: headers)
)?
+ (?:
+ \\#
+ (#{PATTERN::FRAGMENT}) (?# 3: fragment)
+ )?
\\z
", Regexp::EXTENDED, 'N').freeze
@@ -228,6 +232,11 @@ module URI
'?' + @headers.collect{|x| x.join('=')}.join('&')
else
''
+ end +
+ if @fragment
+ '#' + @fragment
+ else
+ ''
end
end