aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/asset_tag_helper.rb
Commit message (Expand)AuthorAgeFilesLines
* Make @controller an internal ivar in the viewJoshua Peek2010-01-221-4/+4
* Start adding configuration to ActionView instead of using constants.Yehuda Katz2009-10-141-12/+16
* Switch to on-by-default XSS escaping for rails.Michael Koziarski2009-10-081-3/+3
* Don't force test suite to use bundlerJoshua Peek2009-09-131-0/+1
* Don't raise exceptions for missing javascript_include_tag or stylesheet_link_...Sam Pohlenz2009-09-031-2/+6
* Make sure javascript_include_tag/stylesheet_link_tag does not append ".js" or...Matthew Rudy Jacobs2009-08-051-10/+14
* Fix tag helpers so that all HTML element boolean attributes render according ...Marc Love2009-07-301-1/+1
* Adds a audio_tag helper for the HTML5 audio tag. Fixed video_path docs. HTML ...Emilio Tagua2009-07-071-3/+35
* Removed unnecessary calls to image_path and hash lookups [#2827 state:resolved]Yehuda Katz + Carl Lerche2009-07-021-3/+3
* Adds a video_tag helper for the HTML5 video tag (similar to how the image_tag...Tieg Zaharia2009-07-021-0/+67
* Handle missing javascript/stylesheets assets by raising an exceptionChristos Zisopoulos2009-06-261-4/+28
* Add :concat option to asset tag helpers to force concatenation.Joshua Peek2009-06-151-6/+18
* allow absolute paths for the asset cachesAndrew Kaspick2009-06-111-3/+3
* Eliminate unnecessary File.exist? when correct file extension given [#1879 st...Andrew White2009-02-051-1/+2
* Merge docrailsPratik Naik2009-01-181-50/+74
* Cache AssetTag timestampsJoshua Peek2009-01-041-5/+31
* Revert to the good old days when AssetTag didn't cause anyone problemsJoshua Peek2009-01-021-325/+131
* Fixed the AssetTagHelper cache to use the computed asset host as part of the ...David Heinemeier Hansson2009-01-011-5/+5
* Ensure ActionMailer doesn't blow up when a two argument proc is set for the a...Tekin Suleyman2008-12-011-1/+1
* Make sure #compute_public_path caching allows to return different results for...Sven Fuchs2008-11-291-1/+1
* Added the option to declare an asset_host as an object that responds to call ...David Heinemeier Hansson2008-11-271-3/+11
* need to make sure the asset type is cached with it in Cache.. name is suffici...Aaron Batalion2008-11-191-2/+2
* Fixed asset host to not cache objects [#1419 state:resolved]Aaron Batalion2008-11-191-29/+35
* Fixed bug with asset timestamping when using relative_url_root (Joe Goldwasse...David Heinemeier Hansson2008-10-261-1/+1
* Fix image_tag behavior on windows. [#1085 state:resolved]madlep2008-10-061-1/+1
* Fixed AssetTag cache with with relative_url_root [#1022 state:resolved]Martin Rehfeld2008-09-221-1/+1
* Refactor AssetTagHelper and fix remaining threadsafe issues.Joshua Peek2008-09-221-148/+316
* Switched computed public paths cache over to a simple hash w/ mutexJoshua Peek2008-09-101-15/+17
* Removed unnecessary Symbol#to_proc from Asset Tag Helper.Clemens Kofler2008-09-031-1/+1
* Fix asset file paths with dangling queries in mtime checkJeremy Kemper2008-08-141-2/+6
* Set asset-cached file ctime and mtime to the max mtime of the combined files....Jeremy Kemper2008-08-121-0/+5
* MemoryStore is the only "unsafe" store. Make it threadsafe by default.Joshua Peek2008-08-061-1/+1
* AbstractRequest.relative_url_root is no longer automatically configured by a ...Joshua Peek2008-07-241-3/+3
* Wrap AssetTagHelper's computed public path cache in a threadsafe storeJoshua Peek2008-07-171-33/+25
* Resolved conflictDavid Heinemeier Hansson2008-07-161-18/+44
|\
| * Add :recursive option to javascript_include_tag and stylesheet_link_tag to be...Damian Janowski2008-07-081-14/+42
| * Move the file exists checks outside write_asset_file_contents.Michael Koziarski2008-07-031-6/+4
* | Fixed that AssetTagHelper#compute_public_path shouldn't cache the asset_host ...David Heinemeier Hansson2008-07-161-11/+14
|/
* Merge docrails.Pratik Naik2008-05-251-12/+12
* Improve documentation coverage and markupXavier Noria2008-05-021-2/+2
* Merge branch 'master' of git://github.com/stephencelis/railsJoshua Peek2008-04-141-3/+3
|\
| * Scripts and styles with multiple dots in the filename should cacheStephen Celis2008-04-121-3/+3
* | Added Rails.public_path to control where HTML and assets are expected to be l...David Heinemeier Hansson2008-04-131-1/+1
|/
* Re-added ActionView::Helpers::register_javascript/stylesheet_expansion to mak...Jeremy Kemper2008-03-201-18/+55
* Revert [9106]. References #10350.Jeremy Kemper2008-03-191-57/+21
* Docfix (closes #11281) [jlindley]David Heinemeier Hansson2008-03-151-4/+4
* Added ActionView::Helpers::register_javascript/stylesheet_expansion to make i...David Heinemeier Hansson2008-03-131-21/+57
* Check the host string contains %d before using String#%, this avoids warning...Michael Koziarski2008-02-181-1/+1
* Don't repeatedly add relative_url_root to asset sources. Closes #10767 [tomt...Michael Koziarski2008-01-271-5/+11
* Handle corner case with image_tag when passed 'messed up' image names. Closes...Michael Koziarski2008-01-251-1/+1