From: Simon McVittie Date: Sat, 3 Apr 2010 23:26:03 +0000 (+0100) Subject: Remove the typedlink(tag foo) pagespec feature, which is less friendly than tagged() X-Git-Tag: 3.20100427~210^2~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f80e1cb577f3b4ca8f525ddb257f190e481b9194;p=ikiwiki.git Remove the typedlink(tag foo) pagespec feature, which is less friendly than tagged() Plugins that introduce a link type should also introduce pagespec syntax for it. --- diff --git a/IkiWiki.pm b/IkiWiki.pm index 25e9247b2..6ea0fb3f3 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -2259,17 +2259,6 @@ sub match_link ($$;@) { return IkiWiki::FailReason->new("$page does not link to $link$qualifier", $page => $IkiWiki::DEPEND_LINKS, "" => 1); } -sub match_typedlink($$;@) { - my $page = shift; - my $args = shift; - - if ($args =~ /^(\w+)\s+(.*)$/) { - return match_link($page, $2, @_, linktype => $1); - } - - return IkiWiki::ErrorReason->new("typedlink expects e.g. 'tag *' but got: $args"); -} - sub match_backlink ($$;@) { my $ret=match_link($_[1], $_[0], @_); $ret->influences($_[1] => $IkiWiki::DEPEND_LINKS);