Changeset 1494
- Timestamp:
- 08/20/06 17:48:25
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/plagger/lib/Plagger/Plugin/Filter/ResolveRelativeLink.pm
r1240 r1494 27 27 28 28 if (my $count = $resolver->resolved_count) { 29 $context->log(info => "Resolved $count link(s) in " . $entry->permalink);29 $context->log(info => "Resolved $count link(s) in $base"); 30 30 $entry->body($html); 31 31 } trunk/plagger/t/plugins/Filter-ResolveRelativeLink/base.t
r1476 r1494 18 18 - title: bar 19 19 body: <a href="/foo/bar">Plagger</a> is a pluggable aggregator 20 link: http://plagger.org/ 21 - module: Filter::ResolveRelativeLink 22 --- expected 23 is $context->update->feeds->[0]->entries->[0]->body, '<a href="http://plagger.org/foo/bar">Plagger</a> is a pluggable aggregator' 24 25 === resolve with feed link 26 --- input config 27 plugins: 28 - module: CustomFeed::Debug 29 config: 30 title: foo 31 link: http://www.example.com/show/foo 32 entry: 33 - title: bar 34 body: <a href="/foo/bar">Plagger</a> is a pluggable aggregator 20 35 - module: Filter::ResolveRelativeLink 21 36 --- expected
