active questions tagged routing - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T16:58:57Zhttp://stackoverflow.com/feeds/tag/routinghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1193936/asp-net-mvc-custom-routes-with-multiple-submit-buttons0asp.net mvc custom routes with multiple submit buttonsdangerisgo2009-07-28T13:01:47Z2009-11-29T14:00:03Z
<p>So I have a custom route as such:</p>
<pre><code>routes.MapRoute(
"Wizard", // Route name
"Wizard/{page}", // URL with parameters
new { controller = "Wizard", action = "Index" } // Parameter defaults
);
</code></pre>
<p>and have the following on my View:</p>
<pre><code><% Html.BeginForm("Continue", "Wizard"); %>
<input type="submit" value="Continue" name="Continue" />
<% Html.EndForm(); %>
</code></pre>
<p>In which I want to call this function:</p>
<pre><code> [AcceptVerbs(HttpVerbs.Post)]
public ActionResult Continue(string Number, string Rev)
{
(...)
}
</code></pre>
<p>but in turn when that button is pressed always calls the postback Index rather than the one I want. If I remove the custom route, it calls my function, but what I want to be displayed in the address bar is: localhost:xxxx/Wizard/1 where the number at the end is the page (div shown) of the wizard either 1, 2, 3, or 4. So is there something I'm missing or can it not be done? Thanks.</p>
http://stackoverflow.com/questions/1814481/ruby-on-rails-passing-of-parameters-between-views-from-linkto-tag-instead-of-sub0Ruby on Rails passing of parameters between views from link_to tag instead of submit_tags (having both on page)Erika2009-11-29T02:42:48Z2009-11-29T04:09:39Z
<p>Hi,
I'm creating in my index page of my ruby on rails program, a list of the most commonly searched for terms in my database and hence each time a user selects a specific category this is written to another database.</p>
<p>What i would like it to create a hyperlink and pass a certain amount of parameters to a form like is usually done with a select_tag but instead with just a hyperlink, i would like to pass a set of hidden fields that i have on the page as well as what the user has selected.</p>
<p>To give you a better idea, basically i have the following structure in my program:</p>
<p>User inputs a search on (<code>index.html.erb</code>), user clicks on submit tag
action, user is taken to <code>search.html.erb</code> page and is displayed a set of refined categories + some fields, submit button, </p>
<p>user is taken to <code>closest.html.erb</code> (which uses parameters from the previous form by invoking the <code>params[:searchSelected]</code> and a few other params. )</p>
<p>I would also like to add this functionality:
Mimick this same operation, but instead of going in the <code>search.html.erb</code>, i would click on an already refined search category on the <code>index.html.erb</code> page (from a <code>link_to</code> , transmit as parameters which link_to the user has chosen + the hidden fields.</p>
<p>i Currently have this code</p>
<pre><code>@stats.each do
|scr|%>
<%= link_to scr.category, :action => 'closest', :id => scr.category%>
</code></pre>
<p>I'm not sure if this is relevant, but i currently have the following routes in my <code>routes.rb</code> file</p>
<pre><code> map.resources :stores, :collection => { :search => :get }
map.connect ':controller/:action/:id'
map.connect ':controller/:action/:id.:format'
</code></pre>
<p>would anyone please assist me please? this is my first ruby on rails project and i would really like to find a way around this please</p>
http://stackoverflow.com/questions/1520665/how-to-make-a-pc-behave-as-a-router0How to make a PC behave as a router? [closed]iamrohitbanga2009-10-05T15:06:42Z2009-11-29T02:55:41Z
<p>as a lab assignment we are supposed to configure our linux pc with two network interfaces and make it behave as a router. could you give me some guidance on how to proceed?</p>
http://stackoverflow.com/questions/1812853/shallow-nested-rails-routing-with-as0Shallow nested Rails routing with :assteven_noble2009-11-28T15:55:47Z2009-11-28T17:47:46Z
<p>I want:</p>
<ul>
<li><p>Every projectpart to belong to a
project.</p></li>
<li><p>Every solution to belong to a
projectart (and to a project through
that projectpart).</p></li>
<li><p>Every image to belong to a solution
(and to a project and a projectpart
through that solution.)</p></li>
<li><p>Every document to belong to a
solution (and to a project and a
projectpart through that solution.)</p></li>
<li><p>Every URL to be as short as simple as
possible.</p></li>
<li><p>Every case of "projectpart" to appear
as "part" in every URL. (I couldn't
call the model "part" on Heroku.)</p></li>
</ul>
<p>Can anyone tell me why this...</p>
<pre><code>ActionController::Routing::Routes.draw do |map|
map.root :controller => "previews"
map.resources :previews
map.resource :account, :controller => "users"
map.resources :password_resets
map.resources :users
map.resource :user_session
map.root :controller => "user_sessions", :action => "new"
map.resources :projects, :shallow => true do |project|
project.resources :projectparts do |part|
part.resources :solutions do |solution|
solution.resources :images
solution.resources :documents
end
end
end
map.connect ':controller/:action/:id'
map.connect ':controller/:action/:id.:format'
end
</code></pre>
<p>...is leaving a whole bunch of cases of "projectpart" in my URLs...</p>
<pre><code>steven-nobles-imac-200:drominay steven$ rake routes
(in /Users/steven/Drominay)
/ {:controller=>"previews", :action=>"index"}
previews GET /previews {:controller=>"previews", :action=>"index"}
formatted_previews GET /previews.:format {:controller=>"previews", :action=>"index"}
POST /previews {:controller=>"previews", :action=>"create"}
POST /previews.:format {:controller=>"previews", :action=>"create"}
new_preview GET /previews/new {:controller=>"previews", :action=>"new"}
formatted_new_preview GET /previews/new.:format {:controller=>"previews", :action=>"new"}
edit_preview GET /previews/:id/edit {:controller=>"previews", :action=>"edit"}
formatted_edit_preview GET /previews/:id/edit.:format {:controller=>"previews", :action=>"edit"}
preview GET /previews/:id {:controller=>"previews", :action=>"show"}
formatted_preview GET /previews/:id.:format {:controller=>"previews", :action=>"show"}
PUT /previews/:id {:controller=>"previews", :action=>"update"}
PUT /previews/:id.:format {:controller=>"previews", :action=>"update"}
DELETE /previews/:id {:controller=>"previews", :action=>"destroy"}
DELETE /previews/:id.:format {:controller=>"previews", :action=>"destroy"}
account POST /account {:controller=>"users", :action=>"create"}
formatted_account POST /account.:format {:controller=>"users", :action=>"create"}
new_account GET /account/new {:controller=>"users", :action=>"new"}
formatted_new_account GET /account/new.:format {:controller=>"users", :action=>"new"}
edit_account GET /account/edit {:controller=>"users", :action=>"edit"}
formatted_edit_account GET /account/edit.:format {:controller=>"users", :action=>"edit"}
GET /account {:controller=>"users", :action=>"show"}
GET /account.:format {:controller=>"users", :action=>"show"}
PUT /account {:controller=>"users", :action=>"update"}
PUT /account.:format {:controller=>"users", :action=>"update"}
DELETE /account {:controller=>"users", :action=>"destroy"}
DELETE /account.:format {:controller=>"users", :action=>"destroy"}
password_resets GET /password_resets {:controller=>"password_resets", :action=>"index"}
formatted_password_resets GET /password_resets.:format {:controller=>"password_resets", :action=>"index"}
POST /password_resets {:controller=>"password_resets", :action=>"create"}
POST /password_resets.:format {:controller=>"password_resets", :action=>"create"}
new_password_reset GET /password_resets/new {:controller=>"password_resets", :action=>"new"}
formatted_new_password_reset GET /password_resets/new.:format {:controller=>"password_resets", :action=>"new"}
edit_password_reset GET /password_resets/:id/edit {:controller=>"password_resets", :action=>"edit"}
formatted_edit_password_reset GET /password_resets/:id/edit.:format {:controller=>"password_resets", :action=>"edit"}
password_reset GET /password_resets/:id {:controller=>"password_resets", :action=>"show"}
formatted_password_reset GET /password_resets/:id.:format {:controller=>"password_resets", :action=>"show"}
PUT /password_resets/:id {:controller=>"password_resets", :action=>"update"}
PUT /password_resets/:id.:format {:controller=>"password_resets", :action=>"update"}
DELETE /password_resets/:id {:controller=>"password_resets", :action=>"destroy"}
DELETE /password_resets/:id.:format {:controller=>"password_resets", :action=>"destroy"}
users GET /users {:controller=>"users", :action=>"index"}
formatted_users GET /users.:format {:controller=>"users", :action=>"index"}
POST /users {:controller=>"users", :action=>"create"}
POST /users.:format {:controller=>"users", :action=>"create"}
new_user GET /users/new {:controller=>"users", :action=>"new"}
formatted_new_user GET /users/new.:format {:controller=>"users", :action=>"new"}
edit_user GET /users/:id/edit {:controller=>"users", :action=>"edit"}
formatted_edit_user GET /users/:id/edit.:format {:controller=>"users", :action=>"edit"}
user GET /users/:id {:controller=>"users", :action=>"show"}
formatted_user GET /users/:id.:format {:controller=>"users", :action=>"show"}
PUT /users/:id {:controller=>"users", :action=>"update"}
PUT /users/:id.:format {:controller=>"users", :action=>"update"}
DELETE /users/:id {:controller=>"users", :action=>"destroy"}
DELETE /users/:id.:format {:controller=>"users", :action=>"destroy"}
user_session POST /user_session {:controller=>"user_sessions", :action=>"create"}
formatted_user_session POST /user_session.:format {:controller=>"user_sessions", :action=>"create"}
new_user_session GET /user_session/new {:controller=>"user_sessions", :action=>"new"}
formatted_new_user_session GET /user_session/new.:format {:controller=>"user_sessions", :action=>"new"}
edit_user_session GET /user_session/edit {:controller=>"user_sessions", :action=>"edit"}
formatted_edit_user_session GET /user_session/edit.:format {:controller=>"user_sessions", :action=>"edit"}
GET /user_session {:controller=>"user_sessions", :action=>"show"}
GET /user_session.:format {:controller=>"user_sessions", :action=>"show"}
PUT /user_session {:controller=>"user_sessions", :action=>"update"}
PUT /user_session.:format {:controller=>"user_sessions", :action=>"update"}
DELETE /user_session {:controller=>"user_sessions", :action=>"destroy"}
DELETE /user_session.:format {:controller=>"user_sessions", :action=>"destroy"}
root / {:controller=>"user_sessions", :action=>"new"}
projects GET /projects {:controller=>"projects", :action=>"index"}
formatted_projects GET /projects.:format {:controller=>"projects", :action=>"index"}
POST /projects {:controller=>"projects", :action=>"create"}
POST /projects.:format {:controller=>"projects", :action=>"create"}
new_project GET /projects/new {:controller=>"projects", :action=>"new"}
formatted_new_project GET /projects/new.:format {:controller=>"projects", :action=>"new"}
edit_project GET /projects/:id/edit {:controller=>"projects", :action=>"edit"}
formatted_edit_project GET /projects/:id/edit.:format {:controller=>"projects", :action=>"edit"}
project GET /projects/:id {:controller=>"projects", :action=>"show"}
formatted_project GET /projects/:id.:format {:controller=>"projects", :action=>"show"}
PUT /projects/:id {:controller=>"projects", :action=>"update"}
PUT /projects/:id.:format {:controller=>"projects", :action=>"update"}
DELETE /projects/:id {:controller=>"projects", :action=>"destroy"}
DELETE /projects/:id.:format {:controller=>"projects", :action=>"destroy"}
project_projectparts GET /projects/:project_id/projectparts {:controller=>"projectparts", :action=>"index"}
formatted_project_projectparts GET /projects/:project_id/projectparts.:format {:controller=>"projectparts", :action=>"index"}
POST /projects/:project_id/projectparts {:controller=>"projectparts", :action=>"create"}
POST /projects/:project_id/projectparts.:format {:controller=>"projectparts", :action=>"create"}
new_project_projectpart GET /projects/:project_id/projectparts/new {:controller=>"projectparts", :action=>"new"}
formatted_new_project_projectpart GET /projects/:project_id/projectparts/new.:format {:controller=>"projectparts", :action=>"new"}
edit_projectpart GET /projectparts/:id/edit {:controller=>"projectparts", :action=>"edit"}
formatted_edit_projectpart GET /projectparts/:id/edit.:format {:controller=>"projectparts", :action=>"edit"}
projectpart GET /projectparts/:id {:controller=>"projectparts", :action=>"show"}
formatted_projectpart GET /projectparts/:id.:format {:controller=>"projectparts", :action=>"show"}
PUT /projectparts/:id {:controller=>"projectparts", :action=>"update"}
PUT /projectparts/:id.:format {:controller=>"projectparts", :action=>"update"}
DELETE /projectparts/:id {:controller=>"projectparts", :action=>"destroy"}
DELETE /projectparts/:id.:format {:controller=>"projectparts", :action=>"destroy"}
projectpart_solutions GET /projectparts/:projectpart_id/solutions {:controller=>"solutions", :action=>"index"}
formatted_projectpart_solutions GET /projectparts/:projectpart_id/solutions.:format {:controller=>"solutions", :action=>"index"}
POST /projectparts/:projectpart_id/solutions {:controller=>"solutions", :action=>"create"}
POST /projectparts/:projectpart_id/solutions.:format {:controller=>"solutions", :action=>"create"}
new_projectpart_solution GET /projectparts/:projectpart_id/solutions/new {:controller=>"solutions", :action=>"new"}
formatted_new_projectpart_solution GET /projectparts/:projectpart_id/solutions/new.:format {:controller=>"solutions", :action=>"new"}
edit_solution GET /solutions/:id/edit {:controller=>"solutions", :action=>"edit"}
formatted_edit_solution GET /solutions/:id/edit.:format {:controller=>"solutions", :action=>"edit"}
solution GET /solutions/:id {:controller=>"solutions", :action=>"show"}
formatted_solution GET /solutions/:id.:format {:controller=>"solutions", :action=>"show"}
PUT /solutions/:id {:controller=>"solutions", :action=>"update"}
PUT /solutions/:id.:format {:controller=>"solutions", :action=>"update"}
DELETE /solutions/:id {:controller=>"solutions", :action=>"destroy"}
DELETE /solutions/:id.:format {:controller=>"solutions", :action=>"destroy"}
solution_images GET /solutions/:solution_id/images {:controller=>"images", :action=>"index"}
formatted_solution_images GET /solutions/:solution_id/images.:format {:controller=>"images", :action=>"index"}
POST /solutions/:solution_id/images {:controller=>"images", :action=>"create"}
POST /solutions/:solution_id/images.:format {:controller=>"images", :action=>"create"}
new_solution_image GET /solutions/:solution_id/images/new {:controller=>"images", :action=>"new"}
formatted_new_solution_image GET /solutions/:solution_id/images/new.:format {:controller=>"images", :action=>"new"}
edit_image GET /images/:id/edit {:controller=>"images", :action=>"edit"}
formatted_edit_image GET /images/:id/edit.:format {:controller=>"images", :action=>"edit"}
image GET /images/:id {:controller=>"images", :action=>"show"}
formatted_image GET /images/:id.:format {:controller=>"images", :action=>"show"}
PUT /images/:id {:controller=>"images", :action=>"update"}
PUT /images/:id.:format {:controller=>"images", :action=>"update"}
DELETE /images/:id {:controller=>"images", :action=>"destroy"}
DELETE /images/:id.:format {:controller=>"images", :action=>"destroy"}
solution_documents GET /solutions/:solution_id/documents {:controller=>"documents", :action=>"index"}
formatted_solution_documents GET /solutions/:solution_id/documents.:format {:controller=>"documents", :action=>"index"}
POST /solutions/:solution_id/documents {:controller=>"documents", :action=>"create"}
POST /solutions/:solution_id/documents.:format {:controller=>"documents", :action=>"create"}
new_solution_document GET /solutions/:solution_id/documents/new {:controller=>"documents", :action=>"new"}
formatted_new_solution_document GET /solutions/:solution_id/documents/new.:format {:controller=>"documents", :action=>"new"}
edit_document GET /documents/:id/edit {:controller=>"documents", :action=>"edit"}
formatted_edit_document GET /documents/:id/edit.:format {:controller=>"documents", :action=>"edit"}
document GET /documents/:id {:controller=>"documents", :action=>"show"}
formatted_document GET /documents/:id.:format {:controller=>"documents", :action=>"show"}
PUT /documents/:id {:controller=>"documents", :action=>"update"}
PUT /documents/:id.:format {:controller=>"documents", :action=>"update"}
DELETE /documents/:id {:controller=>"documents", :action=>"destroy"}
DELETE /documents/:id.:format {:controller=>"documents", :action=>"destroy"}
/:controller/:action/:id
/:controller/:action/:id.:format
</code></pre>
<p>...and yet is not generating basic URL helpers, like this?</p>
<pre><code>undefined method `project_projectpart_path' for #<ActionView::Base:0x3438ffc> (ActionView::TemplateError)
</code></pre>
<p>BTW, everything except changing "projectpart" to "part" in every URL was working fine with this more verbose syntax:</p>
<pre><code>ActionController::Routing::Routes.draw do |map|
map.root :controller => "previews"
map.resources :previews
map.resource :account, :controller => "users"
map.resources :password_resets
map.resources :users
map.resource :user_session
map.resource :coming_soon
map.root :controller => "user_sessions", :action => "new"
map.resources :projects, :has_many => :projectparts
map.resources :projects, :has_many => :solutions
map.resources :projects, :has_many => :images
map.resources :projects, :has_many => :documents
map.resources :projectparts, :has_many => :solutions
map.resources :projectparts, :has_many => :images
map.resources :projectparts, :has_many => :documents
map.resources :solutions, :has_many => :images
map.resources :solutions, :has_many => :documents
map.resources :images
map.resources :documents
map.connect ':controller/:action/:id'
map.connect ':controller/:action/:id.:format'
end
</code></pre>
http://stackoverflow.com/questions/1810771/how-to-create-a-routevaluedictionary-given-a-virtual-path2How to create a RouteValueDictionary given a virtual pathMark Norgate2009-11-27T22:03:46Z2009-11-27T22:15:03Z
<p>Hello</p>
<p>I would like to know if there is a method that, given a virtual path, will return a collection of parameter names and values for a route that matches the path. I need this to get the parameters of the URL on the target page without resorting to hard-coding a regular expression.</p>
<p>This is I guess the reverse of RouteTable.Routes.GetVirtualPath that takes a RouteValueDictionary and returns a virtual path.</p>
<p>Is this possible?</p>
<p>Mark</p>
http://stackoverflow.com/questions/839335/asp-net-3-5-routing-not-handling-root-url0ASP.NET 3.5 Routing Not Handling / (Root URL)Craig Bovis2009-05-08T11:04:04Z2009-11-27T12:38:39Z
<p>I'm using the new routing functionality in ASP.NET 3.5 to act as my catch-all for page requests to my website. I've registered my route as follows within the global.asax,</p>
<pre><code><%@ Application Language="C#" %>
<%@ Import Namespace="System.Web.Routing" %>
<script runat="server">
void Application_Start(object sender, EventArgs e)
{
RegisterRoutes(RouteTable.Routes);
}
private void RegisterRoutes(RouteCollection Routes)
{
Route r = new Route("{*URL}", new MyRouteHandler());
Routes.Add(r);
}
</script>
</code></pre>
<p>The code works absolutely fine for all URLs except / (the root page). If I go to any other URL /blah/something/foo/ it works fine and my handler is run as expected.</p>
<p>How can I get it to run over the root page? I am running the code via Visual Studio 2008's build in web server.</p>
http://stackoverflow.com/questions/1807853/given-an-asp-net-path-is-there-a-standard-way-to-resolve-it-to-an-ihttphandler0Given an ASP.net path, is there a (standard) way to resolve it to an IHttpHandler?sandesh2472009-11-27T10:11:33Z2009-11-27T10:39:34Z
<p>I have used the ASP.net MVC Routing classes to provide REST-like URLs in a legacy ASP.net Web Application. Currently, the application has both these REST-like URLs, and file URLs (those ending in .aspx).</p>
<p>I now want to provide a facade over all these URLs for some additional functionality, something like <code>http://server/facade/<actual url></code>, for which I have a custom IRouteHandler. In my <code>GetHttpHandler()</code> function, I need to return the handler for the <code><actual url></code>. For example, given URLs like so (which invoke my IRouteHandler) :</p>
<pre><code>http://server/facade/page.aspx
http://server/facade/dir/page2.aspx
http://server/facade/RESTy/url
http://server/facade/RESTy/path/arg
</code></pre>
<p>I need to return an <code>IHttpHandler</code> to the following pages in the <code>GetHttpHandler()</code> function:</p>
<pre><code>http://server/page.aspx
http://server/dir/page2.aspx
http://server/RESTy/url
http://server/RESTy/path/arg
</code></pre>
<p><strong>EDIT</strong></p>
<p>Ok,</p>
<pre><code>BuildManager.CreateInstanceFromVirtualPath(VirtualPath, typeof(Page)) as IHttpHandler
</code></pre>
<p>gets me an IHTTPHandler for file paths. Any way to get it for custom routes?</p>
http://stackoverflow.com/questions/1806637/help-solving-a-routing-error-in-rails0Help solving a routing error in RailsAsh2009-11-27T03:48:55Z2009-11-27T03:59:52Z
<p>I have a controller called <code>form_questions_answers</code> with a method in it called <code>modify_rule</code> but when I perform a post to <code>/form_questions_answers/modify_rule/60</code> Rails tells me:</p>
<pre><code>Routing Error
No route matches "/form_questions_answers/modify_rule/60" with {:method=>:post}
</code></pre>
<p>Why is this happening, I have <code>map.resources :form_question_answers</code> in routes.rb, and <code>map.connect ':controller/:action/:id'</code> at the bottom of the routes.rb file, so why isn't the <code>modify_rule</code> action being triggered? </p>
http://stackoverflow.com/questions/1715095/subdomain-routing-rules-using-chaining-broke-after-upgrading-to-zend-framework0Subdomain Routing Rules (using chaining) Broke after upgrading to Zend Framework 1.9.5, but only for the subdomain itself, not for pages in the subdomainDan2009-11-11T13:11:59Z2009-11-27T00:21:56Z
<p>I asked a similar question months ago (see <a href="http://stackoverflow.com/questions/1052614/how-do-i-write-routing-chains-for-a-subdomain-in-zend-framework-in-a-routing-ini">How do I write Routing Chains for a Subdomain in Zend Framework in a routing INI file?</a>), on how to write chaining rules in an app.ini format. The answer to this question worked wonderfully! Now, however, I have upgraded to the latest version of the Zend Framework 1.9.5 (I needed to upgrade for another issue) and now my subdomains no longer work! </p>
<p>To clarify, if I visit subdomain.domain.com, it does not recognize my rule.
However, if I visit subdomain.domain.com/somepage/ it <b>does</b> recognize my routing rule.</p>
<p>Here is my code:</p>
<pre><code>;; the following is apparently being ignored, and does not work
routes.manager.type = "Zend_Controller_Router_Route_Hostname"
routes.manager.route = "manager.sitename.com"
routes.manager.defaults.module = "manager"
;; this is not being ignored and works!
routes.manager.chains.settings.type = "Zend_Controller_Router_Route_Static"
routes.manager.chains.settings.route = "/settings"
routes.manager.chains.settings.defaults.controller = "manager"
routes.manager.chains.settings.defaults.action = "settings"
</code></pre>
<p>So for example, if I go to manager.sitename.com, it just redirects to my default index and controller (does not access the module, $this->getRequest()->getModuleName() is blank).
However, if I go to manager.sitename.com/settings, the page comes up! This app.ini configuration works fine in ZF 1.7.8, But now since I upgraded to 1.9.5, it no longer works. </p>
<p>I have tried adding routes.manager.defaults.controller = "manager" and routes.manager.defaults.action = 'index" to my configuration as well, but this didn't work. </p>
<p>There is not much out there on the internet with chaining and app.ini dealing with Zend Framework. Any help on this issue would be greatly appreciated.</p>
http://stackoverflow.com/questions/1794412/adding-a-prefix-to-every-url-in-cakephp3Adding a prefix to every URL in CakePHPdeceze2009-11-25T03:17:11Z2009-11-26T04:01:09Z
<p>What's the cleanest way to add a prefix to every URL in CakePHP, like a language parameter?</p>
<pre><code>http://example.com/en/controller/action
http://example.com/ru/admin/controller/action
</code></pre>
<p>It needs to work with "real" prefixes like <code>admin</code>, and ideally the bare URL <code>/controller/action</code> could be redirected to <code>/DEFAULT-LANGUAGE/controller/action</code>.</p>
<p>It's working in a retro-fitted application for me now, but it was kind of a hack, and I need to include the language parameter by hand in most links, which is not good.</p>
<p>So the question is twofold:</p>
<ul>
<li>What's the best way to structure Routes, so the language parameter is implicitly included by default without having to be specified for each newly defined Route?
<ul>
<li><code>Router::connect('/:controller/:action/*', ...)</code> should implicitly include the prefix.</li>
<li>The parameter should be available in <code>$this->params['lang']</code> or somewhere similar to be evaluated in <code>AppController::beforeFilter()</code>.</li>
</ul></li>
<li>How to get <code>Router::url()</code> to automatically include the prefix in the URL, if not explicitly specified?
<ul>
<li><code>Router::url(array('controller' => 'foo', 'action' => 'bar'))</code> should return <code>/en/foo/bar</code></li>
<li>Since <code>Controller::redirect()</code>, <code>Form::create()</code> or even <code>Router::url()</code> directly need to have the same behavior, overriding every single function is not really an option. <code>Html::image()</code> for instance should produce a prefix-less URL though.</li>
</ul></li>
</ul>
<p><hr></p>
<p>The following methods seem to call <code>Router::url</code>.</p>
<ul>
<li><code>Controller::redirect</code></li>
<li><code>Controller::flash</code></li>
<li><code>Dispatcher::__extractParams</code> via <code>Object::requestAction</code></li>
<li><code>Helper::url</code></li>
<li><code>JsHelper::load_</code></li>
<li><code>JsHelper::redirect_</code></li>
<li><code>View::uuid</code>, but only for a hash generation</li>
</ul>
<p>Out of those it seems the Controller and Helper methods would need to be overridden, I could live without the <code>JsHelper</code>. My idea would be to write a general function in <code>AppController</code> or maybe just in <code>bootstrap.php</code> to handle the parameter insertion. The overridden Controller and Helper methods would use this function, as would I if I wanted to manually call <code>Router::url</code>. Would this be sufficient?</p>
http://stackoverflow.com/questions/903984/restful-authentication-stumped-trying-to-do-simple-redirect-on-cookie-based-auth2RESTful Authentication: Stumped trying to do simple redirect on cookie based authenticationFurgy2009-05-24T15:21:38Z2009-11-25T21:05:23Z
<p>I have a RoR application that's using the RESTful Authentication plug-in. Everything works great. I recently enabled cookie based authentication and that works fine too. The problem is that I want to change the default landing page when the user is authenticated using a cookie. I want to have a cookie authenticated user redirected to the same page they are redirected to upon successful login from the login form. They are always directed to the original request URL. I'm racking my brain on this as I thought I understood how it works and every change I make seems to have no impact.</p>
<p>I suspect this is something simple but I'm obviously missing it. I'd appreciate any feedback, guidance or suggestions you might offer.</p>
http://stackoverflow.com/questions/1799122/why-is-my-site-uniquely-sensitive-to-certain-internet-configurations0Why is my site uniquely sensitive to certain internet configurations? [closed]Jack78902009-11-25T18:45:10Z2009-11-25T19:32:12Z
<h3>Moved to Server Fault:</h3>
<p><a href="http://serverfault.com/questions/88292/why-is-my-site-uniquely-sensitive-to-certain-internet-configurations">Why is my site uniquely sensitive to certain internet configurations?</a></p>
<p>I run a website, <a href="http://seatgeek.com" rel="nofollow">www.seatgeek.com</a>. Today, while visiting my parent's house, I noticed I couldn't access the site while on their internet connection. I got a message saying "Firefox can't establish a connection to the server at www.seatgeek.com.". I checked with several other people using different connections and they could all access the site.</p>
<p>Puzzled, I played around with my parent's internet wiring. I found they had it set up so that the internet was piped from cable modem -> vonage phone box -> wireless router. I swapped the position of the vonage box and the router, and that solved the problem. </p>
<p>If their internet configuration had rendered a number of sites useless, then I would shrug and move on, never worrying about this again. But I find it disconcerting that SeatGeek was the <em>only</em> site that had problems--all other sites worked fine.</p>
<p>Can anyone think of any issues with our site's configuration that might cause this problem? I'm not sure whether the solution (swapping the position of the Vonage box and wirless router) provides any clues...</p>
http://stackoverflow.com/questions/1797279/zend-framework-how-to-disable-default-routing1Zend Framework: How to disable default routing?Maurice2009-11-25T14:33:15Z2009-11-25T14:51:07Z
<p>Hi All,</p>
<p>I've spent many hours trying to get this to work. And I'm getting quite desperate.
Would be great if someone out there could help me out :)</p>
<p>Currently using Zend Framework 1.9.5, though I have been struggling to get this to work for many versions now.</p>
<p>What I want to do is provide my own routes through an XML config, and make sure that everything that is <strong>not</strong> defined in my config will end up on my errorController.
(preferably in a way so I can em apart from <code>EXCEPTION_NO_CONTROLLER</code> and <code>EXCEPTION_NO_ACTION</code>)</p>
<p>I figured that this means I have to get rid of default /:module/:controller/:action and /:controller/:action routes.</p>
<p>So when I tell the router to removeDefaultRoutes(), it won't match these default routes anymore. But now the router is now routing <strong>every</strong> unrouted route to the defaultcontroller::defaultaction (What the ??)</p>
<pre><code>$front->getRouter()->removeDefaultRoutes();
</code></pre>
<p>So, anyone know how to make the frontcontroller (or a part of it) throw an exception when an URI can not be routed?</p>
<p>Reason I want to do this is to prevent duplicate content, and have better 404 pages (in this case, no controller / no action errors are actually application errors instead of not-found)</p>
http://stackoverflow.com/questions/1593772/rails-rendering-a-new-object-as-an-edit0Rails rendering a new object as an edit?Neil Middleton2009-10-20T10:44:55Z2009-11-24T19:00:03Z
<p>I have an application where I'm creating a new object via a "new" action. Rails is using the correct controller action, and also rendering out the new form correctly.</p>
<p>However, the path for the form is coming up with an Id for an edit which is breaking things. The form tag is just:</p>
<pre><code><% form_for @issue do |f|
</code></pre>
<p>etc</p>
<p>Any ideas as to why this would be an edit form instead for a new one?</p>
<p>Controller looks like this:</p>
<pre><code>class IssuesController < ApplicationController
layout 'application'
def new
@issue = Issue.new
end
end
</code></pre>
<p>Routing is as follows:</p>
<pre><code>ActionController::Routing::Routes.draw do |map|
map.resources :issues
end
</code></pre>
http://stackoverflow.com/questions/1787783/changing-index-page-ruby-on-rails1Changing Index Page - Ruby on Railsbgadoci2009-11-24T04:27:35Z2009-11-24T17:24:06Z
<p>I am new to rails so go easy. I have developed my blog and deployed it successfully. The entire app is based out of the post_controller. I am wondering how I can reroute the users path to default to the post_controller vs. the app controller. </p>
<p>To illustrate, if you go to <a href="http://mylifebattlecry.heroku.com" rel="nofollow">http://mylifebattlecry.heroku.com</a> you will see the default rails page. If you go to <a href="http://mylifebattlecry.heroku.com/posts" rel="nofollow">http://mylifebattlecry.heroku.com/posts</a> you will see the the app. Once I complete this I will change my domain of <a href="http://www.mylifebattlecry.com" rel="nofollow">http://www.mylifebattlecry.com</a> to map to Heroku but need to know how to get the /posts to be where the visitor is sent. </p>
http://stackoverflow.com/questions/1782353/mvc-routing-tagging-model-items-to-specific-routes0MVC Routing - Tagging model items to specific routesIsrafel2009-11-23T10:48:29Z2009-11-24T12:49:25Z
<p>Hi, Just wondering if anyone has advice on tagging items to specific routes. For example, if I have 2 items, they're of the same model type however I want one of the items to have a route.</p>
<pre><code>"folder1/folder2/{ItemName}"
</code></pre>
<p>and the other to have a route </p>
<pre><code>"folder3/folder4/{ItemName}"
</code></pre>
<p>So I want to specify that item one is only viewable through route 1, and item2 is only viewable through route 2. Is this possible?</p>
<p>Hope that makes sense, basically I just want to be able to specify which route an object will use, thanks for any help.</p>
http://stackoverflow.com/questions/283435/asp-net-mvc-mvc-routing-just-fails-in-ii61ASP.NET MVC - .mvc Routing just fails in II6Tim Peel2008-11-12T09:43:09Z2009-11-24T06:24:20Z
<p>Hi,</p>
<p>I have been banging my head against a brick wall trying to deploy my MVC app on IIS6 (<a href="http://stackoverflow.com/questions/275920/aspnet-mvc-on-iis-6-wildcard-mapping-the-incoming-request-does-not-match-any-ro">linked question</a>)</p>
<p>I have scrapped wildcard mapping for the time being and am trying to get the .mvc extension working. Everything is configured correctly in IIS and the .mvc extension is pointing to the .NET dll for all verb types (unchecked verify if exists option).</p>
<p>Each time I make a request, all I get is the .NET 404 page. /Home.mvc and /Home.mvc/Index all return that page.</p>
<p>I have not made any changes to the default Web.config and all my routes are configured with extenionless and extension based equivalents.</p>
<p>I appreciate how easy this configuration must be (sound) for everyone reading who has got it working but I assure you I am not doing anything different and mine will not work. I even tried deploying it on a different server with IIS6 and the same problems happened there too.</p>
<p>Could there be any other reasons why the routing module/handler is completely missing the request and letting it fall through to the standard .NET 404 error? Strange permissions?</p>
<p>For the IIS 404 errors, I updated the custom error setting so it called the Default.aspx page in the route of the site. This is the default page from the MVC beta template generated in visual studio, which does the following in the code behind:</p>
<pre><code>HttpContext.Current.RewritePath(Request.ApplicationPath);
IHttpHandler httpHandler = new MvcHttpHandler();
httpHandler.ProcessRequest(HttpContext.Current);
</code></pre>
<p>This just then gives me the error from the previous post:</p>
<pre><code>[HttpException (0x80004005): The incoming request does not match any route.]
System.Web.Routing.UrlRoutingHandler.ProcessRequest(HttpContextBase httpContext) +15589
System.Web.Routing.UrlRoutingHandler.ProcessRequest(HttpContext httpContext) +40
System.Web.Routing.UrlRoutingHandler.System.Web.IHttpHandler.ProcessRequest(HttpContext context) +7
......
</code></pre>
http://stackoverflow.com/questions/1786311/zendcontrollerrouterroute-chaining-problem-with-more-than-3-url-parameters1Zend_Controller_Router_Route Chaining Problem with more than 3 url parametersrr2009-11-23T21:54:10Z2009-11-23T22:16:57Z
<p>I can't seem to figure out what's going wrong, but I'm attempting to setup module routing based on sub domain. Otherwise the routing is standard. The following works until I add more than 3 parameters in the URL:</p>
<p>This is within a controller plugin</p>
<pre><code>...
public function routeStartup() {
$router = Zend_Controller_Front::getInstance()->getRouter();
$pathRoute = new Zend_Controller_Router_Route (
':controller/:action/*',
array(
'controller' => 'index',
'action' => 'index'
)
);
$hostRoute = new Zend_Controller_Router_Route_Hostname(':module.domain.com');
$chainedRoute = $hostRoute->chain($pathRoute);
$router->addRoute('host', $chainedRoute);
...
}
</code></pre>
<p><a href="http://module.domain.com/controllerName/actionName/param1" rel="nofollow">http://module.domain.com/controllerName/actionName/param1</a> <em>works</em>
<a href="http://module.domain.com/controllerName/actionName/param1/param2" rel="nofollow">http://module.domain.com/controllerName/actionName/param1/param2</a> <em>does not work</em></p>
<p>Has anyone else run into this?</p>
http://stackoverflow.com/questions/1784989/does-anyone-know-any-good-matlab-code-for-rumor-routing0Does anyone know any good MATLAB code for rumor routing? Shruti Rattan2009-11-23T18:16:42Z2009-11-23T18:26:27Z
<p>I am looking for a MATLAB code that works for rumor routing. </p>
<p>In rumor routing, some N nodes are generated first and randomly one of the nodes generates an 'Agent'. Agent carries the information where it is comming from and what information (like temperature, humidity,etc) is it looking for and what all nodes has it traversed through (basically the path to where it originated). Also another agent is generated by some other node that has some information to share (like temperature or humidity level of an area) to any other node looking for it. </p>
<p>Now if the information seeker agent (former) path intersects the path followed by information giving agent (later) and if the information happens to be the same, then the path is made and used for the same information exchange. But there is another problem. The path has to be shortest path available between them depending upon how many intermediate nodes needed to be passed to reach destination node. </p>
<p>Now I know its a lot of work but even a little help will be appreciated.
Thanks guys</p>
http://stackoverflow.com/questions/1780853/moving-the-format-attribute-in-routing-from-the-end-to-beginning-of-route0Moving the :format attribute in routing from the end to beginning of routeGarrett2009-11-23T02:40:19Z2009-11-23T08:40:31Z
<p>In my application, I am trying to get my API to mimic GitHub's in how it has the (.:format) in the beginning of the route rather than appending it optionally at the end.</p>
<p>Here is my code that is "working" but can be ignored:</p>
<pre><code>map.namespace :api do |api|
api.namespace :v1 do |v1|
v1.resource :company, :path_prefix => "api/v1/:format"
end
end
</code></pre>
<p>I can go to <code>/api/v1/xml/company.json</code> and it Rails will provide <code>json</code> as the <code>params[:format]</code> rather than <code>xml</code>.</p>
<p>When I run <code>rake routes</code> I am getting</p>
<pre><code>/api/v1/:format/company(.:format)
</code></pre>
<p>Is there a way to get it to return:</p>
<pre><code>/api/v1/:format/company
</code></pre>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1713379/asp-net-mvc-routing-with-default-controller1ASP.NET MVC Routing with Default Controllerrockacola2009-11-11T06:12:09Z2009-11-23T01:57:30Z
<p>For a scenario, I have a ASP.NET MVC application with pages that looks like follow:</p>
<pre><code>http://example.com/Customer/List
http://example.com/Customer/List/Page/2
http://example.com/Customer/List
http://example.com/Customer/View/8372
http://example.com/Customer/Search/foo/Page/5
</code></pre>
<p>These pages are achieved with following routes in <code>Global.asax.cs</code></p>
<pre><code>routes.MapRoute(
"CustomerSearch"
, "Customer/Search/{query}/Page/{page}"
, new { controller = "Customer", action = "Search" }
);
routes.MapRoute(
"CustomerGeneric"
, "Customer/{action}/{id}/Page/{page}"
, new { controller = "Customer" }
);
//-- Default Route
routes.MapRoute(
"Default",
"{controller}/{action}/{id}",
new { controller = "Customer", action = "Index", id = "" }
);
</code></pre>
<p>These all have gone well until a new requirement arrived and wants to drop keyword 'Customer' off the URL, to make the pages looks like:</p>
<pre><code>http://example.com/List
http://example.com/List/Page/2
http://example.com/List
http://example.com/View/8372
http://example.com/Search/foo/Page/5
</code></pre>
<p><strong><em>Edit:</strong> corrected example links, thanks to @haacked.</em></p>
<p>I tried to add new <code>MapRoutes</code> to take <code>{action}</code> only and have default controller set to Customer. eg/</p>
<pre><code>routes.MapRoute(
"CustomerFoo"
, "{action}"
, new { controller = "Customer", action = "Index" }
);
</code></pre>
<p>This may seems to work, however now all links generated by Html.ActionLink() are weird and no longer URL friendly.</p>
<p>So, is this achievable? Am I approach the right direction?</p>
http://stackoverflow.com/questions/1779807/let-vmware-virtual-machine-connect-to-the-world-thru-specialized-interface0Let vmware virtual machine connect to the world thru specialized interface [closed]flybywire2009-11-22T20:04:13Z2009-11-22T20:04:13Z
<p>I have vmware player, and I am running a special OS therein.</p>
<p>My computer has two network interfaces, let's call them eth0 and eth1.</p>
<p>I want to configure my computer so that all network traffic goes eth0 if and only if it originates in my virtual machine. If traffic belongs to my host OS then I want it to go thru eth1.</p>
http://stackoverflow.com/questions/1771555/rename-returnurl-literal-in-asp-net-mvc1Rename ReturnUrl literal in asp.net mvcdiadiora2009-11-20T16:15:25Z2009-11-21T14:13:17Z
<p>I put the authentication attribute that sets:</p>
<pre><code>filterContext.Result = new HttpUnauthorizedResult();
</code></pre>
<p>so when I try to access </p>
<pre><code>http://www.mysite.com/Forum/Polls
</code></pre>
<p>and I am not authenticated I am redirected to:</p>
<pre><code>http://www.mysite.com/Account/Log?ReturnUrl=%2FForum%2FPolls
</code></pre>
<p>I want to have the following line instead:</p>
<pre><code>http://www.mysite.com/Account/Log?back=%2FForum%2FPolls
</code></pre>
<p>, so instead of 'ReturnUrl' need 'back'. Where I can ovveride this behaviour. Thanks.</p>
http://stackoverflow.com/questions/1772819/when-would-i-use-my-own-routehandler0When would I use my own RouteHandler?Jason M2009-11-20T19:47:51Z2009-11-20T20:14:36Z
<p>I understand that in ASP.Net DynamicData (and maybe regular ASP or MVC) I can provide my own RouteHandler</p>
<pre><code>routes.Add(new DynamicDataRoute("{table}/{action}.aspx") {
RouteHandler = new CustomRouteHandler()
});
public class CustomRouteHandler : DynamicDataRouteHandler
{
public override IHttpHandler CreateHandler(DynamicDataRoute route, MetaTable table, string action)
{
// what kind of cool stuff should I add in here?
return base.CreateHandler(route, table, action);
}
protected override string GetCustomPageVirtualPath(MetaTable table, string viewName)
{
// what kind of cool stuff should I add in here?
return base.GetCustomPageVirtualPath(table, viewName);
}
protected override string GetScaffoldPageVirtualPath(MetaTable table, string viewName)
{
// what kind of cool stuff should I add in here?
return base.GetScaffoldPageVirtualPath(table, viewName);
}
}
</code></pre>
<p>But can someone explain how I would fill this class out? (give some example code)</p>
<p>What would I override to do something useful?</p>
<p>What sort of things could I do with my own RouteProvider? Give me examples where this would be useful.</p>
<p>As an example, I would like to do a 401 redirect for some tables but continue with the default behavior for other tables (based upon role or logged-in user, of course). </p>
http://stackoverflow.com/questions/1771568/asp-net-security-by-route0ASP.Net Security By RouteJason M2009-11-20T16:16:58Z2009-11-20T19:36:14Z
<p>I'm working with ASP.Net Dynamic Data and I have a section in my web.config like this:</p>
<pre><code><location path="Foo/List.aspx">
<system.web>
<authorization>
<allow roles="The Name of Some Role"/>
<deny users="*"/>
</authorization>
</system.web>
</location>
</code></pre>
<p>This works fine for restricting access to that path, however later I'll want to restrict access to similar paths like "Bar/List.aspx" (Every time I add a new table in Dynamic Data there will be a new similar path) It would be nice if I could use a regular expression here, but I don't think I can. I think the solution is to tweak the routing to where <code>Foo</code> and <code>Bar</code> fall under the <code>Role1</code> path like <code>Role1/Foo/List.aspx</code> and Role1/Bar/List.aspx</p>
<p>So I'll want to change the code that registers my routes to something like this:</p>
<pre><code>routes.Add(new DynamicDataRoute("{role}/{table}/{action}.aspx") {
Constraints = new RouteValueDictionary(new { action = "List|Details|Edit|Insert" }),
Model = DefaultModel
});
</code></pre>
<p>Two questions:</p>
<ol>
<li>Would you solve this problem with <em>routing</em> like this? Or would you do something different?</li>
<li>Assuming this is a good way to do this, how do I get Dynamic Data to map URL's to routes like this? I think ideally I'd like to decorate my models (I'm using LinqToSQL) with attribute tags designating the roles that should be allowed for each one.</li>
</ol>
http://stackoverflow.com/questions/1470997/html-actionlink-construct-wrong-link-when-a-non-mvc-route-is-added0Html.ActionLink construct wrong link when a non-mvc route is addedrokeyge2009-09-24T11:08:32Z2009-11-20T14:51:12Z
<p>Hi there,</p>
<p>I have an application here with a mix of webform and mvc. I specify the routing as below</p>
<pre><code> routes.Add("AspxRoute", new Route("Upload/New", new WebFormRouteHandler<Page>("~/Uploads.aspx")));
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = "" } // Parameter defaults
);
</code></pre>
<p>So that virtual path to "Upload/New" actually maps to an aspx webform page.</p>
<p>But my problem is that Html.ActionLink("Test", "Controller", "Action") now renders </p>
<blockquote>
<p>/Upload/New?Controller=Controller&Action=Action</p>
</blockquote>
<p>Having looked at the MVC source code, I understand that it is because ActionLink calls to <em>RouteCollection.GetVirtualPath(requestContext, routeName, mergedRouteValues)</em>, where routeName is left to null. And somehow this defaults to use the AspxRoute route to construct the url. I tried to added another route before "AspxRoute", but it seems it always defaults to the non-mvc routehandler one.</p>
<p>How does <em>RouteCollection.GetVirtualPath</em> behave when routeName is null? And why is it behaving this way for my case?</p>
<p>How do I construct a correct url? Do I need to write a new Htmlhelper extension?</p>
<p>Cheers</p>
http://stackoverflow.com/questions/1767473/mvc-routing-is-not-handling-one-of-my-directories0MVC routing is not handling one of my directoriesFreewalker2009-11-19T23:57:05Z2009-11-19T23:57:05Z
<p>I'm using ASP.NET MVC with IIS 7.0. I've got 404 errors hooked up fine through my Application_Error override.</p>
<p>In addition to "Controllers", "Models", "Helpers" etc. I have a directory called 'Files' that I use to store user-uploaded files. When I go to <a href="http://www.mysite.com/files" rel="nofollow">http://www.mysite.com/files</a>, instead of getting a 'Not Found' I get a default IIS 403 page that gives way too much information (e.g. exact directory structure of the server):</p>
<pre><code>HTTP Error 403.14 - Forbidden
The Web server is configured to not list the contents of this directory.
</code></pre>
<p>If I try to access <a href="http://www.mysite.com/controllers" rel="nofollow">http://www.mysite.com/controllers</a> or <a href="http://www.mysite.com/helpers" rel="nofollow">http://www.mysite.com/helpers</a>, which are both existing directories with code files, I get a 404 page, which is what I want. I don't want the user to know anything about my directory structure.</p>
<p>Why is MVC not handling the /files directory?</p>
http://stackoverflow.com/questions/1766599/trouble-redirecting-string0Trouble redirecting string[]DM2009-11-19T21:12:16Z2009-11-19T21:34:46Z
<p>I have a form that posts several like named elements to an action like so:</p>
<pre><code><%= Html.TextBox("foo") %>
<%= Html.TextBox("foo") %>
<%= Html.TextBox("foo") %>
</code></pre>
<p>posts to and returns:</p>
<pre><code>public ActionResult GetValues(string[] foo)
{
//code
return RedirectToAction("Results", new { foo = foo })
}
</code></pre>
<p>the "Results" action then looks like this:</p>
<pre><code>public ActionResult Results(string[] foo)
{
//code
return View()
}
</code></pre>
<p>The issue I'm having is that after the redirect my url looks like this:</p>
<pre><code>/results?foo=System.String[]
</code></pre>
<p>instead of the intended:</p>
<pre><code>/results?foo=value&foo=value&foo=value
</code></pre>
<p>Is there any way to get this to work with my current set-up?</p>
http://stackoverflow.com/questions/1751423/problem-with-symfony-routing-with-online-project0Problem with Symfony routing with online projectArms2009-11-17T20:09:35Z2009-11-19T19:49:49Z
<p>I have a Symfony project on a Win XP / IIS 7 machine with Isapi rewrite installed. When I go to the frontend (my main) application, it seems that the routing simply doesn't work. I always end up on <strong>my</strong> default module/action. However, if I turn<code> no_script_name = off</code> (in the app's settings.yml file) then everything works fine. I also have an admin app as part of the project (which also has <code>no_script_name = off</code>) and this works fine as well. This seems like it should be a simple problem, yet we've been working on this for 4 hours now. Any help would be greatly appreciated, thanks.</p>
<p>Edit: I changed the front controller's environment to dev in order to use the debug toolbar and found that no matter what my URL looks like, it always says</p>
<p>Match route "homepage" (/) for / with parameters array ( 'module' => 'default', 'action' => 'index',)</p>
<p>No matter what I do, module always equals default</p>
http://stackoverflow.com/questions/1764383/how-to-use-rspec-to-test-named-routes0How to use rspec to test named routes?btelles2009-11-19T16:02:39Z2009-11-19T17:19:20Z
<p>Hi there,
Given I have a named route:</p>
<pre><code>map.some_route '/some_routes/:id', :controller => 'some', :action => 'other'
</code></pre>
<p>How do I use the routing spec file 'spec/routing/some_routing_spec.rb' to test for that named route? </p>
<p>I've tried this after the "describe SomeRouteController" block and it doesn't work, I get 'undefined method "helper":</p>
<pre><code>describe SomeRouteHelper, 'some routes named routes' do
it 'should recognize some_route' do
helper.some_route_path(23).should == '/some_routes/23'
end
end
</code></pre>