From f80e1cb577f3b4ca8f525ddb257f190e481b9194 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Sun, 4 Apr 2010 00:26:03 +0100 Subject: [PATCH] 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. --- IkiWiki.pm | 11 ----------- 1 file changed, 11 deletions(-) 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); -- 2.45.2