Changes between Version 6 and Version 7 of IcalExporterPlugin


Ignore:
Timestamp:
Jun 10, 2008, 10:33:40 PM (16 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • IcalExporterPlugin

    v6 v7  
    55'''read trac feeds in your calendar!'''
    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://www.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://www.google.com/calendar google calendar] by using the [http://www.google.com/support/calendar/bin/answer.py?hl=en&answer=37100 "Add by URL"] feature. 
     7For 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. 
    88
    99
    1010== Bugs/Feature Requests ==
    1111
    12 Existing bugs and feature requests for IcalExporterPlugin are
    13 [report:9?COMPONENT=IcalExporterPlugin here].
     12Existing bugs and feature requests for IcalExporterPlugin are [query:status!=closed&component=IcalExporterPlugin&order=priority here].
    1413
    1514If you have any issues, create a
    16 [http://trac-hacks.org/newticket?component=IcalExporterPlugin&owner=k0s new ticket].
     15[/newticket?component=IcalExporterPlugin&owner=k0s new ticket].
    1716
    1817== Download ==
     
    2221== Source ==
    2322
    24 You can check out IcalExporterPlugin from [http://trac-hacks.org/svn/icalexporterplugin here] using Subversion, or [source:icalexporterplugin browse the source] with Trac.
     23You can [/svn/icalexporterplugin check out] the source using Subversion, or [source:icalexporterplugin browse] with Trac.
    2524
    2625== Example ==
     
    3433== How it Works ==
    3534
    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 [http://trac-hacks.org/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]).  [http://trac-hacks.org/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.
     35The 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.
    3736
    3837== Recent Changes ==