Changes between Version 9 and Version 10 of IcalExporterPlugin


Ignore:
Timestamp:
Jun 11, 2008, 5:35:38 PM (16 years ago)
Author:
Jeff Hammel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • IcalExporterPlugin

    v9 v10  
    1 = export iCalendar format for pages with an RSS feed =
     1[[Include(source:icalexporterplugin/0.11/README.txt, text/x-trac-wiki)]]
    22
    3 == Description ==
     3== Example ==
    44
    5 '''read trac feeds in your calendar!'''
     5Click on the [http://trac.openplans.org/sandbox/timeline Timeline] navigation item in a trac instance where this plugin is enabled.  Scroll to the bottom of the page.  The ability to download as iCalendar should be evident:
    66
    7 For out of the box trac, only the [http://trac.edgewall.org/roadmap roadmap module] has an [http://trac.edgewall.org/roadmap?format=ics iCal feed].  the IcalExporterPlugin exposes an [http://ietf.org/rfc/rfc2445.txt iCal format] in the ''"Download in other formats"'' section.  The calendar is created by parsing the RSS feed for the page and transforming it to iCal format.  The calendar can then be read by (e.g.) [http://google.com/calendar google calendar] by using the [http://google.com/support/calendar/bin/answer.py?hl=en&answer=37100 "Add by URL"] feature. 
     7[[Image(icalexample.png)]]
    88
    9 [[Include(source:icalexporterplugin/0.11/README.txt, text/x-trac-wiki)]]
     9''from http://trac.openplans.org/sandbox/timeline''
    1010
    1111== Bugs/Feature Requests ==
     
    2424You can [/svn/icalexporterplugin check out] the source using Subversion, or [source:icalexporterplugin browse] with Trac.
    2525
    26 == Example ==
    27 
    28 Click on the [http://trac.openplans.org/sandbox/timeline Timeline] navigation item in a trac instance where this plugin is enabled.  Scroll to the bottom of the page.  The ability to download as iCalendar should be evident:
    29 
    30 [[Image(icalexample.png)]]
    31 
    32 ''from http://trac.openplans.org/sandbox/timeline''
    33 
    34 == How it Works ==
    35 
    36 The IcalExporterPlugin examines if a page has an RSS feed.  If it does, it adds a iCalendar download option as well.  The brunt of the work is done by [/svn/icalexporterplugin/0.11/icalexporter/ical.py ical.py], which writes the iCalendar format (most of the hard work was stolen from [http://trac.edgewall.org/browser/trunk/trac/ticket/roadmap.py the roadmap module]).  [/svn/icalexporterplugin/0.11/icalexporter/ical.py ical.py] is independent of trac and should probably be moved upstream of the plugin or of trac entirely.
    3726
    3827== Recent Changes ==