Changeset 6679
- Timestamp:
- 05/06/07 04:46:11 (1 year ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/install.rb (modified) (2 diffs)
- trunk/actionpack/lib/action_view/base.rb (modified) (1 diff)
- trunk/actionpack/lib/action_view/compiled_templates.rb (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r6674 r6679 1 1 *SVN* 2 3 * Fix various documentation typos throughout ActionPack. [Henrik N] 2 4 3 5 * Enhance documentation and add examples for url_for. [jeremymcanally] trunk/actionpack/install.rb
r1053 r6679 5 5 include Config 6 6 7 # this was adapted from rdoc's install.rb by way sof Log4r7 # this was adapted from rdoc's install.rb by way of Log4r 8 8 9 9 $sitedir = CONFIG["sitelibdir"] … … 19 19 end 20 20 21 # the ac ual gruntwork21 # the actual gruntwork 22 22 Dir.chdir("lib") 23 23 trunk/actionpack/lib/action_view/base.rb
r6545 r6679 83 83 # 84 84 # xml.em("emphasized") # => <em>emphasized</em> 85 # xml.em { xml.b("emp & bold") } # => <em><b>emph & bold</b></em>85 # xml.em { xml.b("emph & bold") } # => <em><b>emph & bold</b></em> 86 86 # xml.a("A Link", "href"=>"http://onestepback.org") # => <a href="http://onestepback.org">A Link</a> 87 87 # xml.target("name"=>"compile", "option"=>"fast") # => <target option="fast" name="compile"\> trunk/actionpack/lib/action_view/compiled_templates.rb
r6470 r6679 1 2 1 module ActionView 3 2 … … 41 40 # The identifier should be unique to this source. 42 41 # 43 # The file_name, if provided will appear in backtraces. If not prov ded, the file_name defaults42 # The file_name, if provided will appear in backtraces. If not provided, the file_name defaults 44 43 # to the identifier. 45 44 #