Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Improve performance of the rendering stack by freezing formats as a sign ↵ | José Valim | 2010-03-19 | 1 | -2/+13 | |
| | | | | that they shouldn't be further modified. | |||||
* | remove duplicated self.view_paths assingment on controller tests [#4206 ↵ | Santiago Pastorino | 2010-03-18 | 1 | -2/+2 | |
| | | | | | | state:commited] Signed-off-by: wycats <wycats@gmail.com> | |||||
* | Return a valid Rack response from bare ActionController::Metal | Carlhuda | 2010-03-18 | 1 | -0/+27 | |
| | ||||||
* | 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 | 2 | -3/+13 | |
| | ||||||
* | Deleting and setting a cookie in the same request was broken | Mathias Biilmann Christensen | 2010-03-17 | 1 | -0/+11 | |
| | | | | | | | | Made sure to remove a cookie from @deleted_cookies when set [#4211 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | |||||
* | Modify assert_template to use notifications. Also, remove ↵ | Carlhuda | 2010-03-17 | 4 | -16/+18 | |
| | | | | ActionController::Base#template since it is no longer needed. | |||||
* | Remove unneeded AV::Base and AV::Template monkey-patches | Carlhuda | 2010-03-17 | 1 | -3/+2 | |
| | ||||||
* | Fix rendering of HTML partials inside JS templates [#4197 status:resolved] | José Valim | 2010-03-16 | 1 | -0/+7 | |
| | ||||||
* | Some more tweaks on <% %>. | Carlhuda | 2010-03-16 | 1 | -4/+4 | |
| | | | | * The cache helper is now semantically "mark this region for caching" * As a result, <% x = cache do %> no longer works | |||||
* | Break a window :/ | Jeremy Kemper | 2010-03-15 | 1 | -1/+1 | |
| | ||||||
* | Add deprecation notices for <% %>. | Carlhuda | 2010-03-15 | 1 | -13/+2 | |
| | | | | | | | | | | | | | | | | * 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. | |||||
* | Don't force singularization of singleton resource names, e.g. /preferences ↵ | Andrew White | 2010-03-15 | 1 | -0/+7 | |
| | | | | | | [#4089 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com> | |||||
* | read_ and write_fragment cache preserve html safety yet cache strings only | Jeremy Kemper | 2010-03-14 | 1 | -0/+13 | |
| | ||||||
* | Ensure controller filters are executed before stuff starts to happen. | José Valim | 2010-03-13 | 1 | -0/+14 | |
| | ||||||
* | Add tests for lookup context. | José Valim | 2010-03-11 | 1 | -1/+1 | |
| | ||||||
* | skip_relative_url_root url_for option is dead | Joshua Peek | 2010-03-09 | 1 | -1/+1 | |
| | ||||||
* | RouteSet#rewrite => url_for | Joshua Peek | 2010-03-09 | 2 | -3/+3 | |
| | ||||||
* | Move AC::UrlRewriter onto route set | Joshua Peek | 2010-03-09 | 2 | -7/+3 | |
| | ||||||
* | Reinstate dom_id in controllers. | Justin Ko | 2010-03-09 | 1 | -0/+8 | |
| | | | | | | | [#3040 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net> | |||||
* | Get rid of the instance-level URL rewriter | wycats | 2010-03-09 | 2 | -30/+16 | |
| | ||||||
* | Reinstate default_url_options and remove url_options= writer | Jeremy Kemper | 2010-03-08 | 1 | -23/+19 | |
| | ||||||
* | Clean LookupContext API. | José Valim | 2010-03-08 | 1 | -3/+3 | |
| | ||||||
* | Get rid of relative_url_path in favor of respecting SCRIPT_NAME. Also added ↵ | Carlhuda | 2010-03-04 | 1 | -2/+2 | |
| | | | | a way to specify a default SCRIPT_NAME when generating URLs out of the context of a request. | |||||
* | Refactor cache_store to use ActionController config | Carlhuda | 2010-03-04 | 2 | -9/+15 | |
| | ||||||
* | Deprecated ActionController::Base.session_options= and ↵ | Carlhuda | 2010-03-04 | 1 | -2/+3 | |
| | | | | ActionController::Base.session_store= in favor of a config.session_store method (which takes params) and a config.cookie_secret variable, which is used in various secret scenarios. The old AC::Base options will continue to work with deprecation warnings. | |||||
* | Clarify cookie jar test | Jeremy Kemper | 2010-03-04 | 1 | -6/+1 | |
| | ||||||
* | Fixes test ordering bug (ht: evan) | wycats | 2010-03-04 | 1 | -0/+3 | |
| | ||||||
* | Merge branch 'configuration_refactor' | Carl Lerche | 2010-03-03 | 7 | -43/+23 | |
|\ | ||||||
| * | ActionController::Base.use_accept_header is not actually used anymore, so ↵ | Carl Lerche | 2010-03-03 | 3 | -19/+0 | |
| | | | | | | | | let's deprecate it. | |||||
| * | ActionDispatch::Request deprecates #request_uri | Carl Lerche | 2010-03-03 | 2 | -2/+2 | |
| | | | | | | | | * Refactored ActionPatch to use fullpath instead | |||||
| * | Fix tests for the request refactor | Carl Lerche | 2010-03-03 | 2 | -3/+6 | |
| | | ||||||
| * | Tweak the semantic of various URL related methods of ActionDispatch::Request | Carlhuda | 2010-03-03 | 2 | -6/+8 | |
| | | ||||||
| * | Work on deprecating ActionController::Base.relative_url_root | Carlhuda | 2010-03-03 | 1 | -11/+4 | |
| | | ||||||
| * | Move session_store and session_options to the AC configuration object | Carlhuda | 2010-03-03 | 1 | -2/+3 | |
| | | ||||||
* | | don't depend on the order of cookies (Hash ordering bug) | Yehuda Katz | 2010-03-03 | 1 | -1/+1 | |
|/ | ||||||
* | Fix failing Action Pack tests | Carlhuda | 2010-03-02 | 1 | -1/+2 | |
| | ||||||
* | No longer add missing leading / on path args to assert_redirected_to. ↵ | Jeremy Kemper | 2010-03-02 | 1 | -2/+4 | |
| | | | | Deprecated in 2.3.6. | |||||
* | Action Mailer setup obviated by test bundle | Jeremy Kemper | 2010-03-02 | 1 | -12/+1 | |
| | ||||||
* | Remove implicit controller namespacing from new dsl | Joshua Peek | 2010-02-28 | 2 | -4/+8 | |
| | ||||||
* | 1.9 seems to have a bug involving cloned classes and super. Fix it by not ↵ | Carlhuda | 2010-02-26 | 1 | -8/+12 | |
| | | | | cloning (and instead creating classes on demand). The 1.9 bug should be investigated. | |||||
* | If IntegrationSession is initialized with an objects that responds to ↵ | Carlhuda | 2010-02-26 | 3 | -6/+2 | |
| | | | | #routes, automatically extend the URL helpers from the RouteSet onto it | |||||
* | Setting UrlFor in with_routing is no longer needed now that it's not global | Carlhuda | 2010-02-26 | 1 | -4/+5 | |
| | ||||||
* | Silence test deprecation warnings | Carlhuda | 2010-02-26 | 1 | -16/+55 | |
| | ||||||
* | Rename named_url_helpers to url_helpers and url_helpers to url_for | Carlhuda | 2010-02-26 | 4 | -9/+9 | |
| | ||||||
* | Fix controller_path returnsing an empty string in Ruby 1.8.7 [#4036 ↵ | José Valim | 2010-02-26 | 1 | -0/+9 | |
| | | | | status:resolved] | |||||
* | Rename metaclass to singleton_class | Carlhuda | 2010-02-25 | 3 | -4/+4 | |
| | ||||||
* | Get URL helpers working again in integration tests. | Carlhuda | 2010-02-25 | 1 | -17/+7 | |
| | ||||||
* | Continued effort to deglobalize the router | Carlhuda | 2010-02-25 | 2 | -27/+8 | |
| | ||||||
* | Fix all of AP's tests with the non global router | Carlhuda | 2010-02-25 | 1 | -2/+4 | |
| |