<?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>Libre Things &#187; Firefox</title>
	<atom:link href="http://positon.org/tag/firefox/feed" rel="self" type="application/rss+xml" />
	<link>http://positon.org</link>
	<description></description>
	<lastBuildDate>Tue, 23 Feb 2016 20:01:11 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.7.1</generator>
	<item>
		<title>I2P proxy configuration via PAC file</title>
		<link>http://positon.org/i2p-proxy-configuration-via-pac-file</link>
		<comments>http://positon.org/i2p-proxy-configuration-via-pac-file#comments</comments>
		<pubDate>Sun, 19 Dec 2010 22:16:00 +0000</pubDate>
		<dc:creator><![CDATA[dooblem]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Hadopi]]></category>
		<category><![CDATA[I2P]]></category>

		<guid isPermaLink="false">http://positon.org:81/?p=107</guid>
		<description><![CDATA[With the new french Hadopi law&#8230; I just tested the I2P nework, which works fairly well. Installation is very easy. Just download the .exe file. Then launch it with the java -jar command, like explained on the official site (and it works on Linux, yes !). Now, if you want to access .i2p sites, like [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>With the new french <a href="http://en.wikipedia.org/wiki/HADOPI_law">Hadopi law</a>&#8230; I just tested the I2P nework, which works fairly well.</p>
<p>Installation is very easy. Just <a href="http://www.i2p2.de/download.html">download the .exe</a> file. Then launch it with the <code>java -jar</code> command, like explained on the official site (and it works on Linux, yes !).</p>
<p>Now, if you want to access .i2p sites, like <a href="http://forum.i2p" title="http://forum.i2p">http://forum.i2p</a>, you must configure your browser to use the I2P proxy: <code>localhost:4444</code></p>
<p>If you don&#8217;t want to use the proxy when connecting to standard non-i2p sites, you can use the <a href="https://addons.mozilla.org/fr/firefox/addon/2464/">FoxyProxy</a> Firefox extension.</p>
<p>You can also use a <a href="http://en.wikipedia.org/wiki/Proxy_auto-config">PAC (Proxy Auto-Config)</a> file:</p>
<pre>
function FindProxyForURL(url, host) {
    if (dnsDomainIs(host, &quot;.i2p&quot;)) {
        return &quot;PROXY localhost:4444&quot;;
    } else {
        return &quot;DIRECT&quot;;
    }
}
</pre>
<p>Then configure Firefox, or proxy configuration in Gnome to use the <code>file:///path/to/proxy.pac</code> file as configuration.</p>
<p>Warning: a bad eepsite (.i2p site), can <a href="http://forum.i2p2.de/viewtopic.php?p=30030">detect your real IP address</a> with that.</p>
<p><ins>Links</ins>:</p>
<ul>
<li><a href="http://www.i2p2.de/" title="http://www.i2p2.de/">http://www.i2p2.de/</a> I2P site</li>
<li><a href="http://forum.i2p/viewtopic.php?p=30030" title="http://forum.i2p/viewtopic.php?p=30030">http://forum.i2p/viewtopic.php?p=30030</a></li>
<li><a href="http://forum.i2p2.de/viewtopic.php?p=30030" title="http://forum.i2p2.de/viewtopic.php?p=30030">http://forum.i2p2.de/viewtopic.php?p=30030</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://positon.org/i2p-proxy-configuration-via-pac-file/feed</wfw:commentRss>
		<slash:comments></slash:comments>
		</item>
		<item>
		<title>Preload web content using link prefetch or javascript</title>
		<link>http://positon.org/preload-web-content-using-link-prefetch-or-javascript</link>
		<comments>http://positon.org/preload-web-content-using-link-prefetch-or-javascript#comments</comments>
		<pubDate>Sat, 30 Oct 2010 15:50:00 +0000</pubDate>
		<dc:creator><![CDATA[dooblem]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Bizou]]></category>
		<category><![CDATA[Chromium]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://positon.org:81/?p=104</guid>
		<description><![CDATA[For the Bizou php gallery, I looked for different ways of preloading next image in &#8220;view&#8221; mode (example). With Firefox it&#8217;s very simple. Just use the following element and the browser will preload your contents. Contents are preloaded in background, once the whole current page is loaded. [html] &#60;link rel=&#34;prefetch&#34; href=&#34;/images/nextimage.jpg&#34; /&#62; Problem: only Firefox [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>For the <a href="http://www.positon.org/bizou/en.html">Bizou</a> php gallery, I looked for different ways of preloading next image in &#8220;view&#8221; mode (<a href="http://www.positon.org/images/view.php/2008%20Corse/001%20ajaccio.jpg">example</a>).</p>
<p>With <a href="http://www.mozilla.com/firefox/">Firefox</a> it&#8217;s very simple. Just use the following element and the browser will preload your contents.<br />
Contents are preloaded in background, once the whole current page is loaded.</p>
<pre> [html]
&lt;link rel=&quot;prefetch&quot; href=&quot;/images/nextimage.jpg&quot; /&gt;
</pre>
<p>Problem: only Firefox supports this currently.<br />
Note: a <a href="http://code.google.com/p/chromium/issues/detail?id=52878">ticket is opened</a> about this in the <a href="http://www.chromium.org/Home">Chromium</a> project.</p>
<p>For other browsers, use some Javascript triggered by the <code>window.onload</code> event:</p>
<pre> [javascript]
&lt;script type=&quot;text/javascript&quot;&gt;
window.onload = function() {
    // for images
    var im = new Image();
    im.src = '/images/nextimage.jpg';
    // and for other content
    var req = new XMLHttpRequest();
    req.open('GET', 'nextpage.php', false);
    req.send(null);
};
&lt;/script&gt;
</pre>
<p>Beware of HTTP cache headers sent by the server to the browser.<br />
To preload correctly PHP pages, make your script send an Expires header:</p>
<pre>
header('Expires: '.gmdate('D, d M Y H:i:s \G\M\T', time() + 3600));
</pre>
<p>Then, for a simple browser detection from your PHP script:</p>
<pre>
&lt;?php if (strpos($_SERVER['HTTP_USER_AGENT'], 'Firefox') !== false) { ?&gt;
&lt;link rel=&quot;prefetch&quot; href=&quot;nextpage.php&quot; /&gt;

&lt;?php } else { ?&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
window.onload = function() {
    var req = new XMLHttpRequest();
    req.open('GET', 'nextpage.php', false);
    req.send(null);
};
&lt;/script&gt;
&lt;?php } ?&gt;
</pre>
<p><ins>Links</ins> :</p>
<ul>
<li><a href="https://developer.mozilla.org/en/Link_prefetching_FAQ" title="https://developer.mozilla.org/en/Link_prefetching_FAQ">https://developer.mozilla.org/en/Link_prefetching_FAQ</a></li>
<li><a href="http://www.4thkingdom.com/wp-content/uploads/dotclearold/computers/789073-web-site-speed-prefetching-images-css/view-post.html" title="http://www.4thkingdom.com/wp-content/uploads/dotclearold/computers/789073-web-site-speed-prefetching-images-css/view-post.html">http://www.4thkingdom.com/wp-content/uploads/dotclearold/computers/789073-web-site-speed-prefetching-images-css/view-post.html</a> (using jQuery)</li>
<li><a href="http://orip.org/2009/03/prefetching-javascript-or-anything-with.html" title="http://orip.org/2009/03/prefetching-javascript-or-anything-with.html">http://orip.org/2009/03/prefetching-javascript-or-anything-with.html</a> (using jQuery)</li>
<li><a href="http://www.positon.org/git/?p=bizou.git;a=commitdiff;h=3287102a856be64262a9db0c98e7be7f9c26dbb8">commit sur Bizou</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://positon.org/preload-web-content-using-link-prefetch-or-javascript/feed</wfw:commentRss>
		<slash:comments></slash:comments>
		</item>
		<item>
		<title>(Français) Mes extensions Firefox</title>
		<link>http://positon.org/mes-extensions-firefox</link>
		<comments>http://positon.org/mes-extensions-firefox#comments</comments>
		<pubDate>Sun, 11 Oct 2009 17:31:00 +0000</pubDate>
		<dc:creator><![CDATA[dooblem]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://positon.org:81/?p=63</guid>
		<description><![CDATA[Sorry, this entry is only available in Français.]]></description>
				<content:encoded><![CDATA[<p>Sorry, this entry is only available in <a href="http://fr.positon.org/tag/firefox/feed">Français</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://positon.org/mes-extensions-firefox/feed</wfw:commentRss>
		<slash:comments></slash:comments>
		</item>
	</channel>
</rss>
