<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Google Calendar to Palm Desktop conversion</title>
	<atom:link href="http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/feed/" rel="self" type="application/rss+xml" />
	<link>http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-calendar-to-palm-desktop-conversion</link>
	<description>voices in my head</description>
	<lastBuildDate>Mon, 30 Jan 2012 09:46:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Rick</title>
		<link>http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/comment-page-5/#comment-6719</link>
		<dc:creator>Rick</dc:creator>
		<pubDate>Thu, 01 Dec 2011 07:34:13 +0000</pubDate>
		<guid isPermaLink="false">http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/#comment-6719</guid>
		<description>tried this to convert Yahoo cal .ics to Palm desktop v6.2.2; with partial success... dates are ok, as is repeating-- times are screwed up and titles are ALL just &quot;Reminder&quot;... d&#039;oh (that will teach me to back-up before trying crap like this, i spose)</description>
		<content:encoded><![CDATA[<p>tried this to convert Yahoo cal .ics to Palm desktop v6.2.2; with partial success&#8230; dates are ok, as is repeating&#8211; times are screwed up and titles are ALL just &#8220;Reminder&#8221;&#8230; d&#8217;oh (that will teach me to back-up before trying crap like this, i spose)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cpbotha</title>
		<link>http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/comment-page-5/#comment-6619</link>
		<dc:creator>cpbotha</dc:creator>
		<pubDate>Mon, 28 Nov 2011 10:18:38 +0000</pubDate>
		<guid isPermaLink="false">http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/#comment-6619</guid>
		<description>Thank you very much for the detailed write-up on how you did this! It&#039;s sure to help others. :)</description>
		<content:encoded><![CDATA[<p>Thank you very much for the detailed write-up on how you did this! It&#8217;s sure to help others. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kenneth Otto</title>
		<link>http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/comment-page-5/#comment-6607</link>
		<dc:creator>Kenneth Otto</dc:creator>
		<pubDate>Sun, 27 Nov 2011 18:16:44 +0000</pubDate>
		<guid isPermaLink="false">http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/#comment-6607</guid>
		<description>Thank you so much for this application.  In these days of a slow economy and spouses being out of work - mine being one - it is so nice to be able to save money and still remain on time for my appointments.</description>
		<content:encoded><![CDATA[<p>Thank you so much for this application.  In these days of a slow economy and spouses being out of work &#8211; mine being one &#8211; it is so nice to be able to save money and still remain on time for my appointments.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/comment-page-5/#comment-6498</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Wed, 23 Nov 2011 16:12:53 +0000</pubDate>
		<guid isPermaLink="false">http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/#comment-6498</guid>
		<description>Thank you for doing this, it worked the first time I tried it. A life saver for sure.</description>
		<content:encoded><![CDATA[<p>Thank you for doing this, it worked the first time I tried it. A life saver for sure.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Howard Abbey</title>
		<link>http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/comment-page-5/#comment-6476</link>
		<dc:creator>Howard Abbey</dc:creator>
		<pubDate>Wed, 23 Nov 2011 03:20:46 +0000</pubDate>
		<guid isPermaLink="false">http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/#comment-6476</guid>
		<description>Thanks much for creating &amp; sharing the calendar conversion script.  It is a big help.  It did not work perfectly for my needs, but that is likely due to my source format than the converter.  
I wanted to convert my exported calendar from Kopi (a Konqueror calendar off-shoot).  My file is 2,600 kb, covering multiple years.
The web CGI interface replied with a network time-out first try, and an error from the CGI script the second: &quot;Error parsing your upload: mktime argument out of range&quot;.  I suspect that my file was too big for the script to finish within the time limits given by the web server for a reply.
So I downloaded the Python vcal.py as suggested on October 16, 2011 at 10:09.  This worked well.  However, on my system the Python commands needed to be a little different.  Pretty good though, since you were going from memory.
I did (with the multiple errors figuring it out removed):
$ python
Python 2.6.6 (r266:84292, Dec 26 2010, 22:31:48)
[GCC 4.4.5] on linux2
Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information.
&gt;&gt;&gt; import vcal
&gt;&gt;&gt; inputfile = open(&#039;yourfilename.ics&#039;)
&gt;&gt;&gt; cal = vcal.parse(inputfile)
&gt;&gt;&gt; outputfile = open(&#039;myoutputfilename.vcs&#039;,&#039;w&#039;)
&gt;&gt;&gt; outputfile.write(cal.as_vcal())
&gt;&gt;&gt; quit()

This got the data able to be imported to Palm Desktop without any reported errors.  Very nice.
The result was many more events than expected.  Many having a daily repetition with an end date of 12/30/2031 in Palm Desktop.  These events had a repetition end date in  the past in the original data, but probably in a non-standard format.
This should be much easier to clean up to a usable state than having no data in my palm at all.  Much thanks!</description>
		<content:encoded><![CDATA[<p>Thanks much for creating &amp; sharing the calendar conversion script.  It is a big help.  It did not work perfectly for my needs, but that is likely due to my source format than the converter.<br />
I wanted to convert my exported calendar from Kopi (a Konqueror calendar off-shoot).  My file is 2,600 kb, covering multiple years.<br />
The web CGI interface replied with a network time-out first try, and an error from the CGI script the second: &#8220;Error parsing your upload: mktime argument out of range&#8221;.  I suspect that my file was too big for the script to finish within the time limits given by the web server for a reply.<br />
So I downloaded the Python vcal.py as suggested on October 16, 2011 at 10:09.  This worked well.  However, on my system the Python commands needed to be a little different.  Pretty good though, since you were going from memory.<br />
I did (with the multiple errors figuring it out removed):<br />
$ python<br />
Python 2.6.6 (r266:84292, Dec 26 2010, 22:31:48)<br />
[GCC 4.4.5] on linux2<br />
Type &#8220;help&#8221;, &#8220;copyright&#8221;, &#8220;credits&#8221; or &#8220;license&#8221; for more information.<br />
&gt;&gt;&gt; import vcal<br />
&gt;&gt;&gt; inputfile = open(&#8216;yourfilename.ics&#8217;)<br />
&gt;&gt;&gt; cal = vcal.parse(inputfile)<br />
&gt;&gt;&gt; outputfile = open(&#8216;myoutputfilename.vcs&#8217;,'w&#8217;)<br />
&gt;&gt;&gt; outputfile.write(cal.as_vcal())<br />
&gt;&gt;&gt; quit()</p>
<p>This got the data able to be imported to Palm Desktop without any reported errors.  Very nice.<br />
The result was many more events than expected.  Many having a daily repetition with an end date of 12/30/2031 in Palm Desktop.  These events had a repetition end date in  the past in the original data, but probably in a non-standard format.<br />
This should be much easier to clean up to a usable state than having no data in my palm at all.  Much thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sandor Schuman</title>
		<link>http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/comment-page-5/#comment-6447</link>
		<dc:creator>Sandor Schuman</dc:creator>
		<pubDate>Mon, 21 Nov 2011 19:37:37 +0000</pubDate>
		<guid isPermaLink="false">http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/#comment-6447</guid>
		<description>Thanks. Much appreciated. Worked flawlessly.</description>
		<content:encoded><![CDATA[<p>Thanks. Much appreciated. Worked flawlessly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cpbotha</title>
		<link>http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/comment-page-5/#comment-5870</link>
		<dc:creator>cpbotha</dc:creator>
		<pubDate>Sun, 16 Oct 2011 09:09:41 +0000</pubDate>
		<guid isPermaLink="false">http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/#comment-5870</guid>
		<description>Thank you very much for the compliment!

If you have Python on your machine and a bit of time, you could use the Python source code directly to convert your calendar files.

At the Python prompt in the same directory as the downloaded http://code.google.com/p/ical2vcal/source/browse/trunk/vcal.py do:
&lt;code&gt;
import vcal
inputfile = open(&#039;yourfilename&#039;)
cal = vcal.parse(f.read())
outputfile = open(&#039;outputfilename&#039;, &#039;w&#039;)
outputfile.write(cal.as_vcal())
&lt;/code&gt;

This is from the top of my head. :)</description>
		<content:encoded><![CDATA[<p>Thank you very much for the compliment!</p>
<p>If you have Python on your machine and a bit of time, you could use the Python source code directly to convert your calendar files.</p>
<p>At the Python prompt in the same directory as the downloaded <a href="http://code.google.com/p/ical2vcal/source/browse/trunk/vcal.py" rel="nofollow">http://code.google.com/p/ical2vcal/source/browse/trunk/vcal.py</a> do:<br />
<code><br />
import vcal<br />
inputfile = open('yourfilename')<br />
cal = vcal.parse(f.read())<br />
outputfile = open('outputfilename', 'w')<br />
outputfile.write(cal.as_vcal())<br />
</code></p>
<p>This is from the top of my head. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dwight</title>
		<link>http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/comment-page-5/#comment-5605</link>
		<dc:creator>Dwight</dc:creator>
		<pubDate>Mon, 03 Oct 2011 15:01:07 +0000</pubDate>
		<guid isPermaLink="false">http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/#comment-5605</guid>
		<description>This is a great tool.  Is there any change that a windows version might be available rather than the web tool?  I have only intermitent access to web from my location (Afghanistan).

Thanks,
Dwight...</description>
		<content:encoded><![CDATA[<p>This is a great tool.  Is there any change that a windows version might be available rather than the web tool?  I have only intermitent access to web from my location (Afghanistan).</p>
<p>Thanks,<br />
Dwight&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cpbotha</title>
		<link>http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/comment-page-5/#comment-5480</link>
		<dc:creator>cpbotha</dc:creator>
		<pubDate>Tue, 20 Sep 2011 21:07:46 +0000</pubDate>
		<guid isPermaLink="false">http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/#comment-5480</guid>
		<description>Thank you very much for your kind words!

The site has no plans of going anywhere at the moment. ;)</description>
		<content:encoded><![CDATA[<p>Thank you very much for your kind words!</p>
<p>The site has no plans of going anywhere at the moment. ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Waddell</title>
		<link>http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/comment-page-5/#comment-5478</link>
		<dc:creator>Jim Waddell</dc:creator>
		<pubDate>Tue, 20 Sep 2011 19:09:38 +0000</pubDate>
		<guid isPermaLink="false">http://cpbotha.net/2007/04/26/google-calendar-to-palm-desktop-conversion/#comment-5478</guid>
		<description>You are a life saver. Our institution  is moving away from Oracle calendar to Google. I can sync Oracle but not Google. With your utility, my trusty old Palm Zire 71 has had its life extended.
Thanks

(Hope this little site stays up for a while!)</description>
		<content:encoded><![CDATA[<p>You are a life saver. Our institution  is moving away from Oracle calendar to Google. I can sync Oracle but not Google. With your utility, my trusty old Palm Zire 71 has had its life extended.<br />
Thanks</p>
<p>(Hope this little site stays up for a while!)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

