Questions about mapping URLs to Controllers and Actions.

learn more… | top users | synonyms

66
votes
15answers
11k views

No route matches “/users/sign_out” devise rails 3

I've installed devise on my app and applied the following in my application.html.erb file: <div id="user_nav"> <% if user_signed_in? %> Signed in as <%= current_user.email ...
23
votes
6answers
4k 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 ...
13
votes
2answers
341 views

Failing ASP.NET MVC route. Is this a bug or corner case?

I have an ASP.NET MVC 3 application where users can post suggestions along the lines of "bla bla would be better if yada yada yada". For the suggestion detail page I have defined a nice SEO friendly ...
13
votes
3answers
2k views

How do I write a Rails 3.1 engine controller test in rspec?

I have written a Rails 3.1 engine with the namespace Posts. Hence, my controllers are found in app/controllers/posts/, my models in app/models/posts, etc. I can test the models just fine. The spec for ...
13
votes
4answers
428 views

RESTful design, how to name pages outside CRUD et al?

I'm working on a site that has quite a few pages that fall outside my limited understanding of RESTful design, which is essentially: Create, Read, Update, Delete, Show, List Here's the question: ...
12
votes
5answers
4k views

“The resource cannot be found.” error when there is a “dot” at the end of the url

I'm using ASP .NET MVC Beta and I get the HTTP 404 (The resource cannot be found) error when I use this url which has a "dot" at the end: http://localhost:81/Title/Edit/Code1. If I remove the dot at ...
11
votes
1answer
2k views

Rails routing to handle multiple domains on single application

I've been unable to find a workable solution to this problem, despite several similar questions here and elsewhere. It seems likely that this question hasn't been answered for Rails 3, so here goes: ...
11
votes
4answers
2k views

ASP.NET MVC - Localization route

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 this ...
11
votes
3answers
10k views

How can i make a catch all route to handle '404 page not found' queries for ASP.NET MVC?

Is it possible to create a final route that catches all .. and bounces the user to a 404 view in ASP.NET MVC? NOTE: I don't want to set this up in my IIS settings.
10
votes
1answer
398 views

Playframework route file: Separate Production routes from Dev routes

Is there a way in Play to annotate routes to inform that a certain section/group routes is only available in dev or prod mode
10
votes
4answers
429 views

Adding ID and title to URL slugs in ASP.NET MVC

How do you redirect a request in ASP.NET MVC to its correct canonical version if part of the URL is missing? Using Stack Overflow as an example, the site adds the question title to the end of its ...
10
votes
3answers
2k views

How to Generate absolute urls with https in MVC3?

I am using MVC3 and am trying to serve content from https, the problem is that when I call Url.Content the files are still served from http using a relative url. I thought this problem was addressed ...
10
votes
5answers
2k views

What is the difference between _url and _path while using the routes in rails

When we define routes in routes.rb using the name like map.some_link we can use the link in two ways- some_link_url() some_link_path. What are the differences between the two? Which is more secure to ...
10
votes
3answers
6k views

Shorten Zend Framework Route Definitions

