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.
master
Joey Hess 2008-09-20 23:00:19 -04:00
parent 5e713047b4
commit 4c68e149e5
1 changed files with 4 additions and 6 deletions

View File

@ -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 (@) { #{{{