Tagged Questions

1
vote
1answer
33 views

Accessing a resource in routes.rb by using attributes other than Id

I have the following in my routes.rb map.resources :novels do |novel| novel.resources :chapters end With the above defined route, I can access the chapters by using …
0
votes
3answers
37 views

Catch all routes not working using regular expression

I know that the first route will catch most of the paths. However, this will catch also /Product/Edit/blablabla (i'm using ASP.NET Routing Debugger): public static void …
2
votes
3answers
44 views

Rails: Nested resources conflict, how to scope the index action depending on the called route

Imagine you have two defined routes: map.resources articles map.resources categories, :has_many => :articles both accessible by helpers/paths articles_path # /articles category_articles_path(1) …
3
votes
3answers
89 views

Can someone please explain to me in clear, layman’s terms what the deal is with mapped resources and named routes in Ruby on Rails?

I've been using Ruby for the first time on a project at my work, so I am still somewhat learning the ropes (and loving every minute of it). While I understand the point of the map.connect functions …
0
votes
2answers
36 views

Testing rails routes: can’t find ActionController::Assertions::RoutingAssertions methods

I'm trying to test the routes on my rails 2.3.4 application. There are several sites that explain how to test routes, including the rails docs, but I'm getting errors following the instructions. …
0
votes
3answers
29 views

Trouble with Codeigniter Routes involving a query

Hey SO, I'm having a little trouble with a CodeIgniter route when there is a query (stuff after the ?) in the URI. I know it is good practice to replace queries with routes in CI, but I'm importing …
0
votes
1answer
65 views

CakePHP and admin routing with a ‘catch all’ action.

I'm trying to build a mini cms, whereby all urls go to the index action of a 'products' controller. The products_controller checks the url and treats it as a parameter, so '/widgets' would hit the …
0
votes
2answers
46 views

rails url rewriting

Hi, I have a controller person with an action searchPerson which takes a name as parameter and redirects to the person details if it founds the person else it renders the searchPerson.html.erb with …
0
votes
2answers
43 views

How to use rspec to test named routes?

Hi there, Given I have a named route: map.some_route '/some_routes/:id', :controller => 'some', :action => 'other' How do I use the routing spec file 'spec/routing/some_routing_spec.rb' to …
0
votes
2answers
88 views

Asp.Net MVC wrong URL being generated by Url.Action!

Hello Everyone, I search and read all the questions i could find here and in google, and I can't seem to find the answer! The Rout in questions is this: routes.MapRoute("Admin - Change Password", …
0
votes
1answer
30 views

Rails: Proxy Pass??

I've got a web-app that I want to migrate to Rails, which is currently just plain HTML with an Apache proxy to another server, running a custom database/webserver that serves the site's dynamic …
0
votes
2answers
27 views

Named Routes & link_to problem

I have the following routes set up: map.people 'people(.:format)', :conditions => { :method => :get }, :controller=>"people", :action=>"index" map.connect 'people(.:format)', :conditions …
0
votes
1answer
41 views

Rails RESTful Routes: override params[:id] or params[:model_id] defaults

Hello, I'm trying to understand how to change this rule directly on the map.resources: supposing I have a route: map.resource :user, :as => ':user', :shallow => true do |user| …
0
votes
0answers
11 views

Page_Validators is not defined problem

Hi i am using asp.net routing when using ValidatorEnable function in javascript i got this error 'Page_Validators is not defined' how to solve this? i am using this code in my global.asax file …
1
vote
1answer
94 views

ASP.NET MVC - Localization route

Hi, i'd like to create localized URL's for my site. They should obviously point to the same controller actions, but I want the first routevalues to -always- be the location/language specification. Is …

1 2 3 4 5 10 next
15 30 50 per page