How can I shorten the definition of my custom routes in Zend Framework? I currently have this as definition: $route = new Zend_Controller_Router_Route( ":module/:id", array( "controller" => ...
10
votes
3answers
12k views

ASP.NET MVC AcceptVerbs and registering routes

do I have to register the HttpVerb constraint in my route definition (when i'm registering routes) if i have decorated my action method with the [AcceptVerbs(..)] attribute already? eg. i have this. ...
9
votes
1answer
369 views

OData-like routes in ASP.NET MVC

Is there a simple way for creating asp.net mvc application with routes based on OData uri conventions http://www.odata.org/developers/protocols/uri-conventions ? It's like a just adding new html ...
9
votes
1answer
565 views

Implementing account scoping

Currently in my application I have the concepts of projects and users. Now I'm wanting to implement an account scope for these so that both projects and users belong to an account rather than to ...
9
votes
4answers
1k views

Rails Restful Routing and Subdomains

I wondered if there were any plugins or methods which allow me to convert resource routes which allow me to place the controller name as a subdomain. Examples: map.resources :users map.resource ...
9
votes
3answers
6k views

Possible to create this redirecting route in Rails?

Is it possible to do a redirect in the routes file of a Rails app? Specifically, I'd like to forward /j/e to /javascripts/embed.js Right now the only way I can think to do it is to create a j ...
8
votes
1answer
585 views

Listing 'rake routes' for a mountable Rails 3.1 engine

I'm working on a mountable engine for use with Rails 3.1, and I want to list the engine's routes. I created the engine using: $ rails plugin new rails_blog_engine --mountable And edited the ...
8
votes
1answer
388 views

Devise (or OmniAuth) appending “#_” to URL after sign in

I'm using Devise and OmniAuth (Facebook) in a Rails 3 app. I just started noticing this behavior recently. When a user signs in, he is redirected to his dashboard, however, the characters "#_" are ...
8
votes
4answers
295 views

RESTfully Nesting Resource Routes with Single Identifiers

In my Rails app I have a fairly standard has_many relationship between two entities. A Foo has zero or more Bars; a Bar belongs to exactly one Foo. Both Foo and Bar are identified by a single integer ...
8
votes
7answers
3k views

Codeigniter Routes regex - using dashes in controller/method names

I'm looking for a one line route to route dashed controller and method names to the actual underscored controller and method names. For example the URL /controller-name/method-name-which-is-long/ ...
8
votes
4answers
3k 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 ...
7
votes
2answers
2k views

rails 3.1 ActionController::RoutingError (No route matches [GET] “/assets/rails.png”):

Standard new rails app has issue showing the rails.png ActionController::RoutingError (No route matches [GET] "/assets/rails.png"): I have tried moving the .png around to various places in assets ...
7
votes
3answers
303 views

Rails 3 routing: is there a way to remove a route from Rails.application.routes?

devise_for creates the usual routes, including a DELETE route. Because of a nasty bug on our site (related to IE 8 not behaving itself!), we just want to remove the DELETE route altogether. We have ...
7
votes
1answer
243 views

Storing Rails 3 Routes in Database

By question is actually pretty simple. I'd just like to know if anybody was able to load their Rails 3 routes into a database so that they could be manipulated without server access from an admin ...
7
votes
1answer
352 views

Ruby on Rails. Unicode routes

Is it possible to set a Unicode string as a segment of a path in Rails? I try the following: # app/controllers/magazines_controller.rb class MagazinesController < ApplicationController ...
7
votes
4answers
3k views

Devise logged in root route rails 3

Heyya guys. So i thought about this coolio idea, if you are logged in then you get some sort of dashboard, else you get an information/login/sign up page.. So how do i do that.. I mostly wants to do ...
7
votes
2answers
718 views

Getting gateway to use for a given ip in ANSI C

I have looked around like crazy but don't get a real answer. I got one example, but that depended on the individuals own library so not much good. At first I wanted to get the default gateway of an ...
7
votes
2answers
3k views

How to rename the default identifier param “id” in Rails' map.resources()?

I like all the default routes that are generated by Rail's map.resources. But, there are cases where I would like to use a non-numeric identifier in my routes. For example, If have a nested route ...
7
votes
3answers
2k views

Why is this MVC route not working?

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 example), it ...
7
votes
2answers
3k 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 ...
6
votes
2answers
532 views

rails routing aliases

I have a model called Spaces which has different types of places... such as Bars, Restaurants, etc. It has the same columns, same, model, controller, etc. no fancy STI, I just have one field called ...
6
votes
2answers
3k views

ASP.NET MVC 3 Redirect From Action Filter Attribute

What is the best to do a redirect in an ActionFilterAttribute. I have an ActionFilterAttribute called IsAuthenticatedAttributeFilter and that checked the value of a session variable. If the variable ...
6
votes
3answers
441 views

Is there a way to make “rake routes” look better?

I am always forced to make my terminal window two dual monitors wide just to see read them right. I'm not a stickler for buttery GUI's, but this is bordering retarded. Is there a pretty print for ...
6
votes
2answers
534 views

Can an ASP.NET MVC2 site have an optional enum route parameter? If so, can we default that value if not provided?

can I have a route like... routes.MapRoute( "Boundaries-Show", "Boundaries", new { controller = "Boundaries", action = "Show", locationType = ...
6
votes
4answers
2k views

Recognize routes in rails console Session

Say I have a router helper that I want more info on, like blogs_path, how do I find out the map statements behind that in console. I tried generate and recognize and I got unrecognized method error, ...
6
votes
1answer
1k views

Problem with Url.Content in ASP.NET MVC on Default Route

If I use the following line in my default view /Home/Index <script language="javascript" src="<%=Url.Content("~/Scripts/jquery-1.3.2.js")%>" type="text/javascript" ></script> If I ...
6
votes
4answers
1k 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) ...
6
votes
2answers
4k views

Adding sub domain based routes in Zend framework

I am newbie to Zend framework, I am using .ini file to add routes in my application. I have 2 routes for different modules which resources.router.routes.news_view.type = ...
6
votes
1answer
4k views

RouteTable.Routes RouteCollection?

The example I see everywhere for MVC-style routing is something like this: void Application_Start(object sender, EventArgs e) { RegisterRoutes(RouteTable.Routes); } public static void ...
6
votes
7answers
12k views

Is there an ASP.NET MVC HtmlHelper for image links? [closed]

Possible Duplicate: ASP.NET MVC Ajax.ActionLink with Image The Html.RouteLink() HtmlHelper works great for text links. But what's the best way to link an image?
6
votes
1answer
881 views

Is there a RESTful way to configure routes for habtm?

In Rails you can use nested routes to create RESTful routes for has_one and has_many relationships. Examples can be found on the Rails Guides I'd like to ask if there is a good way to configure ...
6
votes
3answers
1k 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') ...
6
votes
3answers
484 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
1answer
80 views

How to handle this routing?

I have URL's like: /nl/blog (shows overview of blog items) /nl/blog/loont-lekker-koken-en-wordt-eerlijkheid-beloond (shows blog item with urltitle) /nl/blog/waarom-liever-diëtist-dan-kok (shows blog ...
5
votes
2answers
221 views

Rails 3 nested resources short name?

I'm in the process of upgrading a Rails 2.3 app to Rails 3. In the Rails 2.3 router, it was possible to set a :name_prefix of nil on nested resources to get a shorter name. The actual URL would ...
5
votes
2answers
123 views

Grails - hide the /index Action using Routes

What it is the correct way to hide the /index action using route in a Grails app? I want to be able redirect to a controller: "profile", action: "index" but have the url look like ...
5
votes
1answer
91 views

Need a Rails route with a possible period in the :id, but also retain the optional :format

I have a Rails route that takes stock ticker symbols as the :id feeds/AMZN will return a page for Amazon feeds/AMZN.csv will return a CSV representation of the same data. But I also need to ...

1 2 3 4 5 34