<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Restful Routing: An Overview</title>
	<atom:link href="http://frozenplague.net/2008/01/06/restful-routing-an-overview/feed/" rel="self" type="application/rss+xml" />
	<link>http://frozenplague.net/2008/01/06/restful-routing-an-overview/</link>
	<description>Life &#38; Everything Else</description>
	<pubDate>Wed, 20 Aug 2008 07:05:30 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: Pan</title>
		<link>http://frozenplague.net/2008/01/06/restful-routing-an-overview/#comment-2704</link>
		<dc:creator>Pan</dc:creator>
		<pubDate>Tue, 05 Aug 2008 22:52:56 +0000</pubDate>
		<guid isPermaLink="false">http://frozenplague.net/?p=108#comment-2704</guid>
		<description>Thanks for writing such a helpful article.
I've learned really much from it.</description>
		<content:encoded><![CDATA[<p>Thanks for writing such a helpful article.<br />
I&#8217;ve learned really much from it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brenton</title>
		<link>http://frozenplague.net/2008/01/06/restful-routing-an-overview/#comment-1794</link>
		<dc:creator>Brenton</dc:creator>
		<pubDate>Tue, 17 Jun 2008 01:25:45 +0000</pubDate>
		<guid isPermaLink="false">http://frozenplague.net/?p=108#comment-1794</guid>
		<description>Very funny post! If only I'd found this when I was learning REST.</description>
		<content:encoded><![CDATA[<p>Very funny post! If only I&#8217;d found this when I was learning REST.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Radar</title>
		<link>http://frozenplague.net/2008/01/06/restful-routing-an-overview/#comment-1680</link>
		<dc:creator>Radar</dc:creator>
		<pubDate>Fri, 23 May 2008 12:41:15 +0000</pubDate>
		<guid isPermaLink="false">http://frozenplague.net/?p=108#comment-1680</guid>
		<description>The Restful routing syntax is designed to be easier to use, and yes of course it's not going to be compatible with previous versions of Rails (what is? :)). The reason why I prefer to use it is, instead of typing &lt;span class='term'&gt;link_to "New Blog", :controller =&gt; "blogs", :action =&gt; "new"&lt;/span&gt; I can now type &lt;span class='term'&gt;&lt;%= link_to "New Blog", new_blog_path %&gt;&lt;/span&gt;, or even &lt;span class='term'&gt;&lt;%= link_to "New Blog", @blog %&gt;&lt;/span&gt; if @blog is defined as &lt;span class='term'&gt;Blog.new&lt;/span&gt;.

Yes, it will be a pain bringing those older views in line with the new syntax but once you've done it you get a consistent, easy to use syntax across everything.

How were you specifying variables in your redirect_to before?</description>
		<content:encoded><![CDATA[<p>The Restful routing syntax is designed to be easier to use, and yes of course it&#8217;s not going to be compatible with previous versions of Rails (what is? :)). The reason why I prefer to use it is, instead of typing <span class='term'>link_to &#8220;New Blog&#8221;, :controller => &#8220;blogs&#8221;, :action => &#8220;new&#8221;</span> I can now type <span class='term'>< %= link_to "New Blog", new_blog_path %></span>, or even <span class='term'>< %= link_to "New Blog", @blog %></span> if @blog is defined as <span class='term'>Blog.new</span>.</p>
<p>Yes, it will be a pain bringing those older views in line with the new syntax but once you&#8217;ve done it you get a consistent, easy to use syntax across everything.</p>
<p>How were you specifying variables in your redirect_to before?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gudasoft &#187; Blog Archive &#187; Rails 2.0 scaffolding</title>
		<link>http://frozenplague.net/2008/01/06/restful-routing-an-overview/#comment-1679</link>
		<dc:creator>Gudasoft &#187; Blog Archive &#187; Rails 2.0 scaffolding</dc:creator>
		<pubDate>Fri, 23 May 2008 12:25:51 +0000</pubDate>
		<guid isPermaLink="false">http://frozenplague.net/?p=108#comment-1679</guid>
		<description>[...] http://frozenplague.net/2008/01/06/restful-routing-an-overview/ [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] <a href="http://frozenplague.net/2008/01/06/restful-routing-an-overview/" rel="nofollow">http://frozenplague.net/2008/01/06/restful-routing-an-overview/</a> [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hadmut</title>
		<link>http://frozenplague.net/2008/01/06/restful-routing-an-overview/#comment-1675</link>
		<dc:creator>Hadmut</dc:creator>
		<pubDate>Thu, 22 May 2008 20:33:44 +0000</pubDate>
		<guid isPermaLink="false">http://frozenplague.net/?p=108#comment-1675</guid>
		<description>Hi,

sorry to contradict, but restful routing is neither plain nor simple. In my eyes it is just bad design. 

If it were plain and simple, it would not require such explanatory articles.

I am just busy with porting a rails application to rails 2.0 and found that this restful routing breaks backwards compatiblity. Old views don't work with new views generated with scaffolding. Formerly the paths were of the simple structure /:controller/:action/:id, but now they don't have any consistent structure anymore. 

Formerly, functions like  redirect_to  could take variables as parameters for controller, action and id, but now I don't see a way to do this consistently anymore. 


In my eyes, the restful routing is of poor design and shortsighted. It just causes confusion and makes things more complicated. 

Was there any good reason to introduce it?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>sorry to contradict, but restful routing is neither plain nor simple. In my eyes it is just bad design. </p>
<p>If it were plain and simple, it would not require such explanatory articles.</p>
<p>I am just busy with porting a rails application to rails 2.0 and found that this restful routing breaks backwards compatiblity. Old views don&#8217;t work with new views generated with scaffolding. Formerly the paths were of the simple structure /:controller/:action/:id, but now they don&#8217;t have any consistent structure anymore. </p>
<p>Formerly, functions like  redirect_to  could take variables as parameters for controller, action and id, but now I don&#8217;t see a way to do this consistently anymore. </p>
<p>In my eyes, the restful routing is of poor design and shortsighted. It just causes confusion and makes things more complicated. </p>
<p>Was there any good reason to introduce it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://frozenplague.net/2008/01/06/restful-routing-an-overview/#comment-1020</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Tue, 15 Apr 2008 22:18:18 +0000</pubDate>
		<guid isPermaLink="false">http://frozenplague.net/?p=108#comment-1020</guid>
		<description>Good post!

Worthwhile as well: http://api.rubyonrails.com/classes/ActionController/Resources.html

Interestingly, your post seems to be more advanced in some points than the API description...</description>
		<content:encoded><![CDATA[<p>Good post!</p>
<p>Worthwhile as well: <a href="http://api.rubyonrails.com/classes/ActionController/Resources.html" rel="nofollow">http://api.rubyonrails.com/classes/ActionController/Resources.html</a></p>
<p>Interestingly, your post seems to be more advanced in some points than the API description&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zeroeth</title>
		<link>http://frozenplague.net/2008/01/06/restful-routing-an-overview/#comment-787</link>
		<dc:creator>zeroeth</dc:creator>
		<pubDate>Thu, 10 Apr 2008 03:16:51 +0000</pubDate>
		<guid isPermaLink="false">http://frozenplague.net/?p=108#comment-787</guid>
		<description>Hey Radar!

Great post about nested resources. I see lots of people asking and I only ever have one link to show them, this makes two =)</description>
		<content:encoded><![CDATA[<p>Hey Radar!</p>
<p>Great post about nested resources. I see lots of people asking and I only ever have one link to show them, this makes two =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Life Of A Radar &#187; Blog Archive &#187; Administration Namespacing</title>
		<link>http://frozenplague.net/2008/01/06/restful-routing-an-overview/#comment-247</link>
		<dc:creator>The Life Of A Radar &#187; Blog Archive &#187; Administration Namespacing</dc:creator>
		<pubDate>Sun, 16 Mar 2008 00:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://frozenplague.net/?p=108#comment-247</guid>
		<description>[...] so I figured if I sat down and wrote this, I would have something to send to people, much like my Restful Routes tutorial, which ideally should&#8217;ve covered namespacing [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] so I figured if I sat down and wrote this, I would have something to send to people, much like my Restful Routes tutorial, which ideally should&#8217;ve covered namespacing [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jose Espinal</title>
		<link>http://frozenplague.net/2008/01/06/restful-routing-an-overview/#comment-158</link>
		<dc:creator>Jose Espinal</dc:creator>
		<pubDate>Fri, 07 Mar 2008 05:17:38 +0000</pubDate>
		<guid isPermaLink="false">http://frozenplague.net/?p=108#comment-158</guid>
		<description>Great great article! You don't know how grateful I am for it, explained a lot of holes I had about REST.</description>
		<content:encoded><![CDATA[<p>Great great article! You don&#8217;t know how grateful I am for it, explained a lot of holes I had about REST.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: debianfreak</title>
		<link>http://frozenplague.net/2008/01/06/restful-routing-an-overview/#comment-125</link>
		<dc:creator>debianfreak</dc:creator>
		<pubDate>Sun, 17 Feb 2008 14:55:22 +0000</pubDate>
		<guid isPermaLink="false">http://frozenplague.net/?p=108#comment-125</guid>
		<description>Ok... I figured it out. I needed to use link_to 'Messages', person_messages_path(@person) and then it works :) I didn't see that mentioned... perhaps you should add it?

Great article though - it helped me a lot!</description>
		<content:encoded><![CDATA[<p>Ok&#8230; I figured it out. I needed to use link_to &#8216;Messages&#8217;, person_messages_path(@person) and then it works <img src='http://frozenplague.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> I didn&#8217;t see that mentioned&#8230; perhaps you should add it?</p>
<p>Great article though - it helped me a lot!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
