
Babble::Output::RSS - RSS output method for Babble

use Babble;
my $babble = Babble->new ();
...
print $babble->output (-type => "RSS",
meta_title => "Example Babble",
meta_desc => "This is an example babble");

This module implements the RSS output method for Babble, thus, it only has one method: output(), which generates RSS 1.0 output from the available items.

This output method recognises the following arguments, either via the passed Babble objects ->{Params} hashref, or via %params:
The name of the Babble, used as the RSS channel title.
A short description of the Babble, used as the RSS channel description.
A link to the site for which the RSS is a feed, used as the RSS channel link.
This is an optional argument.
The e-mail of the Babble owner, used as the RSS channel creator.
This too, is an optional argument.
An image associated with the feed. This must be a HASH reference, containing at least the url and link keys. The title, width ad height keys are also recognised.

Gergely Nagy, algernon@bonehunter.rulez.org
Bugs should be reported at http://bugs.bonehunter.rulez.org/babble.

Babble, Babble::Output, XML::RSS