aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2010-04-08 11:46:56 -0700
committerDavid Heinemeier Hansson <david@loudthinking.com>2010-04-08 11:49:34 -0700
commit00ee9b33698715fb9265a227715a443e21762ea1 (patch)
tree11a2b17af2308452157b967fac8666ccd93fcb4d /actionpack/lib
parente7f0d37c91c91a6b2f2a1232c1a670e59165dc19 (diff)
downloadrails-00ee9b33698715fb9265a227715a443e21762ea1.tar.gz
rails-00ee9b33698715fb9265a227715a443e21762ea1.tar.bz2
rails-00ee9b33698715fb9265a227715a443e21762ea1.zip
Revert "adds #favicon_link_tag and #apple_touch_icon_link_tag" -- these tags are too specific.
This reverts commit 6891f46d10957f21f200fc4dc2b6076ff411b1da, ec8610cfdc32d0fe816fb22405e00ef1b6c90d73, and d18ff1b7efd96e7c08bc1a15137735be45f87e07.
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_view/helpers/asset_tag_helper.rb44
1 files changed, 0 insertions, 44 deletions
diff --git a/actionpack/lib/action_view/helpers/asset_tag_helper.rb b/actionpack/lib/action_view/helpers/asset_tag_helper.rb
index 47abf1e41c..e4ec17467e 100644
--- a/actionpack/lib/action_view/helpers/asset_tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/asset_tag_helper.rb
@@ -501,50 +501,6 @@ module ActionView
end
end
- # Returns a link tag for a favicon.
- #
- # <%= favicon_link_tag %>
- #
- # generates
- #
- # <link href="/favicon.ico?4649789979" rel="shortcut icon" type="image/vnd.microsoft.icon" />
- #
- # You can specify a different icon file in the first argument:
- #
- # <%= favicon_link_tag 'favicon.ico' %>
- #
- # That's passed to +image_path+ as is, so the example above would render
- #
- # <link href="/images/favicon.ico?4649789979" rel="shortcut icon" type="image/vnd.microsoft.icon" />
- #
- # The helper accepts an additional options hash where you can override "rel" and "type".
- def favicon_link_tag(source='/favicon.ico', options={})
- tag('link', {
- :rel => 'shortcut icon',
- :type => 'image/vnd.microsoft.icon',
- :href => image_path(source)
- }.merge(options.symbolize_keys))
- end
-
- # Returns a link tag for an icon targetted at iPod Touch, iPhone, and iPad.
- #
- # <%= apple_touch_icon_link_tag %>
- #
- # generates
- #
- # <link href="/apple-touch-icon.png?4233872383" rel="apple-touch-icon" />
- #
- # You can specify a different icon file:
- #
- # <%= apple_touch_icon_link_tag "my_site.png" %>
- #
- # That's passed to +image_path+ as is, so the example above would render
- #
- # <link href="/images/my_site.png?4233872383" rel="apple-touch-icon" />
- def apple_touch_icon_link_tag(source='/apple-touch-icon.png')
- tag('link', :rel => 'apple-touch-icon', :href => image_path(source))
- end
-
# Computes the path to an image asset in the public images directory.
# Full paths from the document root will be passed through.
# Used internally by +image_tag+ to build the image path.