| Commit message (Expand) | Author | Age | Files | Lines |
* | removed deprecated methods, and related tests, from ActionPack | Josh Kalderimis | 2011-05-24 | 1 | -6/+1 |
* | removes support for render :update | Xavier Noria | 2011-04-13 | 1 | -9/+0 |
* | Ensure render is case sensitive even on systems with case-insensitive filesys... | José Valim | 2011-02-08 | 1 | -0/+10 |
* | Move ETag and ConditionalGet logic from AD::Response to the middleware stack. | José Valim | 2010-10-03 | 1 | -118/+0 |
* | Redefine duplicated test name. | Emilio Tagua | 2010-09-28 | 1 | -1/+1 |
* | Remove more warnings by initializing variables in test. | Emilio Tagua | 2010-09-28 | 1 | -0/+6 |
* | Remove more warnings: no need to define attr_accessor if already exists. Init... | Emilio Tagua | 2010-09-28 | 1 | -0/+1 |
* | Fix header capitalization by explicitly upcasing first letter of every word, ... | Maxim Chernyak | 2010-09-18 | 1 | -0/+11 |
* | Removed deprecated RouteSet API, still many tests fail | Piotr Sarnacki | 2010-09-05 | 1 | -1/+1 |
* | code gardening: we have assert_(nil|blank|present), more concise, with better... | Xavier Noria | 2010-08-17 | 1 | -6/+6 |
* | Deletes trailing whitespaces (over text files only find * -type f -exec sed '... | Santiago Pastorino | 2010-08-14 | 1 | -2/+2 |
* | Make sure a namespaced <%= render form %> still renders the _form partial [#4... | Jan De Poorter | 2010-06-20 | 1 | -0/+11 |
* | edit pass: the names of Rails components have a space, ie, "Active Record", n... | Xavier Noria | 2010-06-14 | 1 | -1/+1 |
* | Revert "Moved encoding work in progress to a feature branch." | wycats | 2010-05-17 | 1 | -2/+2 |
* | Moved encoding work in progress to a feature branch. | Jeremy Kemper | 2010-05-16 | 1 | -2/+2 |
* | Significantly improved internal encoding heuristics and support. | wycats | 2010-05-16 | 1 | -2/+2 |
* | Fixed 1 failure and 2 errors in ActionPack testsuite [#4613 state:commited] | rohit | 2010-05-16 | 1 | -2/+2 |
* | partial counters with :as [#2804 state:resolved] | Jeff Kreeftmeijer | 2010-05-15 | 1 | -0/+9 |
* | Make render :partial, :layout consistent between AC and AV | Carlhuda | 2010-03-18 | 1 | -11/+1 |
* | All tests pass without memoizing view_context | Carlhuda | 2010-03-18 | 1 | -1/+7 |
* | Modify assert_template to use notifications. Also, remove ActionController::B... | Carlhuda | 2010-03-17 | 1 | -3/+3 |
* | Ensure controller filters are executed before stuff starts to happen. | José Valim | 2010-03-13 | 1 | -0/+14 |
* | Clean LookupContext API. | José Valim | 2010-03-08 | 1 | -3/+3 |
* | Fix render :file => "#{Rails.root}/public/404.html", :status => :not_found. C... | Yehuda Katz | 2010-02-23 | 1 | -0/+9 |
* | Make Railties tests green again. | José Valim | 2010-02-17 | 1 | -1/+1 |
* | Ensure render :text => resource first tries to invoke :to_text on it | José Valim | 2010-02-16 | 1 | -0/+9 |
* | Remove ActionView inline logging to ActiveSupport::Notifications and create A... | José Valim | 2009-12-26 | 1 | -31/+1 |
* | AD::StatusCodes support is now part of rack | Joshua Peek | 2009-12-22 | 1 | -2/+2 |
* | Use new routing dsl in tests | Joshua Peek | 2009-12-08 | 1 | -15/+15 |
* | Ensure Cache-Control max-age is an integer | Jeremy Kemper | 2009-12-02 | 1 | -1/+1 |
* | Ruby 1.9: resolve constant lookup issues | Jeremy Kemper | 2009-11-04 | 1 | -1/+1 |
* | Fixes expires_now and cleans things up a bit | Yehuda Katz | 2009-10-26 | 1 | -0/+10 |
* | Switch to on-by-default XSS escaping for rails. | Michael Koziarski | 2009-10-08 | 1 | -1/+1 |
* | Cleanup route reloading in tests. Prefer with_routing over using ActionContro... | Joshua Peek | 2009-08-16 | 1 | -8/+10 |
* | More cleanup of ActionView and reduction in need for blocks in some cases: | Yehuda Katz | 2009-08-15 | 1 | -9/+0 |
* | Clean up partial object some more; replace passing around a block to a single... | Yehuda Katz | 2009-08-09 | 1 | -1/+0 |
* | Add destroyed? to ActiveRecord, include tests for polymorphic urls for destro... | José Valim | 2009-08-07 | 1 | -5/+7 |
* | Add nagivational behavior to respond_with. | José Valim | 2009-08-07 | 1 | -0/+15 |
* | Replace _render_template_with_layout with _render_template since the layout i... | Yehuda Katz | 2009-08-07 | 1 | -1/+2 |
* | Update cache_control to be a Hash of options that is used to build the header. | Yehuda Katz | 2009-08-02 | 1 | -1/+1 |
* | Remove deprecated implicit ivar assignment | Joshua Peek | 2009-06-25 | 1 | -7/+0 |
* | Finish making pending tests pass | Yehuda Katz + Carl Lerche | 2009-06-17 | 1 | -7/+7 |
* | Modify render_test's determine_layout to match RJS | Yehuda Katz + Carl Lerche | 2009-05-22 | 1 | -3/+1 |
* | Cleaning up more render tests | Yehuda Katz + Carl Lerche | 2009-05-14 | 1 | -0/+5 |
* | Ported over render :file tests. | Yehuda Katz + Carl Lerche | 2009-05-13 | 1 | -320/+14 |
* | Implemented redirects and partial rendering in new base. | Yehuda Katz + Carl Lerche | 2009-05-12 | 1 | -2/+2 |
* | Merge branch 'master' into wip_abstract_controller | Yehuda Katz + Carl Lerche | 2009-05-11 | 1 | -5/+5 |
|\ |
|
| * | Functional test runner finalizes response just like the integration test runn... | Joshua Peek | 2009-05-02 | 1 | -11/+11 |
* | | Aliased AbstractController::ActionNotFound to ActionController::UnknownAction | Yehuda Katz + Carl Lerche | 2009-05-11 | 1 | -2/+3 |
* | | Ported ConditionalGet to new Base | Yehuda Katz + Carl Lerche | 2009-05-11 | 1 | -4/+4 |