Hi all, I submitted a simple patch to fix the problem where plugin routes override application routes (it ought to be the other way around). The ticket is here: https://rails.lighthouseapp.com/projects/8994/tickets/2592-plugin-routes-override-application-routes In summary, I''ve added a new method to the Routes class to allow the Initializer to prepend the application routes to the configuration_files array, instead of pushing it on at the end. Plugin routes are added when the plugin is loaded, which occurs before the application routes are added. There are other ways to patch this, including breaking the add-plugin- routes into a seperate step in the initializer, but I felt that such changes might need to be made with more discussion about how the plugin loading process is structured as a whole. Anyway - please take a look at the patch, hopefully people will find it sufficient. Thanks, James
Mike Gunderloy
2009-May-01 15:28 UTC
Re: Fix precidence of app routes over plugin/engine routes
Looking at https://rails.lighthouseapp.com/projects/8994/tickets/1450-add-way-for-plugins-to-map-routes , I believe the current load order is by design, rather than "a problem". Rather than starting a debate over the default, it might be more useful to think about an expanded API as outlined in the earlier ticket. Mike On May 1, 2009, at 10:14 AM, James Adam wrote:> I submitted a simple patch to fix the problem where plugin routes > override application routes (it ought to be the other way around). The > ticket is here: https://rails.lighthouseapp.com/projects/8994/tickets/2592-plugin-routes-override-application-routes
James Adam
2009-May-01 16:50 UTC
Re: Fix precidence of app routes over plugin/engine routes
On May 1, 4:28 pm, Mike Gunderloy <larkw...@gmail.com> wrote:> Looking athttps://rails.lighthouseapp.com/projects/8994/tickets/1450-add-way-fo... > , I believe the current load order is by design, rather than "a > problem". Rather than starting a debate over the default, it might be > more useful to think about an expanded API as outlined in the earlier > ticket.While that ticket is definitely related, I''m not sure that the discussion indicates that the current functionality is by design. Perhaps David, Josh or Rich could clarify (as the original participants)? Personally, I''m in (naturally!) favour of a richer API that allows control over plugin route precedence, but this patch provides a substantial portion of the value for a fraction of the effort, and makes plugin routes a little better while we figure out a better API for the ideal functionality. I''m happy to contribute ideas and code to such an effort, but worry that focussing solely on it jeopardises making any small but beneficial changes in the near future. Hope that makes sense, James
James Adam
2009-May-01 17:58 UTC
Re: Fix precidence of app routes over plugin/engine routes
On May 1, 5:50 pm, James Adam <ja...@lazyatom.com> wrote:> On May 1, 4:28 pm, Mike Gunderloy <larkw...@gmail.com> wrote: > > > Looking athttps://rails.lighthouseapp.com/projects/8994/tickets/1450-add-way-fo... > > , I believe the current load order is by design, rather than "a > > problem". Rather than starting a debate over the default, it might be > > more useful to think about an expanded API as outlined in the earlier > > ticket.Complementing my patch on Ticket 1450, you might also be interested in the patch I added to Ticket 329, which provides an expanded API, as requested. As always, feedback is greatly appreciated, and thanks for engaging so far. James