Wiki::Toolkit::Feed::RSS is a Perl module that can output RecentChanges RSS for Wiki::Toolkit.
SYNOPSIS
use Wiki::Toolkit;
use Wiki::Toolkit::Feed::RSS;
my $wiki = CGI::Wiki->new( ... ); # See perldoc Wiki::Toolkit
# Set up the RSS feeder with the mandatory arguments - see
# C below for more, optional, arguments.
my $rss = Wiki::Toolkit::Feed::RSS->new(
wiki => $wiki,
site_name => 'My Wiki',
site_url => 'http://example.com/',
make_node_url => sub
{
my ($node_name, $version) = @_;
return 'http://example.com/?id=' . uri_escape($node_name) . ';version=' . uri_escape($version);
},
html_equiv_link => 'http://example.com/?RecentChanges',
encoding => 'UTF-8'
);
print "Content-type: application/xmlnn";
print $rss->recent_changes;
Product's homepage
Requirements:
· Perl