<?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: Birds on Rails, Part 1</title>
	<atom:link href="http://www.elharo.com/blog/software-development/web-development/2005/11/27/birds-on-rails-part-1/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.elharo.com/blog/software-development/web-development/2005/11/27/birds-on-rails-part-1/</link>
	<description>Ranting and Raving</description>
	<pubDate>Tue, 02 Dec 2008 20:28:15 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: Bala</title>
		<link>http://www.elharo.com/blog/software-development/web-development/2005/11/27/birds-on-rails-part-1/#comment-1978</link>
		<dc:creator>Bala</dc:creator>
		<pubDate>Wed, 17 May 2006 22:36:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elharo.com/blog/?p=21#comment-1978</guid>
		<description>How easy is it to consume and produce Web Services using Ruby on Rails?</description>
		<content:encoded><![CDATA[<p>How easy is it to consume and produce Web Services using Ruby on Rails?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anon</title>
		<link>http://www.elharo.com/blog/software-development/web-development/2005/11/27/birds-on-rails-part-1/#comment-469</link>
		<dc:creator>Anon</dc:creator>
		<pubDate>Tue, 21 Feb 2006 03:41:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elharo.com/blog/?p=21#comment-469</guid>
		<description>Turning off sessions is pretty easy:

class MyController </description>
		<content:encoded><![CDATA[<p>Turning off sessions is pretty easy:</p>
<p>class MyController</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erkki</title>
		<link>http://www.elharo.com/blog/software-development/web-development/2005/11/27/birds-on-rails-part-1/#comment-328</link>
		<dc:creator>Erkki</dc:creator>
		<pubDate>Fri, 03 Feb 2006 16:11:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elharo.com/blog/?p=21#comment-328</guid>
		<description>You can turn off session support in your controllers (for the whole application, or for some controllers or even only some actions). That way you will not get the default session cookie. 

See http://wiki.rubyonrails.org/rails/pages/HowtoPerActionSessionOptions for more information.</description>
		<content:encoded><![CDATA[<p>You can turn off session support in your controllers (for the whole application, or for some controllers or even only some actions). That way you will not get the default session cookie. </p>
<p>See <a href="http://wiki.rubyonrails.org/rails/pages/HowtoPerActionSessionOptions" onclick="javascript:pageTracker._trackPageview('/outbound/comment/wiki.rubyonrails.org');" rel="nofollow">http://wiki.rubyonrails.org/rails/pages/HowtoPerActionSessionOptions</a> for more information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ALan</title>
		<link>http://www.elharo.com/blog/software-development/web-development/2005/11/27/birds-on-rails-part-1/#comment-30</link>
		<dc:creator>ALan</dc:creator>
		<pubDate>Tue, 06 Dec 2005 11:51:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elharo.com/blog/?p=21#comment-30</guid>
		<description>Just a quickie,  you *can* have foreign keys in later version of MySQL if you use the InnoDB engine.


CREATE TABLE users (
  id int(11) not null auto_increment,
  login	varchar(80) default null,
  primary key  (id),
  index login_index (login)
) type=InnoDB;

create table projects (
	id int(11) not null auto_increment,
	name varchar(128) not null,
	owner_id int(11) not null,
	primary key(id),
	constraint fk_project_owners foreign key (owner_id) references users(id) 
) type=InnoDB;
</description>
		<content:encoded><![CDATA[<p>Just a quickie,  you *can* have foreign keys in later version of MySQL if you use the InnoDB engine.</p>
<p>CREATE TABLE users (<br />
  id int(11) not null auto_increment,<br />
  login	varchar(80) default null,<br />
  primary key  (id),<br />
  index login_index (login)<br />
) type=InnoDB;</p>
<p>create table projects (<br />
	id int(11) not null auto_increment,<br />
	name varchar(128) not null,<br />
	owner_id int(11) not null,<br />
	primary key(id),<br />
	constraint fk_project_owners foreign key (owner_id) references users(id)<br />
) type=InnoDB;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: George Bailey</title>
		<link>http://www.elharo.com/blog/software-development/web-development/2005/11/27/birds-on-rails-part-1/#comment-13</link>
		<dc:creator>George Bailey</dc:creator>
		<pubDate>Mon, 28 Nov 2005 19:17:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elharo.com/blog/?p=21#comment-13</guid>
		<description>Well I'm glad you're going through this so I don't have to. I have a project planned, and I found a host that supports RoR, but I've been too busy with actual work to do anything further. asmallorange.com is inexpensive and seems to be pretty good.</description>
		<content:encoded><![CDATA[<p>Well I&#8217;m glad you&#8217;re going through this so I don&#8217;t have to. I have a project planned, and I found a host that supports RoR, but I&#8217;ve been too busy with actual work to do anything further. asmallorange.com is inexpensive and seems to be pretty good.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Agylen</title>
		<link>http://www.elharo.com/blog/software-development/web-development/2005/11/27/birds-on-rails-part-1/#comment-11</link>
		<dc:creator>Agylen</dc:creator>
		<pubDate>Mon, 28 Nov 2005 14:11:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elharo.com/blog/?p=21#comment-11</guid>
		<description>&lt;strong&gt;Another migration to Rails&lt;/strong&gt;

	After Graham Glass, here comes another old Java hand diving into Ruby on Rails.
	Elliotte Rusty Harold: &#8220;I tried writing some PHP pages, but that was more difficult than I expected so I thought I&#8217;d take a day and see if Ruby on Rails was a...</description>
		<content:encoded><![CDATA[<p><strong>Another migration to Rails</strong></p>
<p>	After Graham Glass, here comes another old Java hand diving into Ruby on Rails.<br />
	Elliotte Rusty Harold: &#8220;I tried writing some PHP pages, but that was more difficult than I expected so I thought I&#8217;d take a day and see if Ruby on Rails was a&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
