diff options
author | Joey Hess <joey@kitenet.net> | 2012-04-08 16:02:03 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-04-08 16:02:03 -0400 |
commit | fc5c938b195bacd8db2be7a435cb88bfbd050af8 (patch) | |
tree | 9f648f8cc74fe7340b40d80ba244bb7fbc800238 /IkiWiki/Plugin/trail.pm | |
parent | 29157c9cd1b3ad81bb76de5c99b21d27c25867d8 (diff) | |
parent | 258ee1bc3b9c43807064c771ebcb9ce2840d4264 (diff) | |
download | ikiwiki-fc5c938b195bacd8db2be7a435cb88bfbd050af8.tar ikiwiki-fc5c938b195bacd8db2be7a435cb88bfbd050af8.tar.gz |
Merge remote-tracking branch 'smcv/ready/literal-pagenames'
Diffstat (limited to 'IkiWiki/Plugin/trail.pm')
-rw-r--r-- | IkiWiki/Plugin/trail.pm | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/IkiWiki/Plugin/trail.pm b/IkiWiki/Plugin/trail.pm index 330d2a31d..34a2ca5b6 100644 --- a/IkiWiki/Plugin/trail.pm +++ b/IkiWiki/Plugin/trail.pm @@ -26,10 +26,12 @@ sub import { # # * $pagestate{$T}{trail}{contents} # Reference to an array of lists each containing either: -# - [link, "link"] +# - [pagenames => "page1", "page2"] +# Those literal pages +# - [link => "link"] # A link specification, pointing to the same page that [[link]] # would select -# - [pagespec, "posts/*", "age", 0] +# - [pagespec => "posts/*", "age", 0] # A match by pagespec; the third array element is the sort order # and the fourth is whether to reverse sorting # @@ -148,8 +150,8 @@ sub preprocess_trailitems (@) { } if (exists $params{pagenames}) { - my @list = map { [link => $_] } split ' ', $params{pagenames}; - push @{$pagestate{$params{page}}{trail}{contents}}, @list; + push @{$pagestate{$params{page}}{trail}{contents}}, + [pagenames => (split ' ', $params{pagenames})]; } return ""; @@ -271,6 +273,19 @@ sub prerender { $c->[1], sort => $c->[2], reverse => $c->[3]); } + elsif ($c->[0] eq 'pagenames') { + my @pagenames = @$c; + shift @pagenames; + foreach my $page (@pagenames) { + if (exists $pagesources{$page}) { + push @$members, $page; + } + else { + # rebuild trail if it turns up + add_depends($trail, $page, deptype("presence")); + } + } + } elsif ($c->[0] eq 'link') { my $best = bestlink($trail, $c->[1]); push @$members, $best if length $best; |