<?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 Furry Brains</title>
	<atom:link href="http://furrybrains.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://furrybrains.com</link>
	<description>The Furry Brains blog tackles a wide range of issues related to web development and design.</description>
	<lastBuildDate>Tue, 10 May 2011 10:05:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on JSON Parsing and Stringifying in jQuery (as a plugin) by JavaScript和PHP中json object和json string互相转换 &#124; Min的技术分享 &#8211; 54min.com</title>
		<link>http://furrybrains.com/2009/01/15/json-parsing-and-stringifying-in-jquery-as-a-plugin/comment-page-1/#comment-42</link>
		<dc:creator>JavaScript和PHP中json object和json string互相转换 &#124; Min的技术分享 &#8211; 54min.com</dc:creator>
		<pubDate>Tue, 10 May 2011 10:05:20 +0000</pubDate>
		<guid isPermaLink="false">http://furrybrains.com/?p=117#comment-42</guid>
		<description>[...] http://furrybrains.com/2009/01/15/json-parsing-and-stringifying-in-jquery-as-a-plugin/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://furrybrains.com/2009/01/15/json-parsing-and-stringifying-in-jquery-as-a-plugin/" rel="nofollow">http://furrybrains.com/2009/01/15/json-parsing-and-stringifying-in-jquery-as-a-plugin/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Prepending an Indefinite Article (a or an) in Front of a Word or Phrase by atomless</title>
		<link>http://furrybrains.com/2009/01/26/with_indefinite_article-a-django-template-tag/comment-page-1/#comment-41</link>
		<dc:creator>atomless</dc:creator>
		<pubDate>Tue, 29 Mar 2011 10:00:12 +0000</pubDate>
		<guid isPermaLink="false">http://furrybrains.com/?p=126#comment-41</guid>
		<description>Saved me a lot of time. Very much appreciated. Thanks for sharing!</description>
		<content:encoded><![CDATA[<p>Saved me a lot of time. Very much appreciated. Thanks for sharing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Capturing AutoFill as a Change Event by Eugen</title>
		<link>http://furrybrains.com/2009/01/02/capturing-autofill-as-a-change-event/comment-page-1/#comment-40</link>
		<dc:creator>Eugen</dc:creator>
		<pubDate>Wed, 23 Mar 2011 17:12:32 +0000</pubDate>
		<guid isPermaLink="false">http://furrybrains.com/?p=104#comment-40</guid>
		<description>If you don&#039;t want all inputs on the form to be affected, you can write something like this:
&lt;code&gt;
  $(&quot;p.gray input&quot;).listenForChange();
&lt;/code&gt;
After this the only thing you need is to change listenForChange() function not to parse all inputs on the form. This can really mess thing up for you.

So instead of 
&lt;code&gt;
  jquery_object.filter(&quot;:input&quot;).add(&quot;:input&quot;, jquery_object).focus(
&lt;/code&gt;
you should have just
&lt;code&gt;
  jquery_object.focus(
&lt;/code&gt;
as this jquery_object already contains filtered inputs you need.</description>
		<content:encoded><![CDATA[<p>If you don&#8217;t want all inputs on the form to be affected, you can write something like this:<br />
<code><br />
  $("p.gray input").listenForChange();<br />
</code><br />
After this the only thing you need is to change listenForChange() function not to parse all inputs on the form. This can really mess thing up for you.</p>
<p>So instead of<br />
<code><br />
  jquery_object.filter(":input").add(":input", jquery_object).focus(<br />
</code><br />
you should have just<br />
<code><br />
  jquery_object.focus(<br />
</code><br />
as this jquery_object already contains filtered inputs you need.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Capturing AutoFill as a Change Event by Andrew</title>
		<link>http://furrybrains.com/2009/01/02/capturing-autofill-as-a-change-event/comment-page-1/#comment-39</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Wed, 02 Feb 2011 08:11:58 +0000</pubDate>
		<guid isPermaLink="false">http://furrybrains.com/?p=104#comment-39</guid>
		<description>Thank you!

I had a single input-box form, so I commented out lines 28-31.
Works a treat!

Cheers,

  Andrew.</description>
		<content:encoded><![CDATA[<p>Thank you!</p>
<p>I had a single input-box form, so I commented out lines 28-31.<br />
Works a treat!</p>
<p>Cheers,</p>
<p>  Andrew.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JSON Parsing and Stringifying in jQuery (as a plugin) by Jeremy Ray Brown</title>
		<link>http://furrybrains.com/2009/01/15/json-parsing-and-stringifying-in-jquery-as-a-plugin/comment-page-1/#comment-38</link>
		<dc:creator>Jeremy Ray Brown</dc:creator>
		<pubDate>Mon, 13 Sep 2010 20:39:08 +0000</pubDate>
		<guid isPermaLink="false">http://furrybrains.com/?p=117#comment-38</guid>
		<description>The following is a stringify method you can use for browsers that don&#039;t support the JSON object (e.g. IE7):

function Stringify(jsonData) {
    var strJsonData = &#039;{&#039;;
    var itemCount = 0;
    for (var item in jsonData) {
        if (itemCount &gt; 0) {
            strJsonData += &#039;, &#039;;
        }
        strJsonData += &#039;&quot;&#039; + item + &#039;&quot;:&quot;&#039; + jsonData[item] + &#039;&quot;&#039;;
        itemCount++;
    }
    strJsonData += &#039;}&#039;;
    return strJsonData;
}</description>
		<content:encoded><![CDATA[<p>The following is a stringify method you can use for browsers that don&#8217;t support the JSON object (e.g. IE7):</p>
<p>function Stringify(jsonData) {<br />
    var strJsonData = &#8216;{&#8216;;<br />
    var itemCount = 0;<br />
    for (var item in jsonData) {<br />
        if (itemCount &gt; 0) {<br />
            strJsonData += &#8216;, &#8216;;<br />
        }<br />
        strJsonData += &#8216;&#8221;&#8216; + item + &#8216;&#8221;:&#8221;&#8216; + jsonData[item] + &#8216;&#8221;&#8216;;<br />
        itemCount++;<br />
    }<br />
    strJsonData += &#8216;}&#8217;;<br />
    return strJsonData;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Capturing AutoFill as a Change Event by Bill</title>
		<link>http://furrybrains.com/2009/01/02/capturing-autofill-as-a-change-event/comment-page-1/#comment-37</link>
		<dc:creator>Bill</dc:creator>
		<pubDate>Tue, 07 Sep 2010 19:57:06 +0000</pubDate>
		<guid isPermaLink="false">http://furrybrains.com/?p=104#comment-37</guid>
		<description>Thanks for the help; great idea.

@Glenn

You could add

   &lt;code&gt;clearInterval(intervalID);&lt;/code&gt;

at the end of the jquery filter. That way, once something has changed (auto-fill) it would stop listening.</description>
		<content:encoded><![CDATA[<p>Thanks for the help; great idea.</p>
<p>@Glenn</p>
<p>You could add</p>
<p>   <code>clearInterval(intervalID);</code></p>
<p>at the end of the jquery filter. That way, once something has changed (auto-fill) it would stop listening.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Organizing Unit Tests in Django by giri</title>
		<link>http://furrybrains.com/2009/02/25/organizaing-unit-tests-in-django/comment-page-1/#comment-36</link>
		<dc:creator>giri</dc:creator>
		<pubDate>Wed, 18 Aug 2010 12:46:08 +0000</pubDate>
		<guid isPermaLink="false">http://furrybrains.com/?p=136#comment-36</guid>
		<description>i need to override run_tests method of djangotestrunner class. How to start with.
i wanted to display a detailed list of wat tests r run and some small discription with the result,like

TEST_NAME--&gt;abc
TEST_DISC--&gt;bla bla bla
RESULT---&gt;PASSED(or FALIED)


reply soon…</description>
		<content:encoded><![CDATA[<p>i need to override run_tests method of djangotestrunner class. How to start with.<br />
i wanted to display a detailed list of wat tests r run and some small discription with the result,like</p>
<p>TEST_NAME&#8211;&gt;abc<br />
TEST_DISC&#8211;&gt;bla bla bla<br />
RESULT&#8212;&gt;PASSED(or FALIED)</p>
<p>reply soon…</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Organizing Unit Tests in Django by giri</title>
		<link>http://furrybrains.com/2009/02/25/organizaing-unit-tests-in-django/comment-page-1/#comment-35</link>
		<dc:creator>giri</dc:creator>
		<pubDate>Wed, 18 Aug 2010 12:44:03 +0000</pubDate>
		<guid isPermaLink="false">http://furrybrains.com/?p=136#comment-35</guid>
		<description>i need to override run_tests method of djangotestrunner class. How to start with.
i wanted to display a detailed list of wat tests r run and some small discription with the result,like

TEST_NAMETEST_DISCRESULT
abctest d fun x PASSED



reply soon...</description>
		<content:encoded><![CDATA[<p>i need to override run_tests method of djangotestrunner class. How to start with.<br />
i wanted to display a detailed list of wat tests r run and some small discription with the result,like</p>
<p>TEST_NAMETEST_DISCRESULT<br />
abctest d fun x PASSED</p>
<p>reply soon&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Organizing Unit Tests in Django by giri</title>
		<link>http://furrybrains.com/2009/02/25/organizaing-unit-tests-in-django/comment-page-1/#comment-34</link>
		<dc:creator>giri</dc:creator>
		<pubDate>Wed, 18 Aug 2010 12:41:22 +0000</pubDate>
		<guid isPermaLink="false">http://furrybrains.com/?p=136#comment-34</guid>
		<description>i need to override run_tests method of djangotestrunner class. How to start with.
i wanted to display a detailed list of wat tests r run and some small discription with the result,like

TEST NAME              TEST DISC               RESULT
abc                     test d fun x            PASSED



reply soon...</description>
		<content:encoded><![CDATA[<p>i need to override run_tests method of djangotestrunner class. How to start with.<br />
i wanted to display a detailed list of wat tests r run and some small discription with the result,like</p>
<p>TEST NAME              TEST DISC               RESULT<br />
abc                     test d fun x            PASSED</p>
<p>reply soon&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JSON Parsing and Stringifying in jQuery (as a plugin) by {}</title>
		<link>http://furrybrains.com/2009/01/15/json-parsing-and-stringifying-in-jquery-as-a-plugin/comment-page-1/#comment-33</link>
		<dc:creator>{}</dc:creator>
		<pubDate>Tue, 17 Aug 2010 11:25:12 +0000</pubDate>
		<guid isPermaLink="false">http://furrybrains.com/?p=117#comment-33</guid>
		<description>this.JSON = {};</description>
		<content:encoded><![CDATA[<p>this.JSON = {};</p>
]]></content:encoded>
	</item>
</channel>
</rss>

