aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/base.rb
Commit message (Expand)AuthorAgeFilesLines
* Don't inadvertently hit const_missing in defined?(ActionMailer::Base) checkJeremy Kemper2007-12-011-1/+1
* Add #prepend_view_path and #append_view_path instance methods on ActionContro...Rick Olson2007-11-261-1/+21
* Add deprecation for old subtemplate syntax for ActionMailer templates, use re...Rick Olson2007-11-261-0/+13
* Tests and fix for extension extraction. References #10130 [tarmo]Michael Koziarski2007-11-221-2/+1
* Fixed that partial rendering should look at the type of the first render to d...David Heinemeier Hansson2007-11-181-2/+10
* Actually cache the template names.Michael Koziarski2007-11-141-1/+1
* Fix silent failure of rxml templates. Closes #9879.Jeremy Kemper2007-10-151-1/+2
* String#to_xs uses the fast_xs extension if available for Builder speedup.Jeremy Kemper2007-10-071-0/+1
* Include asset host in public path cache key. Clear cache between asset tag te...Jeremy Kemper2007-09-241-0/+4
* move TextHelper#sanitize config options to the TextHelper module so it can be...Rick Olson2007-09-231-129/+0
* Merge csrf_killer plugin into rails. Adds RequestForgeryProtection model tha...Rick Olson2007-09-231-0/+2
* Secure #sanitize, #strip_tags, and #strip_links helpers against xss attacks. ...Rick Olson2007-09-231-0/+129
* ERB::Util#html_escape creates fewer objectsJeremy Kemper2007-09-181-0/+10
* Added partial layouts (see example in action_view/lib/partials.rb) [DHH]David Heinemeier Hansson2007-08-021-1/+11
* Make ActionView#view_paths an attr_accessor for real this time. Also, don't ...Rick Olson2007-06-151-7/+7
* Reduce file stat calls when checking for template changes. Closes #7736.Jeremy Kemper2007-05-271-4/+6
* catch possible WSOD when trying to render a missing partial. Closes #8454 [Ca...Rick Olson2007-05-241-0/+4
* Add some performance enhancements to ActionView.Rick Olson2007-05-151-45/+68
* Assume that rendered partials go by the HTML format by defaultRick Olson2007-05-151-13/+1
* Fix various documentation typos throughout ActionPack. Closes #8111. [Henrik N]Marcel Molina2007-05-061-1/+1
* apply [6543] to edge. Closes #5044 [tpope]Rick Olson2007-04-201-1/+2
* Tweak template format rules so that the ACCEPT header is only used if it's te...Rick Olson2007-04-151-1/+13
* The default respond_to blocks don't set a specific extension anymore, so that...Rick Olson2007-04-121-43/+50
* add #view_paths attr_accessor for ActionView::BaseRick Olson2007-04-081-1/+1
* Fix WSOD due to modification of a formatted template extension so that reques...Rick Olson2007-04-081-3/+3
* Fix WSOD when template compilation fails [Rick]Rick Olson2007-04-081-1/+6
* Change ActionView template defaults. Look for templates using the request fo...Rick Olson2007-04-021-11/+38
* documentation project patches, closes #7342, #7319, #7316, #7190 [jeremymcana...Rick Olson2007-03-271-20/+24
* Deprecation: remove deprecated instance variables.Jeremy Kemper2007-03-131-2/+2
* Prefer MIME constants to strings. Closes #7707.Jeremy Kemper2007-03-061-2/+2
* Added .erb and .builder as preferred aliases to the now deprecated .rhtml and...David Heinemeier Hansson2007-02-201-18/+23
* rename #lookup_template_base_path_for to #find_base_path_for in ActionView::B...Rick Olson2007-02-061-1/+1
* Fix #render_file so that TemplateError is called with the correct params and ...Rick Olson2007-02-051-5/+4
* Allow Controllers to have multiple view_paths instead of a single template_ro...Rick Olson2007-02-041-13/+19
* Use a consistent load path to avoid double requires. Fix some scattered Ruby ...Jeremy Kemper2007-01-281-6/+8
* Extract template_changed_since? from compile_template? so plugins may overrid...Jeremy Kemper2006-11-201-4/+10
* ActionView::Base.erb_variable accessor names the buffer variable used to rend...Jeremy Kemper2006-11-171-0/+3
* Consistent default handling in ActionView render. Closes #6534.Jeremy Kemper2006-11-021-3/+2
* cleanup of local_assigns handling and documentation update (closes #6358) [sk...David Heinemeier Hansson2006-10-081-6/+16
* Deprecation: @request will be removed after 1.2. Use the request method instead.Jeremy Kemper2006-09-291-5/+5
* Added proper getters and setters for content type and charset [DHH] Added utf...David Heinemeier Hansson2006-09-171-4/+3
* Load helpers in alphabetical order for consistency. Resolve cyclic javascript...Jeremy Kemper2006-09-121-1/+1
* Backed out of locals hash as it caused trouble with Builder, see ticket for moreDavid Heinemeier Hansson2006-09-061-1/+1
* Added locals hash to partials, which makes for convenient access of some time...David Heinemeier Hansson2006-09-041-1/+1
* Tighten rescue clauses. Closes #5985.Jeremy Kemper2006-08-311-1/+1
* Deprecate direct usage of @params. Update ActionView::Base for instance var d...Jeremy Kemper2006-08-071-1/+2
* Update documentation for erb trim syntax. Closes #5651.Jeremy Kemper2006-07-091-3/+5
* Fixed that real files and symlinks should be treated the same when compiling ...David Heinemeier Hansson2006-07-051-1/+2
* Missing method_key.Jeremy Kemper2006-06-301-2/+2
* Retain symbol method key and assign_method_name.Jeremy Kemper2006-06-291-3/+7