Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | s/ERb/ERB/ | Akira Matsuda | 2013-01-02 | 1 | -1/+1 |
| | |||||
* | Hash Syntax to 1.9 related changes | AvnerCohen | 2012-10-29 | 1 | -1/+1 |
| | |||||
* | Add ActionView::Base.default_formats | Piotr Sarnacki | 2012-08-28 | 1 | -0/+3 |
| | | | | | | | | default_formats array is used by LookupContext in order to allow rendering templates when :formats option is not passed. Previously it was always set to Mime::SET, which created dependency on Action Pack. In order to remove this dependency, Mime::SET is used only if ActionController is loaded. | ||||
* | Remove comment about getting rid of old AV::Base.new behavior | Piotr Sarnacki | 2012-08-28 | 1 | -2/+0 |
| | | | | | | | | | I've talked to José Valim, who added this comment, and there is no need to remove old API. It's good to have a simple way to instantiate ActionView::Base, by just passing view paths as a first argument, instead of constructing LookupContext and then the Renderer. [ci skip] | ||||
* | load active_support/core_ext/module/delegation in active_support/rails | Xavier Noria | 2012-08-02 | 1 | -1/+0 |
| | |||||
* | load active_support/core_ext/class/attribute in active_support/rails | Xavier Noria | 2012-08-02 | 1 | -1/+0 |
| | |||||
* | removing the AV::Base.helpers class attribute as it is not needed. | Nick Sutterer | 2012-06-29 | 1 | -1/+0 |
| | |||||
* | remove AV.prepare and move all helper-related logic into the controller. ↵ | Nick Sutterer | 2012-06-29 | 1 | -16/+0 |
| | | | | | | this decouples the view since it no longer knows about routes internals. this is a result of an ongoing discussion at https://github.com/rails/rails/pull/6826. | ||||
* | Move require to where it's needed | Santiago Pastorino | 2012-05-11 | 1 | -0/+1 |
| | |||||
* | Remove unnecessary in HTML 5 type attribute with default value | Andrey A.I. Sitnik | 2012-04-05 | 1 | -1/+1 |
| | |||||
* | minor elsif/else typo fix | Tieg Zaharia | 2012-04-03 | 1 | -1/+1 |
| | |||||
* | Make controller namespace partial prefix optional | Grant Hutchins | 2012-03-28 | 1 | -0/+6 |
| | | | | | | | config.action_view.prefix_partial_path_with_controller_namespace This allows you to choose to render @post using /posts/_post.erb instead of /admin/posts/_post.erb inside Admin::PostsController. | ||||
* | uses PATCH for the forms of persisted records, and routes PATCH and PUT to ↵ | Xavier Noria | 2012-02-24 | 1 | -2/+0 |
| | | | | the update action of resources | ||||
* | Add config.default_method_for_update to support PATCH | David Lee | 2012-02-22 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | PATCH is the correct HTML verb to map to the #update action. The semantics for PATCH allows for partial updates, whereas PUT requires a complete replacement. Changes: * adds config.default_method_for_update you can set to :patch * optionally use PATCH instead of PUT in resource routes and forms * adds the #patch verb to routes to detect PATCH requests * adds #patch? to Request * changes documentation and comments to indicate support for PATCH This change maintains complete backwards compatibility by keeping :put as the default for config.default_method_for_update. | ||||
* | Remove delegation to ActionController::Base | Rafael Mendonça França | 2012-01-18 | 1 | -1/+0 |
| | |||||
* | ActionView now has its own logger | Rafael Mendonça França | 2012-01-18 | 1 | -0/+1 |
| | |||||
* | Remove deprecated and not used method | Carlos Antonio da Silva | 2012-01-12 | 1 | -6/+0 |
| | |||||
* | Merge pull request #4117 from lest/remove-deprecated | José Valim | 2012-01-05 | 1 | -1/+0 |
|\ | | | | | remove status_code from AD::ShowExceptions and useless requires | ||||
| * | remove status_code from AD::ShowExceptions and useless requires | Sergey Nartimov | 2011-12-21 | 1 | -1/+0 |
| | | |||||
* | | Use Kernel#Array instead of Array.wrap in view_paths | Rafael Mendonça França | 2012-01-05 | 1 | -2/+1 |
|/ | |||||
* | Use do end for multiline block. | Uģis Ozols | 2011-12-05 | 1 | -2/+2 |
| | |||||
* | .rhtml and .rxml was removed in Rails 3. | Uģis Ozols | 2011-12-05 | 1 | -2/+2 |
| | |||||
* | Improve examples: use each instead of for...in | Gabe Berke-Williams | 2011-08-31 | 1 | -1/+1 |
| | |||||
* | deprecating process_view_paths | Aaron Patterson | 2011-08-09 | 1 | -0/+2 |
| | |||||
* | config should always be an AS::InheritableOptions object. Closes #1992 | Santiago Pastorino | 2011-07-08 | 1 | -1/+1 |
| | |||||
* | Follow code conventions on docs | Sebastian Martinez | 2011-05-10 | 1 | -5/+5 |
| | |||||
* | More AV::Base cleanup. | José Valim | 2011-05-04 | 1 | -28/+29 |
| | |||||
* | no @controller dependency in Renderers. | Nick Sutterer | 2011-05-04 | 1 | -2/+3 |
| | |||||
* | Tidy up pending TODOs after discussion with Mr. Gatoz (@wycats). | José Valim | 2011-05-01 | 1 | -6/+3 |
| | |||||
* | Streaming docs. | José Valim | 2011-05-01 | 1 | -1/+0 |
| | |||||
* | Remove view dependency from AV::Renderer. | José Valim | 2011-05-01 | 1 | -8/+15 |
| | |||||
* | More cleanup and moving responsibilities around. | José Valim | 2011-05-01 | 1 | -10/+9 |
| | |||||
* | Remove more dependencies from the view. | José Valim | 2011-05-01 | 1 | -5/+1 |
| | |||||
* | Remove dependency from _template. | José Valim | 2011-05-01 | 1 | -1/+2 |
| | |||||
* | Start abstracting the renderer. | José Valim | 2011-05-01 | 1 | -1/+4 |
| | |||||
* | Output a redirect to the 500 page if something happens when streaming. | José Valim | 2011-04-19 | 1 | -0/+6 |
| | | | | | | Currently, we output: "><script type="text/javascript">window.location = "/500.html"</script></html> | ||||
* | The magic medicine worked. | José Valim | 2011-04-16 | 1 | -1/+1 |
| | |||||
* | Yo dawg, I heard you like streaming. So I put a fiber, inside a block, ↵ | José Valim | 2011-04-16 | 1 | -46/+1 |
| | | | | inside a body, so you can stream. | ||||
* | Initial work on fibered layout. | José Valim | 2011-04-16 | 1 | -6/+47 |
| | |||||
* | removes RJS documentation from AV::Base | Xavier Noria | 2011-04-13 | 1 | -25/+1 |
| | |||||
* | removes debug_rjs from ActionView::Base | Xavier Noria | 2011-04-13 | 1 | -5/+0 |
| | |||||
* | s/ERb/ERB/g | Akira Matsuda | 2011-04-03 | 1 | -5/+5 |
| | | | | | The author of ERB sais, his eRuby implementation was originally named "ERb/ERbLight" and then renamed to "ERB" when started bundled as a Ruby standard lib. http://www2a.biglobe.ne.jp/~seki/ruby/erb.html | ||||
* | Merge branch 'master' of git://github.com/lifo/docrails | Xavier Noria | 2010-12-29 | 1 | -1/+1 |
|\ | |||||
| * | for ... in => each ... do | Akira Matsuda | 2010-12-25 | 1 | -1/+1 |
| | | |||||
* | | all tests pass | artemave | 2010-12-26 | 1 | -2/+2 |
|/ | |||||
* | Bring back config.action_view.cache_template_loading [#5847 state:resolved] | Piotr Sarnacki | 2010-12-16 | 1 | -0/+8 |
| | |||||
* | make it clear that recompilation happens only in | Neeraj Singh | 2010-11-27 | 1 | -2/+2 |
| | | | | development mode | ||||
* | render :once should consider the current controller prefix. | José Valim | 2010-10-14 | 1 | -0/+4 |
| | |||||
* | Clean up unused methods from AV::Base and pass in the template object on ↵ | José Valim | 2010-10-10 | 1 | -16/+13 |
| | | | | rendering. | ||||
* | Clean up the house before moving in the new furniture. | José Valim | 2010-10-10 | 1 | -3/+6 |
| | | | | This commit moves all the template rendering logic that was hanging around AV::Base to renderer objects. |