Hi all! I have the following URL structure: /informations # Just a normal controller without any scaffolding functionality /informations/encyclopedia # Another normal controller /informations/news # A scaffold controller which scaffolds the News model My routes look like this: map.namespace :informations do |informations| informations.encyclopedia ''encyclopedia/:action'', :controller => ''encyclopedia'' informations.resources :news end I would expect now to be able to use the following URL path helpers: informations_url # Does not work! informations_encyclopedia_url # Does not work! informations_news_path # Does work! Why do the 1st two not work? Thanks Josh -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---