Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove deprecated layout lookup. | José Valim | 2011-12-20 | 1 | -48/+24 |
| | |||||
* | Deprecate implicit layout lookup in favor of inheriting the _layout config. | José Valim | 2011-12-09 | 1 | -32/+86 |
| | |||||
* | Just use the proc if there is a chance of layout lookup. | José Valim | 2011-12-08 | 1 | -5/+6 |
| | |||||
* | Optimize layout lookup to avoid double calls. | José Valim | 2011-12-08 | 1 | -24/+26 |
| | |||||
* | Allow layout fallback when using `layout` method | Prem Sichanugrist | 2011-12-06 | 1 | -25/+34 |
| | | | | | | | | | | | | Rails will now use your default layout (such as "layouts/application") when you specify a layout with `:only` and `:except` condition, and those conditions fail. For example, consider this snippet: class CarsController layout 'single_car', :only => :show end Rails will use 'layouts/single_car' when a request comes in `:show` action, and use 'layouts/application' (or 'layouts/cars', if exists) when a request comes in for any other actions. | ||||
* | Fixed stale doc in AbstractController::Layouts | Dalibor Nasevic | 2011-11-06 | 1 | -12/+5 |
| | |||||
* | Don't do remove_possible_method when delegate is used. Two reasons: 1) ↵ | Jon Leighton | 2011-07-18 | 1 | -1/+2 |
| | | | | warnings should be shown, and fixed at the source and 2) the code is slow. Fixes #1937. | ||||
* | use present tense on examples | Matt Jankowski | 2011-06-21 | 1 | -5/+5 |
| | |||||
* | remove extra space and clarify how an exception is made for controller wide ↵ | Matt Jankowski | 2011-06-21 | 1 | -3/+3 |
| | | | | layouts | ||||
* | reorder layout selection examples to occur in the order that the code does, ↵ | Matt Jankowski | 2011-06-21 | 1 | -5/+6 |
| | | | | and provide more detail on why each selection is made | ||||
* | More updates to ivars list. | José Valim | 2011-05-06 | 1 | -3/+3 |
| | |||||
* | Fixed a comment typo | Eric Hayes | 2011-04-14 | 1 | -1/+1 |
| | |||||
* | #948 template_inheritance | artemave | 2010-12-26 | 1 | -2/+2 |
| | |||||
* | Rewording existing comment | Neeraj Singh | 2010-11-29 | 1 | -6/+3 |
| | |||||
* | no need to call e.class | Aaron Patterson | 2010-09-29 | 1 | -1/+1 |
| | |||||
* | Fix a small typo (ht: masterkain) | José Valim | 2010-09-29 | 1 | -1/+1 |
| | |||||
* | Avoid (@_var ||= nil) pattern by using initialize methods and ensuring ↵ | José Valim | 2010-09-29 | 1 | -3/+1 |
| | | | | everyone calls super as expected. | ||||
* | Define @_layout if it is not defined. | Emilio Tagua | 2010-09-28 | 1 | -0/+1 |
| | |||||
* | change rdoc to conform to api guidelines | Joost Baaij | 2010-08-25 | 1 | -10/+12 |
| | |||||
* | refactor evals and adds some __FILE__ and __LINE__ | Santiago Pastorino | 2010-05-20 | 1 | -3/+3 |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | We seem to have removed the URL helpers from ActionView subclasses... | wycats | 2010-03-18 | 1 | -0/+1 |
| | |||||
* | Make render :partial, :layout consistent between AC and AV | Carlhuda | 2010-03-18 | 1 | -6/+0 |
| | |||||
* | Remove caching's dependency on view_context. Also, make it so that the ↵ | Carlhuda | 2010-03-18 | 1 | -4/+12 |
| | | | | layout is always rendered the same way (so that layout dependencies on the action actually being rendered aren't masked on the first render) | ||||
* | Make action_has_layout? non-private | Carlhuda | 2010-03-18 | 1 | -4/+4 |
| | |||||
* | Eliminate warnings for AM on 1.8 | wycats | 2010-03-16 | 1 | -0/+4 |
| | |||||
* | Finish cleaning up rendering stack from views and move assigns evaluation to ↵ | José Valim | 2010-03-12 | 1 | -0/+6 |
| | | | | controller (so plugins and/or controllers can overwrite just one method). | ||||
* | More refactoring on the views side of rendering. | José Valim | 2010-03-08 | 1 | -7/+2 |
| | |||||
* | Finally moved the find template logic to the views. | José Valim | 2010-03-08 | 1 | -3/+4 |
| | |||||
* | More refactoring. Split _normalize_args and _normalize_options concerns. | José Valim | 2010-03-08 | 1 | -2/+6 |
| | |||||
* | More cleanup on the layouts side. | José Valim | 2010-03-08 | 1 | -53/+28 |
| | |||||
* | Move layout lookup to views. | José Valim | 2010-03-08 | 1 | -19/+6 |
| | |||||
* | Added template lookup responsible to hold all information used in template ↵ | José Valim | 2010-03-07 | 1 | -29/+8 |
| | | | | lookup. | ||||
* | Fix controller_path returnsing an empty string in Ruby 1.8.7 [#4036 ↵ | José Valim | 2010-02-26 | 1 | -3/+0 |
| | | | | status:resolved] | ||||
* | Convert to class_attribute | Jeremy Kemper | 2010-02-01 | 1 | -2/+6 |
| | |||||
* | Bring layouts with proc back alive. | José Valim | 2010-01-26 | 1 | -0/+3 |
| | |||||
* | controller_path is required by ActionView, so move it up to ↵ | José Valim | 2009-12-31 | 1 | -1/+157 |
| | | | | AbstractController and refactor AbstractController::Layouts. | ||||
* | Silence some trivial warnings: shadowed local vars, indentation mismatches | Jeremy Kemper | 2009-12-28 | 1 | -1/+1 |
| | |||||
* | Rename the RenderingController module to just plain Rendering | David Heinemeier Hansson | 2009-12-20 | 1 | -1/+1 |
| | |||||
* | Revert "Revert "Eliminate warning with layout is unset"" | Jeremy Kemper | 2009-11-10 | 1 | -1/+1 |
| | | | | This reverts commit d8fd0499bfd6edc676ff3fbffc327656f6d5c320. | ||||
* | Revert "Eliminate warning with layout is unset" | Jeremy Kemper | 2009-11-10 | 1 | -1/+1 |
| | | | | This reverts commit 1fcf32f8fef8fb5a63a66edacf556a107d12c049. | ||||
* | Eliminate warning with layout is unset | Jeremy Kemper | 2009-11-10 | 1 | -1/+1 |
| | |||||
* | Revert "Eliminate warning with layout is unset" | Jeremy Kemper | 2009-11-10 | 1 | -1/+1 |
| | | | | This reverts commit 90be80361f26d717f9842170315dd8659f35429d. | ||||
* | Eliminate warning with layout is unset | Jeremy Kemper | 2009-11-10 | 1 | -1/+1 |
| | |||||
* | If class doesn't have a name, there's no implied layout name, so don't set ↵ | Jeremy Kemper | 2009-11-05 | 1 | -10/+12 |
| | | | | up a _layout method | ||||
* | Add some basic render_test to AbstractController. | José Valim | 2009-11-01 | 1 | -1/+1 |
| | |||||
* | Move all render and layout pieces required in ActionMailer from ↵ | José Valim | 2009-11-01 | 1 | -0/+9 |
| | | | | ActionController to AbstractController. | ||||
* | Refactor ActionMailer layout and remove legacy one. | José Valim | 2009-11-01 | 1 | -0/+20 |
| | |||||
* | Refactor ActionController to use find_template and template_exists? | Yehuda Katz + Carl Lerche | 2009-09-03 | 1 | -5/+5 |
| | |||||
* | Add a TODO so we remember to fix partial layouts | Yehuda Katz + Carl Lerche | 2009-08-25 | 1 | -0/+3 |
| | |||||
* | Caches and cache clearing seems to actually work, but the actual ↵ | Yehuda Katz | 2009-08-15 | 1 | -4/+9 |
| | | | | architecture is kind of messy. Next: CLEAN UP. |