mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Documentation fix #698
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@756 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
c699a3e985
commit
d768ff1146
2 changed files with 8 additions and 5 deletions
|
@ -100,11 +100,12 @@ module ActionView
|
|||
# link unless +name+ is specified. Additional HTML options, such as class or id, can be passed in the <tt>html_options</tt> hash.
|
||||
#
|
||||
# You can also make it difficult for spiders to harvest email address by obfuscating them.
|
||||
# Examples:
|
||||
# * mail_to "me@domain.com", "My email", :encode => "javascript"
|
||||
# => <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 => "hex"
|
||||
# => <a href="mailto:%6d%65@%64%6f%6d%61%69%6e.%63%6f%6d">My email</a>
|
||||
# Examples:
|
||||
# mail_to "me@domain.com", "My email", :encode => "javascript" # =>
|
||||
# <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 => "hex" # =>
|
||||
# <a href="mailto:%6d%65@%64%6f%6d%61%69%6e.%63%6f%6d">My email</a>
|
||||
def mail_to(email_address, name = nil, html_options = {})
|
||||
encode = html_options[:encode]
|
||||
html_options.delete(:encode)
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
*SVN*
|
||||
|
||||
* Added option :schema_order to the PostgreSQL adapter to support the use of multiple schemas per database #697 [YuriSchimke]
|
||||
|
||||
* Optimized the SQL used to generate has_and_belongs_to_many queries by listing the join table first #693 [yerejm]
|
||||
|
||||
* Fixed that when using validation macros with a custom message, if you happened to use single quotes in the message string you would get a parsing error #657 [tonka]
|
||||
|
|
Loading…
Reference in a new issue