#6 ✓resolved
Ian White

namespace problem with RequestPathIntrospection

Reported by Ian White | September 29th, 2009 @ 08:33 AM

[submitted on behalf of Sergei Serdyuk]

RequestPathIntrospection#remove_namespace behaves incorrectly by stripping the front forward slash if controller_path != controller_name but namespace_segments is empty. Because of the lost slash #segments_for_path_and_keys would later chop of the first character of the first path segment. I added an additional check as following:

def remove_namespace(path)
  (controller_path != controller_name) && !namespace_segments.empty? ? path.sub(%r(^/#{namespace_segments.join('/')}), '') : path
end

Comments and changes to this ticket

Please Sign in or create a free account to add a new ticket.

With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.

New-ticket Create new ticket

Create your profile

Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป

resources_controller is a rails plugin that eases the pain of RESTful controllers.

People watching this ticket

Referenced by

Pages