<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Comparing circuit.xml.cfm to circuitName.cfc in Fusebox 5.5</title>
	<atom:link href="http://aliaspooryorik.wordpress.com/2008/02/14/comparing-circuitxmlcfm-to-circuitnamecfc-in-fusebox-55/feed/" rel="self" type="application/rss+xml" />
	<link>http://aliaspooryorik.wordpress.com/2008/02/14/comparing-circuitxmlcfm-to-circuitnamecfc-in-fusebox-55/</link>
	<description>I have now moved to &#60;a href="http://www.aliaspooryorik.com"&#62;www.aliaspooryorik.com&#60;/a&#62;</description>
	<lastBuildDate>Mon, 06 Apr 2009 11:43:55 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Sean Corfield</title>
		<link>http://aliaspooryorik.wordpress.com/2008/02/14/comparing-circuitxmlcfm-to-circuitnamecfc-in-fusebox-55/#comment-8</link>
		<dc:creator>Sean Corfield</dc:creator>
		<pubDate>Thu, 14 Feb 2008 18:26:56 +0000</pubDate>
		<guid isPermaLink="false">http://aliaspooryorik.wordpress.com/?p=19#comment-8</guid>
		<description>Yeah, when I wrote the Release Notes I wasn&#039;t sure how folks would react to all-script components :) I write a lot of my CFCs as cfscript now - the enhancements to the operators in CF8 made more difference to my style than I would have imagined.</description>
		<content:encoded><![CDATA[<p>Yeah, when I wrote the Release Notes I wasn&#8217;t sure how folks would react to all-script components <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I write a lot of my CFCs as cfscript now &#8211; the enhancements to the operators in CF8 made more difference to my style than I would have imagined.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aliaspooryorik</title>
		<link>http://aliaspooryorik.wordpress.com/2008/02/14/comparing-circuitxmlcfm-to-circuitnamecfc-in-fusebox-55/#comment-7</link>
		<dc:creator>aliaspooryorik</dc:creator>
		<pubDate>Thu, 14 Feb 2008 17:31:47 +0000</pubDate>
		<guid isPermaLink="false">http://aliaspooryorik.wordpress.com/?p=19#comment-7</guid>
		<description>Hi Sean, it&#039;s an honour to have a post from you :) 

The cfscript version is definitely cleaner. I went for the above partly because I&#039;ve been using the syntax from the &quot;Fusebox 5.5 Release Notes&quot; pdf (http://preview.tinyurl.com/yvkxjk) to get started. I was also thinking about adding the hint to cffunction attribute to make the whole app self documenting.</description>
		<content:encoded><![CDATA[<p>Hi Sean, it&#8217;s an honour to have a post from you <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>The cfscript version is definitely cleaner. I went for the above partly because I&#8217;ve been using the syntax from the &#8220;Fusebox 5.5 Release Notes&#8221; pdf (<a href="http://preview.tinyurl.com/yvkxjk" rel="nofollow">http://preview.tinyurl.com/yvkxjk</a>) to get started. I was also thinking about adding the hint to cffunction attribute to make the whole app self documenting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean Corfield</title>
		<link>http://aliaspooryorik.wordpress.com/2008/02/14/comparing-circuitxmlcfm-to-circuitnamecfc-in-fusebox-55/#comment-6</link>
		<dc:creator>Sean Corfield</dc:creator>
		<pubDate>Thu, 14 Feb 2008 16:58:11 +0000</pubDate>
		<guid isPermaLink="false">http://aliaspooryorik.wordpress.com/?p=19#comment-6</guid>
		<description>You can see why I write controller CFCs in cfscript. The above becomes:

&lt;cfscript&gt;
function list(myFusebox,event) {
  if (event.valueExists(&#039;user_id&#039;) {
    event.setValue(&quot;reminder_user_id&quot;,event.getValue(&#039;user_id&#039;));
  }
  myFusebox.do(action=&quot;mReminders.actGetReminders&quot;);
  myFusebox.do(action=&quot;vReminders.dspListReminders&quot;, contentvariable=&quot;content.main&quot;);
}
function prefuseaction(myFusebox,event) {
  event.xfa(&quot;Calender&quot;,&quot;Calendar.Month&quot;);
}
&lt;/cfscript&gt;

Hope that doesn&#039;t get too horribly mangled by wordpress!</description>
		<content:encoded><![CDATA[<p>You can see why I write controller CFCs in cfscript. The above becomes:</p>
<p>&lt;cfscript&gt;<br />
function list(myFusebox,event) {<br />
  if (event.valueExists(&#8216;user_id&#8217;) {<br />
    event.setValue(&#8220;reminder_user_id&#8221;,event.getValue(&#8216;user_id&#8217;));<br />
  }<br />
  myFusebox.do(action=&#8221;mReminders.actGetReminders&#8221;);<br />
  myFusebox.do(action=&#8221;vReminders.dspListReminders&#8221;, contentvariable=&#8221;content.main&#8221;);<br />
}<br />
function prefuseaction(myFusebox,event) {<br />
  event.xfa(&#8220;Calender&#8221;,&#8221;Calendar.Month&#8221;);<br />
}<br />
&lt;/cfscript&gt;</p>
<p>Hope that doesn&#8217;t get too horribly mangled by wordpress!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
