<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc = "http://purl.org/dc/elements/1.1/" xmlns="http://purl.org/rss/1.0/">
	<channel rdf:about="http://livedocs.adobe.com/">
	<title>LiveDocs Comments - coldfusion - 6.1 - htmldocs - tags-p21.htm</title>	
		<link>http://livedocs.adobe.com/</link>
		<description>Macromedia LiveDocs - online documentation with user feedback.</description>
		<copyright>Copyright 2009, Macromedia, Inc.</copyright>
		<dc:date>2009-11-25T20:38:52</dc:date>
		<dc:language>en-us</dc:language>
		<items>
			<rdf:Seq>
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#45013" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#35033" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#33937" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#24591" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#24590" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#22702" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#21655" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#21654" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#21194" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#13042" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#11584" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#11565" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#7238" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#7237" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#6865" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#5738" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#4340" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#4291" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#4284" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#4283" />
			</rdf:Seq>
		</items>
	</channel>
	
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#45013">
		<title>coldfusion/6.1/htmldocs/tags-p21.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#45013</link>
		<description>Ran across this one the other day, thought that it was an issue with our DB model, but turns out it was CFDump. (on CF 6.1) My apologies in advance if this has already been reported/corrected.&lt;br /&gt;&lt;br /&gt;When CFDUMPing a query with like-column names, i.e.&lt;br /&gt;&lt;br /&gt;SELECT a.colName, b.colName&lt;br /&gt;FROM table1 as a, table2 as b&lt;br /&gt;WHERE a.likeKey = b.likeKey&lt;br /&gt;and a.colName &lt;&gt; b.colName&lt;br /&gt;&lt;br /&gt;...though a.colName should not be equal to b.colName in the example above, the values output by CFDUMP do not reflect this, as they are displayed identical.&lt;br /&gt;&lt;br /&gt;Further, this appears to be the case for ANY like column name, regardless of whether you're joining or not:&lt;br /&gt;&lt;br /&gt;i.e.&lt;br /&gt;&lt;br /&gt;select 'a' as test, 'b' as test from fakeTable&lt;br /&gt;&lt;br /&gt;Outputs:&lt;br /&gt;&lt;br /&gt;Result Set - query &lt;br /&gt;  TEST TEST &lt;br /&gt;1   a   a  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Some obvious confliction going on there! For us, we simply aliassed the resulting joins to unique names to view the desired output, but the bug silently remains!</description>
		<dc:creator>moneybagsxp</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2006-02-08T13:41:56</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#35033">
		<title>coldfusion/6.1/htmldocs/tags-p21.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#35033</link>
		<description>Because cfdump'ing CFCATCH results in wacky errors you can get around this by employing this loop rather than a cfdump:&lt;br /&gt;&lt;br /&gt;	&lt;cfloop collection=#cfcatch# item=&quot;i&quot;&gt;&lt;br /&gt;		&lt;cfset data = StructFind(cfcatch, i)&gt;&lt;br /&gt;		&lt;cfif IsSimpleValue(data) AND (Not i CONTAINS &quot;stacktrace&quot;)&gt;&lt;br /&gt;			&lt;cfoutput&gt;&lt;strong&gt;#Ucase(i)#&lt;/strong&gt; = #data#&lt;br&gt;&lt;/cfoutput&gt;&lt;br /&gt;		&lt;/cfif&gt;&lt;br /&gt;	&lt;/cfloop&gt;</description>
		<dc:creator>gonzoprosperity</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2005-06-08T13:22:21</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#33937">
		<title>coldfusion/6.1/htmldocs/tags-p21.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#33937</link>
		<description>the stylsheet included in cfdump isn't standard compliant.&lt;br /&gt;the formatting breaks when a standard doctype is defined in the html document.</description>
		<dc:creator>mocax</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2005-05-24T20:05:01</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#24591">
		<title>coldfusion/6.1/htmldocs/tags-p21.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#24591</link>
		<description>Sorry, I'm a bit tired and that last note didn't make sense... I have written a replacement so that you can now do a CFDUMP of CFCATCH.</description>
		<dc:creator>martypaz</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-11-29T23:28:22</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#24590">
		<title>coldfusion/6.1/htmldocs/tags-p21.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#24590</link>
		<description>I have a fix that I've written.. It's a replacement for the broken one.&lt;br /&gt;&lt;br /&gt;http://www.beetrootstreet.co.uk/products/index.cfm?Content_ID=5F8D9453-AE1F-3B96-86FBB3A0DED55060</description>
		<dc:creator>martypaz</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-11-29T23:25:33</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#22702">
		<title>coldfusion/6.1/htmldocs/tags-p21.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#22702</link>
		<description>Is MM doing anything about CFCATCH not dumping after applying Updater that released on August 25th 2004. MM needs to be active on this issue since lot of developers rely on dump information to better debug the application.</description>
		<dc:creator>Shivang13</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-10-21T07:02:52</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#21655">
		<title>coldfusion/6.1/htmldocs/tags-p21.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#21655</link>
		<description>The inline CSS that CFDUMP inserts doesn't work with XHTML pages. The table colors aren't pounded, which means web browsers which follow strict rules with XHTML (incredibly, this INCLUDES Internet Explorer 6) will show the dump in black and white.</description>
		<dc:creator>S.Wright</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-09-22T22:15:59</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#21654">
		<title>coldfusion/6.1/htmldocs/tags-p21.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#21654</link>
		<description>CFDUMP is royally stuffed in 6.1.... dumping #cfcatch# no longer works, and worse still, dumping #cgi# results in an INCOMPLETE data set, ignoring ANY custom HTTP header passed to the web server.&lt;br /&gt;&lt;br /&gt;Not happy.</description>
		<dc:creator>S.Wright</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-09-22T22:12:51</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#21194">
		<title>coldfusion/6.1/htmldocs/tags-p21.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#21194</link>
		<description>since MX 6.1 cfdump can not handle cfcatch, right? i only get an &quot;unknown type&quot; message...</description>
		<dc:creator>ChronoCrypt</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-09-10T04:18:02</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#13042">
		<title>coldfusion/6.1/htmldocs/tags-p21.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#13042</link>
		<description>It seems if you use the label attribute but you dump a simple variable, you don't see the label.  The label would go in the fancy HTML decorating a complex structure, but this doesn't get output for simple variables.&lt;br /&gt;&lt;br /&gt;This feels like a bug, it makes it hard to troubleshoot your debug output when you can't find your dump labels.&lt;br /&gt;&lt;br /&gt;E.g.&lt;br /&gt;  &lt;cfdump label=&quot;here is my complex label&quot; var=&quot;#cgi.SCRIPT_NAME#&quot;&gt;&lt;br /&gt;just dumps out the script name, with no label.</description>
		<dc:creator>spage</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-04-16T23:29:11</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#11584">
		<title>coldfusion/6.1/htmldocs/tags-p21.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#11584</link>
		<description>It seems CFDUMP is trying to be intelligent about whether it has already been called once during the request.&lt;br /&gt;&lt;br /&gt;If it hasn't, then the call to CFDUMP outputs the stylesheet and javascript, then outputs the data.&lt;br /&gt;&lt;br /&gt;If it has been called already, then CFDUMP only outputs the data.&lt;br /&gt;&lt;br /&gt;Except we've found many instances where this isn't the desired behavior (the first call was within a CFMAIL or CFFILE tag, hence the stylesheet was written in that context, but then a subsequent call in the template scope is missing all the styles/js behaviors).&lt;br /&gt;&lt;br /&gt;A workaround is to set the REQUEST.cfdumpinited=FALSE right before calling the tag in such situations ... forcing CFDUMP to reinitialize (and, thus, output styles, etc) even though it may already have been called elsewhere during the request.&lt;br /&gt;&lt;br /&gt;Perhaps this could be pointed out in the documentation. Or some other solution provided (like CFDUMP being aware of whether it's called within CFMAILs, etc).</description>
		<dc:creator>csteinola</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-03-23T10:58:13</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#11565">
		<title>coldfusion/6.1/htmldocs/tags-p21.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#11565</link>
		<description>We are working to improve the examples in the ColdFusion reference pages. We propose to replace the current example on this page with the the following example. If you have any comments on this example, add them to this page.&lt;br /&gt;&lt;br /&gt;This example shows how to use this tag to display the CGI scope as a structure:&lt;br /&gt;&lt;br /&gt;&lt;cfdump var=&quot;#cgi#&quot;&gt;</description>
		<dc:creator>wlee</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-03-23T06:44:18</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#7238">
		<title>coldfusion/6.1/htmldocs/tags-p21.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#7238</link>
		<description>A ColdFusion bug (No. 54114) has been entered against this behvior.</description>
		<dc:creator>halL</dc:creator>
		<dc:type>1 1</dc:type>
		<dc:date>2004-02-03T06:09:55</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#7237">
		<title>coldfusion/6.1/htmldocs/tags-p21.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#7237</link>
		<description>EXPAND=&quot;no&quot; and all the Javascript for expanding and contracting also doesn't work on pages containing the &lt;CFCACHE&gt; tag, even if that tag is set to 0...</description>
		<dc:creator>inix</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-02-03T04:00:44</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#6865">
		<title>coldfusion/6.1/htmldocs/tags-p21.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#6865</link>
		<description>A ColdFusion bug (number 51732) has been reported against this issue.</description>
		<dc:creator>halL</dc:creator>
		<dc:type>1 1</dc:type>
		<dc:date>2004-01-30T10:59:09</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#5738">
		<title>coldfusion/6.1/htmldocs/tags-p21.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#5738</link>
		<description>Why does EXPAND=&quot;no&quot; not work for dumps of queries?&lt;br /&gt;&lt;br /&gt;I would expect that the output would be collapsed to the header row.</description>
		<dc:creator>csteinola</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-01-23T12:35:27</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#4340">
		<title>coldfusion/6.1/htmldocs/tags-p21.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#4340</link>
		<description>Note:  If you have a cfdump inside an output suppressed component function, it will break your future cfdumps (even in non-supressed functions).&lt;br /&gt;&lt;br /&gt;This happens because cfdump will only write needed style and script data once, but if it's called from an output supressed component, these definitions never get written, and future cfdumps think it is included in the document already and dont attempt to include them again.</description>
		<dc:creator></dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2003-12-05T14:35:18</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#4291">
		<title>coldfusion/6.1/htmldocs/tags-p21.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#4291</link>
		<description>The CFDUMP tag was new in CF 5 (although it originated in Spectra 1.0).&lt;br&gt;&lt;br&gt;The CMFL Reference lists changes since CF 5 on http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-p17.htm&lt;br&gt;&lt;br&gt;Additionally, the Macromedia ColdFusion Support site has a technote with complete information: http://www.macromedia.com/support/coldfusion/ts/documents/cfmlhistory.htm</description>
		<dc:creator>jrunrandy</dc:creator>
		<dc:type>1 0</dc:type>
		<dc:date>2003-12-03T06:02:29</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#4284">
		<title>coldfusion/6.1/htmldocs/tags-p21.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#4284</link>
		<description>For that matter, it would be nice if MM included version of inclusion for all CFML and functions.  This would be beneficial in doing compliancy and backward compatibility evaluations.</description>
		<dc:creator>rraga</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2003-12-02T14:24:04</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#4283">
		<title>coldfusion/6.1/htmldocs/tags-p21.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-p21.htm#4283</link>
		<description>Anyone know what version of CF did CFDump first appear?</description>
		<dc:creator>rraga</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2003-12-02T14:16:05</dc:date>
	</item>
	</rdf:RDF>

