News::Overview::Entry is a Perl object for storing specific overview information.
SYNOPSIS
use News::Overview::Entry;
use News::Overview;
my $article = new News::Article;
# Populate News::Article somehow;
# Create a new News::Overview::Entry object
my $msgid = $article->header('message-id');
my @refs = split(/s+/, $article->header('references') || "");
my %other;
foreach ( News::Overview->defaults ) {
$other{$_} = $article->header($_) || "";
}
my $entry = News::Overview::Entry->new($msgid, @refs, %other);
See below for more specific information about related functions.
News::Overview::Entry is an object meant to hold overview information about a single news article - that is, the minimal information necessary to sort the article with other articles, as used by XOVER in the NNTP specification. It is primarily a helper class for use with News::Overview; see that manual page for more information.
Requirements:
· Perl
Product's homepage
Requirements:
· Perl