#!/usr/bin/perl -w
# create_rss.pl
# creates and prints RSS 0.9 file
use
strict;
use
XML::RSS;
my
$rss
= new XML::RSS(
version
=>
'0.9'
);
$rss
->channel(
title
=>
"freshmeat.net"
,
description
=>
"the one-stop-shop for all your Linux software needs"
);
$rss
->image(
title
=>
"freshmeat.net"
,
);
$rss
->add_item(
title
=>
"GTKeyboard 0.85"
,
);
$rss
->add_item(
title
=>
"Spruce 0.4.7b"
,
);
$rss
->textinput(
title
=>
"quick finder"
,
description
=>
"Use the text input below to search freshmeat"
,
name
=>
"query"
,
);
$rss
->as_string;
#$rss->save("fm.rdf");