49 lines
915 B
Perl
49 lines
915 B
Perl
#!/usr/bin/perl
|
|
# Ikiwiki tag plugin.
|
|
package IkiWiki::Plugin::tag;
|
|
|
|
use warnings;
|
|
use strict;
|
|
use IkiWiki;
|
|
|
|
my %tags;
|
|
|
|
sub import { #{{{
|
|
IkiWiki::hook(type => "preprocess", id => "tag",
|
|
call => \&preprocess);
|
|
IkiWiki::hook(type => "pagetemplate", id => "tag",
|
|
call => \&pagetemplate);
|
|
} # }}}
|
|
|
|
sub preprocess (@) { #{{{
|
|
if (! @_) {
|
|
return "";
|
|
}
|
|
my %params=@_;
|
|
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;
|
|
}
|
|
|
|
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
|