aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/asset_tag_helper.rb
Commit message (Collapse)AuthorAgeFilesLines
* Raise ArgumentError to fix Rails 4.1 deprecation warn message.kennyj2013-06-021-5/+1
|
* Fix typo in documentation commentJunya Ogura2013-05-061-1/+1
|
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2013-04-111-5/+10
|\ | | | | | | | | Conflicts: guides/source/action_mailer_basics.md
| * fix broken format in ActionView::Helpers::AssetTagHelper [ci skip]Francesco Rodriguez2013-04-041-4/+9
| |
| * Fix typoCarson McDonald2013-03-311-1/+1
| |
* | change some more merge to merge! on new hashesVipul A M2013-04-061-3/+3
|/
* Revert "Revert "Merge pull request #4803 from lucascaton/master""Santiago Pastorino2013-02-211-2/+2
| | | | This reverts commit 6871bd9818a9a7d9d8c7e21e253d64c0410fde1d.
* Revert "Merge pull request #4803 from lucascaton/master"Santiago Pastorino2013-02-201-2/+2
| | | | | | | | | | | | | | | This reverts commit bb842e8d2111e50b21a14b8bd6d89371a4b9cd68, reversing changes made to 40c287c7983c20c498f6a8a2ea49e9a6455347f7. This was causing issues in one of our apps we just upgraded. ActionController::RoutingError: No route matches [GET] "/images/favicon.ico" favicon_link_tag now returns '/images/favicon.ico' and in 3.2 returned '/favicon.ico' Browsers by default look for favicon.ico in the root directory Conflicts: actionpack/CHANGELOG.md actionpack/lib/action_view/helpers/asset_tag_helper.rb
* Improve changelog entry from #9221 [ci skip]Carlos Antonio da Silva2013-02-111-3/+3
|
* Improve img alt attribute for screen readersthenickcox2013-02-091-3/+17
| | | | | | | | | | | | Currently, the img_alt method in ActionView keeps underscores in the alt attribute. Because underscores are pronounced in Apple's VoiceOver Utility, this has serious implications for accessibility. This patch makes underscored or hyphenated file names (both common in projects) read more naturally in screen readers by replacing them with spaces. See method documentation for details. Added documentation to image_alt method
* fix broken examples format in image_tag helper [ci skip]Francesco Rodriguez2013-01-181-0/+2
|
* handle protocol option in stylesheet_link_tag and javascript_include_tagVasiliy Ermolovich2012-12-181-2/+6
| | | | closes #8388
* copy edits [ci skip]Vijay Dev2012-12-041-4/+1
|
* Add documentation to AssetTagHelper#image_alt [ci skip]Florent Guilleux2012-12-011-0/+3
|
* Removes unneeded 'Example' tags and whitespaces [ci skip]Alvaro Pereyra2012-12-011-45/+42
|
* Improves documentation on favicon_link_tagAlvaro Pereyra2012-12-011-14/+16
|
* Update documentation for javascript_include_tag [ci skip]HPNeo2012-12-011-10/+13
|
* Hash Syntax to 1.9 related changesAvnerCohen2012-10-291-17/+17
|
* fix error in AssertTagHelper documentation [ci skip]Cesar Carruitero2012-10-211-5/+5
|
* update AssetTagHelper documentation [ci skip]Cesar Carruitero2012-10-211-21/+21
|
* Split asset url helpers into seperate AssetUrlHelperJoshua Peek2012-10-121-278/+80
|
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-09-281-2/+2
|\ | | | | | | | | Conflicts: actionpack/lib/action_view/helpers/asset_tag_helper.rb
| * update image_tag output in examples to actualNihad Abbasov2012-09-251-4/+4
| | | | | | [ci-skip]
* | change ^ and $ anchors in regexp to \A and \z respectivelyNihad Abbasov2012-09-251-1/+1
| | | | | | | | http://guides.rubyonrails.org/security.html#regular-expressions
* | allow to pass numerical value to size option in image_tagNihad Abbasov2012-09-251-4/+5
|/ | | | | This will set image's both width and height attributes to value passed in size option.
* Deprecate mime types lookup in auto_discovery_link_tagPiotr Sarnacki2012-08-281-0/+8
| | | | | | Automatically handling mime types for things other than :rss and :atom is not functionality that justifies dependency on Mime::Type from actionpack.
* Fix documentation mistakesJanko Marohnić2012-08-211-42/+42
|
* use config.action_controller instead of ActionController::Base in example ↵Nick Howard2012-06-301-1/+1
| | | | code for asset_tag_helper
* Render img tag with empty src if empty string is passed to image_tag.Kirill Lashuk2012-05-181-2/+2
|
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-05-151-16/+9
|\ | | | | | | | | Conflicts: actionpack/lib/action_view/helpers/asset_tag_helper.rb
| * Removing ==Examples and last blank lines of docs from actionpackFrancesco Rodriguez2012-05-151-47/+42
| |
| * mispelling asset_tag_helperAngelo Capilleri2012-05-131-1/+1
| |
* | Remove `:mouseover` option from `image_tag` helper.Rafael Mendonça França2012-05-131-12/+0
| |
* | Merge pull request #3237 from sakuro/data-url-schemeRafael Mendonça França2012-05-131-1/+1
| | | | | | | | | | | | | | Support data: url scheme Conflicts: actionpack/lib/action_view/asset_paths.rb
* | update example outputs of some asset helpersVijay Dev2012-05-121-18/+18
|/ | | | | | | Changed /images and /fonts to /assets in the examples of image_path, image_tag and font_path helpers [ci skip]
* Revert "Merge pull request #6142 from spartan-developer/master"José Valim2012-05-121-2/+6
| | | | | This reverts commit 667d0bdd90ef6e6b691f0cc4cf5535b8da69f248, reversing changes made to 4ae6bab6bb02c9390188a49f9a749400f6a0ac94.
* Merge pull request #6142 from spartan-developer/masterJosé Valim2012-05-121-6/+2
|\ | | | | refactored extracting :size => 'XxY' into an extract_size! method
| * refactored extracting :size => 'XxY' into an extract_size! methodNicholas Yianilos2012-05-031-6/+2
| |
* | update some examples in asset tag helper docs [ci skip]Vijay Dev2012-05-091-15/+15
|/
* Comma missedAlexey Vakhov2012-04-211-1/+1
|
* Remove unnecessary in HTML 5 type attribute with default valueAndrey A.I. Sitnik2012-04-051-6/+6
|
* use `symbolize_keys` instead of `dup.symbolize_keys!`Sergey Nartimov2012-03-301-2/+2
|
* Change asset_host config language to be more helpful and accurateGabe Hollombe2012-02-281-2/+3
|
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-02-091-1/+1
|\ | | | | | | | | Conflicts: activerecord/lib/active_record/relation/query_methods.rb
| * Stop referring to Atom as "ATOM"Tom Stuart2012-02-051-1/+1
| | | | | | | | | | | | $ curl -s http://www.ietf.org/rfc/rfc4287 | grep -io ATOM | sort | uniq -c 582 atom 175 Atom
* | Always use content_tag for audio/video tagRafael Mendonça França2012-02-071-1/+1
| | | | | | | | Closes #4919
* | Add *_url helpers to get the full assets URLPrem Sichanugrist2012-02-041-0/+32
|/ | | | | | | Adds `image_url`, `javascript_url`, `stylesheet_url`, `audio_url`, `video_url`, and `font_url` to assets tag helper. These URL helpers will return the full path to your assets. This is useful when you are going to reference this asset from external host.
* Remove slash from favicon_link_tag method attributeLucas Caton2012-01-311-2/+2
|
* reuse common video/audio tags code and do not modify optionsSergey Nartimov2012-01-261-25/+21
|
* do not modify options in image_tagSergey Nartimov2012-01-261-2/+2
|