6
votes
3answers
244 views
What is the best way in Rails to determine if two (or more) given URLs (as strings or hash options) are equal?
I'm wanting a method called same_url? that will return true if the passed in URLs are equal. The passed in URLs might be either params options hash or strings.
same_url?({:controller => :foo, …
5
votes
5answers
445 views
How can I have lowercase routes in ASP.NET MVC?
How can I have lowercase, plus underscore if possible, routes in ASP.NET MVC? So that I would have /dinners/details/2 call DinnersController.Details(2) and, if possible, /dinners/more_details/2 call …
5
votes
3answers
406 views
Trailing slashes in Pylons Routes
What is the best way to make trailing slashes not matter in the latest version of Routes (1.10)? I currently am using the clearly non-DRY:
map.connect('/logs/', controller='logs', action='logs')
…
4
votes
3answers
342 views
Why is this MVC route not working?
Hi folks,
here are two routes from my global.asax file. I'm trying to go to the second route and I'm getting a default 404 resource not found error.
When i remove the first route (listed in this …
4
votes
4answers
738 views
Do you have to mess with Rails’s “routes.rb” file?
I never touch routes.rb beyond calling map.root to set a default route. I've always been content to use URLs of the form...
/controller/action/perhaps_an_id
and it works fine.
Does this make me a …
4
votes
2answers
704 views
Asp.Net MVC - Best approach for “dynamic” routing
I am trying to come up with an approach to create "dynamic" routing. What I mean, exactly, is that I want to be able to assign the controller and action of a route for each hit rather than having it …
3
votes
3answers
91 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 …
3
votes
3answers
157 views
How to setup routing for my admin section in ASP.NET MVC?
Hi
Normally my URLs look like the standard: www.example.com/controller/action
Now I want to setup my administration section like:
www.example.com/admin/
www.example.com/admin/user/list
…
3
votes
1answer
102 views
Getting around dots in “pretty urls”
In my routes.rb I've got:
map.connect ':name',
:controller => 'my_classes',
:action => 'show'
And that works perfectly, so a url like this sends params like so:
…
3
votes
5answers
217 views
What’s the best guide to Rails routes for the totally confused?
I've been learning Rails but routes continues to confuse the heck out of me.
The thing that makes it most confusing, I think, is that the routes you define are sensitive to where they are defined in …
3
votes
4answers
997 views
How do I define RESTful routes in Rails for a resource which has multiple key fields?
My User model has the usual id primary key, but it also has a unique login which can be used as an identifier. Therefore, I would like to define routes so that users can be accessed either by id or …
3
votes
1answer
591 views
Asp.Net MVC Route Table and Controller Actions
I am creating a directory of sorts with members and their profiles. I'm using the MVC framework in .net.
I have a view that allows you to find members based on some criteria so my controller has a …
2
votes
2answers
43 views
Is it better to use routes or mod_rewrite to forward old URLs?
I recently changed some URLs in my Rails app and am curious if I'm better off using routes + controllers + redirect_to to forward the old URLs, or just use .htaccess with Apache's mod_rewrite?
I'm …
2
votes
3answers
58 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) …
2
votes
7answers
333 views
Algorithm Optimization - Shortest Route Between Multiple Points
Problem: I have a large collection of points. Each of these points has a list with references to other points with the distance between them already calculated and stored. I need to determine the …
