active questions tagged url-routing - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T08:05:12Z http://stackoverflow.com/feeds/tag/url-routing http://www.creativecommons.org/licenses/by-nc/2.5/rdf 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/1891324/is-it-ok-to-send-a-301-redirect-with-an-action-filter 1 Is it OK to send a 301 redirect with an action filter? DM 2009-12-11T22:38:14Z 2009-12-11T23:43:28Z <p>I'm writing a new asp.net mvc application and I've been toying with the idea of allowing my user to post short, concise urls to content that he has posted. Those short url's will be handy in cramped spaces like Twitter and comment areas. I like this idea as I'm not a huge fan of url shorteners because they're so vague and you're never really sure what you're going to get. Instead of using a url shortener I want to give my client the ability to post: </p> <p><code>http://domain.com/p/234</code> </p> <p>which does a 301 redirect to:</p> <p><code>http://domain.com/2009/08/10/this-is-the-content-title</code></p> <p>Now, this is a pretty simple process with a couple of extra routes and a custom ActionResult. The custom ActionResult I implemented is an extension method on a RedirectToRouteResult... It's fairly straightforward but about 20 lines of code nonetheless. I played around with doing the same functionality, only this time with an ActionFilter. My action filter looks like:</p> <pre><code>public class PermanentRedirectAttribute : ActionFilterAttribute { public override void OnResultExecuted(ResultExecutedContext filterContext) { filterContext.HttpContext.Response.StatusCode = 301; } } </code></pre> <p>and my action method looks like (I removed a bunch of code to simplify):</p> <pre><code>[PermanentRedirect] public ActionResult ShortUrl(int id) { return RedirectToAction("Post", id); } </code></pre> <p>My question is this: Did I miss something or is it this simple? I've found some other posts where people are looking to do something similar and they always create a custom ActionResult. Besides using less overall code, given that this behavior may need to be used elsewhere on other action methods, I don't see why it shouldn't be an ActionFilter. With that being said I'm fairly new to the Request and Response objects so I'm not sure if I'm missing something.</p> http://stackoverflow.com/questions/1881559/url-structure-parent-to-child-relationship-with-static-files 0 URL Structure Parent to Child Relationship With Static Files Chad 2009-12-10T15:03:54Z 2009-12-10T15:15:31Z <p>Currently I can not show site structure in the url IE www.site.com/parent-page/child-page without creating a subdirectory at the root. Is there an easy way to dynamically create the parent to child relationship other than creating subdirectories?</p> http://stackoverflow.com/questions/1872048/best-url-for-heirarchical-data-crud-operations 0 best url for heirarchical data crud operations Schotime 2009-12-09T06:44:44Z 2009-12-09T06:44:44Z <p>I have 4 one-to-many relationships in a row so that each entity essentially has a parent entity. What is the best way to do this. Heres what i have so far?</p> <p>for the entities - Items -> Gallery -> Image -> Image Properties</p> <p>The url for items is easy </p> <p><strong>item/list</strong><br> for the gallery though it could be </p> <p><strong>item/gallery/1</strong><br> for the gallery list of item 1. and so on. so for gallery 3 you could have image </p> <p><strong>gallery/images/3</strong></p> <p>And so on...</p> <p>How do you guys do it?<br> Cheers.</p> http://stackoverflow.com/questions/1864393/python-selector-url-routing-library-experience-opinions 1 Python Selector (URL routing library), experience/opinions? Richard Levasseur 2009-12-08T03:33:34Z 2009-12-08T15:09:57Z <p>Does anyone have opinions about or experience with <a href="http://lukearno.com/projects/selector/" rel="nofollow">Python Selector</a>? It looks great, but I'm a bit put off by its "Alpha" status on pypi and lack of unit tests.</p> <p>I mostly like that its simple, self contained, and pure WSGI. All other url routers I've found assume I'm using django, or pylons, or paste, or pull in lots of other dependencies, or just don't let me create a simple <em>mapping</em> of url patterns to wsgi apps. Really, all I want to do is:</p> <pre><code>mapper.add("/regex/{to}/{resource}", my_wsgi_app) mapper.add("/another/.*", other_wsgi_app) ...etc... </code></pre> <p>Anyways, has anyone used it before, or know of projects that have?</p> http://stackoverflow.com/questions/1862786/rails-willpaginate-routing-caching-duplicate-pages 1 Rails will_paginate routing caching duplicate pages deb 2009-12-07T20:47:35Z 2009-12-07T21:57:11Z <p>I use the will_paginate plug-in. </p> <p>In oder to generate routes that I can cache ( <code>/posts/index/2</code> instead of <code>/posts?page=2</code>) I added the following to my routes.rb:</p> <pre><code>map.connect '/posts/index/1', :controller =&gt; 'redirect', :url =&gt; '/posts/' map.connect 'posts/index/:page', :controller =&gt; 'posts', :action =&gt; 'index', :requirements =&gt; {:page =&gt; /\d+/ }, :page =&gt; nil </code></pre> <p>The first line redirects <code>/posts/index/1</code> to <code>/posts/</code> using a redirect controller, to avoid having a duplicate page. </p> <p>Is there something wrong with the way I set up the <code>'posts/index/:page'</code> rule? </p> <p>I thought adding <code>:requirements =&gt; {:page =&gt; /\d+/ }</code> would ensure that <code>/post/index/</code> without a <code>:page</code> parameter should not work, but <code>/posts/index.html</code> is getting cached. </p> <p>How can I redirect <code>/posts/index/</code> to <code>/posts/</code> to avoid having both <code>/posts.html</code> and <code>/posts/index.html</code> ?</p> <p>Thanks</p> <p><hr></p> <p>UPDATE</p> <p>I simply added </p> <pre><code>map.connect '/posts/index/', :controller =&gt; 'redirect', :url =&gt; '/posts/' </code></pre> <p>And I'm not getting duplicate pages anymore. </p> <p>However, I still don't uderstand why I was getting <code>/posts/index.html</code>. Any explanations or suggestions on how to make this rule more succinct are welcome ;)! </p> <pre><code>map.connect '/posts/index/1', :controller =&gt; 'redirect', :url =&gt; '/posts/' map.connect '/posts/index/', :controller =&gt; 'redirect', :url =&gt; '/posts/' map.connect 'posts/index/:page', :controller =&gt; 'posts', :action =&gt; 'index', :requirements =&gt; {:page =&gt; /\d+/ }, :page =&gt; nil </code></pre> http://stackoverflow.com/questions/1850939/mvc-advanced-routing 0 MVC Advanced Routing George 2009-12-05T02:35:31Z 2009-12-05T02:42:52Z <p>I am attempting to route a URL that does not have a static action i.e. Users can create systems which can be represented by any string. I would like to have a URL like the following:</p> <p><code>http://yousite.com/System/WIN1234/Configure</code></p> <p>By default the routing mechanism thinks that WIN1234 is the action, whereas I would like to be able to catch WIN1234 and make a decision on which method to throw. As in:</p> <pre><code>public void RouteSystemRequest(string system, string action) { switch (action) { case "Configure": ConfigureSystem(string system); break; } } </code></pre> <p>How can I accomplish this? Is this logical or am I thinking about this all wrong?</p> <p>Thanks! George</p> http://stackoverflow.com/questions/1848332/mvc-custom-routing 0 MVC Custom Routing George 2009-12-04T17:04:05Z 2009-12-04T20:27:36Z <p>I'm new to MVC. I'm having trouble trying to accomplish having a route setup in the following manner:</p> <p>System/{systemName}/{action}</p> <p>Where systemName is dynamic and does not have a "static" method that it calls. i.e.</p> <p><a href="http://sitename.com/Systems/" rel="nofollow">http://sitename.com/Systems/</a><strong>LivingRoom</strong>/View</p> <p>I want the above URL to call a method such as,</p> <p>public void RouteSystem(string systemName, string action) { // perform redirection here. }</p> <p>Anyone know how to accomplish this?</p> <p>Thanks! George</p> http://stackoverflow.com/questions/1828317/internationalization-and-search-engine-optimization 1 Internationalization and Search Engine Optimization Matt Huggins 2009-12-01T19:28:10Z 2009-12-04T12:44:18Z <p>I'd like to internationalize my site such that it's accessible in many languages. The language setting will be detected in the request data automatically, and can be overridden in the user's settings / stored in the session.</p> <p>My question pertains to how I should display the various versions of the same page based upon language in terms of the pages' URL's. Let's say we're just looking at the index page of <code>http://www.example.com/</code>, which defaults to English. Now if a French-speaker loads the index page, should I simply keep the URL as <code>http://www.example.com/</code>, or should I have it redirect to <code>http://www.example.com/fr/</code>?</p> <p>I'm trying to figure out what benefits or consequences this has in terms of SEO. I don't want the French version of the site showing up in google.com if it prevents the English version of the same pages from showing up there, but I would like it to show up in google.fr.</p> http://stackoverflow.com/questions/1818533/faking-method-attributes-in-php 5 Faking method attributes in PHP? Vegard Larsen 2009-11-30T08:31:25Z 2009-12-04T04:09:42Z <p>Is it possible to use the equivalent for .NET method attributes in PHP, or in some way simulate these?</p> <p><strong>Context</strong></p> <p>We have an in-house URL routing class that we like a lot. The way it works today is that we first have to register all the routes with a central route manager, like so:</p> <pre><code>$oRouteManager-&gt;RegisterRoute('admin/test/', array('CAdmin', 'SomeMethod')); $oRouteManager-&gt;RegisterRoute('admin/foo/', array('CAdmin', 'SomeOtherMethod')); $oRouteManager-&gt;RegisterRoute('test/', array('CTest', 'SomeMethod')); </code></pre> <p>Whenever a route is encountered, the callback method (in the cases above they are static class methods) is called. However, this separates the route from the method, at least in code.</p> <p>I am looking for some method to put the route closer to the method, as you could have done in C#:</p> <pre><code>&lt;Route Path="admin/test/"&gt; public static void SomeMethod() { /* implementation */ } </code></pre> <p>My options as I see them now, are either to create some sort of phpDoc extension that allows me to something like this:</p> <pre><code>/** * @route admin/test/ */ public static function SomeMethod() { /* implementation */ } </code></pre> <p>But that would require writing/reusing a parser for phpDoc, and will most likely be rather slow.</p> <p>The other option would be to separate each route into it's own class, and have methods like the following:</p> <pre><code>class CAdminTest extends CRoute { public static function Invoke() { /* implementation */ } public static function GetRoute() { return "admin/test/"; } } </code></pre> <p>However, this would still require registering every single class, and there would be a great number of classes like this (not to mention the amount of extra code).</p> <p>So what are my options here? What would be the best way to keep the route close to the method it invokes?</p> http://stackoverflow.com/questions/1837976/is-there-a-such-thing-as-a-routing-pattern-for-websites 0 Is there a such thing as a routing pattern for websites? John Baker 2009-12-03T06:08:12Z 2009-12-03T08:50:43Z <p>I didn't find any info on searches when I looked this up. I've been doing a lot of research on design patterns but I haven't seen anything as far as routing goes. What I mean is this: back in my php days I would write code on one page and then pass it to the next. That created (though I wasn't aware of it at the time) tightly coupled code where changing the routing required I muddle through a long chain of pages. </p> <p>I was wondering if there was any specific pattern or class of patterns that deal with sending our form data back to a central object and having that call the next form. So for example I would pass back to a routing.php rather than signUpPage2.php. Then routing.php would passs the data to signUpPage2.php.</p> <p>I know this is what PHP Cake and RoR try to do but I am specifically wondering if there is a pattern for this. This doesn't seem to just be MVC I don't thing but I could be wrong.</p> <p>Thanks!</p> <p>Edit, does anyone have any book recommendation for these types of patterns? Thanks</p> http://stackoverflow.com/questions/1797279/zend-framework-how-to-disable-default-routing 2 Zend Framework: How to disable default routing? Maurice 2009-11-25T14:33:15Z 2009-12-01T19:51:58Z <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-&gt;getRouter()-&gt;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/1648393/how-to-create-different-view-depending-on-logged-in-users-role-in-asp-net-mvc 1 How to create different View depending on logged in user's role in ASP.NET MVC? munna 2009-10-30T07:00:02Z 2009-11-30T18:31:06Z <p>I am kind of new to <a href="http://en.wikipedia.org/wiki/ASP.NET%5FMVC%5FFramework" rel="nofollow">ASP.NET MVC</a>, so need your help getting me through a problem:</p> <p>In my application the LogOn will be done using the Role of the user. I have my custom database schema (like User, Role, UserInRole etc.) and I am using my custom MembershipProvider and RoleProvider to achieve Logon. </p> <p>BTW I am using the MVC default Account controller itself with some modification. What I am trying to achieve now is that depending upon the Role of logged in user I want to create a different View for the user.</p> <p>Can I use the returnUrl parameter of LogOn action method in any way? (This parameter is set to null by default). If yes how can I construct and send returnUrl depending on Role? Or is there any easier way to achieve this?</p> http://stackoverflow.com/questions/1819836/how-do-you-pass-a-post-method-in-a-url-manually 1 How do you pass a POST method in a url manually? adam 2009-11-30T13:30:20Z 2009-11-30T13:49:38Z <p>I need to give an external payment site a return url to my site after a customer pays. It will be to my create action in a RESTful subscription controller. </p> <p>Ive tried giving the payment site this</p> <p>blah.com/users/7/subscription/?_method=POST</p> <p>but on return my app keeps trying to call my show action presumably because it thinks its a get request and not a post. So somethings wrong with how i pass the method in the url but i cant figure out what.</p> <p>Users are plural and they can only have one subscription which is defined in my routes as singular i.e. map.resource </p> <p>Can anyone help?</p> http://stackoverflow.com/questions/1808447/asp-net-url-routing-on-root-in-iis-6-0 0 ASP.NET URL Routing on root in IIS 6.0 Vijay Rayapati 2009-11-27T12:19:36Z 2009-11-27T13:59:24Z <p>Hi All,</p> <p>I enabled a routing on ASP.NET web application running IIS 6.0 using</p> <p>RouteTable.Routes.MapPageRoute("Simple", "{testvalue}", "~/Test.aspx"); in Global.aspx.cs</p> <p>This works fine when I use <a href="http://www.MyDomain.com/Hello" rel="nofollow">http://www.MyDomain.com/Hello</a>, however when I use <a href="http://subdomain.mydomain.com" rel="nofollow">http://subdomain.mydomain.com</a> instead of loading the configured default page (default.aspx), it tries to route the request and sending to login.aspx page as we use Forms Authentication.</p> <p>Any suggestions on how to enable routing at root directory?.</p> http://stackoverflow.com/questions/1802995/urlrewriting-with-isapirewrite 0 URL_Rewriting with ISAPI_rewrite basit74 2009-11-26T10:53:51Z 2009-11-27T11:10:09Z <p>I have a problem in ISAPI_rewrite 3.</p> <p>a have a url like</p> <p>www.example.com/web/index.html?ag=2154</p> <p>What I want is, when the user writes this address it should be converted to agent's subdomain like</p> <p>www.2154.example.com/web/index.html?ag=2154</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/836917/htaccess-and-seo-friendly-urls 0 .htaccess and seo-friendly urls Mo Boho 2009-05-07T20:40:33Z 2009-11-24T13:49:03Z <p>We have an ecommerce site right now that carries a range of brands. The brand pages carry urls as follows:</p> <ol> <li><code>http://www.&lt;DOMAIN&gt;.com/catalog/brand/view?id=2</code></li> </ol> <p>We need to utilize more friendly (seo-friendly) urls such as:</p> <ol> <li><code>http://www.&lt;DOMAIN&gt;.com/&lt;BRAND&gt;</code></li> </ol> <p>but such that it would resolve #1 above.</p> <p>Is this done in .htaccess files in the root? If so, what is the correct way to go about this?</p> <p>Keep in mind URL#1 is the legitimate address, but we want to utilize the URL#2 format for linking. It's not a 301 type redirect is it? That's more "permanent" unless I misunderstood it or something, no?</p> <p>Many thanks.</p> http://stackoverflow.com/questions/1785596/django-links-generated-with-url-how-to-make-them-secure 1 Django - links generated with {% url %} - how to make them secure? kender 2009-11-23T20:05:57Z 2009-11-23T22:10:21Z <p>If I want to give an option for users to log in to a website using <code>https://</code> instead of <code>http://</code>, I'd best to give them an option to get there in my view or template. </p> <p>I'd like to have the link "Use secure connection" on my login page - but then, how do I do it without hardcoding the URL? </p> <p>I'd like to be able to just do:</p> <pre><code>{% url login_page %} {% url login_page_https %} </code></pre> <p>and have them point to <code>http://example.com/login</code> and <code>https://example.com/login</code>. </p> <p>How can I do this? </p> http://stackoverflow.com/questions/1748483/asp-net-friendly-urls 3 ASP.NET Friendly URLs Nick Spiers 2009-11-17T12:19:07Z 2009-11-17T21:21:41Z <p>In my research, I found 2 ways to do them.</p> <p>Both required modifications to the Application_BeginRequest procedure in the Global.Asax, where you would run your code to do the actual URL mapping (mine was with a database view that contained all the friendly URLs and their mapped 'real' URLs). Now the trick is to get your requests run through the .NET engine without an aspx extension. The 2 ways I found are:</p> <ol> <li><p>Run everything through the .NET engine with a wildcard application extension mapping.</p></li> <li><p>Create a custom aspx error page and tell IIS to send 404's to it.</p></li> </ol> <p>Now here's my question:</p> <p><strong>Is there any reason one of these are better to do than the other?</strong></p> <p>When playing around on my dev server, the first thing I noticed about #1 was it botched frontpage extensions, not a huge deal but that's how I'm used to connecting to my sites. Another issue I have with #1 is that even though my hosting company is lenient with me (as I'm their biggest client) and will consider doing things such as this, they are wary of any security risks it might present.</p> <p>`#2 works great, but I just have this feeling it's not as efficient as #1. Am I just being delusional?</p> <p>Thanks</p> http://stackoverflow.com/questions/1741608/codeigniter-routing-htaccess-uri-issues 0 CodeIgniter Routing / Htaccess / URI issues Michael 2009-11-16T11:30:03Z 2009-11-17T01:36:14Z <p>Hi all,<br> I recently joined a team of devs and I'm trying to get an SVN checked out onto my local machine. Unfortunately, I've run into some issues with links and routing. My local machine is using a WAMP setup.</p> <p>Let's say I have in my controller:</p> <pre><code>function testfunc()($this-&gt;load-&gt;view('testfunc'); </code></pre> <p>and in my testview view I have </p> <pre><code>&lt;li&gt;&lt;a href="&lt;?=site_url('testfunc')?&gt;"&gt;what we do&lt;/a&gt;&lt;/li&gt; </code></pre> <p>At first, I was getting a URL disallowed characters issue. Thumbing through some threads, I added in rawencode($str) and some other things. </p> <p>Now I get a 404 Page Found error, when the files are clearly there. It appears as though my controller isn't being called, and in turn the view is not called</p> <p>Any suggestions?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1741505/code-igniter-url-routing-question-using-trailing-slashes 0 Code Igniter url routing question (using trailing slashes) unknown (google) 2009-11-16T11:07:47Z 2009-11-16T11:37:48Z <p>I am brand new to codeIgniter. </p> <p>I am very particular about urls on the sites that I develop. Is it possible to create these sorts of urls? Generally sites I develop have an integrated admin interface as well with <strong>new, edit or delete added onto the end of the url</strong> following a slash.</p> <p>Here are some hypothetical examples (one with an admin url):</p> <p><strong>top level pages (no trailing slash)</strong></p> <pre><code>site.com/about site.com/contact site.com/contact/edit </code></pre> <p><strong>section index lists (lists have trailing slash)</strong> </p> <pre><code>site.com/blog/ site.com/products/ site.com/products/edit </code></pre> <p><strong>section pages (lists have trailing slash)</strong> </p> <pre><code>site.com/blog/first-post site.com/products/best-product site.com/products/new site.com/products/best-product/delete </code></pre> <p><strong>section categories</strong></p> <pre><code>site.com/blog/code-questions/ site.com/products/red-products/ site.com/products/red-products/delete </code></pre> <p>the first problem I see is sending a url with trailing slash to a different controller then without one. Since you can't add them in the routing file. For instance with top level pages how would I know to call the Pages controller? how do I tell them apart from section index lists? I can't add trailing slashes in routes.php!</p> <pre><code>site.com/about site.com/blog/ </code></pre> <p>same with the section pages vs categories.</p> <p>generally I have done this in the past with an .htaccess file.</p> <p><strong>some examples of how I structure htaccess files for urls in the past in my own applications</strong></p> <pre><code>RewriteRule ^new$ index.php?static&amp;new RewriteRule ^edit$ index.php?edit RewriteRule ^([a-z0-9\-]+)$ index.php?static&amp;post=$1 RewriteRule ^([a-z0-9\-]+)/edit$ index.php?static&amp;edit=$1 RewriteRule ^([a-z0-9\-]+)/$ index.php?section=$1 RewriteRule ^([a-z0-9\-]+)/new$ index.php?section=$1&amp;new RewriteRule ^([a-z0-9\-]+)/([a-z0-9\-]+)$ index.php?section=$1&amp;post=$2 RewriteRule ^([a-z0-9\-]+)/([a-z0-9\-]+)/$ index.php?section=$1&amp;category=$2 </code></pre> <p>Is there anyway to do this with codeIgniter? Should I just slather rewrite rules on top of the controller generated urls? Is it possible to do this with the routing.php file? <strong>If codeIgniter doesn't do this, could you suggest a framework that can?</strong></p> <p><strong>Also How do I handle using hyphens in the url when tied to the controller class name?</strong></p> http://stackoverflow.com/questions/1724058/removing-white-space-of-urls-with-in-cakephp-routing 0 Removing white space of urls with - in cakephp routing? Terrific 2009-11-12T17:42:57Z 2009-11-13T18:30:14Z <p>I have a URL like</p> <p><a href="http://abc.com/users/index/University" rel="nofollow">http://abc.com/users/index/University</a> of Kansas and i want to make it University-of-Kansas. How is it possible via mysql using Cakephp ???</p> http://stackoverflow.com/questions/1720721/django-filtering-problem 0 Django Filtering Problem Stephen 2009-11-12T08:23:44Z 2009-11-12T14:56:56Z <p>I'm trying to set up a filter query in one of my views...basically my code looks as below:</p> <pre><code>def inventory(request): vehicle = Vehicle.objects.all().exclude(status__status='Incoming').order_by('common_vehicle__series__model__manufacturer__manufacturer', 'common_vehicle__series__model__model', 'common_vehicle__year') year_count = Vehicle.objects.exclude(status__status='Incoming').order_by('-common_vehicle__year__year').values('common_vehicle__year__year').annotate(count=Count('id')) make_count = Vehicle.objects.exclude(status__status='Incoming').order_by('common_vehicle__series__model__manufacturer__manufacturer').values('common_vehicle__series__model__manufacturer__manufacturer').annotate(count=Count('id')) return render_to_response('vehicles.html', {'vehicle': vehicle, 'make_count': make_count, 'year_count': year_count,}) def year_filter(request, year): vehicle = Vehicle.objects.filter(common_vehicle__year__year=year) return render_to_response('filter.html', {'vehicle':vehicle,}) def make_filter(request, make): vehicle = Vehicle.objects.filter(common_vehicle__series__model__manufacturer__manufacturer=make).exclude(status__status='Incoming') return render_to_response('filter.html', {'vehicle':vehicle,}) </code></pre> <p>So far when I try any of the last two views, I'm only getting the query set from the first view i.e. inventory. The URLConf file looks as below:</p> <pre><code>(r'^inventory/year/(?P&lt;year&gt;d{4})/?$', 'app.vehicles.views.year_filter'), (r'^inventory/make/(?P&lt;make&gt;)/', 'app.vehicles.views.make_filter'), </code></pre> http://stackoverflow.com/questions/1697148/how-to-use-url-routing-in-asp-net-4-0 0 how to use url routing in asp.net 4.0 Gupta Ji 2009-11-08T16:59:26Z 2009-11-11T07:09:40Z <p>how i can use url routing in asp.net 4.0 . how it is possible in asp.net 4.0 ; </p> <pre><code>are you provide some demo code , sample project for it </code></pre> http://stackoverflow.com/questions/1707327/domains-foreward-slash 0 Domains & Foreward Slash David Logan 2009-11-10T11:34:14Z 2009-11-10T11:44:18Z <p>Hi,</p> <p>This is rather difficult to explain so please bear with me.</p> <p>We will be hosting 4 websites on our server and the plan is to have each site sit under its own domain:</p> <ul> <li>site-a.com</li> <li>site-b.com</li> <li>sub1.site-b.com</li> <li>sub2.site-b.com</li> </ul> <p>Notice the two sub domains!</p> <p>However, our client has asked if we can implement the following url structure instead of using subdomains:</p> <ul> <li>sub1.site-b.com BECOMES site-b.com/sub1/</li> <li>sub2.site-b.com BECOMES site-b.com/sub2/</li> </ul> <p>Does this make sense so far??? So we are using forward slash as opposed to sub domains.</p> <p>Can you advise on the best way to achieve this please?</p> <p>Thanks for any help!</p> <p>Dave.</p> http://stackoverflow.com/questions/1706171/asp-net-mvc-optional-parameter 2 asp.net mvc optional parameter Erick 2009-11-10T07:26:30Z 2009-11-10T08:02:54Z <p>I am trying here to kinda merge 2 routes in 1 with asp.net mvc</p> <p>These routes are : </p> <blockquote> <p><a href="http://www.example.com/e/1" rel="nofollow">http://www.example.com/e/1</a></p> </blockquote> <p>and </p> <blockquote> <p><a href="http://www.example.com/e/1,name-of-the-stuff" rel="nofollow">http://www.example.com/e/1,name-of-the-stuff</a></p> </blockquote> <p>Currently it is set as this in the Global.asax.cs : </p> <pre><code>routes.MapRoute( "EventWithName", "e/{id},{name}", new { controller = "Event", action = "SingleEvent", id = "" }, new { id = @"([\d]+)" } ); routes.MapRoute( "SingleEvent", "e/{id}", new { controller = "Event", action = "SingleEvent", id = "" }, new { id = @"([\d]+)" } ); </code></pre> <p>I tried to handle it by modifying the 1st route like this one : </p> <pre><code>routes.MapRoute( "EventWithName", "e/{id}{name}", new { controller = "Event", action = "SingleEvent", id = "" }, new { id = @"([\d]+)", name = @"^,(.*)" } ); </code></pre> <p>It is not working as I need to separate the 2 parameters with a slash or at least a character.</p> <p>My most possible idea to solve this would be using the regex, as I only need the id part. The name is only descriptive and used for SEO purposes. Basically is there a way to use some kind of Regex of the type of <code>([\d]+),(.*)</code> and the for <code>id = "$1"</code> or something like that ?</p> http://stackoverflow.com/questions/1090409/deploying-asp-net-mvc-iis6-0-how-to-change-route-to-include-aspx 3 Deploying asp.net mvc iis6.0 how to change route TO include .aspx vdh_ant 2009-07-07T04:52:24Z 2009-11-10T07:03:09Z <p>Hi guys</p> <p>This is my routing tables where do I put the various '.aspx' registrations?</p> <pre><code>//Turns off the unnecessary file exists check this._Routes.RouteExistingFiles = true; //Ignore text, html, xml files. this._Routes.IgnoreRoute("{file}.txt"); this._Routes.IgnoreRoute("{file}.htm"); this._Routes.IgnoreRoute("{file}.html"); this._Routes.IgnoreRoute("{file}.xml"); //Ignore axd files such as assest, image, sitemap etc this._Routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); //Ignore the assets directory which contains images, js, css &amp; html this._Routes.IgnoreRoute("Assets/{*pathInfo}"); //Ignore the error directory which contains error pages this._Routes.IgnoreRoute("ErrorPages/{*pathInfo}"); //Exclude favicon (google toolbar request gif file as fav icon) this._Routes.IgnoreRoute("{*favicon}", new { favicon = @"(.*/)?favicon.([iI][cC][oO]|[gG][iI][fF])(/.*)?" }); //Photo routes this._Routes.MapRoute("PhotoAssets", "Photos/Photo/{photoId}/Size/{photoSizeClassificationId}", MVC.Photo.Photo(0, null)); //Handles department profile routes this._Routes.MapRoute("WorkerProfileLeader", "Department/{departmentId}/Worker/Profile/Leader/List/{viewType}", MVC.WorkerProfile.List(PersonType.Leader, "", DisplayViewType.SummaryThumbnailList)); this._Routes.MapRoute("WorkerProfile", "Department/{departmentId}/Worker/Profile/{personType}/List/{viewType}", MVC.WorkerProfile.List(PersonType.Pleb, "", DisplayViewType.ThumbnailGrid)); this._Routes.MapRoute("WorkerProfilePerson", "Department/{departmentId}/Worker/Profile/{personType}/Detail/{personId}", MVC.WorkerProfile.Detail(PersonType.Pleb, "", "")); //Default route mapping this._Routes.MapRoute("Start", "Default.aspx", MVC.Home.Index()); this._Routes.MapRoute("Default", "{controller}/{action}", MVC.Home.Index()); </code></pre> <p>Cheers Anthony</p> http://stackoverflow.com/questions/1702966/url-mod-rewrite 2 URL Mod-Rewrite Mike B. 2009-11-09T18:49:06Z 2009-11-09T19:46:03Z <p>Hello,</p> <p>I currently have a working URL:</p> <blockquote> <p><a href="http://example.com/security-services.php?service=fixed-camera-surveillance" rel="nofollow">http://example.com/security-services.php?service=fixed-camera-surveillance</a></p> </blockquote> <p>and then I have PHP say, <code>$_REQUEST['service']</code> to do some stuff...</p> <p>But I'd like to achieve the same function if the URL looked like this:</p> <blockquote> <p><a href="http://example.com/security-services/fixed-camera-surveillance" rel="nofollow">http://example.com/security-services/fixed-camera-surveillance</a></p> </blockquote> <p>Thanks!</p> http://stackoverflow.com/questions/1651974/sub-net-routing 0 Sub-net Routing [closed] unknown (google) 2009-10-30T19:57:20Z 2009-11-08T04:20:36Z <p>Applications hosted on servers located in the same subnet cannot reference domain names (VIP) hosted on the load balancer for the subnet.</p> <p>Assumption: server A and server B are hosted in the same subnet.</p> <p>Application hosted on Server A is connecting to the VIP (which references an application hosted in Server B).</p> <p>Connection initiation will go from Server A, via the VIP, to Server B; however, the response comes back directly from Server B to Server A.</p> <p>Server A will not accept the response as it had sent the original request to the VIP only.</p> <p>Question: Is this normal occurrence in network set-up? The suggested solution was to create a special internal-to-subnet IP for Server A to call app on Server B: I do not like this solution as it can lead to proliferation of internal IPs that can be cumbersome to manage.</p> <p>The other option is to sprout subnets....</p> <p>Any thoughts or suggestions?</p> http://stackoverflow.com/questions/1272872/asp-net-3-5-url-rewriting-routing-for-multilingual-websites 0 asp.net 3.5 url rewriting / routing for multilingual websites rap-uvic 2009-08-13T15:55:19Z 2009-11-05T22:01:06Z <p>Hello,</p> <p>I'd like to implement the asp.net 3.5 url routing functionality to take in links like www.mysite.com/fr/blah/page1.aspx www.mysite.com/en/blah/page1.aspx and redirect them to the same page. I've read through and tried the approach in the following tutorial: <a href="http://aspnet.4guysfromrolla.com/articles/051309-1.aspx" rel="nofollow">http://aspnet.4guysfromrolla.com/articles/051309-1.aspx</a>. However this tutorial doesn't address the issue of generically mapping urls like I want to. For example, they have rules like </p> <p>routes.Add( "All Categories", new Route("Categories/All", new CategoryRouteHandler()) ); in the global.asax, and then they create a specific CategoryRouteHandler that handles the above url. I want a generic handler that will handle all the urls. In short I want to be able to handle a rule like the following:</p> <p>routes.Add( "All Languages", new Route("/{language}/*", new LanguageRouteHandler()) );</p> <p>The problem with this is, that in the LanguageRouteHandler, I'd have to instantiate and return a page object! However, I don't know which page to return. How do I go about doing this?</p>