aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/asset_url_helper.rb
Commit message (Collapse)AuthorAgeFilesLines
* Fix asset_path in mounted enginePiotr Sarnacki2013-01-211-2/+1
| | | | | | | | | | | | | Historically serving assets from a mountable engine could be achieved by running ActionDispatch::Static as a part of engine middleware stack or to copy assets prefixed with an engine name. After introduction of assets pipeline this is not needed as all of the assets are served or compiled into main application's assets. This commit removes the obsolete line making asset_path always generate paths relative to the root or config.relative_url_root if it's set. (closes #8119)
* Removes :nodoc: label [ci skip]Alvaro Pereyra2012-12-011-1/+1
|
* Ignore asset url query string or anchor when appending extensions and ↵Joshua Peek2012-10-151-1/+3
| | | | computing public path
* Extract compute_asset_extname and allow extname to be disabledJoshua Peek2012-10-151-7/+15
|
* merge! default asset tag optionsJoshua Peek2012-10-151-12/+12
|
* Just check request instead of controller.requestJoshua Peek2012-10-151-13/+2
|
* Allow asset url config to be undefinedJoshua Peek2012-10-131-2/+4
|
* All asset url helpers should pass optionsJoshua Peek2012-10-121-24/+24
|
* Ensure AssetUrlHelper can be mixed into AC::BaseJoshua Peek2012-10-121-6/+13
|
* Refactor AssetUrlHelper to make it friendly for plugins and extensionsJoshua Peek2012-10-121-106/+83
| | | | | | | | Add asset_path/url helper for a consolidated entry point Expose compute_asset_path as a public API Expose compute_asset_host as a public API Move RAILS_ASSET_ID to its own module, AssetIdHelper Removed AV::AssetPaths
* Add asset_path and asset_url helpersJoshua Peek2012-10-121-16/+52
|
* Split asset url helpers into seperate AssetUrlHelperJoshua Peek2012-10-121-0/+334