The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

XML::Generator::RSS10::admin - Support for the Administrative (admin) RSS 1.0 module

VERSION

version 0.02

SYNOPSIS

    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',
                   admin => { errorReportsTo => 'pantsmaster@example.com',
                              generatorAgent => 'http://generator.example.com/',
                            },
                 );

DESCRIPTION

This module provides support for the Administrative (admin) RSS 1.0 module.

PARAMETERS

This module handles only two parameters, "errorReportsTo" and "generatorAgent", both of which are channel subelements.

AUTHOR

Dave Rolsky <autarch@urth.org>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2011 by Dave Rolsky.

This is free software, licensed under:

  The Artistic License 2.0 (GPL Compatible)