summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin
diff options
context:
space:
mode:
authorSimon McVittie <smcv@debian.org>2010-04-04 00:24:27 +0100
committerSimon McVittie <smcv@debian.org>2010-04-04 00:43:58 +0100
commitef6344144051ed70649ccbff01bcc4fce927ee2f (patch)
treef599eb9b788d8116b6b470e339dbab025cdfd490 /IkiWiki/Plugin
parentf127857676ad014c97537c39cc7758a423f08b9a (diff)
Remove tagged_is_strict option, and just behave as though it was enabled
Jon was worried about the backwards-compatibility break involved in making tagged() not match non-tag links, but Joey seems less concerned about it.
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r--IkiWiki/Plugin/tag.pm17
1 files changed, 1 insertions, 16 deletions
diff --git a/IkiWiki/Plugin/tag.pm b/IkiWiki/Plugin/tag.pm
index af4bff1bc..7a85874f6 100644
--- a/IkiWiki/Plugin/tag.pm
+++ b/IkiWiki/Plugin/tag.pm
@@ -34,13 +34,6 @@ sub getsetup () {
safe => 1,
rebuild => 1,
},
- tagged_is_strict => {
- type => "boolean",
- default => 0,
- description => "if 1, tagged() doesn't match normal WikiLinks to tag pages",
- safe => 1,
- rebuild => 1,
- },
}
sub tagpage ($) {
@@ -132,15 +125,7 @@ sub pagetemplate (@) {
package IkiWiki::PageSpec;
sub match_tagged ($$;@) {
- my $page = shift;
- my $glob = shift;
-
- if ($IkiWiki::config{tagged_is_strict}) {
- return match_link($page, IkiWiki::Plugin::tag::tagpage($glob), linktype => 'tag');
- }
- else {
- return match_link($page, IkiWiki::Plugin::tag::tagpage($glob));
- }
+ return match_link($_[0], IkiWiki::Plugin::tag::tagpage($_[1]), linktype => 'tag');
}
1