<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Rails 1.2 breaks url routing with dots?</title>
	<atom:link href="http://yanpritzker.com/2007/02/27/rails-12-breaks-url-routing-with-dots/feed/" rel="self" type="application/rss+xml" />
	<link>http://yanpritzker.com/2007/02/27/rails-12-breaks-url-routing-with-dots/</link>
	<description>photographer, entrepreneur, software engineer, musician, skier</description>
	<lastBuildDate>Wed, 01 Feb 2012 00:01:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Developing Thoughts &#187; Blog Archive &#187; Things I learned about fixtures the hard way</title>
		<link>http://yanpritzker.com/2007/02/27/rails-12-breaks-url-routing-with-dots/comment-page-1/#comment-10749</link>
		<dc:creator>Developing Thoughts &#187; Blog Archive &#187; Things I learned about fixtures the hard way</dc:creator>
		<pubDate>Thu, 28 Feb 2008 01:12:23 +0000</pubDate>
		<guid isPermaLink="false">http://skwpspace.com/2007/02/27/rails-12-breaks-url-routing-with-dots/#comment-10749</guid>
		<description>[...] 4. (Not related to fixtures at all) In Rails, &#8220;.&#8221; in a (URL) path is a &#8220;route separator&#8220;, so it doesn&#8217;t behave like you expect by default. The fix is to add something like: [...]</description>
		<content:encoded><![CDATA[<p>[...] 4. (Not related to fixtures at all) In Rails, &#8220;.&#8221; in a (URL) path is a &#8220;route separator&#8220;, so it doesn&#8217;t behave like you expect by default. The fix is to add something like: [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ditoinfo in english</title>
		<link>http://yanpritzker.com/2007/02/27/rails-12-breaks-url-routing-with-dots/comment-page-1/#comment-4769</link>
		<dc:creator>ditoinfo in english</dc:creator>
		<pubDate>Tue, 22 May 2007 17:20:36 +0000</pubDate>
		<guid isPermaLink="false">http://skwpspace.com/2007/02/27/rails-12-breaks-url-routing-with-dots/#comment-4769</guid>
		<description>&lt;strong&gt;Rails 1.2 routes and the dot&#160;&#8220;.&#8221;...&lt;/strong&gt;

Rails 1.2 came with great new features. One of them was the REST able applications. Other was the ability to serve results based on how the request was made. So you could send different results for controller/action.html, controller/action.xml or conto...</description>
		<content:encoded><![CDATA[<p><strong>Rails 1.2 routes and the dot&nbsp;&#8220;.&#8221;&#8230;</strong></p>
<p>Rails 1.2 came with great new features. One of them was the REST able applications. Other was the ability to serve results based on how the request was made. So you could send different results for controller/action.html, controller/action.xml or conto&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Balance On Rails : Pacotão Pós-Carnaval</title>
		<link>http://yanpritzker.com/2007/02/27/rails-12-breaks-url-routing-with-dots/comment-page-1/#comment-3080</link>
		<dc:creator>Balance On Rails : Pacotão Pós-Carnaval</dc:creator>
		<pubDate>Tue, 06 Mar 2007 13:04:15 +0000</pubDate>
		<guid isPermaLink="false">http://skwpspace.com/2007/02/27/rails-12-breaks-url-routing-with-dots/#comment-3080</guid>
		<description>[...] Sobre Rails 1.2, é bom saber que o esquema de carga de plugins mudou, para melhor, como já falamos em outros posts, mas aqui estão os detalhes. Outra dica para quem está atualizando é tomar cuidado com pontos em rotas. [...]</description>
		<content:encoded><![CDATA[<p>[...] Sobre Rails 1.2, é bom saber que o esquema de carga de plugins mudou, para melhor, como já falamos em outros posts, mas aqui estão os detalhes. Outra dica para quem está atualizando é tomar cuidado com pontos em rotas. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yan</title>
		<link>http://yanpritzker.com/2007/02/27/rails-12-breaks-url-routing-with-dots/comment-page-1/#comment-2962</link>
		<dc:creator>Yan</dc:creator>
		<pubDate>Tue, 27 Feb 2007 21:31:09 +0000</pubDate>
		<guid isPermaLink="false">http://skwpspace.com/2007/02/27/rails-12-breaks-url-routing-with-dots/#comment-2962</guid>
		<description>Thanks! That fixed it right up :-). For those too lazy to click through, the trick is to add a :requirements =&gt; {:yourparam =&gt; /.*/} to make it recognize dots in yourparam.</description>
		<content:encoded><![CDATA[<p>Thanks! That fixed it right up :-). For those too lazy to click through, the trick is to add a :requirements =&gt; {:yourparam =&gt; /.*/} to make it recognize dots in yourparam.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan B.</title>
		<link>http://yanpritzker.com/2007/02/27/rails-12-breaks-url-routing-with-dots/comment-page-1/#comment-2959</link>
		<dc:creator>Ryan B.</dc:creator>
		<pubDate>Tue, 27 Feb 2007 18:44:49 +0000</pubDate>
		<guid isPermaLink="false">http://skwpspace.com/2007/02/27/rails-12-breaks-url-routing-with-dots/#comment-2959</guid>
		<description>I believe this can be fixed with the &quot;:require&quot; parameter. See this post for details:

http://forum.textdrive.com/viewtopic.php?pid=116742</description>
		<content:encoded><![CDATA[<p>I believe this can be fixed with the &#8220;:require&#8221; parameter. See this post for details:</p>
<p><a href="http://forum.textdrive.com/viewtopic.php?pid=116742" rel="nofollow">http://forum.textdrive.com/viewtopic.php?pid=116742</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

