]> sipb.mit.edu Git - ikiwiki.git/blob - doc/todo/tag_pagespec_function.mdwn
interactive todo lists todo item
[ikiwiki.git] / doc / todo / tag_pagespec_function.mdwn
1 Implementing tags in terms of links is clever, but it would be nice if it was
2 opaque in both directions: tagging and matching tags. Writing pagespecs to
3 find out which pages are tagged with a given name means that the pagespec is
4 tied to whatever the tagbase is.
5
6 This patch adds a pagespec function 'tag' which lets you write pagespecs to
7 match tagged pages independent of whatever the tagbase is set to.
8
9  -- [[users/Jon]] 2009/02/17
10
11 > So, this looks good, appreciate the patch.
12
13 > The only problem I see is it could be confusing if `tag(foo)` matched
14 > a page that just linked to the tag via a wikilink, w/o actually tagging it.
15 >
16 > One other thing, perhaps it should be called `tagged()`? --[[Joey]] 
17
18 [[!tag patch done]]
19
20     --- a/plugins/IkiWiki/Plugin/tag.pm 2009-02-16 11:30:11.000000000 +0000
21     +++ b/plugins/IkiWiki/Plugin/tag.pm 2009-02-17 15:40:03.000000000 +0000
22     @@ -125,4 +125,12 @@
23         }
24      }
25      
26     +package IkiWiki::PageSpec;
27     +
28     +sub match_tag ($$;@) {
29     +   my $page = shift;
30     +   my $glob = shift;
31     +    return match_link($page, IkiWiki::Plugin::tag::tagpage($glob));
32     +}
33     +
34      1