| Commit message (Expand) | Author | Age | Files | Lines |
* | Ruby 1.9 compat: use String#ord to escape filenames for compiled method names | Jeremy Kemper | 2007-12-15 | 1 | -2/+2 |
* | Fixed that ActionView#file_exists? would be incorrect if @first_render is set... | David Heinemeier Hansson | 2007-12-14 | 1 | -1/+1 |
* | More Action View refactoring. Knock :erb default down a notch. Closes #10455. | Jeremy Kemper | 2007-12-10 | 1 | -57/+44 |
* | Fix up template handler tests. Closes #10437. | Jeremy Kemper | 2007-12-10 | 1 | -1/+5 |
* | Refactor Action View template handlers. Closes #10437. | Jeremy Kemper | 2007-12-09 | 1 | -89/+41 |
* | Ensure that ActionMailer::Base is there and not just the parent module | David Heinemeier Hansson | 2007-12-05 | 1 | -1/+1 |
* | Don't inadvertently hit const_missing in defined?(ActionMailer::Base) check | Jeremy Kemper | 2007-12-01 | 1 | -1/+1 |
* | Add #prepend_view_path and #append_view_path instance methods on ActionContro... | Rick Olson | 2007-11-26 | 1 | -1/+21 |
* | Add deprecation for old subtemplate syntax for ActionMailer templates, use re... | Rick Olson | 2007-11-26 | 1 | -0/+13 |
* | Tests and fix for extension extraction. References #10130 [tarmo] | Michael Koziarski | 2007-11-22 | 1 | -2/+1 |
* | Fixed that partial rendering should look at the type of the first render to d... | David Heinemeier Hansson | 2007-11-18 | 1 | -2/+10 |
* | Actually cache the template names. | Michael Koziarski | 2007-11-14 | 1 | -1/+1 |
* | Fix silent failure of rxml templates. Closes #9879. | Jeremy Kemper | 2007-10-15 | 1 | -1/+2 |
* | String#to_xs uses the fast_xs extension if available for Builder speedup. | Jeremy Kemper | 2007-10-07 | 1 | -0/+1 |
* | Include asset host in public path cache key. Clear cache between asset tag te... | Jeremy Kemper | 2007-09-24 | 1 | -0/+4 |
* | move TextHelper#sanitize config options to the TextHelper module so it can be... | Rick Olson | 2007-09-23 | 1 | -129/+0 |
* | Merge csrf_killer plugin into rails. Adds RequestForgeryProtection model tha... | Rick Olson | 2007-09-23 | 1 | -0/+2 |
* | Secure #sanitize, #strip_tags, and #strip_links helpers against xss attacks. ... | Rick Olson | 2007-09-23 | 1 | -0/+129 |
* | ERB::Util#html_escape creates fewer objects | Jeremy Kemper | 2007-09-18 | 1 | -0/+10 |
* | Added partial layouts (see example in action_view/lib/partials.rb) [DHH] | David Heinemeier Hansson | 2007-08-02 | 1 | -1/+11 |
* | Make ActionView#view_paths an attr_accessor for real this time. Also, don't ... | Rick Olson | 2007-06-15 | 1 | -7/+7 |
* | Reduce file stat calls when checking for template changes. Closes #7736. | Jeremy Kemper | 2007-05-27 | 1 | -4/+6 |
* | catch possible WSOD when trying to render a missing partial. Closes #8454 [Ca... | Rick Olson | 2007-05-24 | 1 | -0/+4 |
* | Add some performance enhancements to ActionView. | Rick Olson | 2007-05-15 | 1 | -45/+68 |
* | Assume that rendered partials go by the HTML format by default | Rick Olson | 2007-05-15 | 1 | -13/+1 |
* | Fix various documentation typos throughout ActionPack. Closes #8111. [Henrik N] | Marcel Molina | 2007-05-06 | 1 | -1/+1 |
* | apply [6543] to edge. Closes #5044 [tpope] | Rick Olson | 2007-04-20 | 1 | -1/+2 |
* | Tweak template format rules so that the ACCEPT header is only used if it's te... | Rick Olson | 2007-04-15 | 1 | -1/+13 |
* | The default respond_to blocks don't set a specific extension anymore, so that... | Rick Olson | 2007-04-12 | 1 | -43/+50 |
* | add #view_paths attr_accessor for ActionView::Base | Rick Olson | 2007-04-08 | 1 | -1/+1 |
* | Fix WSOD due to modification of a formatted template extension so that reques... | Rick Olson | 2007-04-08 | 1 | -3/+3 |
* | Fix WSOD when template compilation fails [Rick] | Rick Olson | 2007-04-08 | 1 | -1/+6 |
* | Change ActionView template defaults. Look for templates using the request fo... | Rick Olson | 2007-04-02 | 1 | -11/+38 |
* | documentation project patches, closes #7342, #7319, #7316, #7190 [jeremymcana... | Rick Olson | 2007-03-27 | 1 | -20/+24 |
* | Deprecation: remove deprecated instance variables. | Jeremy Kemper | 2007-03-13 | 1 | -2/+2 |
* | Prefer MIME constants to strings. Closes #7707. | Jeremy Kemper | 2007-03-06 | 1 | -2/+2 |
* | Added .erb and .builder as preferred aliases to the now deprecated .rhtml and... | David Heinemeier Hansson | 2007-02-20 | 1 | -18/+23 |
* | rename #lookup_template_base_path_for to #find_base_path_for in ActionView::B... | Rick Olson | 2007-02-06 | 1 | -1/+1 |
* | Fix #render_file so that TemplateError is called with the correct params and ... | Rick Olson | 2007-02-05 | 1 | -5/+4 |
* | Allow Controllers to have multiple view_paths instead of a single template_ro... | Rick Olson | 2007-02-04 | 1 | -13/+19 |
* | Use a consistent load path to avoid double requires. Fix some scattered Ruby ... | Jeremy Kemper | 2007-01-28 | 1 | -6/+8 |
* | Extract template_changed_since? from compile_template? so plugins may overrid... | Jeremy Kemper | 2006-11-20 | 1 | -4/+10 |
* | ActionView::Base.erb_variable accessor names the buffer variable used to rend... | Jeremy Kemper | 2006-11-17 | 1 | -0/+3 |
* | Consistent default handling in ActionView render. Closes #6534. | Jeremy Kemper | 2006-11-02 | 1 | -3/+2 |
* | cleanup of local_assigns handling and documentation update (closes #6358) [sk... | David Heinemeier Hansson | 2006-10-08 | 1 | -6/+16 |
* | Deprecation: @request will be removed after 1.2. Use the request method instead. | Jeremy Kemper | 2006-09-29 | 1 | -5/+5 |
* | Added proper getters and setters for content type and charset [DHH] Added utf... | David Heinemeier Hansson | 2006-09-17 | 1 | -4/+3 |
* | Load helpers in alphabetical order for consistency. Resolve cyclic javascript... | Jeremy Kemper | 2006-09-12 | 1 | -1/+1 |
* | Backed out of locals hash as it caused trouble with Builder, see ticket for more | David Heinemeier Hansson | 2006-09-06 | 1 | -1/+1 |
* | Added locals hash to partials, which makes for convenient access of some time... | David Heinemeier Hansson | 2006-09-04 | 1 | -1/+1 |