aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/base.rb
Commit message (Collapse)AuthorAgeFilesLines
...
* Compile ActionController::Base.config's methods to avoid method_missing ↵thedarkone2010-09-271-2/+1
| | | | overhead.
* Tiny fixes to rdocAlexey Mahotkin2010-09-161-1/+1
|
* Removing RJS hackThiago Pradi2010-09-021-5/+0
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Remove NonConcattingString.José Valim2010-08-291-3/+0
|
* Unify routes naming by renaming router to routesPiotr Sarnacki2010-07-021-1/+1
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Move Rails::LogSubscriber to ActiveSupport::LogSubscriber, allowing ↵José Valim2010-06-241-0/+1
| | | | frameworks like ActiveRecord and ActiveResource to log outsude Rails::Application [#4816 state:resolved]
* In ActionView::TestCase::Behavior, assign variables right beforeDavid Chelimsky2010-06-231-1/+5
| | | | | | | | | | | rendering the view. - Previously, _assigns were locked down the first time _view was referenced. [#4931 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Adds title and description where needed.Rizwan Reza2010-06-161-4/+6
|
* removes spurious .rb in requireXavier Noria2010-06-121-1/+1
|
* adds missing require for having ActiveSupport::InheritableOptions definedXavier Noria2010-06-111-0/+1
|
* Remove punctuate_body! No code in lib was using it and it had no documentation.José Valim2010-06-101-6/+0
|
* class_attribute is not a direct replacement of class_inheritable_*.José Valim2010-06-101-10/+7
| | | | | | If you are setting a hash or an array in class_attribute or you need to freeze it, to ensure people won't modify it in place or you need to dup it on inheritance.
* Make AP test suite green once again and speed up performance in layouts ↵José Valim2010-06-071-1/+1
| | | | lookup for some cases.
* Optimize LookupContextwycats2010-06-041-0/+1
|
* Base options cant live in lazy loaded helpers as they then wont be available ↵David Heinemeier Hansson2010-05-311-0/+4
| | | | to set for config
* Avoid instance variable @output_buffer not initializedSantiago Pastorino2010-05-191-1/+2
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Only run load hooks once a file has been fully loaded.Nathan Weizenbaum2010-04-271-2/+2
| | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* revises some <%= in rdocXavier Noria2010-04-051-1/+2
|
* Refactored url_for in AV to have its own instances of the helpers instead of ↵wycats2010-04-031-1/+6
| | | | proxying back to the controller. This potentially allows for more standalone usage of AV. It also kicked up a lot of dust in the tests, which were mocking out controllers to get this behavior. By moving it to the view, it made a lot of the tests more standalone (a win)
* Replace the placeholder base_hook API with on_load. To specify some code thatwycats2010-03-291-1/+1
| | | | | | | | should run during framework load do: ActiveSupport.on_load(:action_controller) do # Code run in the context of AC::Base end
* Move application configuration to the application configuration object, ↵José Valim2010-03-261-2/+2
| | | | remove railtie_name and engine_name and allow to set the configuration object.
* Eliminate an error from an implicit dependency on AV::Basewycats2010-03-191-21/+0
|
* Each controller class has it's own view context subclass. This removes the ↵Carlhuda2010-03-181-32/+0
| | | | need for ActionView::Base.for_controller
* All tests pass without memoizing view_contextCarlhuda2010-03-181-2/+0
|
* Use Array.wrap not Array()Jeremy Kemper2010-03-171-1/+2
|
* Modify assert_template to use notifications. Also, remove ↵Carlhuda2010-03-171-2/+7
| | | | ActionController::Base#template since it is no longer needed.
* Remove some 1.9 warnings (resulting in some fixed bugs). Remaining AM ↵wycats2010-03-171-0/+1
| | | | warnings are in dependencies.
* Do not always include the named URL helpers into AC::Base and AV::Base.Carl Lerche2010-03-161-0/+4
|
* Add deprecation notices for <% %>.Carlhuda2010-03-151-0/+3
| | | | | | | | | | | | | | | | * The approach is to compile <% %> into a method call that checks whether the value returned from a block is a String. If it is, it concats to the buffer and prints a deprecation warning. * <%= %> uses exactly the same logic to compile the template, which first checks to see whether it's compiling a block. * This should have no impact on other uses of block in templates. For instance, in <% [1,2,3].each do |i| %><%= i %><% end %>, the call to each returns an Array, not a String, so the result is not concatenated * In two cases (#capture and #cache), a String can be returned that should *never* be concatenated. We have temporarily created a String subclass called NonConcattingString which behaves (and is serialized) identically to String, but is not concatenated by the code that handles deprecated <% %> block helpers. Once we remove support for <% %> block helpers, we can remove NonConcattingString.
* Finish cleaning up rendering stack from views and move assigns evaluation to ↵José Valim2010-03-121-9/+0
| | | | controller (so plugins and/or controllers can overwrite just one method).
* Allow anything that responds to render to be given as :template and use ↵José Valim2010-03-121-1/+1
| | | | find_template instead of find in views.
* Optimize and clean up how details key get expired.José Valim2010-03-101-1/+1
|
* Clean LookupContext API.José Valim2010-03-081-1/+1
|
* Merge master.José Valim2010-03-081-0/+2
|\
| * Make many parts of Rails lazy. In order to facilitate this,wycats2010-03-071-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | add lazy_load_hooks.rb, which allows us to declare code that should be run at some later time. For instance, this allows us to defer requiring ActiveRecord::Base at boot time purely to apply configuration. Instead, we register a hook that should apply configuration once ActiveRecord::Base is loaded. With these changes, brings down total boot time of a new app to 300ms in production and 400ms in dev. TODO: rename base_hook
* | Speed up performance in resolvers by adding fallbacks just when required.José Valim2010-03-081-28/+18
| |
* | Rename Template::Lookup to LookupContext.José Valim2010-03-081-19/+8
| |
* | More refactoring on the views side of rendering.José Valim2010-03-081-1/+1
| |
* | Move layout lookup to views.José Valim2010-03-081-5/+1
| |
* | Added template lookup responsible to hold all information used in template ↵José Valim2010-03-071-53/+25
|/ | | | lookup.
* Tweak how ActionPack handles InheritableOptionsCarl Lerche2010-03-031-1/+1
|
* Start refactoring the method of configuring ActionViewCarlhuda2010-03-031-10/+2
|
* Delegate formats to the controllerCarlhuda2010-03-011-2/+23
|
* Renamed LocalizedCache to DetailsCache.José Valim2010-02-241-1/+1
|
* Include missing modules.José Valim2010-02-221-2/+2
|
* Convert to class_attributeJeremy Kemper2010-02-011-1/+2
|
* For performance reasons, you can no longer call html_safe! on Strings. ↵Yehuda Katz2010-01-311-1/+1
| | | | | | | | | | | | Instead, all Strings are always not html_safe?. Instead, you can get a SafeBuffer from a String by calling #html_safe, which will SafeBuffer.new(self). * Additionally, instead of doing concat("</form>".html_safe), you can do safe_concat("</form>"), which will skip both the flag set, and the flag check. * For the first pass, I converted virtually all #html_safe!s to #html_safe, and the tests pass. A further optimization would be to try to use #safe_concat as much as possible, reducing the performance impact if we know up front that a String is safe.
* Improve missing template error messages a little bit.José Valim2010-01-311-6/+11
|
* Fix t('.helper').José Valim2010-01-261-2/+4
|
* Make @controller an internal ivar in the viewJoshua Peek2010-01-221-8/+6
|