<?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 Stillnet Studios</title>
	<atom:link href="http://www.stillnetstudios.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stillnetstudios.com</link>
	<description>Web development notes and commentary from Ryan Stille</description>
	<lastBuildDate>Wed, 01 Feb 2012 10:14:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>Comment on SQL CASE statement with NULLs by Phil</title>
		<link>http://www.stillnetstudios.com/mssql-case-statement-with-nulls/comment-page-1/#comment-2686</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Wed, 01 Feb 2012 10:14:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.stillnetstudios.com/2008/06/04/mssql-case-statement-with-nulls/#comment-2686</guid>
		<description>Thanks for this, I was having trouble with NULL values but the &#039;search&#039; method of the CASE statement works just fine.</description>
		<content:encoded><![CDATA[<p>Thanks for this, I was having trouble with NULL values but the &#8216;search&#8217; method of the CASE statement works just fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Secure image uploading with ColdFusion by anon</title>
		<link>http://www.stillnetstudios.com/secure-image-uploading-coldfusion/comment-page-1/#comment-2681</link>
		<dc:creator>anon</dc:creator>
		<pubDate>Tue, 24 Jan 2012 08:38:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.stillnetstudios.com/?p=579#comment-2681</guid>
		<description>ColdFusion has an attribute you can specify in cffile &#039;nameconflict&#039;, set this attribute&#039;s value to &quot;makeunique&quot; and ColdFusion will automatically resolve name conflicts. Make sure you use the &#039;serverFile&#039; field of the resulting struct to get the name as it was saved.</description>
		<content:encoded><![CDATA[<p>ColdFusion has an attribute you can specify in cffile &#8216;nameconflict&#8217;, set this attribute&#8217;s value to &#8220;makeunique&#8221; and ColdFusion will automatically resolve name conflicts. Make sure you use the &#8216;serverFile&#8217; field of the resulting struct to get the name as it was saved.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Require subversion comments &#8211; a perl pre-commit hook by Keshav</title>
		<link>http://www.stillnetstudios.com/require-subversion-comments-minimum/comment-page-1/#comment-2673</link>
		<dc:creator>Keshav</dc:creator>
		<pubDate>Tue, 10 Jan 2012 13:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.stillnetstudios.com/2008/06/16/require-subversion-comments-minimum/#comment-2673</guid>
		<description>Hello all, 
I want to mandate a specific pattern(Should start with AS- ) in the commit message while I commit to SVN . Could someone help me in writing a script for this ? 
Any help on this would be greatly appreciated ... 

Thanks,
K</description>
		<content:encoded><![CDATA[<p>Hello all,<br />
I want to mandate a specific pattern(Should start with AS- ) in the commit message while I commit to SVN . Could someone help me in writing a script for this ?<br />
Any help on this would be greatly appreciated &#8230; </p>
<p>Thanks,<br />
K</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Animated in-progress indicator for long running pages by brij</title>
		<link>http://www.stillnetstudios.com/animated-in-progress-indicator-for-long-running-pages/comment-page-1/#comment-2672</link>
		<dc:creator>brij</dc:creator>
		<pubDate>Tue, 10 Jan 2012 08:19:45 +0000</pubDate>
		<guid isPermaLink="false">http://ryan.cfwebtools.com/2007/02/04/animated-in-progress-indicator-for-long-running-pages/#comment-2672</guid>
		<description>I am still getting the non animated icon/image when I click on the submit button. 

Below given is the code
if (! submitted) {
alert(“test”);
submitted = true;
ProgressImg = document.getElementById(‘inprogress_img’);
ProgressImg.style.display = “block”;
setTimeOut(“ProgressImg.src = ‘C:\\130.gif’”,1000);
return true;
}
else {
return false;
}

Can someone help?
Regards</description>
		<content:encoded><![CDATA[<p>I am still getting the non animated icon/image when I click on the submit button. </p>
<p>Below given is the code<br />
if (! submitted) {<br />
alert(“test”);<br />
submitted = true;<br />
ProgressImg = document.getElementById(‘inprogress_img’);<br />
ProgressImg.style.display = “block”;<br />
setTimeOut(“ProgressImg.src = ‘C:\\130.gif’”,1000);<br />
return true;<br />
}<br />
else {<br />
return false;<br />
}</p>
<p>Can someone help?<br />
Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Animated in-progress indicator for long running pages by Brij</title>
		<link>http://www.stillnetstudios.com/animated-in-progress-indicator-for-long-running-pages/comment-page-1/#comment-2671</link>
		<dc:creator>Brij</dc:creator>
		<pubDate>Tue, 10 Jan 2012 08:18:57 +0000</pubDate>
		<guid isPermaLink="false">http://ryan.cfwebtools.com/2007/02/04/animated-in-progress-indicator-for-long-running-pages/#comment-2671</guid>
		<description>I am still getting the non animated icon/image when I click on the submit button. 

Below given is the code 
if (! submitted) {
		alert(&quot;test&quot;);
		submitted = true;
		ProgressImg = document.getElementById(&#039;inprogress_img&#039;);
		ProgressImg.style.display = &quot;block&quot;;
		setTimeOut(&quot;ProgressImg.src = &#039;C:\\130.gif&#039;&quot;,1000);
		return true;
		}
	else {
		return false;
		}</description>
		<content:encoded><![CDATA[<p>I am still getting the non animated icon/image when I click on the submit button. </p>
<p>Below given is the code<br />
if (! submitted) {<br />
		alert(&#8220;test&#8221;);<br />
		submitted = true;<br />
		ProgressImg = document.getElementById(&#8216;inprogress_img&#8217;);<br />
		ProgressImg.style.display = &#8220;block&#8221;;<br />
		setTimeOut(&#8220;ProgressImg.src = &#8216;C:\\130.gif&#8217;&#8221;,1000);<br />
		return true;<br />
		}<br />
	else {<br />
		return false;<br />
		}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting a ColdFusion query to an array by Ghalstead</title>
		<link>http://www.stillnetstudios.com/convert-query-to-array/comment-page-1/#comment-2666</link>
		<dc:creator>Ghalstead</dc:creator>
		<pubDate>Thu, 05 Jan 2012 16:36:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.stillnetstudios.com/?p=845#comment-2666</guid>
		<description>Thank you for the nice info.</description>
		<content:encoded><![CDATA[<p>Thank you for the nice info.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Require subversion comments &#8211; a perl pre-commit hook by sagar</title>
		<link>http://www.stillnetstudios.com/require-subversion-comments-minimum/comment-page-1/#comment-2662</link>
		<dc:creator>sagar</dc:creator>
		<pubDate>Tue, 03 Jan 2012 13:31:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.stillnetstudios.com/2008/06/16/require-subversion-comments-minimum/#comment-2662</guid>
		<description>hello i m using webfaction hosting and i put that script as pre-commit.sh ..but its not executable ???..can u plz suggest me..??</description>
		<content:encoded><![CDATA[<p>hello i m using webfaction hosting and i put that script as pre-commit.sh ..but its not executable ???..can u plz suggest me..??</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Secure image uploading with ColdFusion by tim</title>
		<link>http://www.stillnetstudios.com/secure-image-uploading-coldfusion/comment-page-1/#comment-2654</link>
		<dc:creator>tim</dc:creator>
		<pubDate>Thu, 22 Dec 2011 23:37:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.stillnetstudios.com/?p=579#comment-2654</guid>
		<description>@raffael - one solution I like is to rename the .jpg to the primary key of the record / profile it&#039;s associated with. eg: 1.jpg, 2.jpg. or this could be some other unique identifier. I agree that doing a fileExists() would be a good addition before before writing with cfimage.</description>
		<content:encoded><![CDATA[<p>@raffael &#8211; one solution I like is to rename the .jpg to the primary key of the record / profile it&#8217;s associated with. eg: 1.jpg, 2.jpg. or this could be some other unique identifier. I agree that doing a fileExists() would be a good addition before before writing with cfimage.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Animated in-progress indicator for long running pages by amod</title>
		<link>http://www.stillnetstudios.com/animated-in-progress-indicator-for-long-running-pages/comment-page-1/#comment-2652</link>
		<dc:creator>amod</dc:creator>
		<pubDate>Tue, 20 Dec 2011 06:39:22 +0000</pubDate>
		<guid isPermaLink="false">http://ryan.cfwebtools.com/2007/02/04/animated-in-progress-indicator-for-long-running-pages/#comment-2652</guid>
		<description>Hi thanks for cool sol. i want to set its display time to until  its browser close. how can i achieve?</description>
		<content:encoded><![CDATA[<p>Hi thanks for cool sol. i want to set its display time to until  its browser close. how can i achieve?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Animated in-progress indicator for long running pages by Dan</title>
		<link>http://www.stillnetstudios.com/animated-in-progress-indicator-for-long-running-pages/comment-page-1/#comment-2651</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Mon, 19 Dec 2011 08:14:32 +0000</pubDate>
		<guid isPermaLink="false">http://ryan.cfwebtools.com/2007/02/04/animated-in-progress-indicator-for-long-running-pages/#comment-2651</guid>
		<description>Outstanding! Thanks for the post.

IE still broken on version 9, but this fixed it.

I used a simpler version - only a hidden image tag on the page.



	function appear()
	{
		ProgressImg = document.getElementById(&#039;processing&#039;);
		ProgressImg.style.visibility = &#039;visible&#039;;
		setTimeout(&quot;ProgressImg.src = ProgressImg.src&quot;,100);
	}
So the only extra line needed for IE compared to my original was the setTimeout()</description>
		<content:encoded><![CDATA[<p>Outstanding! Thanks for the post.</p>
<p>IE still broken on version 9, but this fixed it.</p>
<p>I used a simpler version &#8211; only a hidden image tag on the page.</p>
<p>	function appear()<br />
	{<br />
		ProgressImg = document.getElementById(&#8216;processing&#8217;);<br />
		ProgressImg.style.visibility = &#8216;visible&#8217;;<br />
		setTimeout(&#8220;ProgressImg.src = ProgressImg.src&#8221;,100);<br />
	}<br />
So the only extra line needed for IE compared to my original was the setTimeout()</p>
]]></content:encoded>
	</item>
</channel>
</rss>

