summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/edittemplate.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-09-20 23:00:19 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-09-20 23:00:19 -0400
commit4c68e149e58e09a1f7f1438768dd9eeeafbe20e6 (patch)
treeb813dc8f1562ab3442fcc8345d6f5d6a329bb570 /IkiWiki/Plugin/edittemplate.pm
parent5e713047b4eda5b9ae6d7154729cc238d5284776 (diff)
handle templates with special characters in name
The template field is really a link, so needs to be converted to a page name in stored state.
Diffstat (limited to 'IkiWiki/Plugin/edittemplate.pm')
-rw-r--r--IkiWiki/Plugin/edittemplate.pm10
1 files changed, 4 insertions, 6 deletions
diff --git a/IkiWiki/Plugin/edittemplate.pm b/IkiWiki/Plugin/edittemplate.pm
index f8b5174ff..84c28a9d0 100644
--- a/IkiWiki/Plugin/edittemplate.pm
+++ b/IkiWiki/Plugin/edittemplate.pm
@@ -54,16 +54,14 @@ sub preprocess (@) { #{{{
error gettext("match not specified")
}
- $pagestate{$params{page}}{edittemplate}{$params{match}}=$params{template};
+ my $link=IkiWiki::linkpage($params{template});
+ $pagestate{$params{page}}{edittemplate}{$params{match}}=$link;
return "" if ($params{silent} && IkiWiki::yesno($params{silent}));
-
- my $link=IkiWiki::linkpage($params{template});
add_depends($params{page}, $link);
- my $linkHTML = htmllink($params{page}, $params{destpage}, $link);
-
return sprintf(gettext("edittemplate %s registered for %s"),
- $linkHTML, $params{match});
+ htmllink($params{page}, $params{destpage}, $link),
+ $params{match});
} # }}}
sub formbuilder (@) { #{{{