XML::Generator::RSS10::sy - Support for the Syndication (sy) RSS 1.0 module


XML-Generator-RSS10 documentation  | view source Contained in the XML-Generator-RSS10 distribution.

Index


NAME

Top

XML::Generator::RSS10::sy - Support for the Syndication (sy) RSS 1.0 module

SYNOPSIS

Top

    use XML::Generator::RSS10;

    my $rss = XML::Generator::RSS10->new( Handler => $sax_handler );

    $rss->item( title => 'Exciting News About my Pants!',
                link  => 'http://pants.example.com/my/news.html',
                description => 'My pants are full of ants!',
              );

    $rss->channel( title => 'Pants',
                   link  => 'http://pants.example.com/',
                   description => 'A fascinating pants site',
                   sy    => { updatePeriod    => 'hourly',
                              updateFrequency => 2,
                            },
                 );

DESCRIPTION

Top

This module provides support for the Syndication (sy) RSS 1.0 module.

PARAMETERS

Top

This module handles all of the Syndication elements: "updatePeriod", "updateFrequency", and "updateBase".


XML-Generator-RSS10 documentation  | view source Contained in the XML-Generator-RSS10 distribution.