Do any deprecations need to go in to the render_* methods so they can be reworked post 1.2? Not sure if there are plans for that, but looking at the call tree for rendering an action produces quite a journey through the rendering code. Bob Silva http://i.nfectio.us/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group. To post to this group, send email to rubyonrails-core@googlegroups.com To unsubscribe from this group, send email to rubyonrails-core-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-core -~----------~----~----~----~------~----~------~--~---
Those methods are there for performance and separation of concern reasons. They''re marked :nodoc:, though, and are protected. So if you call them directly, you''re relying on something that may well change in the future. Consider them private and act accordingly. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group. To post to this group, send email to rubyonrails-core@googlegroups.com To unsubscribe from this group, send email to rubyonrails-core-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-core -~----------~----~----~----~------~----~------~--~---