<?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>Rally Vincent-Blog &#187; Firefox</title>
	<atom:link href="http://rvincent.digital-nerv.net/category/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://rvincent.digital-nerv.net</link>
	<description>&#34;Smurfs are asexual. They don&#039;t even have reproductive organs under those little white pants.&#34;</description>
	<lastBuildDate>Sun, 07 Aug 2011 20:58:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Fix Firefox MIME Type Icons</title>
		<link>http://rvincent.digital-nerv.net/2010/05/06/fix-firefox-mime-type-icons/</link>
		<comments>http://rvincent.digital-nerv.net/2010/05/06/fix-firefox-mime-type-icons/#comments</comments>
		<pubDate>Thu, 06 May 2010 20:56:42 +0000</pubDate>
		<dc:creator>Rally Vincent</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[10.04]]></category>
		<category><![CDATA[humanity]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[lucid lynx]]></category>
		<category><![CDATA[moz-icon]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://rvincent.digital-nerv.net/?p=1340</guid>
		<description><![CDATA[The Problem In order to show the error i made some screenshots from an RSS view in Firefox. The image source link from the source code. moz-icon://goat?size=16&#38;contentType=audio/mpeg The Fix The problem is that Firefox can&#8217;t find the MIME type icons. This Shell-Script copies the MIME icons from the Humanity Icon Theme into the .icons folder [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1367" title="Humanity Icons" src="http://rvincent.digital-nerv.net/wp-content/uploads/mime.png" alt="" width="600" height="60" /></p>
<p><strong>The Problem</strong></p>
<p>In order to show the error i made some screenshots from an RSS view in Firefox.</p>
<div id="attachment_1351" class="wp-caption alignnone" style="width: 595px"><img class="size-medium wp-image-1351" title="Missing MIME Icon" src="http://rvincent.digital-nerv.net/wp-content/uploads/moz-icon-missing.jpg" alt="" width="585" height="165" /><p class="wp-caption-text">As you can see the MIME Icon is missing.</p></div>
<p>The image source link from the source code.</p>
<blockquote><p><code>moz-icon://goat?size=16&amp;contentType=audio/mpeg</code></p></blockquote>
<p><strong>The Fix</strong></p>
<div id="attachment_1353" class="wp-caption alignnone" style="width: 595px"><img class="size-medium wp-image-1353" title="MIME Icon" src="http://rvincent.digital-nerv.net/wp-content/uploads/moz-icon.jpg" alt="" width="585" height="165" /><p class="wp-caption-text">The MIME Icon is shown after the fix. As you can see it is an audio icon.</p></div>
<p>The problem is that Firefox can&#8217;t find the MIME type icons. This Shell-Script copies the MIME icons from the Humanity Icon Theme into the <code>.icons</code> folder in your home directory so Firefox can find them.</p>
<pre>#!/bin/bash

ISOURCE=/usr/share/icons/
ITHEME=Humanity

for size in 16 22 24 32 48;
do
  mkdir -p $HOME/.icons/$ITHEME/mimes/$size;
  for file in $ISOURCE/$ITHEME/mimes/$size/*.svg;
  do
    ln -s $file $HOME/.icons/$ITHEME/mimes/$size/`basename $file .svg`.png;
  done;
done;</pre>
<p>Script Author: <em><a href="https://bugs.launchpad.net/ubuntu/+source/humanity-icon-theme/+bug/466567/comments/26">Ilja Sekler</a></em></p>
<p>Create a new script file and run it in your terminal or <a href="/wp-content/uploads/fix-moz-icon.sh.zip">download it</a> and run it in your terminal.<br />
<span id="more-1340"></span><br />
<strong>In Deutsch:</strong></p>
<p><strong>Das Problem</strong></p>
<p>Um den Fehler zu zeigen habe ich ein paar Bildschirmfotos der RSS Ansicht im Firefox gemacht.</p>
<div id="attachment_1351" class="wp-caption alignnone" style="width: 595px"><img class="size-medium wp-image-1351" title="Missing MIME Icon" src="http://rvincent.digital-nerv.net/wp-content/uploads/moz-icon-missing.jpg" alt="" width="585" height="165" /><p class="wp-caption-text">Wie wir sehen können fehlt das MIME Icon.</p></div>
<p>Der Sourcecode für das Icon aus dem Sourcecode der RSS Ansicht.</p>
<blockquote><p><code>moz-icon://goat?size=16&amp;contentType=audio/mpeg</code></p></blockquote>
<p><strong>Der Fix</strong></p>
<div id="attachment_1353" class="wp-caption alignnone" style="width: 595px"><img class="size-medium wp-image-1353" title="MIME Icon" src="http://rvincent.digital-nerv.net/wp-content/uploads/moz-icon.jpg" alt="" width="585" height="165" /><p class="wp-caption-text">Das MIME Icon wird nach dem Fix angezeigt. Wir sehen eine Audio Icon.</p></div>
<p>Das Probem ist, dass Firefox die MIME Typ Icons nicht findet. Dieses Shell-Skript kopiert die MIME Icons des Humanity Themas in den <code>.icons</code> Ordner im Heimverzeichnis, so dass Firefox die Icons finden kann.</p>
<pre>#!/bin/bash

ISOURCE=/usr/share/icons/
ITHEME=Humanity

for size in 16 22 24 32 48;
do
  mkdir -p $HOME/.icons/$ITHEME/mimes/$size;
  for file in $ISOURCE/$ITHEME/mimes/$size/*.svg;
  do
    ln -s $file $HOME/.icons/$ITHEME/mimes/$size/`basename $file .svg`.png;
  done;
done;</pre>
<p>Skript Autor: <em><a href="https://bugs.launchpad.net/ubuntu/+source/humanity-icon-theme/+bug/466567/comments/26">Ilja Sekler</a></em></p>
<p>Erstellen Sie ein neues Skript und führen es in der Konsole aus oder <a href="/wp-content/uploads/fix-moz-icon.sh.zip">laden es herunter</a> und starten es in der Konsole.</p>
]]></content:encoded>
			<wfw:commentRss>http://rvincent.digital-nerv.net/2010/05/06/fix-firefox-mime-type-icons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fünf Jahre Firefox</title>
		<link>http://rvincent.digital-nerv.net/2009/11/18/984/</link>
		<comments>http://rvincent.digital-nerv.net/2009/11/18/984/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 11:37:17 +0000</pubDate>
		<dc:creator>Rally Vincent</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[fünf]]></category>
		<category><![CDATA[jahre]]></category>

		<guid isPermaLink="false">http://rvincent.digital-nerv.net/?p=984</guid>
		<description><![CDATA[Das ist im Internet eine lange Zeit, also lassen Sie uns fünf Jahre Zusammenarbeit für ein besseres Internet für alle feiern. 2009 IE8 IE7 IE6 Firefox Chrome Safari Opera October 12.8% 14.1% 10.6% 47.5% 8.0% 3.8% 2.3% October: 12.8% + 14.1% + 10.6% = 37.5% IE vs. 47.4% Firefox Firefox Version Statistics 2009 Total FF [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.spreadfirefox.com/5years/de/" target="_blank"><img class="alignnone size-full wp-image-987" title="5jahre-firefox" src="http://rvincent.digital-nerv.net/wp-content/uploads/5jahre-firefox.png" alt="5jahre-firefox" width="600" height="100" /></a></p>
<p>Das ist im Internet eine lange Zeit, also lassen Sie uns fünf Jahre Zusammenarbeit für ein besseres Internet für alle feiern.</p>
<table border="1" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<th width="16%">2009</th>
<th width="12%"><a href="http://www.w3schools.com/browsers/browsers_explorer.asp" target="_blank">IE8</a></th>
<th width="12%"><a href="http://www.w3schools.com/browsers/browsers_explorer.asp" target="_blank">IE7</a></th>
<th width="12%"><a href="http://www.w3schools.com/browsers/browsers_explorer.asp" target="_blank">IE6</a></th>
<th width="12%"><a href="http://www.w3schools.com/browsers/browsers_firefox.asp" target="_blank">Firefox</a></th>
<th width="12%"><a href="http://www.w3schools.com/browsers/browsers_chrome.asp" target="_blank">Chrome</a></th>
<th width="12%"><a href="http://www.w3schools.com/browsers/browsers_safari.asp" target="_blank">Safari</a></th>
<th width="12%"><a href="http://www.w3schools.com/browsers/browsers_opera.asp" target="_blank">Opera</a></th>
</tr>
<tr>
<td>October</td>
<td>12.8%</td>
<td>14.1%</td>
<td>10.6%</td>
<td>47.5%</td>
<td>8.0%</td>
<td>3.8%</td>
<td>2.3%</td>
</tr>
</tbody>
</table>
<p style="text-align: center;">October: 12.8% + 14.1% + 10.6% = <strong>37.5</strong>% IE vs. <strong>47.4</strong>% Firefox</p>
<p>Firefox Version Statistics</p>
<table border="1" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<th width="20%" align="left">2009</th>
<th width="15%" align="right">Total</th>
<th width="15%" align="right">FF 3.5</th>
<th width="15%" align="right">FF 3.0</th>
<th width="15%" align="right">FF 2.0</th>
<th width="20%" align="right">Other versions</th>
</tr>
<tr>
<td align="left">October</td>
<td align="right">47.5 %</td>
<td align="right">29.8 %</td>
<td align="right">15.7 %</td>
<td align="right">1.6 %</td>
<td align="right">0.4 %</td>
</tr>
</tbody>
</table>
<p>Internet Explorer Version Statistics</p>
<table border="1" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<th width="20%" align="left">2009</th>
<th width="20%" align="right">Total</th>
<th width="20%" align="right">IE 8</th>
<th width="20%" align="right">IE 7</th>
<th width="20%" align="right">IE 6</th>
</tr>
<tr>
<td align="left">October</td>
<td align="right">37.5 %</td>
<td align="right">12.8 %</td>
<td align="right">14.1 %</td>
<td align="right">10.6 %</td>
</tr>
</tbody>
</table>
<p>Quelle: <a href="http://www.w3schools.com/browsers/default.asp" target="_self">W3Schools</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rvincent.digital-nerv.net/2009/11/18/984/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox or Internet Explorer?</title>
		<link>http://rvincent.digital-nerv.net/2007/08/07/firefox-or-internet-explorer/</link>
		<comments>http://rvincent.digital-nerv.net/2007/08/07/firefox-or-internet-explorer/#comments</comments>
		<pubDate>Tue, 07 Aug 2007 17:03:35 +0000</pubDate>
		<dc:creator>Rally Vincent</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://rvincent.digital-nerv.net/2007/08/07/firefox-or-internet-explorer/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="600" height="360" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/7oIot3Qxu_U&amp;hl=de&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="600" height="360" src="http://www.youtube.com/v/7oIot3Qxu_U&amp;hl=de&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://rvincent.digital-nerv.net/2007/08/07/firefox-or-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>del.icio.us</title>
		<link>http://rvincent.digital-nerv.net/2006/10/26/delicious/</link>
		<comments>http://rvincent.digital-nerv.net/2006/10/26/delicious/#comments</comments>
		<pubDate>Thu, 26 Oct 2006 14:40:00 +0000</pubDate>
		<dc:creator>Rally Vincent</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[extension]]></category>

		<guid isPermaLink="false">http://www.digital-nerv.net/rvincent/2006/10/26/delicious/</guid>
		<description><![CDATA[del.icio.us Bookmarks for Firefox All the power of del.icio.us is now in your browser. The del.icio.us Bookmarks for Firefox extension replaces your Firefox bookmarking experience and gives you a better way to &#8230; organize your bookmarks collect and retrive lots of bookmarks quickly access your bookmarks collection from any computer Cool new features: Quick searching [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://rvincent.digital-nerv.net/wp-content/uploads/firefox-logo-64x64.png"><img class="alignnone size-full wp-image-209 alignleft" style="float: left;" title="firefox-logo-64x64" src="http://rvincent.digital-nerv.net/wp-content/uploads/firefox-logo-64x64.png" alt="" width="64" height="64" /></a>del.icio.us Bookmarks for Firefox</p>
<p>All the power of del.icio.us is now in your browser. The del.icio.us Bookmarks for Firefox extension replaces your Firefox bookmarking experience and gives you a better way to &#8230;</p>
<blockquote><p>organize your bookmarks<br />
collect and retrive lots of bookmarks quickly<br />
access your bookmarks collection from any computer</p></blockquote>
<p>Cool new features:</p>
<blockquote><p>Quick searching of your bookmark&#8217;s tags, titles and notes<br />
Get to all your bookmarks and tags in the new sidebar<br />
A new bookmarks toolbar with two views for quick access to your favorite bookmarks.</p></blockquote>
<p><a href="http://del.icio.us/help/firefox/extension">http://del.icio.us/help/firefox/extension</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rvincent.digital-nerv.net/2006/10/26/delicious/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Html Validator</title>
		<link>http://rvincent.digital-nerv.net/2006/10/26/html-validator/</link>
		<comments>http://rvincent.digital-nerv.net/2006/10/26/html-validator/#comments</comments>
		<pubDate>Thu, 26 Oct 2006 14:32:40 +0000</pubDate>
		<dc:creator>Rally Vincent</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[extension]]></category>

		<guid isPermaLink="false">http://www.digital-nerv.net/rvincent/2006/10/26/html-validator/</guid>
		<description><![CDATA[HTML Validator is a Mozilla extension that adds HTML validation inside Firefox and Mozilla. The number of errors of a HTML page is seen on the form of an icon in the status bar when browsing. The details of the errors are seen when looking the HTML source of the page. The extension is based [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://rvincent.digital-nerv.net/wp-content/uploads/firefox-logo-64x64.png"><img class="alignnone size-full wp-image-209 alignleft" style="float: left;" title="firefox-logo-64x64" src="http://rvincent.digital-nerv.net/wp-content/uploads/firefox-logo-64x64.png" alt="" width="64" height="64" /></a>HTML Validator is a Mozilla extension that adds HTML validation inside Firefox and Mozilla.<br />
The number of errors of a HTML page is seen on the form of  an icon in the status bar when browsing.<br />
The details of the errors are seen when looking the HTML source of the page.</p>
<p>The extension is based on Tidy. Tidy, was originally developed by the Web Consortium W3C. And now extended and improved by a lot of persons. Tidy is embedded inside Mozilla/Firefox and makes the validation locally on your machine, without sending  HTML to a third party server.</p>
<p>Tidy is a helpful program that tries to help people to correct their HTML errors. It finds HTML errors and classifies them in 3 categories:</p>
<blockquote><p>errors: HTML errors that Tidy cannot fix or understand.<br />
warnings: HTML errors that Tidy can fix automatically<br />
(optional) accessibility warnings: HTML warnings for the 3 priority levels defined in W3c WAI</p></blockquote>
<p>If you have only Warnings, press on the &#8220;Clean up&#8221; button and Tidy will do his best to propose you a cleaned version of your page.</p>
<p><a href="http://users.skynet.be/mgueury/mozilla/">http://users.skynet.be/mgueury/mozilla/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rvincent.digital-nerv.net/2006/10/26/html-validator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FlashBlock</title>
		<link>http://rvincent.digital-nerv.net/2006/10/26/flashblock/</link>
		<comments>http://rvincent.digital-nerv.net/2006/10/26/flashblock/#comments</comments>
		<pubDate>Thu, 26 Oct 2006 14:01:19 +0000</pubDate>
		<dc:creator>Rally Vincent</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[extension]]></category>

		<guid isPermaLink="false">http://www.digital-nerv.net/rvincent/2006/10/26/flashblock/</guid>
		<description><![CDATA[Flashblock is an extension for the Mozilla, Firefox, and Netscape browsers that takes a pessimistic approach to dealing with Macromedia Flash content on a webpage and blocks ALL Flash content from loading. It then leaves placeholders on the webpage that allow you to click to download and then view the Flash content. Flashblock currently blocks [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://rvincent.digital-nerv.net/wp-content/uploads/firefox-logo-64x64.png"><img class="alignnone size-full wp-image-209 alignleft" style="float: left;" title="firefox-logo-64x64" src="http://rvincent.digital-nerv.net/wp-content/uploads/firefox-logo-64x64.png" alt="" width="64" height="64" /></a>Flashblock is an extension for the Mozilla, Firefox, and Netscape browsers that takes a pessimistic approach to dealing with Macromedia Flash content on a webpage and blocks ALL Flash content from loading. It then leaves placeholders on the webpage that allow you to click to download and then view the Flash content.</p>
<p>Flashblock currently blocks the following content types:</p>
<blockquote><p>Macromedia Flash<br />
Macromedia Shockwave<br />
Macromedia Authorware</p></blockquote>
<p><strong>This extension is very usefull to prevent annoying advertise on web sites.</strong></p>
<p><a href="http://flashblock.mozdev.org/">http://flashblock.mozdev.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rvincent.digital-nerv.net/2006/10/26/flashblock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

