edittemplate: Allow template page name to be specified using anything legal for a wikilink (including eg, leading slashes).

Before, the htmllink would display the link to the template as if it were a
wikilink, but what was stored was not, which could lead to confusing
situations.
master
Joey Hess 2009-10-18 13:47:30 -04:00
parent 967c845e47
commit d1a88c892e
2 changed files with 9 additions and 1 deletions

View File

@ -55,7 +55,8 @@ sub preprocess (@) {
}
my $link=linkpage($params{template});
$pagestate{$params{page}}{edittemplate}{$params{match}}=$link;
my $bestlink=bestlink($params{page}, $link);
$pagestate{$params{page}}{edittemplate}{$params{match}}=$bestlink;
return "" if ($params{silent} && IkiWiki::yesno($params{silent}));
add_depends($params{page}, $link, deptype("presence"));

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
ikiwiki (3.20091018) UNRELEASED; urgency=low
* edittemplate: Allow template page name to be specified using anything
legal for a wikilink (including eg, leading slashes).
-- Joey Hess <joeyh@debian.org> Sun, 18 Oct 2009 13:44:09 -0400
ikiwiki (3.20091017) unstable; urgency=low
* Added support framework for multiple types of dependencies, including