XML::RSS::JavaScript can serialize your RSS as JavaScript.
SYNOPSIS
use XML::RSS::JavaScript;
my $rss = XML::RSS::JavaScript->new();
$rss->channel(
title => 'My Channel',
link => 'http://my.url.com',
description => 'My RSS Feed.'
);
$rss->add_item(
title => 'My item #1',
link => 'http://my.item.com#1',
description => 'My first news item.'
);
$rss->add_item(
title => 'My item #2',
link => 'http://my.item.com#2',
description => 'My second news item.'
);
# save rss
$rss->save( '/usr/local/apache/htdocs/myfeed.xml' );
# save identical content as javascript
$rss->save_javascript( '/usr/local/apache/htdocs/myfeed.js');
Perhaps you use XML::RSS to generate RSS for consumption by RSS parsers. Perhaps you also get requests for how to use the RSS feed by people who have no idea how to parse XML, or write Perl programs for that matter.
Enter XML::RSS::JavaScript, a simple subclass of XML::RSS which writes your RSS feed as a sequence of JavaScript print statements. This means you can then write the JavaScript to disk, and a users HTML can simply include it like so:
< script language="JavaScript" src="/myfeed.js" >< /script >
What's more the javascript emits HTML that can be fully styled with CSS. See the CSS examples included with the distribution in the css directory.
< html >
< head >
< link rel="stylesheet" type="text/css" href="/css/rollover1.css" >
< /head >
< body >
Your content here...
< script language="JavaScript" src="http://my.feed.com//myfeed.js" >< /script >
< /body >
< /html >
Product's homepage
Requirements:
· Perl