<?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: deUncategorize 1.1a: Firefox Bugfix</title>
	<atom:link href="http://cinnamonthoughts.org/2006/11/01/deuncategorize-11a-firefox-bugfix/feed/" rel="self" type="application/rss+xml" />
	<link>http://cinnamonthoughts.org/2006/11/01/deuncategorize-11a-firefox-bugfix/</link>
	<description>... it might be interesting</description>
	<pubDate>Wed, 07 Jan 2009 01:20:20 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Daniel</title>
		<link>http://cinnamonthoughts.org/2006/11/01/deuncategorize-11a-firefox-bugfix/comment-page-1/#comment-2946</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Wed, 06 Dec 2006 10:15:25 +0000</pubDate>
		<guid isPermaLink="false">http://cinnamonthoughts.org/2006/11/01/deuncategorize-11a-firefox-bugfix/#comment-2946</guid>
		<description>Hi Gideon,
thanks for your feedback!

You are right, the plugin didn't work with the IE. I've fixed it (using a different approach than you suggested) and mailed the fixed version to you. &lt;del datetime="2006-12-06T11:28:18+00:00"&gt;I'll release it as soon as I get positive feedback from you.&lt;/del&gt;
&lt;ins datetime="2006-12-06T11:28:18+00:00"&gt;It's released: &lt;a href="/2006/12/06/deuncategorize-12-internet-explorer-fix/" rel="nofollow"&gt;deUncategorize 1.2: Internet Explorer Fix&lt;/a&gt;.&lt;/ins&gt;

The operator &lt;code&gt;!==&lt;/code&gt; means "not identical". I've used it because I expect a String in the given situation.

See the &lt;cite&gt;&lt;a href="http://php.net/operators.comparison" rel="nofollow"&gt;PHP: Comparison Operators - Manual&lt;/a&gt;&lt;/cite&gt; for a detailed explanation:
&lt;blockquote&gt;&lt;code&gt;$a !== $b&lt;/code&gt; -- Not identical -- &lt;strong&gt;&lt;code&gt;TRUE&lt;/code&gt;&lt;/strong&gt; if &lt;code&gt;$a&lt;/code&gt; is not equal to &lt;code&gt;$b&lt;/code&gt;, or they are not of the same type. (introduced in PHP 4)&lt;/blockquote&gt;

And for your last point: you can leave the &lt;code&gt;== true&lt;/code&gt; out of course. At some point though I wanted to make it clear. Because of the code changes I've made it is no longer necessary and I've saved eight chars bandwidth ;-)</description>
		<content:encoded><![CDATA[<br />
]]></content:encoded>
	</item>
	<item>
		<title>By: Gideon Melle</title>
		<link>http://cinnamonthoughts.org/2006/11/01/deuncategorize-11a-firefox-bugfix/comment-page-1/#comment-2943</link>
		<dc:creator>Gideon Melle</dc:creator>
		<pubDate>Wed, 06 Dec 2006 07:19:56 +0000</pubDate>
		<guid isPermaLink="false">http://cinnamonthoughts.org/2006/11/01/deuncategorize-11a-firefox-bugfix/#comment-2943</guid>
		<description>Hi, I have downloaded your plugin. It works like a charm with Firefox but unfortunate not with IE5+. I like at the code en indeed the &lt;code&gt;setAttribute&lt;/code&gt; stuff is oknown to not work with IE5+. Probably you are not a IE-user, but it would be nice to get it to work also with this browser. I searched a bit and stumbled upon this function:

&lt;code&gt;function eventAdder(objAttrib,handler,addFunction){
	     
	   if ((!document.all)&#38;&#38;(document.getElementById)){
	       objAttrib.setAttribute(handler,addFunction);
	   }    
	   //workaround for IE 5.x
	   if ((document.all)&#38;&#38;(document.getElementById)){
	       objAttrib[handler]=new Function(addFunction);
	   }
	}&lt;/code&gt;

Could you use it?

Then i saw that you use an operator &lt;code&gt;!==&lt;/code&gt;  in this line:

&lt;code&gt;if ($uncategorizedCategoryInternalName !== '')&lt;/code&gt;

Is that on purpose or a typo? I never came across this! Also
the phrase: &lt;code&gt;if (document.getElementById(\'' + curr.id + '\').checked == true)&lt;/code&gt; seems to me the same as: &lt;code&gt;if (document.getElementById(\'' + curr.id + '\').checked)&lt;/code&gt;

Greetings, Gideon van Melle

&lt;ins datetime="2006-12-06T10:04:28+00:00"&gt;[I've added &lt;code&gt;&#60;code&#62;&lt;/code&gt; tags to your comment to make it better readable. -- Daniel]&lt;/ins&gt;</description>
		<content:encoded><![CDATA[<p>Hi, I have downloaded your plugin. It works like a charm with Firefox but unfortunate not with IE5+. I like at the code en indeed the <code>setAttribute</code> stuff is oknown to not work with IE5+. Probably you are not a IE-user, but it would be nice to get it to work also with this browser. I searched a bit and stumbled upon this function:</p>
<p><code>function eventAdder(objAttrib,handler,addFunction){</p>
<p>	   if ((!document.all)&amp;&amp;(document.getElementById)){<br />
	       objAttrib.setAttribute(handler,addFunction);<br />
	   }<br />
	   //workaround for IE 5.x<br />
	   if ((document.all)&amp;&amp;(document.getElementById)){<br />
	       objAttrib[handler]=new Function(addFunction);<br />
	   }<br />
	}</code></p>
<p>Could you use it?</p>
<p>Then i saw that you use an operator <code>!==</code>  in this line:</p>
<p><code>if ($uncategorizedCategoryInternalName !== '')</code></p>
<p>Is that on purpose or a typo? I never came across this! Also<br />
the phrase: <code>if (document.getElementById(\'' + curr.id + '\').checked == true)</code> seems to me the same as: <code>if (document.getElementById(\'' + curr.id + '\').checked)</code></p>
<p>Greetings, Gideon van Melle</p>
<p><ins datetime="2006-12-06T10:04:28+00:00">[I've added <code>&lt;code&gt;</code> tags to your comment to make it better readable. -- Daniel]</ins></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://cinnamonthoughts.org/2006/11/01/deuncategorize-11a-firefox-bugfix/comment-page-1/#comment-2816</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Mon, 27 Nov 2006 16:35:04 +0000</pubDate>
		<guid isPermaLink="false">http://cinnamonthoughts.org/2006/11/01/deuncategorize-11a-firefox-bugfix/#comment-2816</guid>
		<description>Just click on one of the two links to http://cinnamonthoughts.org/wordpress/deuncategorize/ or use the link in the pages menu.</description>
		<content:encoded><![CDATA[<p>Just click on one of the two links to <a href="http://cinnamonthoughts.org/wordpress/deuncategorize/">http://cinnamonthoughts.org/wordpress/deuncategorize/</a> or use the link in the pages menu.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: guan</title>
		<link>http://cinnamonthoughts.org/2006/11/01/deuncategorize-11a-firefox-bugfix/comment-page-1/#comment-2815</link>
		<dc:creator>guan</dc:creator>
		<pubDate>Mon, 27 Nov 2006 16:31:39 +0000</pubDate>
		<guid isPermaLink="false">http://cinnamonthoughts.org/2006/11/01/deuncategorize-11a-firefox-bugfix/#comment-2815</guid>
		<description>How the hell am i supposed to download the plugin ?</description>
		<content:encoded><![CDATA[<p>How the hell am i supposed to download the plugin ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
