iCal::Parser::SAX - Generate SAX events from an iCalendar


iCal-Parser-SAX documentation  | view source Contained in the iCal-Parser-SAX distribution.

Index


NAME

Top

iCal::Parser::SAX - Generate SAX events from an iCalendar

SYNOPSIS

Top

  use iCal::Parser::SAX;
  my $parser=iCal::Parser::SAX->new(Handler=>SAXHandler,%args);
  $parser->parse_uri($file);
  $parser->parse_uris(@files);

DESCRIPTION

Top

This module uses iCal::Parser to generates SAX events for the calendar contents.

The xml document generated is designed for creating monthly calendars with weeks beginning on monday (e.g., by passing the output through an xsl styleheet).

The basic structure of the generated document (if output through a simple output handler like XML::SAX::Writer), is as follows:

  <ical>
    <calendars>
     <calendar id="cal-id" index="n" name="..." description="..."/>
    </calendars>
    <events>
     <year year="YYYY">
       <month month="[1-12]">
         <week week="n">
           <day date="YYYY-MM-DD">
             <event uid="event-id" idref="cal-id" [all-day="1"]>
               <!-- ... -->
             </event>
           </day>
         </week>
       </month>
    </events>
    <todos>
      <todo idref="cal-id" uid="...">
        <!--- ... -->
      </todo>
    </todos>
  </ical>

Along with basics, such as converting calendar attributes to lowercase elements (e.g., a DTSTART attribute in the input would generate a sax event like element({Name='dtstart'})>), a number of other processes occur:

METHODS

Top

Along with the standard SAX parsing methods parse_uri, parse_file, etc.), the following methods are supported.

new(%args)

Create a new SAX parser. All arguments other than Handler and no_escape are passed to iCal::Parser.

Arguments

Handler

The SAX handler.

no_escape

If not set, quotes, ampersands and apostrophes are converted to entites. In any case < is converted to an entity, \\n is converted to the return entity and double backslashes (\\) are removed.

parse_uris(@uris)

Pass all the input uris to iCal::Parser and generate a combined output calendar.

parse_hash($hash)

Parse the hash returned from iCal::Parser::calendar directly.

AUTHOR

Top

Rick Frankel, cpan@rickster.com

COPYRIGHT

Top

SEE ALSO

Top

iCal::Parser, XML::SAX::Base


iCal-Parser-SAX documentation  | view source Contained in the iCal-Parser-SAX distribution.