<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>skater coder &#187; rails 2.0</title>
	<atom:link href="http://www.skatercoder.com/tag/rails-20/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.skatercoder.com</link>
	<description>angela chng - Ruby on Rails / PHP web developer &#38; skater girl in Singapore</description>
	<lastBuildDate>Wed, 18 May 2011 06:35:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Calendar Date Select</title>
		<link>http://www.skatercoder.com/2008/12/02/calendar-date-select/</link>
		<comments>http://www.skatercoder.com/2008/12/02/calendar-date-select/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 23:07:51 +0000</pubDate>
		<dc:creator>roadburn</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[rails 2.0]]></category>

		<guid isPermaLink="false">http://roadburn.audioreload.com/?p=234</guid>
		<description><![CDATA[http://code.google.com/p/calendardateselect/]]></description>
			<content:encoded><![CDATA[<p><a href="http://code.google.com/p/calendardateselect/">http://code.google.com/p/calendardateselect/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skatercoder.com/2008/12/02/calendar-date-select/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails testing with shoulda</title>
		<link>http://www.skatercoder.com/2008/10/28/rails-testing-with-shoulda/</link>
		<comments>http://www.skatercoder.com/2008/10/28/rails-testing-with-shoulda/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 03:45:46 +0000</pubDate>
		<dc:creator>roadburn</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[rails 2.0]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://roadburn.audioreload.com/?p=176</guid>
		<description><![CDATA[$sudo gem install thoughtbot-shoulda make sure rubygems is updated or you will hit an error http://www.thoughtbot.com/projects/shoulda http://dev.thoughtbot.com/shoulda/ Cheat Sheet http://kylebanker.com/blog/2008/09/shoulda-testing-cheat-sheet/]]></description>
			<content:encoded><![CDATA[<p>$sudo gem install thoughtbot-shoulda</p>
<p>make sure rubygems is updated or you will hit an error</p>
<p><a href="http://www.thoughtbot.com/projects/shoulda">http://www.thoughtbot.com/projects/shoulda</a></p>
<p><a href="http://dev.thoughtbot.com/shoulda/">http://dev.thoughtbot.com/shoulda/</a></p>
<p>Cheat Sheet</p>
<p><a href="http://kylebanker.com/blog/2008/09/shoulda-testing-cheat-sheet/">http://kylebanker.com/blog/2008/09/shoulda-testing-cheat-sheet/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skatercoder.com/2008/10/28/rails-testing-with-shoulda/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Restful_authentication Internet explorer cannot logout http_basic problem</title>
		<link>http://www.skatercoder.com/2008/09/23/restful_authentication-internet-explorer-cannot-logout-http_basic-problem/</link>
		<comments>http://www.skatercoder.com/2008/09/23/restful_authentication-internet-explorer-cannot-logout-http_basic-problem/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 03:38:19 +0000</pubDate>
		<dc:creator>roadburn</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[rails 2.0]]></category>

		<guid isPermaLink="false">http://roadburn.audioreload.com/?p=164</guid>
		<description><![CDATA[If you&#8217;re getting a security box popup like I did, here&#8217;s the link to the solution http://groups.google.com/group/rubyonrails-talk/browse_thread/thread/97981fedc00d98fa/3e435bd3e66952c7?lnk=raot Basically, just edit /lib/authenticated_system.rb, and add &#8216;(:xml, :json)&#8217; def access_denied       respond_to do &#124;format&#124;         format.html do           store_location           redirect_to new_session_path         end         format.any(:xml, :json) do           request_http_basic_authentication &#8216;Web Password&#8217;         end       end     [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re getting a security box popup like I did, here&#8217;s the link to the solution</p>
<p><a href="http://groups.google.com/group/rubyonrails-talk/browse_thread/thread/97981fedc00d98fa/3e435bd3e66952c7?lnk=raot">http://groups.google.com/group/rubyonrails-talk/browse_thread/thread/97981fedc00d98fa/3e435bd3e66952c7?lnk=raot</a></p>
<p>Basically, just edit /lib/authenticated_system.rb, and add &#8216;(:xml, :json)&#8217;</p>
<p>def access_denied<br />
      respond_to do |format|<br />
        format.html do<br />
          store_location<br />
          redirect_to new_session_path<br />
        end<br />
        format.any(:xml, :json) do<br />
          request_http_basic_authentication &#8216;Web Password&#8217;<br />
        end<br />
      end<br />
    end</p>
<p> </p>
<p>Make sure your &lt;head&gt; tag has this too:</p>
<p>&lt;META HTTP-EQUIV=&#8221;Pragma&#8221; CONTENT=&#8221;no-cache&#8221;&gt; <br />
&lt;META HTTP-EQUIV=&#8221;Expires&#8221; CONTENT=&#8221;-1&#8243;&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skatercoder.com/2008/09/23/restful_authentication-internet-explorer-cannot-logout-http_basic-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails Pagination</title>
		<link>http://www.skatercoder.com/2008/09/21/rails-pagination/</link>
		<comments>http://www.skatercoder.com/2008/09/21/rails-pagination/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 12:21:19 +0000</pubDate>
		<dc:creator>roadburn</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[rails 2.0]]></category>

		<guid isPermaLink="false">http://roadburn.audioreload.com/2008/09/21/rails-pagination/</guid>
		<description><![CDATA[From : http://github.com/mislav/will_paginate/tree/master Installation 1 $script/plugin install git://github.com/mislav/will_paginate.git Usage @posts = Post.paginate :page =&#62; params[:page], :order =&#62; 'created_at DESC' &#160; #In the view, page links can be rendered with a single view helper: &#60;%= will_paginate @posts %&#62;]]></description>
			<content:encoded><![CDATA[<p>From :</p>
<p>http://github.com/mislav/will_paginate/tree/master</p>
<p><strong>Installation</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">$script</span><span style="color: #000000; font-weight: bold;">/</span>plugin <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #c20cb9; font-weight: bold;">git</span>:<span style="color: #000000; font-weight: bold;">//</span>github.com<span style="color: #000000; font-weight: bold;">/</span>mislav<span style="color: #000000; font-weight: bold;">/</span>will_paginate.git</pre></td></tr></table></div>

<p><strong>Usage</strong></p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">@posts = Post.paginate :page =&gt; params[:page], :order =&gt; 'created_at DESC'
&nbsp;
#In the view, page links can be rendered with a single view helper:
<span style="color:#006600; font-weight:bold;">&lt;%</span>= will_paginate <span style="color:#0066ff; font-weight:bold;">@posts</span> <span style="color:#006600; font-weight:bold;">%&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.skatercoder.com/2008/09/21/rails-pagination/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Active Scaffolding</title>
		<link>http://www.skatercoder.com/2008/07/09/active-scaffolding/</link>
		<comments>http://www.skatercoder.com/2008/07/09/active-scaffolding/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 20:03:50 +0000</pubDate>
		<dc:creator>roadburn</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[rails 2.0]]></category>

		<guid isPermaLink="false">http://roadburn.audioreload.com/?p=100</guid>
		<description><![CDATA[Activescaffold website: http://activescaffold.com/ Get Activescaffold: http://github.com/activescaffold   Using File Column plugin: http://www.42.mach7x.com/2007/10/17/file-column-plugin-with-activescaffold-upload-branch/   Active Scaffolding Tutorial http://www-128.ibm.com/developerworks/linux/library/l-activescaffold/   Active scaffold for Rails 2.1  http://github.com/robd/active_scaffold/commits/rails-2.1   Recordselect to search and select records http://code.google.com/p/recordselect/wiki/Install]]></description>
			<content:encoded><![CDATA[<p>Activescaffold website:<br />
<a href="http://activescaffold.com/">http://activescaffold.com/</a></p>
<p>Get Activescaffold:<br />
<a href="http://github.com/activescaffold">http://github.com/activescaffold</a></p>
<p> </p>
<p>Using File Column plugin:<br />
<a href="http://www.42.mach7x.com/2007/10/17/file-column-plugin-with-activescaffold-upload-branch/">http://www.42.mach7x.com/2007/10/17/file-column-plugin-with-activescaffold-upload-branch/</a></p>
<p> </p>
<p>Active Scaffolding Tutorial</p>
<p><a href="http://www-128.ibm.com/developerworks/linux/library/l-activescaffold/">http://www-128.ibm.com/developerworks/linux/library/l-activescaffold/</a></p>
<p> </p>
<p>Active scaffold for Rails 2.1</p>
<p> <a href="http://github.com/robd/active_scaffold/commits/rails-2.1">http://github.com/robd/active_scaffold/commits/rails-2.1</a></p>
<p> </p>
<p>Recordselect to search and select records</p>
<p><a href="http://code.google.com/p/recordselect/wiki/Install">http://code.google.com/p/recordselect/wiki/Install</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skatercoder.com/2008/07/09/active-scaffolding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn rails 2.0</title>
		<link>http://www.skatercoder.com/2008/07/08/learn-rails-20/</link>
		<comments>http://www.skatercoder.com/2008/07/08/learn-rails-20/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 13:52:49 +0000</pubDate>
		<dc:creator>roadburn</dc:creator>
				<category><![CDATA[rails 2.0]]></category>

		<guid isPermaLink="false">http://roadburn.audioreload.com/?p=99</guid>
		<description><![CDATA[http://railsonedge.blogspot.com/2008/02/rails-forum-tutorial-for-beginners-part.html]]></description>
			<content:encoded><![CDATA[<p>http://railsonedge.blogspot.com/2008/02/rails-forum-tutorial-for-beginners-part.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skatercoder.com/2008/07/08/learn-rails-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

