active questions tagged routes - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T07:35:19Z http://stackoverflow.com/feeds/tag/routes http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1934677/routes-rb-explicity-template 0 routes.rb explicity template Felix 2009-12-20T02:12:10Z 2009-12-20T03:14:13Z <p>I would like to create one .erb file to be the output for a number of tiny actions that are just returning JSON. So with routes similar to:</p> <pre><code>map.json 'contacts_json', :controller =&gt; 'contacts', :action =&gt; 'get_json' map.json 'cal_json', :controller =&gt; 'calendar', :action =&gt; 'get_json' ... </code></pre> <p>but this requires I create a contacts erb, and a calendar erb so on and so forth. Is there a way to explicitly tell them to use a json erb? Something like:</p> <pre><code>map.json 'contacts_json', :controller =&gt; 'contacts', :action =&gt; 'get_json', :view =&gt; 'layouts/json.html.erb' </code></pre> http://stackoverflow.com/questions/1930630/rendering-partial-from-outside-main-index-rhtml-ruby-on-rails 0 Rendering Partial from outside main/index.rhtml...Ruby on Rails bgadoci 2009-12-18T20:52:50Z 2009-12-18T21:30:57Z <p>Ok I have posted a couple of things that had to do with my problem but I think I have it narrowed down. Here is where I am at:</p> <p>I have my index.rhtml page inside of /views/main and the main_controller is set up correctly. I am attempting to make this page a dashboard of sorts so it needs to reference multiple other views to display their index.html.erb page. I will use 'proposals' as our example. I want to display the proposal views/proposals/index.html.erb page in the views/main/index.rhtml side bar. I have gathered that you do this through partials. </p> <p>So...I created a file, /views/proposals/_index.html.erb that has the same code as views/proposals/index.html.erb. </p> <p>Then in my views/main/index.rhtml file I have the following code:</p> <pre><code>&lt;%= render :partial =&gt; @proposal %&gt; </code></pre> <p>Now, I don't get an error message, simply nothing is displayed. I don't have anything referencing this (I don't think) in my routes.rb file and I suspect that is the problem. </p> <p>Sorry for the redundancy on this question but I didn't even really know what I was asking. Hope this helps. </p> <p>UPDATED:</p> <p>When I put the <code>&lt;%= render :partial =&gt; "proposals/index" %&gt;</code> mentioned below I now get this error:</p> <pre><code>You have a nil object when you didn't expect it! You might have expected an instance of Array. The error occurred while evaluating nil.each Extracted source (around line #1): 1: &lt;% @proposals.each do |proposal| %&gt; 2: &lt;div id="proposalindex"&gt; 3: &lt;%= link_to_unless_current h(proposal.name), proposal %&gt;&lt;br/&gt; 4: &lt;p5&gt;Added &lt;%= time_ago_in_words(proposal.created_at) %&gt; ago | &lt;/p5 </code></pre> <p>This partial works within the proposals controller not not sure what this means. </p> http://stackoverflow.com/questions/1923816/rails-route-globbing-vs-escaping 0 Rails route globbing vs. escaping? Eric 2009-12-17T18:54:19Z 2009-12-17T18:57:50Z <p>Hi. I'm trying do something like this:</p> <pre><code>map.goto '/g/*extra', :controller =&gt; 'goto', :action =&gt; :show </code></pre> <p>Where extra is a path component, e.g.:</p> <pre><code>redirect_to goto_url( employee_path(employee) ) </code></pre> <p>What I <strong>get</strong> is:</p> <pre><code>http:://www.example.com/g/%2Femployee%2F123 </code></pre> <p>What I <strong>want</strong> is:</p> <pre><code>http:://www.example.com/g/employee/123 </code></pre> <p>So my question is: although all of this works fine, is there any way to suppress parameter escaping for Rails route params, particularly a globbed param?</p> http://stackoverflow.com/questions/1920593/why-does-routelink-generate-friendly-url-while-actionlink-does-not 0 Why does RouteLink generate friendly URL while ActionLink does not? Terje 2009-12-17T09:50:17Z 2009-12-17T16:23:03Z <p>Hi there.</p> <p>I have a question regarding RouteLink vs. ActionLink.</p> <p>Consider the following route</p> <pre><code>routes.MapRoute("Routename1", "{someEnum}/SpecificAction/{id}/{stringId}", new { controller = "MyController", id = (int?)null, stringId= (string)null, action = "SpecificAction" }, new { someEnum= "(EnumVal1|EnumVal2)" } ); </code></pre> <p>The weird {someEnum} part is because I use a general controller for all values of an enum that form the typical controller part of a url. For instance, /EnumVal1/Action/ and /EnumVal2/Action/ use the same controller. That's not part of the problem, however.</p> <p>Consider the following two ways of linking:</p> <pre><code>&lt;%=Html.RouteLink("Click me","Routename1", new { id = 32, stringId = "Yatzy" })%&gt; &lt;%=Html.ActionLink("Click me", "SpecificAction", "EnumVal1", new { id = 32, stringId = "Yatsy" }, null)%&gt; </code></pre> <p>The RouteLink generates the correct url, which would be /EnumVal1/SpecificAction/32/Yatzy</p> <p>The ActionLink generates an url that looks like /EnumVal1/SpecificAction/32?stringId=Yatzy</p> <p>Why is this? Could someone explain this to me, please.</p> http://stackoverflow.com/questions/1903529/make-dynamic-routes-from-content 0 make dynamic routes from content Fresh 2009-12-14T21:11:19Z 2009-12-16T14:16:00Z <p>I am trying to setup dnamic routes in my rails application.</p> <p>i.e. </p> <p>I have a acts model that has a name attribute.</p> <p>name:string.</p> <p>What I a trying to do is use that name as my url.</p> <p>in my route if have </p> <pre><code> map.connect 'blacktie/:id', :controller =&gt; 'acts', :action =&gt; 'show', :id =&gt; 3 </code></pre> <p>That takes me to <a href="http://0.0.0.0:3000/blacktie" rel="nofollow">http://0.0.0.0:3000/blacktie</a></p> <p>I know that i can do something along the lines of </p> <pre><code>def map.controller_actions(controller, actions) actions.each do |action| self.send("#{controller}_#{action}", "#{controller}/#{action}", :controller =&gt; controller, :action =&gt; action) end </code></pre> <p>Just not sure if it is even possible.</p> http://stackoverflow.com/questions/1909730/rails-custom-routing-for-auto-login 0 Rails custom routing for auto-login Shagymoe 2009-12-15T19:20:52Z 2009-12-15T22:21:01Z <p>I want to set up auto-login by giving the user a link/key they can use like <a href="http://domain.com/4yT67rw" rel="nofollow">http://domain.com/4yT67rw</a>. The last 7 digits are random and assigned to the user model.</p> <p>Is it possible to do this with custom routing? I imagine it would have to be something like a regex to detect that it is a key and not a model name or error.</p> <p>Would be great if I could do something like:</p> <pre><code>map.connect 'reg_ex_here', :controller =&gt; 'users', :action =&gt; 'key_redirect' </code></pre> <p>and then in the users controller:</p> <pre><code>def key_redirect user = User.find_by_key(key) redirect_to user_path(user) end </code></pre> <p>Or probably some other easy way that I don't know about. ;)</p> <p>Thanks</p> http://stackoverflow.com/questions/1904230/codeigniter-routes-for-filename-with-extension 0 Codeigniter Routes for filename with extension thehuby 2009-12-14T23:20:30Z 2009-12-15T20:35:59Z <p>I am using codeigniter and its routes system successfully with some lovely regexp, however I have come unstuck on what should be an easy peasy thing in the system.</p> <p>I want to include a bunch of search engine related files (for Google webmaster etc.) plus the robots.txt file, all in a controller.</p> <p>So, I have create the controller and updated the routes file and don't seem to be able to get it working with these files.</p> <p>Here's a snip from my routes file:</p> <pre><code>$route['robots\.txt|LiveSearchSiteAuth\.xml'] = 'search_controller/files'; </code></pre> <p>Within the function I use the URI helper to figure out which content to show.</p> <p>Now I can't get this to match, which points to my regexp being wrong. I'm sure this is a really obvious one but its late and my caffeine tank is empty :)</p> http://stackoverflow.com/questions/1904624/rails-routing-error 0 Rails Routing Error Ben Matz 2009-12-15T01:06:10Z 2009-12-15T05:09:43Z <p><strong>Weird error. I'm a newby to rails. From a new install of rails I connected to an oracle db and then ran:</strong></p> <pre><code>jruby script/generate scaffold job oid:integer userid:integer name:string status:integer </code></pre> <p><strong>Without doing anything else I started up the server and entered a new job and then I get this error:</strong> </p> <pre><code>Routing Error job_url failed to generate from {:controller=&gt;"jobs", :action=&gt;"show", :id=&gt;#&lt;Job id: #&lt;BigDecimal:d55a0f,'10000.0',1(8)&gt;, oid: #&lt;BigDecimal:10bb83e,'1324.0',4(8)&gt;, userid: #&lt;BigDecimal:6d234c,'1234.0',4(8)&gt;, name: "asdfadsf", status: #&lt;BigDecimal:1286c71,'1234.0',4(8)&gt;, created_at: "2009-12-15 00:49:37", updated_at: "2009-12-15 00:49:37"&gt;}, expected: {:controller=&gt;"jobs", :action=&gt;"show"}, diff: {:id=&gt;#&lt;Job id: #&lt;BigDecimal:853e51,'10000.0',1(8)&gt;, oid: #&lt;BigDecimal:1be4050,'1324.0',4(8)&gt;, userid: #&lt;BigDecimal:adb165,'1234.0',4(8)&gt;, name: "asdfadsf", status: #&lt;BigDecimal:15978e7,'1234.0',4(8)&gt;, created_at: "2009-12-15 00:49:37", updated_at: "2009-12-15 00:49:37"&gt;} </code></pre> <p><strong>Even though it throws the error it still creates the record. When I try to view the record I get the following stack, which is really the same error.</strong></p> <pre><code>ActionController::RoutingError in Jobs#show Showing app/views/jobs/show.html.erb where line #22 raised: edit_job_url failed to generate from {:controller=&gt;"jobs", :action=&gt;"edit", :id=&gt;#&lt;Job id: #&lt;BigDecimal:18caa36,'10000.0',1(8)&gt;, oid: #&lt;BigDecimal:1fac733,'1324.0',4(8)&gt;, userid: #&lt;BigDecimal:12c1472,'1234.0',4(8)&gt;, name: "asdfadsf", status: #&lt;BigDecimal:f25f89,'1234.0',4(8)&gt;, created_at: "2009-12-15 00:49:37", updated_at: "2009-12-15 00:49:37"&gt;}, expected: {:controller=&gt;"jobs", :action=&gt;"edit"}, diff: {:id=&gt;#&lt;Job id: #&lt;BigDecimal:1b9cdfc,'10000.0',1(8)&gt;, oid: #&lt;BigDecimal:1829097,'1324.0',4(8)&gt;, userid: #&lt;BigDecimal:e2d663,'1234.0',4(8)&gt;, name: "asdfadsf", status: #&lt;BigDecimal:691ccf,'1234.0',4(8)&gt;, created_at: "2009-12-15 00:49:37", updated_at: "2009-12-15 00:49:37"&gt;} Extracted source (around line #22): 19: &lt;/p&gt; 20: 21: 22: &lt;%= link_to 'Edit', edit_job_path(@job) %&gt; | 23: &lt;%= link_to 'Back', jobs_path %&gt; RAILS_ROOT: /opt/code/import Application Trace | Framework Trace | Full Trace /opt/jruby/lib/ruby/gems/1.8/gems/actionpack-2.3.5/lib/action_controller/routing/route_set.rb:426:in `raise_named_route_error' /opt/jruby/lib/ruby/gems/1.8/gems/actionpack-2.3.5/lib/action_controller/routing/route_set.rb:387:in `generate' /opt/jruby/lib/ruby/gems/1.8/gems/actionpack-2.3.5/lib/action_controller/url_rewriter.rb:205:in `rewrite_path' /opt/jruby/lib/ruby/gems/1.8/gems/actionpack-2.3.5/lib/action_controller/url_rewriter.rb:184:in `rewrite_url' /opt/jruby/lib/ruby/gems/1.8/gems/actionpack-2.3.5/lib/action_controller/url_rewriter.rb:162:in `rewrite' /opt/jruby/lib/ruby/gems/1.8/gems/actionpack-2.3.5/lib/action_controller/base.rb:634:in `url_for' /opt/jruby/lib/ruby/gems/1.8/gems/actionpack-2.3.5/lib/action_view/helpers/url_helper.rb:85:in `url_for' (eval):16:in `edit_job_path' /opt/code/import/app/views/jobs/show.html.erb:22:in `_run_erb_app47views47jobs47show46html46erb' /opt/code/import/app/controllers/jobs_controller.rb:18:in `show' Request Parameters: {"id"=&gt;"10000"} Show session dump Response Headers: {"Cache-Control"=&gt;"no-cache", "Content-Type"=&gt;"text/html"} </code></pre> <p><strong>When I remove the "edit_job_path" method the error disappears so I know it's just having an issue rendering the route, but I'm not sure why because it seems to have the correct info. I mean this is a boilerplate scaffold so.... Thanks in advance for any help!</strong></p> http://stackoverflow.com/questions/1864579/zend-framework-how-and-where-to-create-custom-routes-in-a-1-8-application 0 Zend Framework: How and where to create custom routes in a 1.8+ application? Andrew 2009-12-08T04:25:45Z 2009-12-15T05:09:03Z <p>I've never created a custom route before, but I finally have a need for one. My question is: How can I create a custom route, and where should I create it? I'm using Zend Framework 1.9.6.</p> http://stackoverflow.com/questions/1905272/rails-routes-question-how-to-take-all-parameters-to-end-of-url 0 rails routes question - how to take all parameters to end of URL? Greg 2009-12-15T05:02:09Z 2009-12-15T05:07:12Z <p>Hi,</p> <p>In the rails config/routes.rb file, how do I ensure that the first route here takes all characters after the initial /site and uses this for this route (assigning it to :path). </p> <pre><code> map.connect 'sites/:path', :controller =&gt; 'xxx', :action =&gt; 'yyy' map.connect ':controller/:action/:id' </code></pre> <p>In other words how to avoid any URL that goes <a href="http://mysite/sites/" rel="nofollow">http://mysite/sites/</a>, to be missed by the first route and then picked up by the second route?</p> <p>thanks</p> http://stackoverflow.com/questions/1903349/order-confirmation-page-in-rails 1 Order confirmation page in rails. Kenji Crosland 2009-12-14T20:38:38Z 2009-12-14T21:02:56Z <p>Hi guys,</p> <p>I've been trying to create an order confirmation page for my rails app, and am not quite sure how to go about it in a restful way.</p> <p>There were a few answers on <a href="http://stackoverflow.com/questions/445293/ruby-on-rails-confirmation-page-for-activerecord-object-creation">this</a> question that got me halfway there, but the problem was that I wasn't quite sure how to set up the form in the rails view so that it would take the user to a confirmation page with all their details instead of a create action.</p> <p>Right now my view is simple: </p> <pre><code> &lt;% form_for :order do |f| %&gt; &lt;%= f.error_messages %&gt; &lt;p&gt; &lt;%= f.label :first_name %&gt;&lt;br /&gt; &lt;%= f.text_field :first_name, :size =&gt; 15 %&gt; &lt;/p&gt; &lt;p&gt; &lt;%= f.label :last_name %&gt;&lt;br /&gt; &lt;%= f.text_field :last_name, :size =&gt; 15 %&gt; &lt;/p&gt; (Be sure to enter your name as it appears on your card) &lt;p&gt; &lt;%= f.label :card_type %&gt;&lt;br /&gt; &lt;%= f.select :card_type, [["Visa", "visa"], ["MasterCard", "master"], ["Discover", "discover"], ["American Express", "american_express"]] %&gt; &lt;/p&gt; &lt;p&gt; &lt;%= f.label :card_number %&gt;&lt;br /&gt; &lt;%= f.text_field :card_number %&gt; &lt;/p&gt; &lt;p&gt; &lt;%= f.label :card_verification, "Card Verification Value (CVV)" %&gt;&lt;br /&gt; &lt;%= f.text_field :card_verification, :size =&gt; 3 %&gt; &lt;/p&gt; &lt;p&gt; &lt;%= f.label :card_expires_on %&gt;&lt;br /&gt; &lt;%= f.date_select :card_expires_on, :discard_day =&gt; true, :start_year =&gt; Date.today.year, :end_year =&gt; (Date.today.year+10), :add_month_numbers =&gt; true %&gt; &lt;/p&gt; &lt;p&gt;&lt;%= f.submit "Submit" %&gt;&lt;/p&gt; </code></pre> <p>What things should I be doing to direct the user to a confirmation page that shows all the order details?</p> <p>Thanks!</p> <p>Kenji</p> http://stackoverflow.com/questions/1803963/pagevalidators-is-not-defined-problem 0 Page_Validators is not defined problem Avinash 2009-11-26T14:25:08Z 2009-12-14T11:41:59Z <p>Hi</p> <p>i am using asp.net routing</p> <p>when using ValidatorEnable function in javascript i got this error 'Page_Validators is not defined' how to solve this?</p> <p>i am using this code in my global.asax file</p> <pre><code> routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.IgnoreRoute("{*allaspx}", new { allaspx = @".*\.aspx(/.*)?" }); routes.IgnoreRoute("{*favicon}", new { favicon = @"(.*/)?favicon.ico(/.*)?" }); </code></pre> http://stackoverflow.com/questions/1766599/trouble-redirecting-string 0 Trouble redirecting string[] DM 2009-11-19T21:12:16Z 2009-12-12T05:05:13Z <p>I have a form that posts several like named elements to an action like so:</p> <pre><code>&lt;%= Html.TextBox("foo") %&gt; &lt;%= Html.TextBox("foo") %&gt; &lt;%= Html.TextBox("foo") %&gt; </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&amp;foo=value&amp;foo=value </code></pre> <p>Is there any way to get this to work with my current set-up?</p> http://stackoverflow.com/questions/1878685/rails-routes-params-find-for-a-form 0 rails routes params find for a form Ryan Max 2009-12-10T04:43:57Z 2009-12-11T07:57:40Z <p>Hello,</p> <p>I am having a bit of trouble with my rails application. It short, its a social networking app where users have a profile, have submissions, and can comment on submissions.</p> <p>My routes are as follows:</p> <pre><code>map.connect '/:username', :controller =&gt; 'users', :action =&gt; 'show' map.connect '/:username/:id', :controller =&gt; 'submissions', :action =&gt; 'show' </code></pre> <p>So when they are viewing a submission the URL looks something like:</p> <blockquote> <p><a href="http://www.example.com/users%5Fusername/2342" rel="nofollow">http://www.example.com/users%5Fusername/2342</a></p> </blockquote> <p>The number is the id number of the category. So far so good. Where I am running into trouble is when I try to submit a comment on the submission. There is a form for submitting comments on each submission page that looks like this:</p> <pre><code>&lt;% form_for Comment.new do |f| %&gt; &lt;%= f.text_area :message %&gt; &lt;%= f.submit "Submit", :disable_with =&gt; 'Submitting...' %&gt; &lt;% end %&gt; </code></pre> <p>and the controller looks like this:</p> <pre><code>def create submission = Submission.find(params[:id]) comment = cat.comments.create(params[:comment]) comment.created_at = Time.now comment.save redirect_to submission end </code></pre> <p>Now every time I try to make a comment submission Rails returns: </p> <pre><code>ActiveRecord::RecordNotFound in CommentsController#create Couldn't find Submission without an ID or undefined method `answers' for nil:NilClass </code></pre> <p>Basically rails isn't pulling the :id from the URL with params and I don't know why. The submission page displays correctly for each ID in the URL, so I don't get why its not pulling it for this form. If I name the id explicitly (IE Submission.find(2345)) it works perfectly...so what am I missing? Am I just being stupid?</p> <p>My relationships are set up properly as well.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1876843/is-it-better-to-use-routes-or-modrewrite-to-forward-old-urls 2 Is it better to use routes or mod_rewrite to forward old URLs? Shpigford 2009-12-09T21:00:21Z 2009-12-09T21:39:46Z <p>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?</p> <p>I'm using Apache + Passenger so htaccess files work, but was curious if there was a standard for this sort of thing.</p> <p>FWIW, the URLs were changed from this: <a href="http://example.com/user/joeschmoe" rel="nofollow">http://example.com/user/joeschmoe</a></p> <p>to this: <a href="http://example.com/joeschmoe" rel="nofollow">http://example.com/joeschmoe</a></p> http://stackoverflow.com/questions/547920/rails-nested-resources 0 Rails nested resources Akshay 2009-02-13T22:18:21Z 2009-12-09T19:59:23Z <p>Here's the routes.rb: </p> <pre><code>map.resources :assignments, :shallow =&gt; true do |assignment| assignment.resources :problems end </code></pre> <p>How do i get the url to edit a problem (/assignments/xyz/problems/abc/edit), in code? I have tried both<br /> edit_assignment_problem_path(assignment,problem)<br /> and edit_problem_path(problem).<br /> While the first one works on my local setup, on server it says that method edit_assignment_problem_path is not defined. Any ideas?</p> http://stackoverflow.com/questions/1863292/how-do-i-route-user-profile-urls-to-skip-the-controller 1 How do I route user profile URLs to skip the controller? Shpigford 2009-12-07T22:13:38Z 2009-12-07T22:48:10Z <p>Right now my user profile URLs are like so:</p> <p><a href="http://example.com/users/joeschmoe" rel="nofollow">http://example.com/users/joeschmoe</a></p> <p>And that points to the <code>show</code> method in the user controller.</p> <p>What I'd ideally like to do is offer user profile URLs like this:</p> <p><a href="http://example.com/joeschmoe" rel="nofollow">http://example.com/joeschmoe</a></p> <p>So, what sort of route and controller magic needs to happen to pull that off?</p> http://stackoverflow.com/questions/1862392/rails-routing-what-is-the-difference-between-conditions-and-requirements-in-ro 0 Rails Routing: what is the difference between :conditions and :requirements in routing? deb 2009-12-07T19:40:48Z 2009-12-07T20:09:18Z <p>When should I use :conditions or :requirements in rails routing?</p> <p>Here are two examples:</p> <p>:conditions</p> <pre><code>map.connect "/foo/:view/:permalink", :controller =&gt; "foo", :action =&gt; "show", :view =&gt; /plain|fancy/, :permalink =&gt; /[-a-z0-9]+/, :conditions =&gt; { :method =&gt; :get } end </code></pre> <p>:requirements</p> <pre><code> map.connect 'posts/index/:page', :controller =&gt; 'posts', :action =&gt; 'index', :requirements =&gt; {:page =&gt; /\d+/ }, :page =&gt; nil end </code></pre> http://stackoverflow.com/questions/1854271/radiant-cms-custom-page-that-accepts-parameters-as-keywords 0 Radiant CMS custom page that accepts parameters as keywords giancarlo 2009-12-06T03:43:04Z 2009-12-06T03:43:04Z <p>is this possible in radiant cms without having to create/copy the same page all over again.</p> <p>home/tampa/brain-injury</p> <p>home/orlando/brain-injury</p> <p>home/auburndale/brain-injury</p> http://stackoverflow.com/questions/1850558/php-zend-route-config-ini-similar-patterns 0 PHP Zend Route Config.ini - similar patterns ojitori 2009-12-05T00:26:50Z 2009-12-05T19:37:02Z <p>Hi,</p> <p>I'm using a configuration file to route my requests in my application. I have the following entries:</p> <p>routes.deal.route = "deal/:id/*"</p> <p>routes.deal.defaults.controller = "deal"</p> <p>routes.deal.defaults.action = "index"</p> <p>routes.deal.reqs.id = "\d+"</p> <p>routes.deal.route = "deal/buy/:id/*"</p> <p>routes.deal.defaults.controller = "deal"</p> <p>routes.deal.defaults.action = "buy"</p> <p>routes.deal.reqs.id = "\d+"</p> <p>here's what the behavior I'm looking for: mysite.com/deal/75 --- this will display the details of Deal 75 (equivalent to mysite.com/deal/?id=75; controller=deal, action=index)</p> <p>mysite.com/deal/buy/75 -- buy deal 75 or (controller=deal, action=buy) -- equivalent to mysite.com/deal/buy?id=75</p> <p>I can only get one to work and not the other. Whichever is specified first in the config, that's what will work. </p> <p>Can anyone point out what I'm doing wrong here? Any help is greatly appreciated.</p> <p>thanks, Oji</p> http://stackoverflow.com/questions/1844803/problem-embedding-google-map-with-route 0 Problem embedding google map with route MoreThanChaos 2009-12-04T04:13:49Z 2009-12-05T09:28:36Z <p>I got iframe with googlemap containing static location of company headquoter, i used for this google generator, and all that works fine. </p> <p>I got also to make possible creating routes from any location to that destinantion which is headquoter, so i picked random location, again generated iframe for this map. Everything worked fine when i hardcoded iframe with planned route, even when i changed start point name, route changes as well.</p> <p>In the end, task i got, should be solved using one iframe, first it shows only headquoter and if user inputs location name then it shows route. Problem starts when i try to change iframe src using javascript, though i don't think that JS is problem here. </p> <p>Unwanted behavuiur is when instead of map with route i get whole google maps page, with planning route from a to b, loaded into iframe. Where a is blank and b is filled with headquoter location though that the same src for iframe work fine when it is hardcoded. What's more interesting when i switch back to map with one location everything is as it should be.</p> <p>Is there anything i could do to load map with route properly? I want to avoid using Google api</p> <p>Thanks in advance</p> <p>MTH</p> http://stackoverflow.com/questions/1838998/accessing-a-resource-in-routes-rb-by-using-attributes-other-than-id 1 Accessing a resource in routes.rb by using attributes other than Id Swamy g 2009-12-03T10:20:40Z 2009-12-03T10:54:24Z <p>I have the following in my routes.rb</p> <pre><code>map.resources :novels do |novel| novel.resources :chapters end </code></pre> <p>With the above defined route, I can access the chapters by using <code>xxxxx.com/novels/:id/chapters/:id</code>. But this is not what I want, the Chapter model has another field called number (which corresponds to chapter number). I want to access each chapter through an URL which is something like <code>xxxx.com/novels/:novel_id/chapters/:chapter_number</code>. How can I accomplish this without explicitly defining a named route? </p> <p>Right now I'm doing this by using the following named route defined ABOVE map.resources :novels</p> <pre><code>map.chapter_no 'novels/:novel_id/chapters/:chapter_no', :controller =&gt; 'chapters', :action =&gt; 'show' </code></pre> <p>Thanks.</p> http://stackoverflow.com/questions/1830274/catch-all-routes-not-working-using-regular-expression 0 Catch all routes not working using regular expression Gremo 2009-12-02T02:21:05Z 2009-12-03T02:32:57Z <p>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):</p> <pre><code> public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.MapRoute( "Default", "{controller}/{action}/{id}", new { controller = "Home", action = "Index", id = @"\d{1,}" } ); routes.MapRoute( "Catch All", "{*path}", new { controller = "Error", action = "NotFound" } ); } </code></pre> <p>But this is wrong! Why? If not an integer of min 1 of length, the first route should not match. I need also to handle not found coutroller and action... any ideas?</p> <p>Many thanks!</p> http://stackoverflow.com/questions/1391064/calculating-map-routes-on-android 0 Calculating map routes on Android Christian P. 2009-09-07T21:46:54Z 2009-11-30T21:00:03Z <p>I am trying to calculate a route based based on either geographic location or address. I figured the obvious way would be to use some part of the built-in Google Maps package, but it proved harder than assumed. There used to be a package called <code>com.google.googlenav</code>, but from that disappeared with the 1.0 release of the Android SDK.</p> <p>I know that Google Maps has a public JavaScript API, but since the application is developed for the Android (in Java) and I would like to have an offline alternative, is there any other library packages, built-in or 3rd party, that I can use to achieve this?</p> http://stackoverflow.com/questions/1806351/testing-rails-routes-cant-find-actioncontrollerassertionsroutingassertions 0 Testing rails routes: can't find ActionController::Assertions::RoutingAssertions methods nilbus 2009-11-27T01:09:50Z 2009-11-28T19:22:42Z <p>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.</p> <p>First, I'm assuming that these tests can be done in related unit test files. There seems to be no more obvious place, and none of the docs specify.</p> <p>That said, this is a condensed version of <code>test/unit/TitlesTest.rb</code></p> <pre><code>require File.dirname(__FILE__) + '/../test_helper' class TitleTest &lt; Test::Unit::TestCase # include ActionController::Assertions::RoutingAssertions def test_routes assert_routing "games", { :controller =&gt; "titles", :section =&gt; "games", :action =&gt; "index", :id =&gt; nil } end end </code></pre> <p><code>rake test:units</code> fails with the error: </p> <pre><code>NoMethodError: undefined method `assert_routing' for #&lt;TitleTest:0x7f387232ec98&gt; /test/unit/title_test.rb:7:in `test_routes' </code></pre> <p>I saw in the Rails API that assert_routing is defined in <code>ActionController::Assertions::RoutingAssertions</code>, so I attempted to include that module, only to have it fail elsewhere.</p> <p>Note the commented <code>include</code> line in the code example above.</p> <pre><code>NoMethodError: undefined method `clean_backtrace' for #&lt;TitleTest:0x7fd895fadf00&gt; /test/unit/title_test.rb:7:in `test_routes' </code></pre> <p><code>clean_backtrace</code> is another testing method defined in ActionController::TestCase::Assertions.</p> <p>I'm not getting any google search results for these errors - no one else seems to be having this problem. The problem also occurs if I recreate the scenario in a freshly generated rails app. I don't think I should be having to include these modules in my test cases. What might be wrong here?</p> http://stackoverflow.com/questions/1811163/rails-nested-resources-conflict-how-to-scope-the-index-action-depending-on-the 3 Rails: Nested resources conflict, how to scope the index action depending on the called route knoopx 2009-11-28T00:44:55Z 2009-11-28T17:41:00Z <p>Imagine you have two defined routes:</p> <pre><code>map.resources articles map.resources categories, :has_many =&gt; :articles </code></pre> <p>both accessible by helpers/paths</p> <pre><code>articles_path # /articles category_articles_path(1) # /category/1/articles </code></pre> <p>if you visit <code>/articles</code>, <code>index</code> action from <code>ArticlesController</code> is executed.</p> <p>if you visit <code>/category/1/articles</code>, <code>index</code> action from <code>ArticlesController</code> is executed too.</p> <p>So, what is the best approach for conditionally selecting only the scoped articles depending on the calling route?</p> <pre><code>#if coming from the nested resource route @articles = Articles.find_by_category_id(params[:category_id]) #else @articles = Articles.all </code></pre> http://stackoverflow.com/questions/1811037/trouble-with-codeigniter-routes-involving-a-query 0 Trouble with Codeigniter Routes involving a query Ethan 2009-11-27T23:49:46Z 2009-11-28T03:01:04Z <p>Hey SO,</p> <p>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 in a premade messageboard that already does everything with queries. This is my route:</p> <p>$route['messageboard/:any'] = "messageboard/index";</p> <p>Any in this case refers to a script name. So if it's messageboard/admin.php, I have it load a view that loads my premade messageboard's script "admin.php". It's working just fine if I do messageboard/admin.php. It does fine if I do messageboard/admin.php?. If I put a parameter into the query, however, the route won't correctly send the user to the messageboard controller, and instead sends them to a 404. Does anyone have any ideas on how to make this work? I would be eternally grateful. Thanks!</p> http://stackoverflow.com/questions/1801756/can-someone-please-explain-to-me-in-clear-laymans-terms-what-the-deal-is-with-m 3 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? Ash 2009-11-26T05:49:23Z 2009-11-26T08:55:08Z <p>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).</p> <p>While I understand the point of the <code>map.connect</code> functions in the route.rb file, I don't understand the "resources" and "named route" features of Rails. I have my Rails book here and read it over several times, but I still don't get it. The named routes I kinda get - I think that they are either rules, either explicitly defined, or calculated by a code block, but the resources are a complete mystery to me; the only thing I've gleamed rom them is that you just NEED them if you want some of the cool stuff to work, such as being able to call 'resource_path' (and its awesome related family of methods).</p> <p>My current project has:</p> <pre><code>map.resources :application_forms map.resources :sections map.resources :questions map.resources :seed_answers map.resources :question_types map.resources :form_questions map.resources :rules map.resources :form_rules </code></pre> <p>..but my Rails book has this awesome kinda "has_many" and "only" type hashes and parameters hanging off them and I can't work out exactly when I am supposed to use them, nor what the benefit is. </p> <p>Can anyone set me straight?</p> http://stackoverflow.com/questions/1793928/rails-url-rewriting 0 rails url rewriting Mathieu 2009-11-25T00:28:53Z 2009-11-25T02:03:26Z <p>Hi,</p> <p>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 an error message.</p> <p>I would like to always have <a href="http://localhost/person" rel="nofollow">http://localhost/person</a> instead of <a href="http://localhost/person/searchPerson" rel="nofollow">http://localhost/person/searchPerson</a></p> <p>so I added a route </p> <pre><code>map.connect "person/", :controller =&gt; 'person', :action =&gt; 'searchPerson' </code></pre> <p>so when I type <a href="http://localhost/person" rel="nofollow">http://localhost/person</a> I can see the page searchPerson.html.erb but when I perform a search it renders searchperson and the url becomes <a href="http://localhost/person/searchPerson" rel="nofollow">http://localhost/person/searchPerson</a></p> <p>my function searchPerson</p> <pre><code>def searchPerson flash[:error]=nil @name=params[:name] #if a name is provided if(@name!=nil) #trying to find the person with the name ret = Person::lookup @name #error, the person cannot be found if ret[:err] flash[:error]="We could not find this person" #person found, user is redirected to the person details else redirect_to url_for(:controller =&gt; 'person', :action =&gt; 'details', :id =&gt; ret[:person].id) end end end </code></pre> <p>How to avoid that? thanks</p> http://stackoverflow.com/questions/1780031/cakephp-and-admin-routing-with-a-catch-all-action 0 CakePHP and admin routing with a 'catch all' action. Pickledegg 2009-11-22T21:16:12Z 2009-11-24T17:06:19Z <p>I'm trying to build a mini cms, whereby all urls go to the index action of a 'products' controller.</p> <p>The products_controller checks the url and treats it as a parameter, so '/widgets' would hit the index($url) function and pass 'widgets' to be the $url param.</p> <p>I then do a lookup like this checking a field called url:</p> <pre><code>$product= $this-&gt;Product-&gt;find('first', array('conditions' =&gt; array('Product.url LIKE' =&gt; $url))); </code></pre> <p>I then spit this $product out to my view. This method means I can add a product in my database, and specify the url for the product, without having to add stuff to routes. I also have a navbar which is simply made up of all the urls in the database, using a find all.</p> <p>My problem is my routing and my admin. Because I'm routing ALL urls to the index() of the products_controller, its causing no end of problems with my admin section. I've put my admin in a seperate controller because of this, and manually connected the urls to the actions (index,view,edit,add,delete). The thing is my admin section doesnt work as the urls are being routed incorrectly, and its breaking the admin routing.</p> <p>Can anyone see a way of having a 'catch all' route like that, and ALSO have my admin routing working. </p> <p>Hope I've explained this clearly enough, if not please shout as I'd like to figure this one out.</p>