You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bring abstract_controller up to date with rails/master
Resolved all the conflicts since 2.3.0 -> HEAD. Following is a list
of commits that could not be applied cleanly or are obviated with the
abstract_controller refactor. They all need to be revisited to ensure
that fixes made in 2.3 do not reappear in 3.0:
2259ecf
AR not available
* This will be reimplemented with ActionORM or equivalent
06182ea
implicitly rendering a js response should not use the default layout
[rails#1844 state:resolved]
* This will be handled generically
893e9eb
Improve view rendering performance in development mode and reinstate
template recompiling in production [rails#1909 state:resolved]
* We will need to reimplement rails-dev-boost on top of the refactor;
the changes here are very implementation specific and cannot be
cleanly applied. The following commits are implicated:
199e7503942cb4f8ea9f8e3b166aae9f25844423120cb020b
workaround for picking layouts based on wrong view_paths
[rails#1974 state:resolved]
* The specifics of this commit no longer apply. Since it is a two-line
commit, we will reimplement this change.
8c5cc66
make action_controller/layouts pick templates from the current instance's
view_paths instead of the class view_paths [rails#1974 state:resolved]
* This does not apply at all. It should be trivial to apply the feature
to the reimplemented ActionController::Base.
87e8b16
fix HTML fallback for explicit templates [rails#2052 state:resolved]
* There were a number of patches related to this that simply compounded
each other. Basically none of them apply cleanly, and the underlying
issue needs to be revisited. After discussing the underlying problem
with Koz, we will defer these fixes for further discussion.
Copy file name to clipboardExpand all lines: actionpack/CHANGELOG
+32-1
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,35 @@
1
-
*2.3.0 [Edge]*
1
+
*Edge*
2
+
3
+
* Fixed that TestResponse.cookies was returning cookies unescaped #1867 [Doug McInnes]
4
+
5
+
6
+
*2.3.2 [Final] (March 15, 2009)*
7
+
8
+
* Fixed that redirection would just log the options, not the final url (which lead to "Redirected to #<Post:0x23150b8>") [DHH]
9
+
10
+
* Added ability to pass in :public => true to fresh_when, stale?, and expires_in to make the request proxy cachable #2095 [Gregg Pollack]
11
+
12
+
* Fixed that passing a custom form builder would be forwarded to nested fields_for calls #2023 [Eloy Duran/Nate Wiger]
13
+
14
+
* Form option helpers now support disabled option tags and the use of lambdas for selecting/disabling option tags from collections #837 [Tekin]
15
+
16
+
* Added partial scoping to TranslationHelper#translate, so if you call translate(".foo") from the people/index.html.erb template, you'll actually be calling I18n.translate("people.index.foo") [DHH]
17
+
18
+
* Fix a syntax error in current_page?() that was prevent matches against URL's with multiple query parameters #1385, #1868 [chris finne/Andrew White]
19
+
20
+
* Added localized rescue template when I18n.locale is set (ex: public/404.da.html) #1835 [José Valim]
21
+
22
+
* Make the form_for and fields_for helpers support the new Active Record nested update options. #1202 [Eloy Duran]
23
+
24
+
<% form_for @person do |person_form| %>
25
+
...
26
+
<% person_form.fields_for :projects do |project_fields| %>
27
+
<% if project_fields.object.active? %>
28
+
Name: <%= project_fields.text_field :name %>
29
+
<% end %>
30
+
<% end %>
31
+
<% end %>
32
+
2
33
3
34
* Added grouped_options_for_select helper method for wrapping option tags in optgroups. #977 [Jon Crawford]
0 commit comments