Changeset 9029
- Timestamp:
- 03/15/08 19:54:02 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/lib/action_view/helpers/asset_tag_helper.rb
r9016 r9029 18 18 # image_tag("rails.png") 19 19 # => <img src="http://assets.example.com/images/rails.png" alt="Rails" /> 20 # stylesheet_ include_tag("application")20 # stylesheet_link_tag("application") 21 21 # => <link href="http://assets.example.com/stylesheets/application.css" media="screen" rel="stylesheet" type="text/css" /> 22 22 # … … 29 29 # image_tag("rails.png") 30 30 # => <img src="http://assets0.example.com/images/rails.png" alt="Rails" /> 31 # stylesheet_ include_tag("application")31 # stylesheet_link_tag("application") 32 32 # => <link href="http://assets3.example.com/stylesheets/application.css" media="screen" rel="stylesheet" type="text/css" /> 33 33 # … … 48 48 # image_tag("rails.png") 49 49 # => <img src="http://assets2.example.com/images/rails.png" alt="Rails" /> 50 # stylesheet_ include_tag("application")50 # stylesheet_link_tag("application") 51 51 # => <link href="http://assets1.example.com/stylesheets/application.css" media="screen" rel="stylesheet" type="text/css" /> 52 52 # … … 65 65 # image_tag("rails.png") 66 66 # => <img src="http://images.example.com/images/rails.png" alt="Rails" /> 67 # stylesheet_ include_tag("application")67 # stylesheet_link_tag("application") 68 68 # => <link href="http://assets.example.com/stylesheets/application.css" media="screen" rel="stylesheet" type="text/css" /> 69 69 #