<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Neatly Sliced &#187; ColdFusion</title>
	<atom:link href="http://blog.neatlysliced.com/category/coldfusion/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.neatlysliced.com</link>
	<description>Bread was overrated.</description>
	<lastBuildDate>Thu, 30 Apr 2009 17:53:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Properly Utilize XSLT Parameters with ColdFusion</title>
		<link>http://blog.neatlysliced.com/2008/12/properly-utilize-xslt-parameters-with-coldfusion/</link>
		<comments>http://blog.neatlysliced.com/2008/12/properly-utilize-xslt-parameters-with-coldfusion/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 19:19:19 +0000</pubDate>
		<dc:creator>Jennifer</dc:creator>
				<category><![CDATA[ColdFusion]]></category>

		<guid isPermaLink="false">http://blog.neatlysliced.com/?p=254</guid>
		<description><![CDATA[Often a CMS will store its content in a database as structured XML. The easiest way to display this data is often through a short XSLT, which ColdFusion can render a transform using the XmlTransform() function, introduced to ColdFusion in ColdFusion MX. 
XSLT Parameter Usage
ColdFusion MX 7 introduced the ability to include parameters to the [...]]]></description>
			<content:encoded><![CDATA[<p>Often a CMS will store its content in a database as structured XML. The easiest way to display this data is often through a short XSLT, which ColdFusion can render a transform using the <a href="http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=functions_t-z_25.html"><code>XmlTransform()</code></a> function, introduced to ColdFusion in ColdFusion MX. </p>
<h3>XSLT Parameter Usage</h3>
<p>ColdFusion MX 7 introduced the ability to include parameters to the transform. Parameters allow you to pass in values to be rendered by the XSLT that are not included in the original XML. Following is an example of how an external parameter might be used with the following XML and XSLT:</p>
<div class="igBar"><span id="lxml-5"><a href="#" onclick="javascript:showPlainTxt('xml-5'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">XML:</span>
<div id="xml-5">
<div class="xml">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#525050;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;Content<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
<li style="font-weight: bold;background-color:#DFDFDF;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp;<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;Title<span style="font-weight: bold; color: black;">&gt;</span></span></span>My Title<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/Title<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#525050;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp;<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;Hyperlink<span style="font-weight: bold; color: black;">&gt;</span></span></span>/articles/my-article-name/<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/Hyperlink<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
<li style="font-weight: bold;background-color:#DFDFDF;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/Content<span style="font-weight: bold; color: black;">&gt;</span></span></span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<div class="igBar"><span id="lxml-6"><a href="#" onclick="javascript:showPlainTxt('xml-6'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">XML:</span>
<div id="xml-6">
<div class="xml">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#525050;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>?xml <span style="color: #000066;">version</span>=<span style="color: #ff0000;">"1.0"</span>?<span style="font-weight: bold; color: black;">&gt;</span></span></div>
</li>
<li style="font-weight: bold;background-color:#DFDFDF;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;xsl</span>:stylesheet <span style="color: #000066;">version</span>=<span style="color: #ff0000;">"1.0"</span> xmlns:<span style="color: #000066;">xsl</span>=<span style="color: #ff0000;">"http://www.w3.org/1999/XSL/Transform"</span><span style="font-weight: bold; color: black;">&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#525050;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;xsl</span> <img src='http://blog.neatlysliced.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> utput <span style="color: #000066;">method</span>=<span style="color: #ff0000;">"xml"</span> <span style="font-weight: bold; color: black;">/&gt;</span></span></div>
</li>
<li style="font-weight: bold;background-color:#DFDFDF;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#525050;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;xsl</span>:template <span style="color: #000066;">match</span>=<span style="color: #ff0000;">"//Content"</span><span style="font-weight: bold; color: black;">&gt;</span></span></div>
</li>
<li style="font-weight: bold;background-color:#DFDFDF;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;xsl</span>:param <span style="color: #000066;">name</span>=<span style="color: #ff0000;">"baseWebUrl"</span> <span style="font-weight: bold; color: black;">/&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#525050;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp;<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;a<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
<li style="font-weight: bold;background-color:#DFDFDF;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;xsl</span>:attribute <span style="color: #000066;">name</span>=<span style="color: #ff0000;">"href"</span><span style="font-weight: bold; color: black;">&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#525050;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;xsl</span>:value-of <span style="color: #000066;">select</span>=<span style="color: #ff0000;">"$baseWebUrl"</span> <span style="font-weight: bold; color: black;">/&gt;</span></span><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;xsl</span>:value-of <span style="color: #000066;">select</span>=<span style="color: #ff0000;">"Hyperlink"</span> <span style="font-weight: bold; color: black;">/&gt;</span></span></div>
</li>
<li style="font-weight: bold;background-color:#DFDFDF;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/xsl</span>:attribute<span style="font-weight: bold; color: black;">&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#525050;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp;<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;xsl</span>:value-of <span style="color: #000066;">select</span>=<span style="color: #ff0000;">"Title"</span> <span style="font-weight: bold; color: black;">/&gt;</span></span></div>
</li>
<li style="font-weight: bold;background-color:#DFDFDF;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp;<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/a<span style="font-weight: bold; color: black;">&gt;</span></span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#525050;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/xsl</span>:template<span style="font-weight: bold; color: black;">&gt;</span></span></div>
</li>
<li style="font-weight: bold;background-color:#DFDFDF;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;/xsl</span>:stylesheet<span style="font-weight: bold; color: black;">&gt;</span></span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<h3>Injecting a Parameter</h3>
<p>According to the documentation at the Adobe Knowledge Base, parameters are "<cite>a structure containing XSL template parameter name-value pairs to use in transforming the document. The XSL transform defined in the xslString parameter uses these parameter values in processing the XML.</cite>" </p>
<p>Usually when I create structures in ColdFusion, I use the familiar dot shorthand notation:</p>
<div class="igBar"><span id="lcode-7"><a href="#" onclick="javascript:showPlainTxt('code-7'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-7">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#525050;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;cfset parameters = StructNew<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>&gt;</div>
</li>
<li style="font-weight: bold;background-color:#DFDFDF;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;cfset parameters.<span style="">favoriteKitten</span> = url.<span style="">kitten</span> /&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#525050;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;cfset parameters.<span style="">numberOfKittens</span> = numKittens /&gt;</div>
</li>
<li style="font-weight: bold;background-color:#DFDFDF;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;cfset parameters.<span style="">baseWebUrl</span> = application.<span style="">webBase</span> /&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#525050;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;cfset MyXmlContent = XmlTransform<span style="color:#006600; font-weight:bold;">&#40;</span>MyXmlDocument,MyXsltDocument,parameters<span style="color:#006600; font-weight:bold;">&#41;</span>&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Using this method, my code would consistently fail to pass in any of the parameters. Careful reading of the <a href="http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentation&#038;file=00000673.htm">ColdFusion 7 comments for the XmlTransform function</a> reveals to us that we must use associative array notation for parameters to work properly. It's as easy as switching the assignation of keys in the structure from dot notation above, to the associative array notation below:</p>
<div class="igBar"><span id="lcode-8"><a href="#" onclick="javascript:showPlainTxt('code-8'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-8">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#525050;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;cfset parameters = StructNew<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>&gt;</div>
</li>
<li style="font-weight: bold;background-color:#DFDFDF;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;cfset parameters<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#CC0000;">"favoriteKitten"</span><span style="color:#006600; font-weight:bold;">&#93;</span> = url.<span style="">kitten</span> /&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#525050;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;cfset parameters<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#CC0000;">"numberOfKittens"</span><span style="color:#006600; font-weight:bold;">&#93;</span> = numKittens /&gt;</div>
</li>
<li style="font-weight: bold;background-color:#DFDFDF;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;cfset parameters<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#CC0000;">"baseWebUrl"</span><span style="color:#006600; font-weight:bold;">&#93;</span> = application.<span style="">webBase</span> /&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#525050;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;cfset MyXmlContent = XmlTransform<span style="color:#006600; font-weight:bold;">&#40;</span>MyXmlDocument,MyXsltDocument,parameters<span style="color:#006600; font-weight:bold;">&#41;</span>&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<h3>Structure Notation Reasoning</h3>
<p>Why is this the case? Why should it make a difference? Quite likely, as the commentor noted in the documentation, it is due to the syntax of ColdFusion. XML and XSLT allows for the "-" character to be included in variable names. Instead of <code>baseWebUrl</code>, I could have named the parameter <code>base-web-url</code>. Using ColdFusion and dot object notation would have resulted in <code>&lt;cfset parameters.base-web-url = application.webBase /&gt;</code>, which obviously would result in an attempted mathematically equation and a ColdFusion error. </p>
<p>So, just remember, don't use dot notation! Use associative array notation, or if you wish, the <a href="http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentation&#038;file=00000642.htm"><code>StructInsert()</code></a> function to add your structure keys.</p>
<p>I hope this saves you at least half of the hair-tearing-out that I endured.</p>
<img src="http://blog.neatlysliced.com/?ak_action=api_record_view&id=254&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.neatlysliced.com/2008/12/properly-utilize-xslt-parameters-with-coldfusion/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ColdFusion Checks String Length</title>
		<link>http://blog.neatlysliced.com/2008/03/coldfusion-checks-string-length/</link>
		<comments>http://blog.neatlysliced.com/2008/03/coldfusion-checks-string-length/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 12:21:13 +0000</pubDate>
		<dc:creator>Jennifer</dc:creator>
				<category><![CDATA[ColdFusion]]></category>

		<guid isPermaLink="false">http://blog.neatlysliced.com/2008/03/coldfusion-checks-string-length/</guid>
		<description><![CDATA[It's such a simple thing but I actually googled this because I couldn't think of it offhand.
PLAIN TEXT
CODE:




&#60;cfif len&#40;str&#41;&#62;


&#160; &#160; &#160;&#60;cfoutput&#62;#str#&#60;/cfoutput&#62;


&#60;/cfif&#62; 






if str has zero characters, len(str) will return 0, mimicking behaviour of false. Cool!
]]></description>
			<content:encoded><![CDATA[<p>It's such a simple thing but I actually googled this because I couldn't think of it offhand.</p>
<div class="igBar"><span id="lcode-10"><a href="#" onclick="javascript:showPlainTxt('code-10'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-10">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#525050;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;cfif len<span style="color:#006600; font-weight:bold;">&#40;</span>str<span style="color:#006600; font-weight:bold;">&#41;</span>&gt;</div>
</li>
<li style="font-weight: bold;background-color:#DFDFDF;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp;&lt;cfoutput&gt;#str#&lt;/cfoutput&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#525050;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/cfif&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>if <code>str</code> has zero characters, <code>len(str)</code> will return 0, mimicking behaviour of false. Cool!</p>
<img src="http://blog.neatlysliced.com/?ak_action=api_record_view&id=210&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.neatlysliced.com/2008/03/coldfusion-checks-string-length/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Mini-CF Site</title>
		<link>http://blog.neatlysliced.com/2006/12/mini-cf-site/</link>
		<comments>http://blog.neatlysliced.com/2006/12/mini-cf-site/#comments</comments>
		<pubDate>Tue, 05 Dec 2006 23:48:40 +0000</pubDate>
		<dc:creator>Jennifer</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Vida]]></category>
		<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://blog.neatlysliced.com/2006/12/mini-cf-site/</guid>
		<description><![CDATA[So I said I was done with school. That's not completely true. I am taking one more course this semester, but I'm not attending it; I am only doing the work.
The CDSource inspired ColdFusion site is for the ColdFusion course I am taking. Feel free to play around with it, but the cart isn't working [...]]]></description>
			<content:encoded><![CDATA[<p>So I said I was done with school. That's not completely true. I am taking one more course this semester, but I'm not attending it; I am only doing the work.</p>
<p>The <a href="http://www.neatlysliced.com/cdsource">CDSource inspired ColdFusion site</a> is for the ColdFusion course I am taking. Feel free to play around with it, but the cart isn't working yet so don't do that.</p>
<p>The <a href="http://www.neatlysliced.com/cdsource/admin">admin section</a> has no policing yet, so you can check that out too. Go ahead and add products. </p>
<p>I had fun writing the CSS for it. I am not a designer, but I like bringing design to reality. This was one of the cleanest stylesheet that I have written, although it was not difficult considering that there really isn't that much to style.</p>
<p>I'm slowing getting into this JavaScript filled Web2.0 world before me. I avoided JavaScript like the plague before. Now it's fun to make little things dynamic, such as the field on the product-type change to CD. So so very simple, but it makes me inexplicably giddy.</p>
<img src="http://blog.neatlysliced.com/?ak_action=api_record_view&id=76&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.neatlysliced.com/2006/12/mini-cf-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handling 404 Errors for a Migrated Blog</title>
		<link>http://blog.neatlysliced.com/2006/10/handling-404-errors-for-a-migrated-blog/</link>
		<comments>http://blog.neatlysliced.com/2006/10/handling-404-errors-for-a-migrated-blog/#comments</comments>
		<pubDate>Sun, 15 Oct 2006 19:21:08 +0000</pubDate>
		<dc:creator>Jennifer</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Vida]]></category>

		<guid isPermaLink="false">http://blog.neatlysliced.com/2006/10/handling-404-errors-for-a-migrated-blog/</guid>
		<description><![CDATA[Handling 404 Errors for a Migrated Blog by mi hermano, Joshua, displays my brother's particular genius and allows the entire world to see it not only in the ColdFusion Developer's Journal e-zine, but in the printed magazine as well.
Congratulations, Josh! Wahoo! 
]]></description>
			<content:encoded><![CDATA[<p><a href="http://coldfusion.sys-con.com/read/279866.htm">Handling 404 Errors for a Migrated Blog</a> by mi hermano, <a href="http://blog.nazin.com">Joshua</a>, displays my brother's particular genius and allows the entire world to see it not only in the <a href="http://coldfusion.sys-con.com/">ColdFusion Developer's Journal</a> e-zine, but in the printed magazine as well.</p>
<p>Congratulations, Josh! Wahoo! </p>
<img src="http://blog.neatlysliced.com/?ak_action=api_record_view&id=59&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.neatlysliced.com/2006/10/handling-404-errors-for-a-migrated-blog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
