Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
I have use XML::RSSLite with some success. The following is a simple CGI that displays an RSS feed as a web page.
#! /usr/bin/perl -w use strict; use warnings; use CGI; use LWP; use XML::RSSLite; use Data::Dumper; my $cgi = new CGI; print $cgi->header; print $cgi->start_html('RSS Feed'); my $rssUrl = 'http://news.bbc.co.uk/rss/newsonline_uk_edition/business +/rss091.xml'; my $rssContent; my $ua = LWP::UserAgent->new; $ua->timeout(10); my $response = $ua->get($rssUrl); if ($response->is_success) { $rssContent = $response->content; # or whatever } print "Getting $rssUrl\n"; # print $response->code, "Content ->", $rssContent; if ($rssContent) { my %rssHash; parseRSS(\%rssHash, \$rssContent); print $cgi->h1($rssHash{'title'}); print $cgi->a({href=>$rssHash{'image'}->{'link'}}, $cgi->img({src=>$rssHash{'image'}->{'url'}}) ); foreach my $item (@{$rssHash{'item'}}) { print "<p>\n", "Title: $item->{'title'}<br>\n", "Desc: $item->{'description'}<br>\n", "Link: <a href=\"$item->{'link'}\">$item->{'link'}</a>\n"; } # print "<pre>", Dumper(\%rssHash), "</pre>"; } else { print $cgi->h1("Error ",$response->message); } print $cgi->end_html();

In reply to Re: Writing a simple RSS feed 'grabber' with XML::Parser. by inman
in thread Writing a simple RSS feed 'grabber' with XML::Parser. by DigitalKitty

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (6)
As of 2024-04-18 17:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found