<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Snippets code from my daily experience</title>
	<atom:link href="http://dafizilla.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dafizilla.wordpress.com</link>
	<description>Just another unnecessary code resource blog</description>
	<lastBuildDate>Tue, 12 Jan 2010 18:59:00 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='dafizilla.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/635b338f35d7304cae2e1b31926d3592?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Snippets code from my daily experience</title>
		<link>http://dafizilla.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://dafizilla.wordpress.com/osd.xml" title="Snippets code from my daily experience" />
		<item>
		<title>Porting Table2Clipboard to Jetpack</title>
		<link>http://dafizilla.wordpress.com/2010/01/12/porting-table2clipboard-to-jetpack/</link>
		<comments>http://dafizilla.wordpress.com/2010/01/12/porting-table2clipboard-to-jetpack/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 18:54:07 +0000</pubDate>
		<dc:creator>dafi</dc:creator>
				<category><![CDATA[jetpack]]></category>
		<category><![CDATA[table2clipboard]]></category>

		<guid isPermaLink="false">http://dafizilla.wordpress.com/?p=998</guid>
		<description><![CDATA[I&#8217;ve written many Jepacks to solve little annoying problems mainly related to urls and tabs.
JetColorTab, the 50 Line code contest&#8217;s winner born to solve a need without installing full features extensions.
In these days the Mozilla community (and me) has debated about the future of Jetpack and XUL and many people says &#8220;a big number of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dafizilla.wordpress.com&blog=887576&post=998&subd=dafizilla&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>I&#8217;ve written many Jepacks to solve little annoying problems mainly related to <a href="http://jetpackgallery.mozillalabs.com/jetpacks/259">urls</a> and <a href="http://jetpackgallery.mozillalabs.com/jetpacks/164">tabs</a>.</p>
<p><a href="http://jetpackgallery.mozillalabs.com/jetpacks/198">JetColorTab</a>, the <a href="http://mozillalabs.com/blog/2010/01/jetpack-50-line-code-challenge-winner-is-crowned/">50 Line code contest&#8217;s winner</a> born to solve a need without installing full features extensions.</p>
<p>In these days the Mozilla community (and me) has debated about the future of Jetpack and XUL and many people says &#8220;a big number of extensions can be written simply using standard DOM and HTML&#8221;</p>
<p>This sentence intrigued me so I&#8217;ve tried to rewrite <a href="https://addons.mozilla.org/it/firefox/addon/1852">Table2Clipboard</a> (T2C) for Jetpack, T2C makes a simple operation, it copies HTML selection also <a href="https://developer.mozilla.org/En/DOM/Range">DOMRange</a> to clipboard preserving the format and many other aspects.</p>
<p>After 30 minutes the porting was completed (excluding the UI not yet rewritten) so <em>heavily DOM oriented extensions can be easily ported to Jetpack</em> but some XUL code remains.</p>
<p>Extensions like NoScript or AdBlockPlus today are very hard (impossible??) to move to Jetpack and hopefully this is not necessary because XUL sits near to us for a long time <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>Little fixes to T2C required</h3>
<ul>
<li>Jetpack version 0.6.2 doesn&#8217;t allow (or at least I&#8217;m not able) to use modules so while waiting for <a href="https://wiki.mozilla.org/Labs/Jetpack/JEP/25">CommonJS</a> comes to Jetpack it is necessary to copy all scripts into the main jetpack file</li>
<li>HTMLTableElement, HTMLTableCellElement, HTMLTableRowElement are not &#8220;visible&#8221; so expressions like
<pre class="brush: jscript;">
if (a instanceof HTMLTableElement) {}
</pre>
<p>don&#8217;t work but this isn&#8217;t a problem because the code can be written more efficiently</p>
<pre class="brush: jscript;">
if (a.localName == &quot;TABLE&quot;) {}
</pre>
</li>
<li>gContextMenu.target can be replaced by the standard Jetpack context.node, the parameter context is passed for example to beforeShow()</li>
</ul>
<h3>Where XUL is necessary and improvements required</h3>
<ul>
<li>Jetpack allows to obtain the text or HTML selection using jetpack.selection but it doesn&#8217;t expose the focusNode so I used jetpack.tabs.focused.contentWindow.getSelection() (i.e. XUL nsISelection)</li>
<li>XUL clipboard supports flavors but under Jetpack you can set only one at time, so you can&#8217;t add text version plus html version of same content, I think the &#8217;set&#8217; method should have an &#8216;add&#8217; mate</li>
<li>T2C needs to access to CSS using ownerDocument.defaultView.getComputedStyle</li>
<li>T2C uses the inIDOMUtils, it should be great if this interface become available from Jetpack</li>
</ul>
<p>Jetpack Table2Clipboard can be downloaded from the <a href="http://jetpackgallery.mozillalabs.com/jetpacks/286">Jetpack Gallery</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dafizilla.wordpress.com/998/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dafizilla.wordpress.com/998/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dafizilla.wordpress.com/998/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dafizilla.wordpress.com/998/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dafizilla.wordpress.com/998/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dafizilla.wordpress.com/998/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dafizilla.wordpress.com/998/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dafizilla.wordpress.com/998/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dafizilla.wordpress.com/998/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dafizilla.wordpress.com/998/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dafizilla.wordpress.com&blog=887576&post=998&subd=dafizilla&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://dafizilla.wordpress.com/2010/01/12/porting-table2clipboard-to-jetpack/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5759d7f64a710425e4ab730ba7a8311e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dafi</media:title>
		</media:content>
	</item>
		<item>
		<title>Sunday thought: Please don&#8217;t kill XUL</title>
		<link>http://dafizilla.wordpress.com/2010/01/10/sunday-thought-please-dont-kill-xul/</link>
		<comments>http://dafizilla.wordpress.com/2010/01/10/sunday-thought-please-dont-kill-xul/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 14:33:59 +0000</pubDate>
		<dc:creator>dafi</dc:creator>
				<category><![CDATA[sunday_thought]]></category>
		<category><![CDATA[xul]]></category>

		<guid isPermaLink="false">http://dafizilla.wordpress.com/?p=991</guid>
		<description><![CDATA[After reading the Mike Connor&#8217;s blog post and the Firebug&#8217;s post blog I realized XUL developers are closer to a revolution.
I have only a few questions in my mind and my stupid answers.
Q: Is it really so difficult to write XUL extensions?
A: For me no and I&#8217;m not a so clever person! OK there is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dafizilla.wordpress.com&blog=887576&post=991&subd=dafizilla&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>After reading the Mike Connor&#8217;s <a href="http://steelgryphon.com/blog/2010/01/09/on-personas-and-themes/">blog post</a> and the Firebug&#8217;s <a href="http://blog.getfirebug.com/2010/01/09/firefox-ending-support-for-extensions/">post blog</a> I realized XUL developers are closer to a revolution.</p>
<p>I have only a few questions in my mind and my stupid answers.</p>
<p>Q: Is it really so difficult to write XUL extensions?</p>
<p>A: For me no and I&#8217;m not a so clever person! OK there is a learning curve but every complete (non strictly complex) system requires to study, to learn and to compare itself with other people. Please don&#8217;t  confuse <strong>&#8220;rich&#8221;</strong> with <strong>&#8220;complicated</strong>&#8220;.</p>
<p>Q: We really need new addons ecosystem?</p>
<p>A: Maybe we need a lightweight ecosystem but XUL is the right way, Jetpack sounds good but today it is strongly tied to the browser, this will change when Jetpack for Thunderbird will be published.</p>
<p>I love Jetpack believe me <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Jetpack suffers from its so called &#8220;JQuery oriented syntax&#8221;.</p>
<p>I don&#8217;t like the sentence &#8220;JQuery oriented syntax&#8221; simply because doesn&#8217;t exists a &#8220;JQuery syntax&#8221;. JQuery uses Javascript closure syntax construct, I admit sometime it is very ugly and code tends to became <em>naturally obfuscated</em></p>
<p>Are we sure &#8220;JQuery oriented syntax&#8221; is really so simple for newbies?</p>
<p>I agree with Daniel Gazman <a href="http://www.glazman.org/weblog/dotclear/index.php?post/2010/01/07/Jetpack">blog post</a>, solution can be worst than the problem.</p>
<p>Q: Is restarting the browser after an addon installation so terrible?</p>
<p>A: I want my Operating System doesn&#8217;t require to me to restart after an update but I don&#8217;t care if my browser must be restarted after an addon installation/update. People are so lazy, people are so stupid? They accept OS <strong>reboots</strong> but suffer browser <strong>restart</strong><strong>s</strong>? This is really a strange world!</p>
<p>Q: Is the problem related to Google Chrome success?</p>
<p>A: I don&#8217;t like so much Google Chrome, ok its startup time is amazing, then? What other feature is so fantastic? I&#8217;m a programmer and maybe I don&#8217;t see &#8220;commercial&#8221; related problem.</p>
<p>Maybe someone forgets that &#8220;Firefox is a platform&#8221;, Firefox isn&#8217;t a simple browser.</p>
<p>You can reuse your XUL <strong>platform</strong> know-how to create extensions for other applications; Thunderbird, Komodo, Songbird, Prism (my favorites four XUL applications)</p>
<p>You can create standalone applications using the XUL <strong>platform</strong>, too.</p>
<p>You can use extensions also on your mobile phone thanks to Fennec.</p>
<p>Please apologize me for my bad English and my rant</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dafizilla.wordpress.com/991/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dafizilla.wordpress.com/991/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dafizilla.wordpress.com/991/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dafizilla.wordpress.com/991/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dafizilla.wordpress.com/991/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dafizilla.wordpress.com/991/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dafizilla.wordpress.com/991/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dafizilla.wordpress.com/991/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dafizilla.wordpress.com/991/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dafizilla.wordpress.com/991/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dafizilla.wordpress.com&blog=887576&post=991&subd=dafizilla&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://dafizilla.wordpress.com/2010/01/10/sunday-thought-please-dont-kill-xul/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5759d7f64a710425e4ab730ba7a8311e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dafi</media:title>
		</media:content>
	</item>
		<item>
		<title>How to programmatically change XUL tree&#8217;s pseudo-classes</title>
		<link>http://dafizilla.wordpress.com/2010/01/08/how-to-programmatically-change-xul-trees-pseudo-classes/</link>
		<comments>http://dafizilla.wordpress.com/2010/01/08/how-to-programmatically-change-xul-trees-pseudo-classes/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 14:45:12 +0000</pubDate>
		<dc:creator>dafi</dc:creator>
				<category><![CDATA[extension]]></category>
		<category><![CDATA[nsITreeView]]></category>
		<category><![CDATA[xul]]></category>

		<guid isPermaLink="false">http://dafizilla.wordpress.com/?p=968</guid>
		<description><![CDATA[I encountered the following problem: Change font and color for XUL tree based on user input. The user chooses the font and picks the color from a dialog and the tree widget is immediately redrawn with the new styles.
Changing styles for XUL trees requires the implementation of a nsITreeView, some nsIAtomService manipulation and some Mozilla [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dafizilla.wordpress.com&blog=887576&post=968&subd=dafizilla&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>I encountered the following problem: <em>Change font and color for XUL tree based on user input. The user chooses the font and picks the color from a dialog and the tree widget is immediately redrawn with the new styles.</em></p>
<p>Changing styles for XUL trees requires the implementation of a <a href="https://developer.mozilla.org/en/XPCOM_Interface_Reference/nsITreeView">nsITreeView</a>, some nsIAtomService manipulation and some <a href="https://developer.mozilla.org/en/CSS_Reference/Mozilla_Extensions">Mozilla CSS Extensions</a>, definitively a bit verbose but enough simple after a dozen of attempts <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> .</p>
<p>The Mozilla CSS tree extensions are mainly pseudo-classes that can&#8217;t be modified from code, so you need to create a CSS text snippet with new values and then &#8220;reload&#8221; it.</p>
<p>Reloading CSS files can be accomplished using the <a href="https://developer.mozilla.org/en/Using_the_Stylesheet_Service">nsIStyleSheetService</a> service, it only requires a <a href="https://developer.mozilla.org/en/XPCOM_Interface_Reference/nsIURI">nsIURI</a> pointing to the CSS resource.</p>
<p>Based on the scenario described above the styles are generated at runtime so I need to create a CSS style representation and stores it for example on a temp file. The styles don&#8217;t really need to be persisted on disk so why do I need to create an unuseful file?</p>
<p>Well using the &#8220;data:&#8221; protocol it is possible to encode the generated CSS string and pass to nsIURI the data uri without needs to create temporary files as shown below.</p>
<pre class="brush: jscript;">
function applyUserStyles(cssStyles) {
    // myTreeChildren is the CSS class name used for the tree
    // obviously can be parametrized
    var css = '.myTreeChildren::-moz-tree-cell-text {' + cssStyles + '}';
    var data = 'data:text/css;charset=utf-8,' + encodeURI(css);
    var sss = Components.classes[&quot;@mozilla.org/content/style-sheet-service;1&quot;]
                .getService(Components.interfaces.nsIStyleSheetService);
    var ios = Components.classes[&quot;@mozilla.org/network/io-service;1&quot;]
                .getService(Components.interfaces.nsIIOService);
    var u = ios.newURI(data, null, null);
    if (sss.sheetRegistered(u, sss.USER_SHEET)) {
        sss.unregisterSheet(u, sss.USER_SHEET);
    }
    sss.loadAndRegisterSheet(u, sss.USER_SHEET);
}
 </pre>
<p>Maybe a simpler solution exists and my code is the worst way to proceed, if you know a better way please tell me <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dafizilla.wordpress.com/968/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dafizilla.wordpress.com/968/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dafizilla.wordpress.com/968/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dafizilla.wordpress.com/968/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dafizilla.wordpress.com/968/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dafizilla.wordpress.com/968/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dafizilla.wordpress.com/968/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dafizilla.wordpress.com/968/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dafizilla.wordpress.com/968/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dafizilla.wordpress.com/968/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dafizilla.wordpress.com&blog=887576&post=968&subd=dafizilla&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://dafizilla.wordpress.com/2010/01/08/how-to-programmatically-change-xul-trees-pseudo-classes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5759d7f64a710425e4ab730ba7a8311e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dafi</media:title>
		</media:content>
	</item>
		<item>
		<title>VisualDiffer 1.2 beta 1</title>
		<link>http://dafizilla.wordpress.com/2010/01/04/visualdiffer-1-2-beta-1/</link>
		<comments>http://dafizilla.wordpress.com/2010/01/04/visualdiffer-1-2-beta-1/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 15:31:07 +0000</pubDate>
		<dc:creator>dafi</dc:creator>
				<category><![CDATA[bespin]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[gecko]]></category>
		<category><![CDATA[komodo]]></category>
		<category><![CDATA[seamonkey]]></category>
		<category><![CDATA[visualdiffer]]></category>
		<category><![CDATA[xulrunner]]></category>

		<guid isPermaLink="false">http://dafizilla.wordpress.com/?p=945</guid>
		<description><![CDATA[I spent the Christmas holidays working on VisualDiffer, the Komodo visual folders/files comparison extension.
Now I want to migrate VisualDiffer from extension to standalone application using XULRunner because the folders comparison feature is mature and using it from an extension can be a bit complicated.
The migration requires some intermediate steps

Remove dependencies from Komodo code (especially the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dafizilla.wordpress.com&blog=887576&post=945&subd=dafizilla&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>I spent the Christmas holidays working on <a href="http://dafizilla.sourceforge.net/visualdiffer/index.php">VisualDiffer</a>, the <a href="http://www.activestate.com/komodo_edit/">Komodo</a> visual folders/files comparison extension.</p>
<p>Now I want to migrate VisualDiffer from extension to standalone application using <a href="https://developer.mozilla.org/En/XULRunner">XULRunner</a> because the folders comparison feature is mature and using it from an extension can be a bit complicated.</p>
<p>The migration requires some intermediate steps</p>
<ul>
<li>Remove dependencies from Komodo code (especially the <a href="http://grok.openkomodo.com/source/xref/openkomodo/trunk/src/views/koIDocument.idl#252">unified diff algorithm</a>)</li>
<li>Remove dependencies from unified diff algorithm!!</li>
<li>Complete the file comparison feature allowing in-place editing using <a href="https://bespin.mozilla.com/">Bespin</a>.<br />
<em> Bespin can greatly simplify syntax highlight for different languages, search in file and so on<br />
Honestly I&#8217;m considering also to stay with <a href="http://www.scintilla.org/">Scintilla</a> (actually used by Komodo) but I love Bespin<br />
</em></li>
<li>Use a cool graphic layout, especially toolbar icons<br />
<em>I&#8217;m not a GIMP guru so if somebody would to help me he/she would be </em><em>welcomed <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></li>
<li>Allow user defined fonts and colors (low priority task)</li>
</ul>
<p>I hope to release the VisualDiffer V1.2 for Komodo in a couple of weeks but also not Komodo <em>aficionados</em> can take a look to it installing the beta version on <strong>Firefox 3.5.x</strong> (also 3.6b5) and <strong>SeaMonkey 2.x</strong>.</p>
<p>Under Firefox and SeaMonkey the &#8220;files differ&#8221; feature isn&#8217;t implemented (Komodo dependencies) but you can test the folders differ feature that is totally based on standard Gecko interfaces, you can find the VisualDiffer item under<strong> the Tools menu</strong>.</p>
<p>Obviously VisualDiffer on Firefox is a nonsense because it isn&#8217;t a browser oriented extension I distribute this version with Firefox support with the hope a larger community can try it and give me feedback before I jump on the XULRunner world.</p>
<p>The V1.2 beta 1 can be downloaded from <a href="http://dafizilla.sourceforge.net/visualdiffer/visualdiffer-1.2b1.xpi">here</a>.</p>
<p>VisualDiffer is inspired by the fantastic <a href="http://www.scootersoftware.com/">Beyond Compare</a> but this isn&#8217;t a mystery <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dafizilla.wordpress.com/945/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dafizilla.wordpress.com/945/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dafizilla.wordpress.com/945/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dafizilla.wordpress.com/945/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dafizilla.wordpress.com/945/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dafizilla.wordpress.com/945/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dafizilla.wordpress.com/945/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dafizilla.wordpress.com/945/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dafizilla.wordpress.com/945/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dafizilla.wordpress.com/945/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dafizilla.wordpress.com&blog=887576&post=945&subd=dafizilla&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://dafizilla.wordpress.com/2010/01/04/visualdiffer-1-2-beta-1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5759d7f64a710425e4ab730ba7a8311e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dafi</media:title>
		</media:content>
	</item>
		<item>
		<title>Contributions, now it&#8217;s my turn (Sunday Thought)</title>
		<link>http://dafizilla.wordpress.com/2009/12/20/contributions-now-its-my-turn-sunday-thought/</link>
		<comments>http://dafizilla.wordpress.com/2009/12/20/contributions-now-its-my-turn-sunday-thought/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 10:00:19 +0000</pubDate>
		<dc:creator>dafi</dc:creator>
				<category><![CDATA[amo]]></category>
		<category><![CDATA[donations]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[komodo]]></category>
		<category><![CDATA[sunday_thought]]></category>
		<category><![CDATA[table2clipboard]]></category>
		<category><![CDATA[viewsourcewith]]></category>
		<category><![CDATA[xul]]></category>

		<guid isPermaLink="false">http://dafizilla.wordpress.com/?p=931</guid>
		<description><![CDATA[Thanks to the contribution platform available at AMO I bought one book and a couple of software licenses (not open sourced).
I can say that the AMO contribution feature is a great success for me, dozen of donors for two &#8216;not so famous&#8216; extensions like Table2Clipboard and ViewSourceWith.
Now I&#8217;ve a little budget to use to make [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dafizilla.wordpress.com&blog=887576&post=931&subd=dafizilla&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>Thanks to the contribution platform available at <a href="https://addons.mozilla.org">AMO</a> I bought one book and a couple of software licenses (not open sourced).</p>
<p>I can say that the AMO contribution feature is a great success for me, dozen of donors for two &#8216;<em>not so famous</em>&#8216; extensions like <a href="https://addons.mozilla.org/it/firefox/addon/1852">Table2Clipboard</a> and <a href="https://addons.mozilla.org/en-US/firefox/addon/394">ViewSourceWith</a>.</p>
<p>Now I&#8217;ve a little budget to use to make contributions because NOW it&#8217;s my turn!</p>
<p>I&#8217;ll contribute to Firefox extensions without forget other open source projects especially the utilities, I love the little time saver applications <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>I chosen low &#8216;Suggested Donation&#8217; amount for my extensions but this has generated very expensive PayPal fees per transaction so I&#8217;ll make fewer contributions but all higher than 5$, I would the software authors take maximum profits from donations.</p>
<p>I hope in my country (Italy) PayPal made available <a href="https://www.paypal.com/IntegrationCenter/ic_micropayments.html">micropayments</a> very soon.</p>
<p>I would like to receive contributions also for my Komodo extensions, strangely the official <a href="http://dafizilla.sourceforge.net/">dafizilla website</a> doesn&#8217;t attract donors (I don&#8217;t like to fill it with banners and donations messages), I hope rumors about the <a href="http://ajaxian.com/archives/official-firefox-add-on-store">Add-On Store</a> will be confirmed and the store will host not only browser (i.e. Firefox) extensions and more important it will host also free/open source components.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dafizilla.wordpress.com/931/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dafizilla.wordpress.com/931/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dafizilla.wordpress.com/931/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dafizilla.wordpress.com/931/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dafizilla.wordpress.com/931/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dafizilla.wordpress.com/931/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dafizilla.wordpress.com/931/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dafizilla.wordpress.com/931/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dafizilla.wordpress.com/931/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dafizilla.wordpress.com/931/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dafizilla.wordpress.com&blog=887576&post=931&subd=dafizilla&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://dafizilla.wordpress.com/2009/12/20/contributions-now-its-my-turn-sunday-thought/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5759d7f64a710425e4ab730ba7a8311e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dafi</media:title>
		</media:content>
	</item>
		<item>
		<title>Karmic Koala hides Firefox context menuitems icons</title>
		<link>http://dafizilla.wordpress.com/2009/11/08/karmic-koala-hides-firefox-context-menuitems-icons/</link>
		<comments>http://dafizilla.wordpress.com/2009/11/08/karmic-koala-hides-firefox-context-menuitems-icons/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 10:27:56 +0000</pubDate>
		<dc:creator>dafi</dc:creator>
				<category><![CDATA[bugzilla]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[karmic koala]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[viewsourcewith]]></category>

		<guid isPermaLink="false">http://dafizilla.wordpress.com/?p=911</guid>
		<description><![CDATA[This week I&#8217;ve received four times the same (i.e. duplicated) ViewSourceWith (VSW) bug report that sounds&#8230;
&#8220;ViewSourceWith stopped to show the icons on context menu, this regression is present on Karmic Koala (Ubuntu 9.10)&#8221;
I use Intrepid Ibex (Ubuntu 8.10) and all works fine, so I&#8217;ve burned a Karmic Koala ISO and tested it discovering the &#8220;regression&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dafizilla.wordpress.com&blog=887576&post=911&subd=dafizilla&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>This week I&#8217;ve received four times the same (i.e. duplicated) <a href="http://dafizilla.sourceforge.net/viewsourcewith/index.php">ViewSourceWith</a> (VSW) bug report that sounds&#8230;</p>
<blockquote><p><em>&#8220;ViewSourceWith stopped to show the icons on context menu, this regression is present on Karmic Koala (Ubuntu 9.10)&#8221;</em></p></blockquote>
<p>I use Intrepid Ibex (Ubuntu 8.10) and all works fine, so I&#8217;ve burned a Karmic Koala ISO and tested it discovering the &#8220;regression&#8221; exists.</p>
<p>Debug -&gt; Add logs -&gt; Remove logs -&gt; Clean Profile -&gt; DOM Inspect -&gt; <a href="http://hyperstruct.net/content/mozrepl">MozRepl</a> without find where the problem occurs.</p>
<p>Last resort -&gt; <a href="https://bugzilla.mozilla.org">Bugzilla</a> -&gt; Found!!!</p>
<p>The <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=527253#c2">Bug 527253</a> unveils the mystery!</p>
<p>This isn&#8217;t a regression</p>
<p>ViewSourceWith isn&#8217;t the guilty, Firefox isn&#8217;t the guilty but&#8230; Gnome is the guilty <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Type the command shown below from command line and restart Firefox</p>
<pre>gconftool-2 --type bool --set /desktop/gnome/interface/menus_have_icons true
</pre>
<p><strong><span style="color:#ff0000;">EDIT</span> </strong><strong>Or use the UI to obtain same result (thanks to mzz) system -&gt; preferences -&gt; appearance -&gt; interface -&gt; show icons in menus</strong></p>
<p>This worked for me and also for two bug submitters (the other two guys do not replayed to my hint)</p>
<p>So remember <a href="https://bugzilla.mozilla.org/">Bugzilla</a> is your friend <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dafizilla.wordpress.com/911/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dafizilla.wordpress.com/911/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dafizilla.wordpress.com/911/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dafizilla.wordpress.com/911/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dafizilla.wordpress.com/911/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dafizilla.wordpress.com/911/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dafizilla.wordpress.com/911/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dafizilla.wordpress.com/911/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dafizilla.wordpress.com/911/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dafizilla.wordpress.com/911/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dafizilla.wordpress.com&blog=887576&post=911&subd=dafizilla&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://dafizilla.wordpress.com/2009/11/08/karmic-koala-hides-firefox-context-menuitems-icons/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5759d7f64a710425e4ab730ba7a8311e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dafi</media:title>
		</media:content>
	</item>
		<item>
		<title>Little browsers grow</title>
		<link>http://dafizilla.wordpress.com/2009/11/02/little-browsers-grow/</link>
		<comments>http://dafizilla.wordpress.com/2009/11/02/little-browsers-grow/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 19:06:33 +0000</pubDate>
		<dc:creator>dafi</dc:creator>
				<category><![CDATA[fennec]]></category>

		<guid isPermaLink="false">http://dafizilla.wordpress.com/?p=905</guid>
		<description><![CDATA[This is a non technical post


Read full story at ZooBorns
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dafizilla.wordpress.com&blog=887576&post=905&subd=dafizilla&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><blockquote><p><em>This is a non technical post</em></p></blockquote>
<p><em><img class="alignnone" title="Little fennec" src="http://www.zooborns.com/.a/6a010535647bf3970b0120a64ad026970b-pi" alt="" width="470" height="325" /><br />
</em></p>
<p>Read full story at <a href="http://www.zooborns.com/zooborns/2009/11/cute-fennec-fox-kits-everland-zoo.html">ZooBorns</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dafizilla.wordpress.com/905/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dafizilla.wordpress.com/905/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dafizilla.wordpress.com/905/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dafizilla.wordpress.com/905/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dafizilla.wordpress.com/905/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dafizilla.wordpress.com/905/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dafizilla.wordpress.com/905/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dafizilla.wordpress.com/905/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dafizilla.wordpress.com/905/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dafizilla.wordpress.com/905/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dafizilla.wordpress.com&blog=887576&post=905&subd=dafizilla&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://dafizilla.wordpress.com/2009/11/02/little-browsers-grow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5759d7f64a710425e4ab730ba7a8311e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dafi</media:title>
		</media:content>

		<media:content url="http://www.zooborns.com/.a/6a010535647bf3970b0120a64ad026970b-pi" medium="image">
			<media:title type="html">Little fennec</media:title>
		</media:content>
	</item>
		<item>
		<title>PluginChecker v0.2</title>
		<link>http://dafizilla.wordpress.com/2009/10/29/pluginchecker-v0-2/</link>
		<comments>http://dafizilla.wordpress.com/2009/10/29/pluginchecker-v0-2/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 17:46:10 +0000</pubDate>
		<dc:creator>dafi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dafizilla.wordpress.com/?p=881</guid>
		<description><![CDATA[I&#8217;ve received great and unexpected feedback about PluginChecker on my previous post so I&#8217;ve decided to refactor its code and better integrate with the standard Extensions Manager.
The original ugly dialog has been removed and informations about the new installed plugins are shown directly onto the Extensions Manager.

PluginChecker v0.2 can be downloaded from SourceForge and from [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dafizilla.wordpress.com&blog=887576&post=881&subd=dafizilla&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>I&#8217;ve received great and unexpected feedback about PluginChecker <a href="http://wp.me/p3ITK-dH">on my previous post</a> so I&#8217;ve decided to refactor its code and better integrate with the standard Extensions Manager.</p>
<p>The original ugly dialog has been removed and informations about the new installed plugins are shown directly onto the Extensions Manager.</p>
<p><a rel="attachment wp-att-882" href="http://dafizilla.wordpress.com/2009/10/29/pluginchecker-v0-2/dialog/"><img class="aligncenter size-full wp-image-882" title="PluginChecker" src="http://dafizilla.files.wordpress.com/2009/10/dialog.png?w=530&#038;h=407" alt="PluginChecker" width="530" height="407" /></a></p>
<p><a href="http://sourceforge.net/projects/dafizilla/files/pluginchecker/v0.2/pluginchecker-0.2.xpi/download">PluginChecker v0.2</a> can be downloaded from <a href="http://sourceforge.net/projects/dafizilla/files/pluginchecker/v0.2/pluginchecker-0.2.xpi/download">SourceForge</a> and from <a href="https://addons.mozilla.org/en-US/firefox/addon/46214">AMO</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dafizilla.wordpress.com/881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dafizilla.wordpress.com/881/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dafizilla.wordpress.com/881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dafizilla.wordpress.com/881/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dafizilla.wordpress.com/881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dafizilla.wordpress.com/881/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dafizilla.wordpress.com/881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dafizilla.wordpress.com/881/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dafizilla.wordpress.com/881/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dafizilla.wordpress.com/881/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dafizilla.wordpress.com&blog=887576&post=881&subd=dafizilla&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://dafizilla.wordpress.com/2009/10/29/pluginchecker-v0-2/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5759d7f64a710425e4ab730ba7a8311e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dafi</media:title>
		</media:content>

		<media:content url="http://dafizilla.files.wordpress.com/2009/10/dialog.png" medium="image">
			<media:title type="html">PluginChecker</media:title>
		</media:content>
	</item>
		<item>
		<title>.NET Framework Assistant, automatic plugin installation and PluginChecker</title>
		<link>http://dafizilla.wordpress.com/2009/10/18/net-framework-assistant-automatic-plugin-installation-and-pluginchecker/</link>
		<comments>http://dafizilla.wordpress.com/2009/10/18/net-framework-assistant-automatic-plugin-installation-and-pluginchecker/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 13:21:07 +0000</pubDate>
		<dc:creator>dafi</dc:creator>
				<category><![CDATA[extension]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[xul]]></category>

		<guid isPermaLink="false">http://dafizilla.wordpress.com/?p=849</guid>
		<description><![CDATA[In these days the net is populated by blog posts about the .NET Framework Assistant plugin for Firefox, its disabling and the fact Firefox does not warn user when a plugin installs itself without explicit permission.
Well, this is a old problem at least for me, indeed  I discovered it some time ago when my [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dafizilla.wordpress.com&blog=887576&post=849&subd=dafizilla&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>In these days the net is populated by blog posts about the .NET Framework Assistant plugin for Firefox, its disabling and the fact Firefox does not warn user when a plugin installs itself without explicit permission.</p>
<p>Well, this is a old problem at least for me, indeed  I discovered it some time ago when my Firefox crashed (apparently) without reason, discovering after a couple of days that Microsoft Office 2003 plugin fought with Foxit Reader and Google update plugins.</p>
<p>The problem was that I never installed Office plugin!</p>
<p><a rel="attachment wp-att-850" href="http://dafizilla.wordpress.com/2009/10/18/net-framework-assistant-automatic-plugin-installation-and-pluginchecker/plugins/"><img class="aligncenter size-full wp-image-850" title="plugins" src="http://dafizilla.files.wordpress.com/2009/10/plugins.jpg?w=487&#038;h=427" alt="plugins" width="487" height="427" /></a></p>
<p>Disabling Office plugin Firefox stopped to crash.</p>
<p>After that experience I decided to write a simple (very simple) extension that at every Firefox startup checks if there are new plugins installed.</p>
<p><a rel="attachment wp-att-851" href="http://dafizilla.wordpress.com/2009/10/18/net-framework-assistant-automatic-plugin-installation-and-pluginchecker/pluginchecker/"><img class="aligncenter size-full wp-image-851" title="pluginchecker" src="http://dafizilla.files.wordpress.com/2009/10/pluginchecker.jpg?w=391&#038;h=195" alt="pluginchecker" width="391" height="195" /></a>Nothing so cool, only a quick and dirty solution implemented in a few of hours.</p>
<p>Waiting Mozilla implements a better solution than mine you can install PluginChecker.</p>
<p>If you expect to find  PluginChecker  innovative or the &#8220;I-can-live-without-it&#8221; extension you are on the wrong place, if you expect a not intrusive and simple solution to unattended plugins installation than you can take a look at it.</p>
<p>You can download <a href="http://sourceforge.net/projects/dafizilla/files/pluginchecker/v0.1/pluginchecker-0.1.xpi/download">PluginChecker</a> from SourceForge.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dafizilla.wordpress.com/849/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dafizilla.wordpress.com/849/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dafizilla.wordpress.com/849/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dafizilla.wordpress.com/849/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dafizilla.wordpress.com/849/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dafizilla.wordpress.com/849/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dafizilla.wordpress.com/849/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dafizilla.wordpress.com/849/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dafizilla.wordpress.com/849/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dafizilla.wordpress.com/849/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dafizilla.wordpress.com&blog=887576&post=849&subd=dafizilla&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://dafizilla.wordpress.com/2009/10/18/net-framework-assistant-automatic-plugin-installation-and-pluginchecker/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5759d7f64a710425e4ab730ba7a8311e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dafi</media:title>
		</media:content>

		<media:content url="http://dafizilla.files.wordpress.com/2009/10/plugins.jpg" medium="image">
			<media:title type="html">plugins</media:title>
		</media:content>

		<media:content url="http://dafizilla.files.wordpress.com/2009/10/pluginchecker.jpg" medium="image">
			<media:title type="html">pluginchecker</media:title>
		</media:content>
	</item>
		<item>
		<title>You must Disable or Remove Adblock to visit this website, no Thanks!</title>
		<link>http://dafizilla.wordpress.com/2009/10/09/you-must-disable-or-remove-adblock-to-visit-this-website-no-thanks/</link>
		<comments>http://dafizilla.wordpress.com/2009/10/09/you-must-disable-or-remove-adblock-to-visit-this-website-no-thanks/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 15:28:45 +0000</pubDate>
		<dc:creator>dafi</dc:creator>
				<category><![CDATA[adblock]]></category>

		<guid isPermaLink="false">http://dafizilla.wordpress.com/?p=833</guid>
		<description><![CDATA[Today visiting a website that gives invites for Google Wave I received the message shown below

This is the first time I see a similar &#8220;invite&#8221;
Well, no thanks I prefer to move away from this website, period!
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dafizilla.wordpress.com&blog=887576&post=833&subd=dafizilla&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<br /><p>Today visiting a website that gives invites for Google Wave I received the message shown below</p>
<p><a rel="attachment wp-att-832" href="http://dafizilla.wordpress.com/2009/10/09/you-must-disable-or-remove-adblock-to-visit-this-website-no-thanks/disable_adp/"><img class="aligncenter size-full wp-image-832" title="disable_adp" src="http://dafizilla.files.wordpress.com/2009/10/disable_adp.jpg?w=678&#038;h=236" alt="disable_adp" width="678" height="236" /></a></p>
<p>This is the first time I see a similar &#8220;invite&#8221;</p>
<p>Well, no thanks I prefer to move away from this website, period!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dafizilla.wordpress.com/833/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dafizilla.wordpress.com/833/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dafizilla.wordpress.com/833/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dafizilla.wordpress.com/833/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dafizilla.wordpress.com/833/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dafizilla.wordpress.com/833/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dafizilla.wordpress.com/833/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dafizilla.wordpress.com/833/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dafizilla.wordpress.com/833/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dafizilla.wordpress.com/833/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dafizilla.wordpress.com&blog=887576&post=833&subd=dafizilla&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://dafizilla.wordpress.com/2009/10/09/you-must-disable-or-remove-adblock-to-visit-this-website-no-thanks/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5759d7f64a710425e4ab730ba7a8311e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dafi</media:title>
		</media:content>

		<media:content url="http://dafizilla.files.wordpress.com/2009/10/disable_adp.jpg" medium="image">
			<media:title type="html">disable_adp</media:title>
		</media:content>
	</item>
	</channel>
</rss>