Rails 1.X to 2.1 routing problem

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?

many thanks, jp

Jeff Pritchard wrote:

Hi, I'm trying to bring an "old" rails app up to 2.1.

many thanks, jp

Shameless bump. Apparently everyone was out partying last night and didn't see my plea for assistance...

thanks, jp

jp,