<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://microformats.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=ReinholdKainhofer</id>
	<title>Microformats Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://microformats.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=ReinholdKainhofer"/>
	<link rel="alternate" type="text/html" href="http://microformats.org/wiki/Special:Contributions/ReinholdKainhofer"/>
	<updated>2026-05-11T16:35:23Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.4</generator>
	<entry>
		<id>http://microformats.org/wiki/index.php?title=icalendar-implementations&amp;diff=13165</id>
		<title>icalendar-implementations</title>
		<link rel="alternate" type="text/html" href="http://microformats.org/wiki/index.php?title=icalendar-implementations&amp;diff=13165"/>
		<updated>2007-01-05T16:52:57Z</updated>

		<summary type="html">&lt;p&gt;ReinholdKainhofer: Add KOrganizer&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= iCalendar implementations = &lt;br /&gt;
&lt;br /&gt;
In the development of [[hcalendar|hCalendar]] and proxies like X2V, we have discovered various behaviors and quirks of RFC 2445 iCalendar implementations.&lt;br /&gt;
&lt;br /&gt;
This page is here for keeping track of them.&lt;br /&gt;
&lt;br /&gt;
== Contributors==&lt;br /&gt;
* Tantek Çelik&lt;br /&gt;
* [[DimitriGlazkov|Dimitri Glazkov]]&lt;br /&gt;
&lt;br /&gt;
== Products ==&lt;br /&gt;
&lt;br /&gt;
=== iCal.app ===&lt;br /&gt;
&lt;br /&gt;
platform: OSX&lt;br /&gt;
&lt;br /&gt;
==== subscription handling ====&lt;br /&gt;
&lt;br /&gt;
supports the non-standard &amp;quot;webcal:&amp;quot; protocol&lt;br /&gt;
&lt;br /&gt;
=== KOrganizer ===&lt;br /&gt;
&lt;br /&gt;
platform: All Linux, *BSD, etc. (Wherever KDE runs)&lt;br /&gt;
&lt;br /&gt;
==== subscription handling ====&lt;br /&gt;
&lt;br /&gt;
supports the non-standard &amp;quot;webcal:&amp;quot; protocol, as well as &amp;quot;http:&amp;quot;, &amp;quot;ftp:&amp;quot;, &amp;quot;fish:&amp;quot;, etc.&lt;br /&gt;
&lt;br /&gt;
=== Evolution ===&lt;br /&gt;
&lt;br /&gt;
platform: Fedora Core 3&lt;br /&gt;
&lt;br /&gt;
==== subscription handling ====&lt;br /&gt;
&lt;br /&gt;
supports the non-standard &amp;quot;webcal:&amp;quot; protocol&lt;br /&gt;
&lt;br /&gt;
=== Sunbird ===&lt;br /&gt;
&lt;br /&gt;
AKA [http://www.mozilla.org/projects/calendar/sunbird.html Mozilla Sunbird]&lt;br /&gt;
&lt;br /&gt;
platform: XP, others?&lt;br /&gt;
&lt;br /&gt;
==== subscription handling ====&lt;br /&gt;
&lt;br /&gt;
supports the non-standard &amp;quot;webcal:&amp;quot; protocol&lt;br /&gt;
&lt;br /&gt;
=== Microsoft Outlook ===&lt;br /&gt;
&lt;br /&gt;
platform: 2003&lt;br /&gt;
&lt;br /&gt;
==== Importing of VEvents ====&lt;br /&gt;
&lt;br /&gt;
Requires &amp;lt;code&amp;gt;UID&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;DTSTAMP&amp;lt;/code&amp;gt;, and &amp;lt;code&amp;gt;METHOD&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If any of the three is not present, returns this message:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
This error can appear if you have attempted to save a recurring Lunar appointment in iCalendar format.&lt;br /&gt;
To avoid this error, set the appointment option to Gregorian instead of Lunar.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After some testing, this seems to be the generic message to indicate a problem with event import.&lt;br /&gt;
&lt;br /&gt;
No such restriction is placed on [http://www.imc.org/pdi/vcal-10.txt iCal 1.0] events. So, if &amp;lt;code&amp;gt;VERSION:1.0&amp;lt;/code&amp;gt; is output instead of &amp;lt;code&amp;gt;VERSION:2.0&amp;lt;/code&amp;gt;, the only required field is &amp;lt;code&amp;gt;DTSTART&amp;lt;/code&amp;gt;. &lt;br /&gt;
Note that &amp;lt;code&amp;gt;VERSION&amp;lt;/code&amp;gt; property may be omitted. In this case, value inferred as &amp;lt;code&amp;gt;1.0&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===== Minimal valid iCal 2.0 event, importable by MS Outlook 2003 =====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
BEGIN:VCALENDAR&lt;br /&gt;
VERSION:2.0&lt;br /&gt;
METHOD:PUBLISH&lt;br /&gt;
BEGIN:VEVENT&lt;br /&gt;
UID:0&lt;br /&gt;
DTSTAMP:20060601T080000&lt;br /&gt;
DTSTART:20060601T080000&lt;br /&gt;
END:VEVENT&lt;br /&gt;
END:VCALENDAR&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== Minimal valid iCal 1.0 event, importable by MS Outlook 2003 =====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
BEGIN:VCALENDAR&lt;br /&gt;
BEGIN:VEVENT&lt;br /&gt;
DTSTART:20060601T080000&lt;br /&gt;
END:VEVENT&lt;br /&gt;
END:VCALENDAR&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Related Pages ==&lt;br /&gt;
{{hcalendar-related-pages}}&lt;/div&gt;</summary>
		<author><name>ReinholdKainhofer</name></author>
	</entry>
</feed>