diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-09-06 21:03:39 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-09-06 21:03:39 +0000 |
commit | 7ba4a844a8b98395774298296c309c613a68d3dd (patch) | |
tree | 9a7030047751ca571e6a12f421381b03491915bf /IkiWiki/Plugin | |
parent | bd1eb38ed8f0e0621000dc9d597967b9ad82d995 (diff) |
* Include <link rel> tag for RSS feeds, used by some aggregators and
firefox to find the feed.
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/inline.pm | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/IkiWiki/Plugin/inline.pm b/IkiWiki/Plugin/inline.pm index 70d5be235..6661ed215 100644 --- a/IkiWiki/Plugin/inline.pm +++ b/IkiWiki/Plugin/inline.pm @@ -10,6 +10,8 @@ use URI; sub import { #{{{ IkiWiki::hook(type => "preprocess", id => "inline", call => \&IkiWiki::preprocess_inline); + IkiWiki::hook(type => "pagetemplate", id => "inline", + call => \&IkiWiki::pagetemplate_inline); # Hook to change to do pinging since it's called late. # This ensures each page only pings once and prevents slow # pings interrupting page builds. @@ -22,6 +24,7 @@ sub import { #{{{ package IkiWiki; my %toping; +my %rsslinks; sub yesno ($) { #{{{ my $val=shift; @@ -62,22 +65,23 @@ sub preprocess_inline (@) { #{{{ add_depends($params{page}, $params{pages}); + my $rssurl=rsspage(basename($params{page})); my $ret=""; - + if (exists $params{rootpage} && $config{cgiurl}) { # Add a blog post form, with a rss link button. my $formtemplate=template("blogpost.tmpl", blind_cache => 1); $formtemplate->param(cgiurl => $config{cgiurl}); $formtemplate->param(rootpage => $params{rootpage}); if ($config{rss}) { - $formtemplate->param(rssurl => rsspage(basename($params{page}))); + $formtemplate->param(rssurl => $rssurl); } $ret.=$formtemplate->output; } elsif ($config{rss} && $rss) { # Add a rss link button. my $linktemplate=template("rsslink.tmpl", blind_cache => 1); - $linktemplate->param(rssurl => rsspage(basename($params{page}))); + $linktemplate->param(rssurl => $rssurl); $ret.=$linktemplate->output; } @@ -146,11 +150,21 @@ sub preprocess_inline (@) { #{{{ writefile(rsspage($params{page}), $config{destdir}, genrss($desc, $params{page}, @list)); $toping{$params{page}}=1 unless $config{rebuild}; + $rsslinks{$params{destpage}}=qq{<link rel="alternate" type="application/rss+xml" title="RSS" href="$rssurl" />}; } return $ret; } #}}} +sub pagetemplate_inline (@) { #{{{ + my %params=@_; + my $page=$params{page}; + my $template=$params{template}; + + $template->param(rsslink => $rsslinks{$page}) + if exists $rsslinks{$page} && $template->query(name => "rsslink"); +} #}}} + sub get_inline_content ($$) { #{{{ my $page=shift; my $destpage=shift; |