summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/template.pm
blob: 1a4faf05f03515c30e85f3d0d4a9359d9ab87c37 (plain)
  1. #!/usr/bin/perl
  2. # Structured template plugin.
  3. package IkiWiki::Plugin::template;
  4. use warnings;
  5. use strict;
  6. use IkiWiki;
  7. use HTML::Template;
  8. use Encode;
  9. sub import { #{{{
  10. hook(type => "preprocess", id => "template", call => \&preprocess);
  11. } # }}}
  12. sub preprocess (@) { #{{{
  13. my %params=@_;
  14. if (! exists $params{id}) {
  15. return "[[template missing id parameter]]"
  16. }
  17. my $template_page="templates/$params{id}";
  18. add_depends($params{page}, $template_page);
  19. my $template_file=$pagesources{$template_page};
  20. return "[[template ".
  21. htmllink($params{page}, $params{destpage}, $template_page).
  22. " not found]]"
  23. unless defined $template_file;
  24. my $template=HTML::Template->new(
  25. filter => sub {
  26. my $text_ref = shift;
  27. $$text_ref=&Encode::decode_utf8($$text_ref);
  28. },
  29. filename => srcfile($template_file),
  30. die_on_bad_params => 0,
  31. no_includes => 1,
  32. blind_cache => 1,
  33. );
  34. foreach my $param (keys %params) {
  35. $template->param($param => $params{$param});
  36. }
  37. return IkiWiki::preprocess($params{page}, $params{destpage},
  38. $template->output);
  39. } # }}}
  40. 1