I'm writing a script to pull my Stackoverflow activity feed into a webpage, it looks something like this:
#!/usr/bin/perl
use strict;
use warnings;
use XML::Feed;
use Template;
my $stackoverflow_id = 1691146;
my $stackoverflow_url = "http://stackoverflow.com/feeds/user/$stackoverflow_id";
my $template = <<'TEMPLATE';
[% FOREACH item = items %]
[% item.title %]
[% END %]
TEMPLATE
my $tt = Template->new( 'STRICT' => 1 )
or die "Failed to load template: $Template::ERROR\n";
my $feed = XML::Feed->parse(URI->new($stackoverflow_url));
$tt->process( \$template, $feed )
or die $tt->error();
The template should iterate my activity feed (from XML::Feed->items()) and print the title of each. When I run this code I get:
var.undef error - undefined variable: items
To get it to work I had to change the process line to:
$tt->process( \$template, { 'items' => [ $feed->items ] } )
Can anyone explain why Template::Toolkit appears unable to use the XML::Feed->items() method?
I've had something similar working with XML::RSS:
my $rss = XML::RSS->new();
$rss->parse($feed);
$tt->process ( \$template, $rss )
or die $tt->error();