<?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>In Nomine - The Lotus Land &#187; Browsers</title>
	<atom:link href="http://www.in-nomine.org/category/browsers/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.in-nomine.org</link>
	<description>The focused mind can pierce through stone...</description>
	<lastBuildDate>Sat, 14 May 2011 20:22:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Firefox 3.6 and the million proxy password popups</title>
		<link>http://www.in-nomine.org/2010/03/18/firefox-3-6-and-the-million-proxy-password-popups/</link>
		<comments>http://www.in-nomine.org/2010/03/18/firefox-3-6-and-the-million-proxy-password-popups/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 08:40:04 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=530</guid>
		<description><![CDATA[I needed to authenticate with a proxy today and with Firefox 3.6 I constantly got user/password dialog boxes. Of course, this is annoying. Some searching lead me to an article on the Mozilla support site which mentions a setting (which &#8230; <a href="http://www.in-nomine.org/2010/03/18/firefox-3-6-and-the-million-proxy-password-popups/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I needed to authenticate with a proxy today and with Firefox 3.6 I constantly got user/password dialog boxes. Of course, this is annoying. Some searching lead me to <a title=" Firefox asks me to send the username and password to a proxy" href="https://support.mozilla.com/en-US/forum/1/596899">an article on the Mozilla support site</a> which mentions a setting (which you can reach via <code>about:config</code>) named <code>network.auth.force-generic-ntlm</code> which, when set from <code>false</code> to <code>true</code>, fixes a lot of these popups.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2010/03/18/firefox-3-6-and-the-million-proxy-password-popups/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MathML and SVG in HTML 5 with Firefox</title>
		<link>http://www.in-nomine.org/2009/07/08/mathml-and-svg-in-html-5-with-firefox/</link>
		<comments>http://www.in-nomine.org/2009/07/08/mathml-and-svg-in-html-5-with-firefox/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 14:47:21 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[mathml]]></category>
		<category><![CDATA[svg]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=320</guid>
		<description><![CDATA[I&#8217;ve been using MathML for a while now for some of my documentation work on 3D graphics. Unfortunately the only way at the moment is to use XHTML 1.1 modular doctype to include either or both of MathML and SVG. &#8230; <a href="http://www.in-nomine.org/2009/07/08/mathml-and-svg-in-html-5-with-firefox/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using MathML for a while now for some of my documentation work on 3D graphics. Unfortunately the only way at the moment is to use XHTML 1.1 modular doctype to include either or both of MathML and SVG. In <a title="HTML 5 Specification" href="http://www.whatwg.org/specs/web-apps/current-work/">HTML 5</a> these have become embedded content parts of the specification. So for example, using MathML would be as simple as doing:</p>
<pre class="brush: xml; title: ; notranslate">&lt;!DOCTYPE HTML&gt;
&lt;html&gt;
  &lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot;&gt;
    &lt;title&gt;MathML test&lt;/title&gt;
  &lt;/head&gt;
  &lt;body&gt;
    &lt;math&gt;
      &lt;mrow&gt;
        &lt;mi&gt;y&lt;/mi&gt;
        &lt;mo&gt;=&lt;/mo&gt;
        &lt;msup&gt;
          &lt;mi&gt;x&lt;/mi&gt;
          &lt;mn&gt;2&lt;/mn&gt;
        &lt;/msup&gt;
      &lt;/mrow&gt;
    &lt;/math&gt;
  &lt;/body&gt;
&lt;/html&gt;</pre>
<p>Unfortunately the only browser to support either MathML or (parts of) HTML 5 at this moment is Firefox 3.5. However, the MathML or SVG embedded content did not render under 3.5. After reading <a title="HTML 5 Parsing" href="http://ejohn.org/blog/html-5-parsing/">John Resig&#8217;s post about a new HTML parsing engine in Mozilla&#8217;s Gecko engine</a> I set out to test this engine&#8217;s support  by <a title="Firefox trunk nightlies" href="http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-trunk/">downloading the latest nightly</a> and setting <code>html5.enable</code> to <code>true</code> in <code>about:config</code> and &#8216;lo and behold, it renders as expected.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2009/07/08/mathml-and-svg-in-html-5-with-firefox/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>FireMath &#8211; MathML editing made easier</title>
		<link>http://www.in-nomine.org/2009/06/29/firemath-mathml-editing-made-easier/</link>
		<comments>http://www.in-nomine.org/2009/06/29/firemath-mathml-editing-made-easier/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 12:54:06 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[firemath]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[mathml]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=318</guid>
		<description><![CDATA[I discovered FireMath today, an addon for Firefox that makes editing MathML much, much easier. Give it a spin. I just wish more browsers than Firefox supported MathML out of the box.]]></description>
			<content:encoded><![CDATA[<p>I discovered <a title="FireMath website" href="http://www.firemath.info/">FireMath</a> today, an addon for Firefox that makes editing MathML much, much easier. Give it a spin. I just wish more browsers than Firefox supported MathML out of the box.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2009/06/29/firemath-mathml-editing-made-easier/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JSONP with Werkzeug</title>
		<link>http://www.in-nomine.org/2009/04/03/jsonp-with-werkzeug/</link>
		<comments>http://www.in-nomine.org/2009/04/03/jsonp-with-werkzeug/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 13:07:15 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[jsonp]]></category>
		<category><![CDATA[werkzeug]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=269</guid>
		<description><![CDATA[So I had implemented a simple JSON data server with Werkzeug for a classroom experiment. Unfortunately in my haste to get everything up and running I totally forgot about the fact that, since we cannot allow uploads to this server &#8230; <a href="http://www.in-nomine.org/2009/04/03/jsonp-with-werkzeug/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So I had implemented a simple <a title="JSON data format website" href="http://www.json.org/">JSON</a> data server with Werkzeug for a classroom experiment. Unfortunately in my haste to get everything up and running I totally forgot about the fact that, since we cannot allow uploads to this server of various custom made webpages, using <a title="Ajax/jQuery.ajax() documentation" href="http://docs.jquery.com/Ajax/jQuery.ajax">jQuery&#8217;s <code>$.ajax()</code></a> everything just fails since it will then be a cross-site scripting request.</p>
<p>So, normally you would do something like the following in order to return JSON data:</p>
<pre lang="python">return json.dumps(data)</pre>
<p>Which would be used with the $.ajax() call in a way like the following:</p>
<pre lang="javascript">$.ajax({
  type: "POST",
  url: "http://example.com/json/something",
  data: "parameter=value",
  dataType: "json",
  error: function(XMLHttpRequest, textStatus, errorThrown){},
  success: function(data, msg){}
});</pre>
<p>Which is perfectly fine for scripts getting and using the data on the same host/domain. But, as said before, this will fail with warnings similar to: <code>"Access to restricted URI denied" code: "1012" nsresult: "0xdeadc0de (NS_ERROR_DOM_BAD_URI)"</code>.</p>
<p>One way out of this is using <a title="Remote JSON - JSONP" href="http://bob.pythonmac.org/archives/2005/12/05/remote-json-jsonp/">JSONP</a>. jQuery has a <a title="Ajax/jQuery.getJSON() documentation" href="http://docs.jquery.com/Ajax/jQuery.getJSON"><code>$.getJSON()</code> function</a>, which loads JSON data using a HTTP GET request. Now, the simplistic way to convert your code would be to change it as such:</p>
<pre lang="javascript">$.getJSON("http://example.com/json/something",
  function(data){}
);</pre>
<p>But this causes another issue. Since <code>$.getJSON()</code> GETs the JSON data, but doesn&#8217;t use eval() on it, but instead pulls the result into <code>script</code> tags, it somehow causes,on Firefox at least, an invalid label error. In order to fix this you need to set up the JSON data server to properly support a callback argument, to use <code>$.getJSON()</code> how it is meant to be used:</p>
<pre lang="javascript">$.getJSON("http://example.com/json/something?jsoncallback=?",
  function(data){}
);</pre>
<p>In the code above the additional parameter <code>jsoncallback</code> will, thanks to jQuery, get the question mark replaced by an alphanumeric string (typically in the form of <code>jsonp</code> followed by a timestamp). This value should be used to wrap the resulting JSON data with. This means you would have to change the initial Python code to something like this:</p>
<pre lang="python">return request.args.get('jsoncallback') + '(' + json.dumps(data) + ')'</pre>
<p>Of course this causes problems when you want to reuse the code for both AJAX use on the same host/domain and use it from outside. So in order to make both work you can test on whether or not the callback parameter is available and return the appropriate data. I came up with this little snippet for that:</p>
<pre lang="python">def jsonwrapper(self, request, data):
    callback = request.args.get('jsoncallback')

    if callback:
        return callback + '(' + json.dumps(data) + ')'
    else:
        return json.dumps(data)</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2009/04/03/jsonp-with-werkzeug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sendfile() mishandling</title>
		<link>http://www.in-nomine.org/2009/02/25/sendfile-mishandling/</link>
		<comments>http://www.in-nomine.org/2009/02/25/sendfile-mishandling/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 11:49:31 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[lighttpd]]></category>
		<category><![CDATA[sendfile]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=264</guid>
		<description><![CDATA[As I said in http://www.in-nomine.org/2009/02/22/tinymce-in-wordpress-271-not-working-on-freebsd/ I had problems making TinyMCE work. After some digging I discovered that the tiny_mce.js file was being oddly truncated and repeated when fetched. Subsequent tests showed that md5 hashes differed every single time with the &#8230; <a href="http://www.in-nomine.org/2009/02/25/sendfile-mishandling/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As I said in http://www.in-nomine.org/2009/02/22/tinymce-in-wordpress-271-not-working-on-freebsd/ I had problems making TinyMCE work.</p>
<p>After some digging I discovered that the tiny_mce.js file was being oddly truncated and repeated when fetched. Subsequent tests showed that md5 hashes differed every single time with the original file.</p>
<p>During these fetch tests my kernel crashed twice in the network stack. Since my lighttpd configuration uses kqueue and the likes I suspected that perhaps something was not right in lighttpd 1.4.21, which was only released a couple of days ago. So I downgraded to 1.4.20. &#8216;Lo and behold, the problems disappeared. To be absolutely sure, I recompiled lighttpd 1.4.21 as well. And at first it seemed to work, but then the corruption kicked in again. After talking about it on the #lighttpd channel on FreeNode I found out it was a problem with <a title="Bug 1913: not fully serving data" href="http://redmine.lighttpd.net/issues/1913">lighttpd 1.4.21&#8242;s handling of sendfile() on FreeBSD</a>.</p>
<p>The fix is now also in the lighttpd port of FreeBSD, so other people should not encounter this problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2009/02/25/sendfile-mishandling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TinyMCE in WordPress 2.7.1 not working on FreeBSD?</title>
		<link>http://www.in-nomine.org/2009/02/22/tinymce-in-wordpress-271-not-working-on-freebsd/</link>
		<comments>http://www.in-nomine.org/2009/02/22/tinymce-in-wordpress-271-not-working-on-freebsd/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 11:44:18 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[tinymce]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=260</guid>
		<description><![CDATA[Discovered today that with both Firefox 3.0 and Opera 9.63 on FreeBSD, TinyMCE within WordPress 2.7.1 is not allowing me to use the visual editing mode. I tried the example of TinyMCE and it works without problems. Based on this &#8230; <a href="http://www.in-nomine.org/2009/02/22/tinymce-in-wordpress-271-not-working-on-freebsd/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Discovered today that with both Firefox 3.0 and Opera 9.63 on FreeBSD, TinyMCE within <a href="http://www.wordpress.org/">WordPress</a> 2.7.1 is not allowing me to use the visual editing mode. I tried the <a href="http://tinymce.moxiecode.com/examples/full.php">example of TinyMCE</a> and it works without problems. Based on this and the fact it works on Windows, there must be something weird in either WordPress or its included version of TinyMCE with FreeBSD. I <a href="http://wordpress.org/support/topic/246349">logged a post</a> over at the WordPress forums.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2009/02/22/tinymce-in-wordpress-271-not-working-on-freebsd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Zotero and PDF indexing on FreeBSD</title>
		<link>http://www.in-nomine.org/2009/02/22/zotero-and-pdf-indexing-on-freebsd/</link>
		<comments>http://www.in-nomine.org/2009/02/22/zotero-and-pdf-indexing-on-freebsd/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 11:27:57 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[indexing]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[zotero]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=253</guid>
		<description><![CDATA[For a while now I have been using Zotero on Firefox to handle researching topics. It also allows PDF indexing, but for this you need to set some things up first. Start by installing xpdf from ports, it&#8217;s located under &#8230; <a href="http://www.in-nomine.org/2009/02/22/zotero-and-pdf-indexing-on-freebsd/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For a while now I have been using <a href="http://www.zotero.org/">Zotero</a> on Firefox to handle researching topics. It also allows PDF indexing, but for this you need to set some things up first. Start by installing xpdf from ports, it&#8217;s located under <code>graphics/xpdf</code>. This will install <code>pdfinfo</code> and <code>pdftotext</code> amongst others. Next go to your Zotero data directory, by default this is the <code>zotero</code> directory under your profile directory in <code>$HOME/.mozilla/firefox</code>, and create two symbolic links <code>pdfinfo-`uname -s`-`uname -m`</code> and <code>pdftotext-`uname -s`-`uname -m`</code> which will point to <code>/usr/local/bin/pdfinfo</code> and <code>/usr/local/bin/pdftotext</code>, respectively.</p>
<p>Now, when you restart Firefox, Zotero should be able to pick up the files. Check by going into Zotero&#8217;s preferences and navigate to the <code>Search</code> tab. It should state something to the effect of <code>pdftotext version UNKNOWN is installed</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2009/02/22/zotero-and-pdf-indexing-on-freebsd/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Character encoding in mailcap for mutt and w3m</title>
		<link>http://www.in-nomine.org/2009/02/16/character-encoding-in-mailcap-for-mutt-and-w3m/</link>
		<comments>http://www.in-nomine.org/2009/02/16/character-encoding-in-mailcap-for-mutt-and-w3m/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 10:15:59 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[encoding]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[japanese]]></category>
		<category><![CDATA[mailcap]]></category>
		<category><![CDATA[mutt]]></category>
		<category><![CDATA[shift_jis]]></category>
		<category><![CDATA[sjis]]></category>
		<category><![CDATA[utf-8]]></category>
		<category><![CDATA[w3m]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=247</guid>
		<description><![CDATA[I use mutt on my FreeBSD system to read my mail. To read HTML mail I simply use a .mailcap file with an entry such as text/html;      w3m -dump %s; nametemplate=%s.html; copiousoutput This in effect dumps the HTML using w3m &#8230; <a href="http://www.in-nomine.org/2009/02/16/character-encoding-in-mailcap-for-mutt-and-w3m/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I use mutt on my FreeBSD system to read my mail. To read HTML mail I simply use a <code>.mailcap</code> file with an entry such as</p>
<p><code>text/html;      w3m -dump %s; nametemplate=%s.html; copiousoutput</code></p>
<p>This in effect dumps the HTML using w3m to a text file in order to safely display it. The problem that I had is that, because some emails that I receive are from a Japanese translators list, they are in Shift_JIS. When dumped w3m doesn&#8217;t properly detect the Shift_JIS encoding and as such the resulting output becomes garbled.</p>
<p>When I looked at the attachments in the mail with mutt&#8217;s &#8216;v&#8217; command I saw that mutt at least knows the encoding of the attachment, so I figured that there should be a way of using this information with my mailcap. Turns out that there is indeed a way to do so, namely the charset variable. It turns out the mailcap format is a full RFC. <a title="RFC 1524: A User Agent Configuration Mechanism For Multimedia Mail Format Information" href="http://tools.ietf.org/html/rfc1524">RFC 1524</a> to be exact. Mutt furthermore uses the <code>Content-Type</code> headers to pull any specific settings into mailcap variables. So a <code>Content-Type: text/html; charset=shift_jis</code> means that <code>%{charset}</code> in the mailcap file will be expanded to <code>shift_jis</code>. We can use this with w3m&#8217;s -I flag to set a proper encoding prior to dumping.</p>
<p><code>text/html;      w3m -I %{charset} -dump %s; nametemplate=%s.html; copiousoutput</code></p>
<p>As such you can be relatively sure that the dumped text will be in the appropriate encoding. Of course it depends on a properly set Content-Type header, but if you cannot depend on that one you need to dig out the recovery tools already.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2009/02/16/character-encoding-in-mailcap-for-mutt-and-w3m/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Better layout</title>
		<link>http://www.in-nomine.org/2008/05/07/better-layout/</link>
		<comments>http://www.in-nomine.org/2008/05/07/better-layout/#comments</comments>
		<pubDate>Wed, 07 May 2008 20:18:11 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Weblog]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=239</guid>
		<description><![CDATA[The website should now look a bit better again, especially on the reading side.]]></description>
			<content:encoded><![CDATA[<p>The website should now look a bit better again, especially on the reading side.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2008/05/07/better-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lightning 0.8 released</title>
		<link>http://www.in-nomine.org/2008/04/09/lightning-08-released/</link>
		<comments>http://www.in-nomine.org/2008/04/09/lightning-08-released/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 11:39:24 +0000</pubDate>
		<dc:creator>asmodai</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[lightning]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://www.in-nomine.org/?p=223</guid>
		<description><![CDATA[For those of you using Thunderbird and want a calendaring option inside of Thunderbird to communicate properly with people using Outlook or Lotus Notes that send you invitations for meetings and the like: Mozilla&#8217;s Lightning is now at version 0.8. &#8230; <a href="http://www.in-nomine.org/2008/04/09/lightning-08-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For those of you using Thunderbird and want a calendaring option inside of Thunderbird to communicate properly with people using Outlook or Lotus Notes that send you invitations for meetings and the like: <a title="Mozilla Lightning" href="http://www.mozilla.org/projects/calendar/lightning/">Mozilla&#8217;s Lightning is now at version 0.8</a>. Lightning is an add-on for Thunderbird based on <a title="Mozilla Sunbird" href="http://www.mozilla.org/projects/calendar/sunbird/">Sunbird</a>.</p>
<p>If you then also use the <a title="Provider for Google Calendar add-on" href="https://addons.mozilla.org/en-US/thunderbird/addon/4631">Provider for Google Calendar</a> you can synchronise your <a title="Google Calendar" href="http://www.google.com/calendar">Google Calendar</a> with your Lightning setup.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.in-nomine.org/2008/04/09/lightning-08-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

