in reply to Re^2: Using XML::RSS to produce an RSS 2.0 feed with Dates within Items
in thread Using XML::RSS to produce an RSS 2.0 feed with Dates within Items

From XML::RSS:
$rss->add_item (title=>$title, link=>$link, dc=>{ subject=>$subject, c +reator=>$creator, date=>$date });
  • Comment on Re^3: Using XML::RSS to produce an RSS 2.0 feed with Dates within Items
  • Download Code

Replies are listed 'Best First'.
Re^4: Using XML::RSS to produce an RSS 2.0 feed with Dates within Items
by mldvx4 (Hermit) on Nov 19, 2019 at 08:52 UTC

    Yes, one would think so based on the manual page, but in practice it does not print any of Dublin Core metadata which has been added. The following adds it to the object just fine:

    $rss->add_item( title => $title, link => $link, description => $description, pubDate => $modified_date, dc => { subject=>'foo', date => $modified_date }, );

    And that addition can be seen using Data::Dumper. However, print $rss->as_string; is failing to show the full RSS entry. It shows only certain fields. So my script is still missing something, but what?