| Title | iCalendar Plugin |
| Date | 04-Dec-2004 07:39:46 EET |
| JSPWiki version | |
| Submitter | RonCraig |
| Idea Category | PluginIdea |
| Reference | CalendarPluginIdea |
| Status | NewIdea |
With all this work going on to get iCalendar running elsewhere, it would be nice to have a plugin that could consume iCalendar or hCalendar
data and display it. Perhaps we could use MDeichsel's calendar tag change to open an iCalendar editor?
Basically, I'd like a way to share iCalendar info and view it on my home wiki.
04 December 2004
Okay, so here's the easiest way I see so far to do this... I set the MIME type in Tomcat's conf/web.xml: <mime-mapping>
<extension>ics</extension>
<mime-type>text/calendar</mime-type>
</mime-mapping>
and then simply added a link to LeftMenu.jsp pointing off to, say, http://myhost
:8080/shared.ics. Click on the link, and my Mozilla Firefox browser (to which I've added the calendar extension
) pops open a new window offering to open the calendar. Note: You may need to clear your browser cache and restart Tomcat for the MIME types to start coming out correctly.
Now I've got to figure out the proper way to publish any changes back to the calendar file. Any ideas? --RonCraig
Got it. Read HOW-TO: WebDAV Primary Mozilla Calendar
for publishing you .ics file to Tomcat so that it is updated automatically.