Changeset 911
- Timestamp:
- 06/07/06 03:36:53
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/plagger/assets/plugins/Publish-Planet/default/template/index.tt
r456 r911 5 5 <head> 6 6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 7 <meta name="generator" contnet="Plagger [% context.VERSION %]" /> 7 8 <link rel="alternate" type="application/atom+xml" title="Atom: [% feed.title %]" href="smartfeed_all.atom" /> 8 9 <link rel="alternate" type="application/rss+xml" title="RSS: [% feed.title %]" href="smartfeed_all.rss" /> trunk/plagger/lib/Plagger/Plugin/Publish/Planet.pm
r683 r911 63 63 feed => $feed, 64 64 members => [ $context->subscription->feeds ], 65 context => $context, 65 66 }, \my $out) or $context->error($tt->error); 66 67 $out; … … 86 87 sub _apply_skin { 87 88 my ($self, $context, $skin_name, $output_dir) = @_; 88 89 89 $context->log(debug => "Assets Directory: " . $self->assets_dir); 90 91 rcopy(92 File::Spec->catfile($self->assets_dir, $skin_name, 'static'),93 $output_dir,94 ) or $context->error("rcopy: $!");90 91 my $static = File::Spec->catfile($self->assets_dir, $skin_name, 'static'); 92 if (-e $static) { 93 rcopy($static, $output_dir) or $context->log(error => "rcopy: $!"); 94 } 95 95 } 96 96
