]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/tag.pm
* Switch pagetemplate hooks to using named parameters.
[ikiwiki.git] / IkiWiki / Plugin / tag.pm
index 841d508bfcc33d87b8a7940a3ecd76ddb8f24d65..f1f3b77f5fc6ea8566607279ba3f6c6d4104e1b3 100644 (file)
@@ -6,10 +6,13 @@ use warnings;
 use strict;
 use IkiWiki;
 
-my %tag;
+my %tags;
 
 sub import { #{{{
-       IkiWiki::hook(type => "preprocess", id => "tag", call => \&preprocess);
+       IkiWiki::hook(type => "preprocess", id => "tag",
+               call => \&preprocess);
+       IkiWiki::hook(type => "pagetemplate", id => "tag",
+               call => \&pagetemplate);
 } # }}}
 
 sub preprocess (@) { #{{{
@@ -20,7 +23,9 @@ sub preprocess (@) { #{{{
        my $page = $params{page};
        delete $params{page};
 
+       $tags{$page} = [];
        foreach my $tag (keys %params) {
+               push @{$tags{$page}}, $tag;
                # hidden WikiLink
                push @{$IkiWiki::links{$page}}, $tag;
        }
@@ -28,4 +33,16 @@ sub preprocess (@) { #{{{
        return "";
 } # }}}
 
+sub pagetemplate (@) { #{{{
+       my %params=@_;
+       my $page=$params{page};
+       my $destpage=$params{destpage};
+       my $template=$params{template};
+
+       $template->param(tags => join(', ', 
+                       map { IkiWiki::htmllink($page, $destpage, $_) } 
+                               @{$tags{$page}}))
+               if exists $tags{$page} && $template->query(name => "tags");
+} # }}}
+
 1