- Timestamp:
- 10/21/04 19:53:13 (8 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
cgi-wiki-plugin-rss-reader/trunk/lib/CGI/Wiki/Plugin/RSS/Reader.pm
r202 r206 5 5 use vars qw( $VERSION @ISA ); 6 6 7 $VERSION = '1. 3';7 $VERSION = '1.4'; 8 8 @ISA = qw(CGI::Wiki::Plugin); 9 9 … … 105 105 106 106 push @rss_items, { 107 title => $_->{title}, 108 link => $link 107 title => $_->{title}, 108 link => $link, 109 description => $_->{description}, 109 110 }; 110 111 } … … 156 157 157 158 C<retrieve> will return an array of hashes, one for each item in the RSS 158 feed. The hashes contain t wo items, C<title> and C<link>.159 feed. The hashes contain three items, C<title>, C<link>, and C<description>. 159 160 160 161 If the URL or file you specified cannot be retrieved/read, C<retrieve> will
