mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Added that UrlHelper#mail_to will now also encode the default link title #749 [f.svehla@gmail.com]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1601 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
3553b59d3c
commit
a53372c273
6 changed files with 26 additions and 12 deletions
|
@ -1,5 +1,7 @@
|
|||
*SVN*
|
||||
|
||||
* Added that UrlHelper#mail_to will now also encode the default link title #749 [f.svehla@gmail.com]
|
||||
|
||||
* Removed the default option of wrap=virtual on FormHelper#text_area to ensure XHTML compatibility #1300 [thomas@columbus.rr.com]
|
||||
|
||||
* Adds the ability to include XML CDATA tags using Builder #1563 [Josh Knowles]. Example:
|
||||
|
|
|
@ -31,7 +31,7 @@ module ActionView
|
|||
# </p>
|
||||
# <p>
|
||||
# <label for="post_body">Body</label><br />
|
||||
# <textarea cols="40" id="post_body" name="post[body]" rows="20" wrap="virtual">
|
||||
# <textarea cols="40" id="post_body" name="post[body]" rows="20">
|
||||
# Back to the hill and over it again!
|
||||
# </textarea>
|
||||
# </p>
|
||||
|
|
|
@ -187,6 +187,10 @@ module ActionView
|
|||
extras << "subject=#{CGI.escape(subject).gsub("+", "%20")}&" unless subject.nil?
|
||||
extras = "?" << extras.gsub!(/&?$/,"") unless extras.empty?
|
||||
|
||||
email_address_obfuscated = email_address.dup
|
||||
email_address_obfuscated.gsub!(/@/, html_options.delete("replace_at")) if html_options.has_key?("replace_at")
|
||||
email_address_obfuscated.gsub!(/\./, html_options.delete("replace_dot")) if html_options.has_key?("replace_dot")
|
||||
|
||||
if encode == 'javascript'
|
||||
tmp = "document.write('#{content_tag("a", name || email_address, html_options.merge({ "href" => "mailto:"+email_address.to_s+extras }))}');"
|
||||
for i in 0...tmp.length
|
||||
|
@ -201,9 +205,9 @@ module ActionView
|
|||
string << email_address[i,1]
|
||||
end
|
||||
end
|
||||
content_tag "a", name || email_address, html_options.merge({ "href" => "mailto:#{string}#{extras}" })
|
||||
content_tag "a", name || email_address_obfuscated, html_options.merge({ "href" => "mailto:#{string}#{extras}" })
|
||||
else
|
||||
content_tag "a", name || email_address, html_options.merge({ "href" => "mailto:#{email_address}#{extras}" })
|
||||
content_tag "a", name || email_address_obfuscated, html_options.merge({ "href" => "mailto:#{email_address}#{extras}" })
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -65,7 +65,7 @@ class ActiveRecordHelperTest < Test::Unit::TestCase
|
|||
|
||||
def test_text_area_with_errors
|
||||
assert_equal(
|
||||
%(<div class="fieldWithErrors"><textarea cols="40" id="post_body" name="post[body]" rows="20" wrap="virtual">Back to the hill and over it again!</textarea></div>),
|
||||
%(<div class="fieldWithErrors"><textarea cols="40" id="post_body" name="post[body]" rows="20">Back to the hill and over it again!</textarea></div>),
|
||||
text_area("post", "body")
|
||||
)
|
||||
end
|
||||
|
@ -79,7 +79,7 @@ class ActiveRecordHelperTest < Test::Unit::TestCase
|
|||
|
||||
def test_form_with_string
|
||||
assert_equal(
|
||||
%(<form action="create" method="post"><p><label for="post_title">Title</label><br /><input id="post_title" name="post[title]" size="30" type="text" value="Hello World" /></p>\n<p><label for="post_body">Body</label><br /><div class="fieldWithErrors"><textarea cols="40" id="post_body" name="post[body]" rows="20" wrap="virtual">Back to the hill and over it again!</textarea></div></p><input name="commit" type="submit" value="Create" /></form>),
|
||||
%(<form action="create" method="post"><p><label for="post_title">Title</label><br /><input id="post_title" name="post[title]" size="30" type="text" value="Hello World" /></p>\n<p><label for="post_body">Body</label><br /><div class="fieldWithErrors"><textarea cols="40" id="post_body" name="post[body]" rows="20">Back to the hill and over it again!</textarea></div></p><input name="commit" type="submit" value="Create" /></form>),
|
||||
form("post")
|
||||
)
|
||||
|
||||
|
@ -89,7 +89,7 @@ class ActiveRecordHelperTest < Test::Unit::TestCase
|
|||
def id() 1 end
|
||||
end
|
||||
assert_equal(
|
||||
%(<form action="update/1" method="post"><input id="post_id" name="post[id]" type="hidden" value="1" /><p><label for="post_title">Title</label><br /><input id="post_title" name="post[title]" size="30" type="text" value="Hello World" /></p>\n<p><label for="post_body">Body</label><br /><div class="fieldWithErrors"><textarea cols="40" id="post_body" name="post[body]" rows="20" wrap="virtual">Back to the hill and over it again!</textarea></div></p><input name="commit" type="submit" value="Update" /></form>),
|
||||
%(<form action="update/1" method="post"><input id="post_id" name="post[id]" type="hidden" value="1" /><p><label for="post_title">Title</label><br /><input id="post_title" name="post[title]" size="30" type="text" value="Hello World" /></p>\n<p><label for="post_body">Body</label><br /><div class="fieldWithErrors"><textarea cols="40" id="post_body" name="post[body]" rows="20">Back to the hill and over it again!</textarea></div></p><input name="commit" type="submit" value="Update" /></form>),
|
||||
form("post")
|
||||
)
|
||||
end
|
||||
|
|
|
@ -100,7 +100,7 @@ class FormHelperTest < Test::Unit::TestCase
|
|||
|
||||
def test_text_area
|
||||
assert_equal(
|
||||
'<textarea cols="40" id="post_body" name="post[body]" rows="20" wrap="virtual">Back to the hill and over it again!</textarea>',
|
||||
'<textarea cols="40" id="post_body" name="post[body]" rows="20">Back to the hill and over it again!</textarea>',
|
||||
text_area("post", "body")
|
||||
)
|
||||
end
|
||||
|
@ -108,14 +108,14 @@ class FormHelperTest < Test::Unit::TestCase
|
|||
def test_text_area_with_escapes
|
||||
@post.body = "Back to <i>the</i> hill and over it again!"
|
||||
assert_equal(
|
||||
'<textarea cols="40" id="post_body" name="post[body]" rows="20" wrap="virtual">Back to <i>the</i> hill and over it again!</textarea>',
|
||||
'<textarea cols="40" id="post_body" name="post[body]" rows="20">Back to <i>the</i> hill and over it again!</textarea>',
|
||||
text_area("post", "body")
|
||||
)
|
||||
end
|
||||
|
||||
def test_date_selects
|
||||
assert_equal(
|
||||
'<textarea cols="40" id="post_body" name="post[body]" rows="20" wrap="virtual">Back to the hill and over it again!</textarea>',
|
||||
'<textarea cols="40" id="post_body" name="post[body]" rows="20">Back to the hill and over it again!</textarea>',
|
||||
text_area("post", "body")
|
||||
)
|
||||
end
|
||||
|
@ -125,7 +125,7 @@ class FormHelperTest < Test::Unit::TestCase
|
|||
'<input id="post_title" name="dont guess" size="30" type="text" value="Hello World" />', text_field("post", "title", "name" => "dont guess")
|
||||
)
|
||||
assert_equal(
|
||||
'<textarea cols="40" id="post_body" name="really!" rows="20" wrap="virtual">Back to the hill and over it again!</textarea>',
|
||||
'<textarea cols="40" id="post_body" name="really!" rows="20">Back to the hill and over it again!</textarea>',
|
||||
text_area("post", "body", "name" => "really!")
|
||||
)
|
||||
assert_equal(
|
||||
|
@ -145,7 +145,7 @@ class FormHelperTest < Test::Unit::TestCase
|
|||
'<input id="dont guess" name="post[title]" size="30" type="text" value="Hello World" />', text_field("post", "title", "id" => "dont guess")
|
||||
)
|
||||
assert_equal(
|
||||
'<textarea cols="40" id="really!" name="post[body]" rows="20" wrap="virtual">Back to the hill and over it again!</textarea>',
|
||||
'<textarea cols="40" id="really!" name="post[body]" rows="20">Back to the hill and over it again!</textarea>',
|
||||
text_area("post", "body", "id" => "really!")
|
||||
)
|
||||
assert_equal(
|
||||
|
@ -166,7 +166,7 @@ class FormHelperTest < Test::Unit::TestCase
|
|||
"<input id=\"post_#{pid}_title\" name=\"post[#{pid}][title]\" size=\"30\" type=\"text\" value=\"Hello World\" />", text_field("post[]","title")
|
||||
)
|
||||
assert_equal(
|
||||
"<textarea cols=\"40\" id=\"post_#{pid}_body\" name=\"post[#{pid}][body]\" rows=\"20\" wrap=\"virtual\">Back to the hill and over it again!</textarea>",
|
||||
"<textarea cols=\"40\" id=\"post_#{pid}_body\" name=\"post[#{pid}][body]\" rows=\"20\">Back to the hill and over it again!</textarea>",
|
||||
text_area("post[]", "body")
|
||||
)
|
||||
assert_equal(
|
||||
|
|
|
@ -116,6 +116,14 @@ class UrlHelperTest < Test::Unit::TestCase
|
|||
assert_equal "<a href=\"mailto:%6d%65@%64%6f%6d%61%69%6e.%63%6f%6d\">My email</a>", mail_to("me@domain.com", "My email", :encode => "hex")
|
||||
end
|
||||
|
||||
def test_mail_to_with_replace_options
|
||||
assert_equal "<a href=\"mailto:wolfgang@stufenlos.net\">wolfgang(at)stufenlos(dot)net</a>", mail_to("wolfgang@stufenlos.net", nil, :replace_at => "(at)", :replace_dot => "(dot)")
|
||||
assert_equal "<a href=\"mailto:%6d%65@%64%6f%6d%61%69%6e.%63%6f%6d\">me(at)domain.com</a>", mail_to("me@domain.com", nil, :encode => "hex", :replace_at => "(at)")
|
||||
assert_equal "<a href=\"mailto:%6d%65@%64%6f%6d%61%69%6e.%63%6f%6d\">My email</a>", mail_to("me@domain.com", "My email", :encode => "hex", :replace_at => "(at)")
|
||||
assert_equal "<a href=\"mailto:%6d%65@%64%6f%6d%61%69%6e.%63%6f%6d\">me(at)domain(dot)com</a>", mail_to("me@domain.com", nil, :encode => "hex", :replace_at => "(at)", :replace_dot => "(dot)")
|
||||
assert_equal "<script type=\"text/javascript\" language=\"javascript\">eval(unescape('%64%6f%63%75%6d%65%6e%74%2e%77%72%69%74%65%28%27%3c%61%20%68%72%65%66%3d%22%6d%61%69%6c%74%6f%3a%6d%65%40%64%6f%6d%61%69%6e%2e%63%6f%6d%22%3e%4d%79%20%65%6d%61%69%6c%3c%2f%61%3e%27%29%3b'))</script>", mail_to("me@domain.com", "My email", :encode => "javascript", :replace_at => "(at)", :replace_dot => "(dot)")
|
||||
end
|
||||
|
||||
def test_link_with_nil_html_options
|
||||
assert_equal "<a href=\"http://www.example.com\">Hello</a>", link_to("Hello", {:action => 'myaction'}, nil)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue