Changeset 2008
- Timestamp:
- 02/08/08 22:30:44
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/fastladder-crawler/plagger/lib/Plagger/Plugin/Store/Fastladder.pm
r2007 r2008 91 91 enclosure => $entry->has_enclosure ? $entry->enclosure->url : undef, 92 92 enclosure_type => $entry->has_enclosure ? $entry->enclosure->type : undef, 93 modified_on => $entry->date, 93 created_on => $entry->date || $now, 94 modified_on => $entry->date || $now, 94 95 stored_on => $now, 95 96 }); 96 $item->created_on( $now ) unless $item->in_storage;97 97 $item->updated_on( $now ) if $item->is_changed; 98 98 … … 199 199 member_id: 1 200 200 201 =head1 CONFIGURATION 202 203 =head2 connect_info 204 205 DBIx::Class connect_info. 206 207 =head2 member_id 208 209 your fastladder id: primary key of fastladder members table 210 211 =head2 fetch_favicon 212 213 if set this to true value, crawler fetch favicon. (default: 0) 214 201 215 =head1 AUTHOR 202 216
