<?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 for rtraction</title>
	<atom:link href="http://www.rtraction.com/blog/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.rtraction.com/blog</link>
	<description>rtraction blog</description>
	<lastBuildDate>Fri, 12 Mar 2010 17:29:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Extending the Controller Class in CodeIgniter by SeanJA</title>
		<link>http://www.rtraction.com/blog/devit/extending-the-controller-class-in-codeigniter.html/comment-page-1#comment-36812</link>
		<dc:creator>SeanJA</dc:creator>
		<pubDate>Fri, 12 Mar 2010 17:29:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=1714#comment-36812</guid>
		<description>@Cole doesn&#039;t the Code Igniter session class use normal PHP sessions unless you tell it to use the database instead?</description>
		<content:encoded><![CDATA[<p>@Cole doesn&#8217;t the Code Igniter session class use normal PHP sessions unless you tell it to use the database instead?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extending the Controller Class in CodeIgniter by SeanJA</title>
		<link>http://www.rtraction.com/blog/devit/extending-the-controller-class-in-codeigniter.html/comment-page-1#comment-36811</link>
		<dc:creator>SeanJA</dc:creator>
		<pubDate>Fri, 12 Mar 2010 17:27:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=1714#comment-36811</guid>
		<description>And... I almost didn&#039;t mistype some of that stuff ah well... you get the point</description>
		<content:encoded><![CDATA[<p>And&#8230; I almost didn&#8217;t mistype some of that stuff ah well&#8230; you get the point</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extending the Controller Class in CodeIgniter by SeanJA</title>
		<link>http://www.rtraction.com/blog/devit/extending-the-controller-class-in-codeigniter.html/comment-page-1#comment-36810</link>
		<dc:creator>SeanJA</dc:creator>
		<pubDate>Fri, 12 Mar 2010 17:24:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=1714#comment-36810</guid>
		<description>@gavinblair

Why oh god why would you type out an entire form when there is a form helper there?

&amp;ltinput type=text name=name id=id value=&lt;php echo isset($_POST[value])? $_POST[value]:null; ?&gt; /&gt;

vs

$value = post(&#039;value&#039;);
f-&gt;input(&#039;name&#039;, &#039;id&#039;, $value);</description>
		<content:encoded><![CDATA[<p>@gavinblair</p>
<p>Why oh god why would you type out an entire form when there is a form helper there?</p>
<p>&amp;ltinput type=text name=name id=id value=&lt;php echo isset($_POST[value])? $_POST[value]:null; ?&gt; /&gt;</p>
<p>vs</p>
<p>$value = post(&#8216;value&#8217;);<br />
f-&gt;input(&#8216;name&#8217;, &#8216;id&#8217;, $value);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extending the Controller Class in CodeIgniter by gavinblair</title>
		<link>http://www.rtraction.com/blog/devit/extending-the-controller-class-in-codeigniter.html/comment-page-1#comment-36804</link>
		<dc:creator>gavinblair</dc:creator>
		<pubDate>Fri, 12 Mar 2010 14:32:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=1714#comment-36804</guid>
		<description>@Cole - I tend to stick to what most coders are familiar with seeing regardless of framework, which means actual HTML (even forms) in the views, actual SQL queries and $_ variables.</description>
		<content:encoded><![CDATA[<p>@Cole &#8211; I tend to stick to what most coders are familiar with seeing regardless of framework, which means actual HTML (even forms) in the views, actual SQL queries and $_ variables.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extending the Controller Class in CodeIgniter by SeanJA</title>
		<link>http://www.rtraction.com/blog/devit/extending-the-controller-class-in-codeigniter.html/comment-page-1#comment-36793</link>
		<dc:creator>SeanJA</dc:creator>
		<pubDate>Fri, 12 Mar 2010 05:35:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=1714#comment-36793</guid>
		<description>Good news! CodeIgniter 2.0 will be phasing out support for PHP 4 (and by 2.1 they say that PHP4 stuff will probably not work at all).</description>
		<content:encoded><![CDATA[<p>Good news! CodeIgniter 2.0 will be phasing out support for PHP 4 (and by 2.1 they say that PHP4 stuff will probably not work at all).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extending the Controller Class in CodeIgniter by Cole Thorsen</title>
		<link>http://www.rtraction.com/blog/devit/extending-the-controller-class-in-codeigniter.html/comment-page-1#comment-36788</link>
		<dc:creator>Cole Thorsen</dc:creator>
		<pubDate>Fri, 12 Mar 2010 04:23:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=1714#comment-36788</guid>
		<description>Interesting way of managing authentication. I set up a library and call the logged in method either in the construct or the individual methods of the controller depending on whether every method requires the user to be logged in or just some.

Your way definitely cuts down on code which is always nice. 

As a side note do you avoid the codeigniter session class? I know there is a lot of debate over the ci session setup vs. Native PHP sessions.</description>
		<content:encoded><![CDATA[<p>Interesting way of managing authentication. I set up a library and call the logged in method either in the construct or the individual methods of the controller depending on whether every method requires the user to be logged in or just some.</p>
<p>Your way definitely cuts down on code which is always nice. </p>
<p>As a side note do you avoid the codeigniter session class? I know there is a lot of debate over the ci session setup vs. Native PHP sessions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extending the Controller Class in CodeIgniter by SeanJA</title>
		<link>http://www.rtraction.com/blog/devit/extending-the-controller-class-in-codeigniter.html/comment-page-1#comment-36787</link>
		<dc:creator>SeanJA</dc:creator>
		<pubDate>Fri, 12 Mar 2010 02:51:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=1714#comment-36787</guid>
		<description>I do wish that CodeIgniter dropped support for php 4... not having __controller and __call and __autoload really hamper it&#039;s style.</description>
		<content:encoded><![CDATA[<p>I do wish that CodeIgniter dropped support for php 4&#8230; not having __controller and __call and __autoload really hamper it&#8217;s style.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Compost by Gavin Blair</title>
		<link>http://www.rtraction.com/blog/uncategorized/compost.html/comment-page-1#comment-36453</link>
		<dc:creator>Gavin Blair</dc:creator>
		<pubDate>Thu, 04 Mar 2010 19:25:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=1634#comment-36453</guid>
		<description>The iPhone version is still in the planning stages. My goal is to be able to manage every aspect of your Compost on the iPhone as well as in a full browser. Additional features that make use of the phone&#039;s camera and microphone may be introduced as well.

You can keep an eye on the iPhone version at http://code.google.com/p/compost-rtraction/issues/detail?id=20</description>
		<content:encoded><![CDATA[<p>The iPhone version is still in the planning stages. My goal is to be able to manage every aspect of your Compost on the iPhone as well as in a full browser. Additional features that make use of the phone&#8217;s camera and microphone may be introduced as well.</p>
<p>You can keep an eye on the iPhone version at <a href="http://code.google.com/p/compost-rtraction/issues/detail?id=20" rel="nofollow">http://code.google.com/p/compost-rtraction/issues/detail?id=20</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Social Media Policy Tool by Utah SEO Website Developer</title>
		<link>http://www.rtraction.com/blog/ourtraction/social-media-policy-tool.html/comment-page-1#comment-36446</link>
		<dc:creator>Utah SEO Website Developer</dc:creator>
		<pubDate>Thu, 04 Mar 2010 18:06:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/?p=1688#comment-36446</guid>
		<description>Good idea! I will have to play around with it later. 

Really. Titus used to brew his own beer? lol</description>
		<content:encoded><![CDATA[<p>Good idea! I will have to play around with it later. </p>
<p>Really. Titus used to brew his own beer? lol</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LightWindow IE6 bug &#8211; image size (resizeTo) by phobos</title>
		<link>http://www.rtraction.com/blog/devit/lightwindow-image-sizing-bug-in-ie6-on-first-click-of-gallery.html/comment-page-1#comment-36441</link>
		<dc:creator>phobos</dc:creator>
		<pubDate>Thu, 04 Mar 2010 14:21:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.rtraction.com/blog/devit/lightwindow-image-sizing-bug-in-ie6-on-first-click-of-gallery.html#comment-36441</guid>
		<description>&quot;this.imageCount–;&quot; should be &quot;this.imageCount–-;&quot; (two times minus! Seems that your website has eaten it.)</description>
		<content:encoded><![CDATA[<p>&#8220;this.imageCount–;&#8221; should be &#8220;this.imageCount–-;&#8221; (two times minus! Seems that your website has eaten it.)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
