<?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: Revenge of the Dragon, pt II</title>
	<atom:link href="http://www.barneyb.com/barneyblog/2005/05/25/revenge-of-the-dragon-pt-ii/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.barneyb.com/barneyblog/2005/05/25/revenge-of-the-dragon-pt-ii/</link>
	<description>Thoughts, rants, and even some code from the mind of Barney Boisvert.</description>
	<lastBuildDate>Thu, 11 Sep 2014 09:58:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Yves</title>
		<link>https://www.barneyb.com/barneyblog/2005/05/25/revenge-of-the-dragon-pt-ii/comment-page-1/#comment-133</link>
		<dc:creator>Yves</dc:creator>
		<pubDate>Sat, 01 Oct 2005 15:22:30 +0000</pubDate>
		<guid isPermaLink="false">http://barneyb.com/barneyblog/?p=94#comment-133</guid>
		<description>Actually...

After leafing through some more google results....

It&#039;s in the docs..

From the compatibility guide:
&quot;4.2.3 CFCOMPONENT
When setting the attribute OUTPUT=â€yesâ€, BlueDragon requires you to enclose all CFML
expressions (#expression#) in CFOUTPUT tags, where CFMX will evaluate CFML
expressions without requiring CFOUTPUT tags.&quot;

&quot;4.2.7 CFFUNCTION
When setting the attribute OUTPUT=â€yesâ€, BlueDragon requires you to enclose all CFML
expressions (#expression#) in CFOUTPUT tags, where CFMX will evaluate CFML
expressions without requiring CFOUTPUT tags.&quot;

I guess that is why.

;-)
</description>
		<content:encoded><![CDATA[<p>Actually&#8230;</p>
<p>After leafing through some more google results&#8230;.</p>
<p>It's in the docs..</p>
<p>From the compatibility guide:<br />
"4.2.3 CFCOMPONENT<br />
When setting the attribute OUTPUT=â€yesâ€, BlueDragon requires you to enclose all CFML<br />
expressions (#expression#) in CFOUTPUT tags, where CFMX will evaluate CFML<br />
expressions without requiring CFOUTPUT tags."</p>
<p>"4.2.7 CFFUNCTION<br />
When setting the attribute OUTPUT=â€yesâ€, BlueDragon requires you to enclose all CFML<br />
expressions (#expression#) in CFOUTPUT tags, where CFMX will evaluate CFML<br />
expressions without requiring CFOUTPUT tags."</p>
<p>I guess that is why.</p>
<p>;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barney</title>
		<link>https://www.barneyb.com/barneyblog/2005/05/25/revenge-of-the-dragon-pt-ii/comment-page-1/#comment-132</link>
		<dc:creator>Barney</dc:creator>
		<pubDate>Sat, 01 Oct 2005 15:17:27 +0000</pubDate>
		<guid isPermaLink="false">http://barneyb.com/barneyblog/?p=94#comment-132</guid>
		<description>Are you using the &#039;output&#039; attribute of CFFUNCTION?  If not, you should.  I can&#039;t speak for BD, but on CFMX (all versions, I believe) the &#039;output&#039; attribute has three states: true, false, and missing.  True means the body of the function should be displayed as if wrapped in a CFOUTPUT tag.  False means the body shouldn&#039;t display anything as if wrapped in a CFSILENT tag.  A missing &#039;output&#039; attribute means the body should be displayed like any other inline content.

It&#039;s possible (likely, even, from what you describe) that a true value on BD means the same as a missing value on CFMX (display the body, but don&#039;t act as if it&#039;s in a CFOUTPUT block).  I very rarely output anything inside CFCs (preferring to return the content as a string), so I can&#039;t speak for this discrepancy.</description>
		<content:encoded><![CDATA[<p>Are you using the 'output' attribute of CFFUNCTION?  If not, you should.  I can't speak for BD, but on CFMX (all versions, I believe) the 'output' attribute has three states: true, false, and missing.  True means the body of the function should be displayed as if wrapped in a CFOUTPUT tag.  False means the body shouldn't display anything as if wrapped in a CFSILENT tag.  A missing 'output' attribute means the body should be displayed like any other inline content.</p>
<p>It's possible (likely, even, from what you describe) that a true value on BD means the same as a missing value on CFMX (display the body, but don't act as if it's in a CFOUTPUT block).  I very rarely output anything inside CFCs (preferring to return the content as a string), so I can't speak for this discrepancy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yves</title>
		<link>https://www.barneyb.com/barneyblog/2005/05/25/revenge-of-the-dragon-pt-ii/comment-page-1/#comment-131</link>
		<dc:creator>Yves</dc:creator>
		<pubDate>Sat, 01 Oct 2005 14:57:54 +0000</pubDate>
		<guid isPermaLink="false">http://barneyb.com/barneyblog/?p=94#comment-131</guid>
		<description>I&#039;m not sure if you&#039;ve ever seen this...

But I have a CFC that displays a small block of HTML.

var = &quot;The string&quot;
In CF6.1 (sorry, I don&#039;t yet have access to 7 :-(... ) if you have a variable to display #var# will show as &quot;The string&quot;.

While in BD 6.2, #var# in the CFC shows &quot;#var#&quot;. I&#039;ve had to add cfoutput tags so that the vars will display the dynamic content.

Have you seen anything like this?</description>
		<content:encoded><![CDATA[<p>I'm not sure if you've ever seen this&#8230;</p>
<p>But I have a CFC that displays a small block of HTML.</p>
<p>var = "The string"<br />
In CF6.1 (sorry, I don't yet have access to 7 :-(&#8230; ) if you have a variable to display #var# will show as "The string".</p>
<p>While in BD 6.2, #var# in the CFC shows "#var#". I've had to add cfoutput tags so that the vars will display the dynamic content.</p>
<p>Have you seen anything like this?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
