aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/pagetemplate.pm
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-07-26 20:50:55 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-07-26 20:50:55 +0000
commit40959ce76d159cefaf0431ad2cc61ad35a9f99b1 (patch)
treea30b415dbb712912fd45584b9861bb680562aba7 /IkiWiki/Plugin/pagetemplate.pm
parente64442aa08c1d368f0ab3284016b0addb3ac4a67 (diff)
downloadikiwiki-40959ce76d159cefaf0431ad2cc61ad35a9f99b1.tar
ikiwiki-40959ce76d159cefaf0431ad2cc61ad35a9f99b1.tar.gz
* Add templatefile hook.
* Add pagetemplate plugin, which allows changing the template used for a page. (Not to be confused with the hook of the same name..)
Diffstat (limited to 'IkiWiki/Plugin/pagetemplate.pm')
-rw-r--r--IkiWiki/Plugin/pagetemplate.pm40
1 files changed, 40 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/pagetemplate.pm b/IkiWiki/Plugin/pagetemplate.pm
new file mode 100644
index 000000000..b5ebf623d
--- /dev/null
+++ b/IkiWiki/Plugin/pagetemplate.pm
@@ -0,0 +1,40 @@
+#!/usr/bin/perl
+package IkiWiki::Plugin::pagetemplate;
+
+use warnings;
+use strict;
+use IkiWiki 2.00;
+
+my %templates;
+
+sub import { #{{{
+ hook(type => "preprocess", id => "pagetemplate", call => \&preprocess);
+ hook(type => "templatefile", id => "pagetemplate", call => \&templatefile);
+} # }}}
+
+sub preprocess (@) { #{{{
+ my %params=@_;
+
+ if (! exists $params{template} ||
+ $params{template} !~ /^[-A-Za-z0-9._+]+$/ ||
+ ! defined IkiWiki::template_file($params{template})) {
+ return "[[pagetemplate ".gettext("bad or missing template")."]]";
+ }
+
+ if ($params{page} eq $params{destpage}) {
+ $templates{$params{page}}=$params{template};
+ }
+
+} # }}}
+
+sub templatefile (@) { #{{{
+ my %params=@_;
+
+ if (exists $templates{$params{page}}) {
+ return $templates{$params{page}};
+ }
+
+ return undef;
+} # }}}
+
+1