jp, On Tue, Dec 30, 2008 at 8:58 PM, Jeff Pritchard <[email protected]> wrote: > > Hi, > I'm trying to bring an "old" rails app up to 2.1. > > I'm getting this error when trying to access the app via an iFrame setup > we had working before for showing widgets on other domains pages: > ActionController::RoutingError (No route matches "/topics;summary" with > {:method=>:get}): > > /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.2/lib/action_controller/routing/recognition_optimisation.rb:67:in > `recognize_path' > > /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.2/lib/action_controller/routing/route_set.rb:385:in > `recognize' > > /usr/local/lib/ruby/gems/1.8/gems/actionpack-2.1.2/lib/action_controller/dispatcher.rb:148:in > `handle_request' > yadda yadda... > > > My routes.rb has this: > map.resources :topics, > { :member => { :rank_item => :put, > :rank_items => :put, > :widgets => :get }, > :collection => { :summary => :get }, > :new => { :copy => :post, > :link => :post } } > > > and my topics controller has a "summary" method. > > Any ideas what has changed that makes this no longer valid? The other > developer on the job set this part up, and I never quite understood it. > Seems to be a pre-cursor to the "modern" REST way of doing things, but > seems only to complicate something that would otherwise be simple. > > Anyway, enough bitching from me. Anyone know what's wrong here?
Rails 1.x used a semi-colon instead of just a slash to specify the action, so instead of "/topics;summary", the route will generate "topics/summary". I'm guessing whatever is calling the iframe has the url with the semi-colon hard-coded. Brandon -- -------------------------------------------------------------------------------- Training by Collective Idea: Ruby on Rails training in a vacation setting http://training.collectiveidea.com – San Antonio, TX – Jan 20-23 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

