<?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"
	>

<channel>
	<title>[Linux] Journal</title>
	<atom:link href="http://blog.ibao.net/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ibao.net/linux</link>
	<description>A diary of my relationship with linux...</description>
	<pubDate>Wed, 20 Dec 2006 09:32:39 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>ibao&#8217;s Gallery2 Theme Release</title>
		<link>http://blog.ibao.net/linux/2006/10/24/ibaos-gallery2-theme-release/</link>
		<comments>http://blog.ibao.net/linux/2006/10/24/ibaos-gallery2-theme-release/#comments</comments>
		<pubDate>Tue, 24 Oct 2006 15:14:54 +0000</pubDate>
		<dc:creator>anniec</dc:creator>
		
		<category><![CDATA[Photo Management]]></category>

		<guid isPermaLink="false">http://blog.ibao.net/linux/2006/10/24/ibaos-gallery2-theme-release/</guid>
		<description><![CDATA[If you like the theme of our gallery, you can now get it here! But before you begin, here are a few words of warning regarding this release. This is a highly customized theme based on Siriux which wasn&#8217;t intended to be published so it is unlikely to &#8220;just work&#8221; for you. If you don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>If you like the theme of our <a href="http://gallery.ibao.net">gallery</a>, you can now get it here! But before you begin, here are a few words of warning regarding this release. This is a highly customized theme based on Siriux which wasn&#8217;t intended to be published so it is unlikely to &#8220;just work&#8221; for you. If you don&#8217;t mind getting your hands dirty then carry on. My support will be best effort but limited so I hope the users can help each other out.</p>
<p>Here are the instructions (beta). Feedback is appreciated.</p>
<h4>Step 1 - Install</h4>
<p>Download the <a href="http://gallery.ibao.net/ibao.zip">ibao theme</a>. Unzip it to the gallery themes directory (e.g. <code>/usr/shared/gallery2/themes/ibao</code>). Go to [Site Admin -> Themes] Install and activate the ibao theme then set ibao as the default theme for the  gallery.</p>
<h4>Step 2 - Configure</h4>
<p>Here are my configurations for [Site Admin -> Themes -> Ibao]:</p>
<pre>Number of items to show per page 	= 15
Blocks to show on album pages
- Album quick links (Dropdown)
- Item actions
- Show comments Blocks to show on photo pages
Blocks to show on photo pages
- Item actions
- EXIF/IPTC photo info
- Show comments
Width of page content in pixels 	= This is ignored, the width is set to 80% of the window width in the css.</pre>
<h4>Step 3 - Patch ImageMagick for panomaras</h4>
<p>In order allow panorama thumbnails to stretch out and breath we need to patch the imagemagick module. Modify the following file <code>modules/imagemagick/classes/ImageMagickToolkit.class</code></p>
<p>Change this:</p>
<pre>if ($width > $parameters[0] || $height > $parameters[0]) {
$this->_addResizeParam($transform, $parameters[0]);
list ($width, $height) =   GalleryUtilities::scaleDimensionsToFit($width, $height, $parameters[0]);
}</pre>
<p>To this:</p>
<pre>if ($width > $parameters[0] || $height > $parameters[0]) {
if ( $width > $height ) { /* fixed height for pan photos*/
$this->_addResizeParam($transform, $parameters[0]*6, $parameters[0]*0.75);
list ($width, $height) =       GalleryUtilities::scaleDimensionsToFit($width, $height, $parameters[0]*6, $parameters[0]*0.75);
}else{
$this->_addResizeParam($transform, $parameters[0]);
list ($width, $height) =      GalleryUtilities::scaleDimensionsToFit($width, $height, $parameters[0]);
}
}</pre>
<p>We then tell gallery2 to use the ImageMagick module over other toolkits by moving ImageMagick all the way up in [Site Admin -> Toolkit Priority].</p>
<h4>Step 4 - Setting the look for the front page</h4>
<p>The ibao theme uses a special look of alternating panoramas for the top page of the gallery. You can select anything from a sub-album as the highlight. I wanted however something that&#8217;s not part of the gallery so I manually edited some panoramas to 4&#215;1 ratio and put it in a private album under each top level album. I then select a panorama from each album as the highlight on the top page. I made this album private so that only the administrator can see it.</p>
<p>I set the thumbnail size to 180 for the top album and 200 for the sub albums under [Edit Album -> Album].</p>
<p>You may have noticed that there is a sidebar on the top page. In it is a manual link to the Google Map module which you need to download and install separately. I also added more blocks in [Edit Album -> Theme -> Blocks to show on album pages] the following: Search Box, Image Block, and Shopping Cart Info.</p>
<h4>Hidden gems/hacks</h4>
<ul>
<li>There is a hidden hack for the album titled &#8220;Panoramas&#8221;. The theme will use a different style such that the highlights can be shown at full length rather than been shown as cropped if it were in a normal album.</li>
<li>If you have entered a summary for an image it will be displayed in the album view though it won&#8217;t look particularly pretty.</li>
<li>In the last block of <code>ibao/template/theme.tpl</code> there is code for Google Analytics. If you use Analytics uncomment those two lines and insert your account number.</li>
</ul>
<p>When all else fails, here&#8217;s the System Information of my gallery installation:</p>
<pre>Gallery version = 2.1.1 core 1.1.0.1
PHP version = 4.3.10-16 apache2handler
Webserver = Apache/2.0.54 (Debian GNU/Linux) mod_auth_pgsql/2.0.2b1 DAV/2 mod_jk2/2.0.4 mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-16 mod_ssl/2.0.54 OpenSSL/0.9.7e
Database = mysqlt 4.0.24_Debian-10sarge2-log, lock.system=flock
Toolkits = Exif, ArchiveUpload, Dcraw, Ffmpeg, NetPBM, Gd, ImageMagick
Acceleration = none, none
Operating system = Linux plum 2.6.12-1-k7 #1 Tue Sep 27 13:22:07 JST 2005 i686
Default theme = ibao
Locale = en_US
Browser = Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.0.2) Gecko/20060330 Firefox/1.5.0.2</pre>
<p>Have fun, good luck and please leave your feedback!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ibao.net/linux/2006/10/24/ibaos-gallery2-theme-release/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Emerge multisync with evolution2</title>
		<link>http://blog.ibao.net/linux/2006/03/07/emerge-multisync-with-evolution2/</link>
		<comments>http://blog.ibao.net/linux/2006/03/07/emerge-multisync-with-evolution2/#comments</comments>
		<pubDate>Tue, 07 Mar 2006 14:37:23 +0000</pubDate>
		<dc:creator>anniec</dc:creator>
		
		<category><![CDATA[Gentoo]]></category>

		<category><![CDATA[System]]></category>

		<category><![CDATA[k700i]]></category>

		<guid isPermaLink="false">http://blog.ibao.net/linux/?p=290</guid>
		<description><![CDATA[After I upgraded to Evolution2 the multisync fails to emerge with the following error:

i686-pc-linux-gnu-gcc: @EVO_LDFLAGS@: No such file or directory
i686-pc-linux-gnu-gcc: @EVO_LIBS@: No such file or directory
make[2]: *** [libevolution2_sync.la] Error 1
make[2]: Leaving directory `/var/tmp/portage/multisync-0.83_pre20050414-r3/work/multisync/plugins/evolution2_sync/src&#8217;
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/var/tmp/portage/multisync-0.83_pre20050414-r3/work/multisync/plugins/evolution2_sync&#8217;
make: *** [all] Error 2

!!! ERROR: app-pda/multisync-0.83_pre20050414-r3 failed.

I found tips for the solution in this German [...]]]></description>
			<content:encoded><![CDATA[<p>After I upgraded to Evolution2 the multisync fails to emerge with the following error:</p>
<pre code>
i686-pc-linux-gnu-gcc: @EVO_LDFLAGS@: No such file or directory
i686-pc-linux-gnu-gcc: @EVO_LIBS@: No such file or directory
make[2]: *** [libevolution2_sync.la] Error 1
make[2]: Leaving directory `/var/tmp/portage/multisync-0.83_pre20050414-r3/work/multisync/plugins/evolution2_sync/src&#8217;
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/var/tmp/portage/multisync-0.83_pre20050414-r3/work/multisync/plugins/evolution2_sync&#8217;
make: *** [all] Error 2

!!! ERROR: app-pda/multisync-0.83_pre20050414-r3 failed.
</pre>
<p>I found tips for the solution in this <a href="http://www.gentooforum.de/artikel/8599/multisync-evolution2_sync-plugin-geloest.html">German thread</a>. Here are the steps to get it compiling:</p>
<p>
First you start emerging multisync but suspend it with Control-z right after the source is unpacked, i.e.,</p>
<pre code>
$ emerge multisync
...
unpacked source
ctrl ^z
</pre>
<p>You then go to where the source is unpacked and modify <code>Makefile.am</code> to take out the EVO flags, i.e.,</p>
<pre code>
$ cd /var/tmp/portage/multisync-0.83_pre20050414-r3/work/multisync/plugins/evolution2_sync/src
$ edit Makefile.am and remove  @EVO_LDFLAGS@ and @EVO_LIBS@ towards the bottom
</pre>
<p>Continue with the emerge, i.e.,</p>
<pre code>
$ fg
</pre>
<p>It should then complete gracefully <img src='http://blog.ibao.net/linux/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ibao.net/linux/2006/03/07/emerge-multisync-with-evolution2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How JSP &#038; JSTL access attributes</title>
		<link>http://blog.ibao.net/linux/2006/02/25/how-jsp-jstl-access-attributes/</link>
		<comments>http://blog.ibao.net/linux/2006/02/25/how-jsp-jstl-access-attributes/#comments</comments>
		<pubDate>Sat, 25 Feb 2006 11:37:46 +0000</pubDate>
		<dc:creator>anniec</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.ibao.net/linux/2006/02/25/how-jsp-jstl-access-attributes/</guid>
		<description><![CDATA[Some jsp &#038; jstl equivalence in accessing attributes

&#60;%= pageContext.getAttribute("foo") %&#62; == ${pageScope.foo} or ${foo}
&#60;%= request.getAttribute("bar") %&#62; == ${requestScope.bar}
&#60;%= session.getAttribute("frotz") %&#62; == ${sessionScope.frotz}
&#60;%= application.getAttribute("filfre") %&#62; == ${applicationScope.filfre}

]]></description>
			<content:encoded><![CDATA[<p>Some jsp &#038; jstl equivalence in accessing attributes</p>
<pre code>
&lt;%= pageContext.getAttribute("foo") %&gt; == ${pageScope.foo} or ${foo}
&lt;%= request.getAttribute("bar") %&gt; == ${requestScope.bar}
&lt;%= session.getAttribute("frotz") %&gt; == ${sessionScope.frotz}
&lt;%= application.getAttribute("filfre") %&gt; == ${applicationScope.filfre}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.ibao.net/linux/2006/02/25/how-jsp-jstl-access-attributes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WordPress 2.0 no comment count with SK2</title>
		<link>http://blog.ibao.net/linux/2006/02/14/wordpress-20-no-comment-count-with-sk2/</link>
		<comments>http://blog.ibao.net/linux/2006/02/14/wordpress-20-no-comment-count-with-sk2/#comments</comments>
		<pubDate>Tue, 14 Feb 2006 16:26:34 +0000</pubDate>
		<dc:creator>anniec</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://blog.ibao.net/linux/2006/02/14/wordpress-20-no-comment-count-with-sk2/</guid>
		<description><![CDATA[I recently upgraded to WordPress 2.0 with my Life Notes blog and noticed that the comments stopped counting.  I found in a wordpress troubleshoot that it may be caused by incompatibility with Spam Karma 2 and indeed after I deactivated SK2 new comments shows up in count. In the trouble shoot it says to [...]]]></description>
			<content:encoded><![CDATA[<p>I recently upgraded to WordPress 2.0 with my Life Notes blog and noticed that the comments stopped counting.  I found in a <a href="http://wordpress.org/support/topic/53509">wordpress troubleshoot</a> that it may be caused by incompatibility with Spam Karma 2 and indeed after I deactivated SK2 new comments shows up in count. In the trouble shoot it says to fix the count of previous comments you need to upgrade to <a href="http://unknowngenius.com/blog/wordpress/spam-karma/">Spam Karma 2.1</a> and follow Options -> SpamKarma -> Approved Comments. Select them all, and run them through the WPCompat plugin.</p>
<p>
After this experience I decided to try out <a href="http://akismet.com/">Akismet</a> which is the default spam filter for Wordpress 2.0. It needs an API key to activate. To obtain the API one needs to sign up at <a href="wordpress.com">wordpress.com</a> not to be confused with wordpress.org.  After you get an account there, log in, go to profiles and you will find a key at the top.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ibao.net/linux/2006/02/14/wordpress-20-no-comment-count-with-sk2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Life Notes going Live! (my new blog)</title>
		<link>http://blog.ibao.net/linux/2006/02/10/life-notes-going-live-my-new-blog/</link>
		<comments>http://blog.ibao.net/linux/2006/02/10/life-notes-going-live-my-new-blog/#comments</comments>
		<pubDate>Fri, 10 Feb 2006 07:52:01 +0000</pubDate>
		<dc:creator>anniec</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://blog.ibao.net/linux/2006/02/10/life-notes-going-live-my-new-blog/</guid>
		<description><![CDATA[I opened my new blog Life Notes. This is where I&#8217;ll be posting the more non technical stuff.
]]></description>
			<content:encoded><![CDATA[<p>I opened my new blog <a href="http://blog.ibao.net/notes">Life Notes</a>. This is where I&#8217;ll be posting the more non technical stuff.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ibao.net/linux/2006/02/10/life-notes-going-live-my-new-blog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WPG2 settings for gallery on another vhost</title>
		<link>http://blog.ibao.net/linux/2005/12/20/wpg2-settings-for-gallery-on-another-vhost/</link>
		<comments>http://blog.ibao.net/linux/2005/12/20/wpg2-settings-for-gallery-on-another-vhost/#comments</comments>
		<pubDate>Tue, 20 Dec 2005 18:04:56 +0000</pubDate>
		<dc:creator>anniec</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://blog.ibao.net/linux/?p=282</guid>
		<description><![CDATA[I installed the WordPress Gallery2 plugin for my other blog. The default installation does not quite work for me since my gallery is accessed via a different vhost even though they&#8217;re both on the same machine, i.e., http://blog.ibao.net/notes points to /var/www/ibao.net/blog/notes and http://gallery.ibao.net points to /var/www/ibao.net/gallery.

To get around it I specified the &#8220;Embedded Path prefix&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>I installed the <a href="http://wpg2.ozgreg.com">WordPress Gallery2 plugin</a> for my other blog. The default installation does not quite work for me since my gallery is accessed via a different vhost even though they&#8217;re both on the same machine, i.e., <a href="http://blog.ibao.net/notes">http://blog.ibao.net/notes</a> points to <code>/var/www/ibao.net/blog/notes</code> and <a href="http://gallery.ibao.net">http://gallery.ibao.net</a> points to <code>/var/www/ibao.net/gallery</code>.</p>
<p>
To get around it I specified the &#8220;Embedded Path prefix&#8221; in the gallery2 plugin options to be &#8220;gallery&#8221;, so that links to gallery would be in the form of http://blog.ibao.net/gallery/notes/path/under/gallery. I then redirect everything under gallery/notes/ on blog.ibao.net to gallery.ibao.net in the <code>.htaccess</code> file, i.e.,</p>
<pre file="/var/www/ibao.net/blog/.htaccess">
redirectMatch 301 ^/gallery/notes/(.*) http://gallery.ibao.net/$1
</pre>
<p>Now it should work.</p>
<p>
As a reference here are my full embedded paths configuration:</p>
<pre code>
Relative Gallery2 Path=      ../../gallery/
Embed Gallery2 Page Name=    wp-gallery2.php
Path from web document root= /notes/
Gallery Error Redirect=      http://blog.ibao.net/notes/index.php
Document Root Path=          /var/www/ibao.net/blog
Embedded Path prefix=        gallery
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.ibao.net/linux/2005/12/20/wpg2-settings-for-gallery-on-another-vhost/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My del.icio.us tag &#038; linkrolls</title>
		<link>http://blog.ibao.net/linux/2005/12/18/my-delicious-linkroll/</link>
		<comments>http://blog.ibao.net/linux/2005/12/18/my-delicious-linkroll/#comments</comments>
		<pubDate>Sun, 18 Dec 2005 13:52:58 +0000</pubDate>
		<dc:creator>anniec</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://blog.ibao.net/linux/2005/12/18/my-delicious-linkroll/</guid>
		<description><![CDATA[Add the following script to include del.icio.us linkroll to a webpage:

&#60;script type="text/javascript" src="http://del.icio.us/feeds/js/anniec?count=10;title=my%20del.icio.us"&#62;&#60;/script&#62;
&#60;noscript>&#60;a href="http://del.icio.us/anniec"&#62;my del.icio.us&#60;/a&#62;&#60;/noscript&#62;

and tags:

&#60;script type="text/javascript" src="http://del.icio.us/feeds/js/tags/anniec?count=20;size=12-35;color=66ff33-006633;title=my%20del.icio.us%20tags"&#62;&#60;/script&#62;

]]></description>
			<content:encoded><![CDATA[<p>Add the following script to include del.icio.us linkroll to a webpage:</p>
<pre code>
&lt;script type="text/javascript" src="http://del.icio.us/feeds/js/anniec?count=10;title=my%20del.icio.us"&gt;&lt;/script&gt;
&lt;noscript>&lt;a href="http://del.icio.us/anniec"&gt;my del.icio.us&lt;/a&gt;&lt;/noscript&gt;
</pre>
<p>and tags:</p>
<pre code>
&lt;script type="text/javascript" src="http://del.icio.us/feeds/js/tags/anniec?count=20;size=12-35;color=66ff33-006633;title=my%20del.icio.us%20tags"&gt;&lt;/script&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.ibao.net/linux/2005/12/18/my-delicious-linkroll/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Gmail Mobile</title>
		<link>http://blog.ibao.net/linux/2005/12/16/gmail-mobile/</link>
		<comments>http://blog.ibao.net/linux/2005/12/16/gmail-mobile/#comments</comments>
		<pubDate>Fri, 16 Dec 2005 16:50:01 +0000</pubDate>
		<dc:creator>anniec</dc:creator>
		
		<category><![CDATA[k700i]]></category>

		<guid isPermaLink="false">http://blog.ibao.net/linux/?p=280</guid>
		<description><![CDATA[When I read that Google has opened up access to Gmail for mobile phones I was eager to give it a try.  I opened up the default browser in my Sony Ericsson k700i phone and entered http://m.gmail.com. The page loaded fine, logged in, but it says I need to enable cookies on this browser&#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>When I read that Google has opened up access to Gmail for mobile phones I was eager to give it a try.  I opened up the default browser in my Sony Ericsson k700i phone and entered <a href="http://m.gmail.com">http://m.gmail.com</a>. The page loaded fine, logged in, but it says I need to enable cookies on this browser&#8230; hum. </p>
<p>
I doubt the default browser even has cookies support so I installed <a href="http://www.opera.com/products/mobile/operamini/">Opera Mini</a> which is a J2ME browser. Loaded it, complained about the lack of encryption and displayed garbled output for the login page&#8230; hum. I tried going to the normal gmail page (http://www.gmail.com) and was able to login from there. I then opened http://m.gmail.com and voila! I was in.</p>
<p>
The main page displayed what is in your inbox, links to compose, contacts, more views and a search box. When you click on a message thread it takes you to the conversation view like in Gmail and you can click on each conversation to see the full email. The contacts view shows links to the people whom you most frequently email and a search box to other contacts. When there is a number on the page you can select it and it would ask if you would like to call this number. Nifty.</p>
<p>
Apart from the problematic initial setup, I&#8217;m quite happy with this service. Through Gmail&#8217;s search oriented design I could have access to all my emails and contacts with minimal amount of data transfer (though this depends on your inbox being relatively clean). The interface is clean and efficient. This could come in quite handy :).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ibao.net/linux/2005/12/16/gmail-mobile/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WordPress 1.5 hack to search custom field values</title>
		<link>http://blog.ibao.net/linux/2005/12/14/276/</link>
		<comments>http://blog.ibao.net/linux/2005/12/14/276/#comments</comments>
		<pubDate>Wed, 14 Dec 2005 16:04:26 +0000</pubDate>
		<dc:creator>anniec</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://blog.ibao.net/linux/?p=276</guid>
		<description><![CDATA[I previously installed the RustAside &#038; RustLinkOff plugins to add sidenotes and links to my blog enty. Got it to work beautifully except that the content is not searchable. I found this Search Meta Hack that makes search queries look at custom field values in addition to post content. The patch didn&#8217;t apply cleanly so [...]]]></description>
			<content:encoded><![CDATA[<p>I previously installed the RustAside &#038; RustLinkOff plugins to add sidenotes and links to my blog enty. Got it to work beautifully except that the content is not searchable. I found this <a href="http://randomfrequency.net/wordpress/search-meta/">Search Meta Hack</a> that makes search queries look at custom field values in addition to post content. The patch didn&#8217;t apply cleanly so here&#8217;s my actual diff after the manual patch:</p>
<pre file="wp-include/classes.php">
363a364,366
>                               for ($i = 0; $i < count($s_array); $i = $i + 1) {
>                                       $search .= &#8216; OR (&#8217;. $wpdb->postmeta .&#8217;.post_id=&#8217;. $wpdb->posts .&#8217;.id AND &#8216;. $wpdb->postmeta .&#8217;.meta_value LIKE \&#8221;. $n . $s_array[$i] . $n . &#8216;\&#8217;)';
>                               }
550c553
<               $request = " SELECT $distinct * FROM $wpdb->posts $join WHERE 1=1&#8243;.$where.&#8221; ORDER BY &#8221; . $orderby . &#8221; $limits&#8221;;
&#8212;
>               $request = &#8221; SELECT $distinct * FROM $wpdb->posts, $wpdb->postmeta $join WHERE 1=1&#8243;.$where.&#8221; ORDER BY &#8221; . $orderby . &#8221; $limits&#8221;;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.ibao.net/linux/2005/12/14/276/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Start Thunderbird with Calendar</title>
		<link>http://blog.ibao.net/linux/2005/12/13/start-thunderbird-with-calendar/</link>
		<comments>http://blog.ibao.net/linux/2005/12/13/start-thunderbird-with-calendar/#comments</comments>
		<pubDate>Tue, 13 Dec 2005 15:24:42 +0000</pubDate>
		<dc:creator>anniec</dc:creator>
		
		<category><![CDATA[Application]]></category>

		<guid isPermaLink="false">http://blog.ibao.net/linux/2005/12/13/start-thunderbird-with-calendar/</guid>
		<description><![CDATA[You can specify thunderbird to open the sunbird calendar window on startup by running the following command:

/usr/bin/thunderbird -mail -calendar

]]></description>
			<content:encoded><![CDATA[<p>You can specify thunderbird to open the sunbird calendar window on startup by running the following command:</p>
<pre code>
/usr/bin/thunderbird -mail -calendar
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.ibao.net/linux/2005/12/13/start-thunderbird-with-calendar/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
