Re: [Rails-core] :id handling in render_component

2006-04-17 Thread Xavier Noria
On Apr 17, 2006, at 17:50, David Heinemeier Hansson wrote: 2. If it does need special handling because of some rationale I am not aware of, should we document :id has to go necessarily into options and not into :params? :id is special, just like :action and :controller is. Routing is built aro

[Rails-core] :id handling in render_component

2006-04-11 Thread Xavier Noria
The current implementation of render_component handles :id as a special parameter (newlines edited for email): # after r3563 (options[:params] || {}).with_indifferent_access.regular_update( "controller" => controller_name, "action" => options[:action], "id" => options[:id]) I notic