Still need item notes
Signed-off-by: Lebbeous Fogle-Weekley <lebbeous@esilibrary.com>
$feed->id($bucket_tag);
$feed->title("Items in Book Bag [".$bucket->name."]");
+ $feed->description($bucket->description || ("Items in Book Bag [".$bucket->name."]"));
$feed->creator($host);
$feed->update_ts();
my $self = shift;
my $text = shift;
$self->_create_node('/rss/channel',undef,'title', $text);
- # RSS2 demands a /channel/description element; just dupe title until we give
- # users the ability to provide a description for their bookbags
+}
+
+sub description {
+ my $self = shift;
+ my $text = shift;
$self->_create_node('/rss/channel',undef,'description', $text);
}