From 3f4a93574071c004fc332a68b2cac1f70de7f940 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Fri, 11 Jul 2014 22:08:08 +0100 Subject: trail: don't generate a costly dependency when forcing sort order pagespec_match_list() makes the current page depend on the pagespec being matched, so if you use [[!trailoptions sort="..."]] to force a sort order, the trail ends up depending on internal(*) and is rebuilt whenever anything changes. Add a new sort_pages() and use that instead. --- IkiWiki.pm | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'IkiWiki.pm') diff --git a/IkiWiki.pm b/IkiWiki.pm index e5da04a3b..be3dfce39 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -2459,6 +2459,19 @@ sub pagespec_match ($$;@) { return $sub->($page, @params); } +# e.g. @pages = sort_pages("title", \@pages, reverse => "yes") +# +# Not exported yet, but could be in future if it is generally useful. +# Note that this signature is not the same as IkiWiki::SortSpec::sort_pages, +# which is "more internal". +sub sort_pages ($$;@) { + my $sort = shift; + my $list = shift; + my %params = @_; + $sort = sortspec_translate($sort, $params{reverse}); + return IkiWiki::SortSpec::sort_pages($sort, @$list); +} + sub pagespec_match_list ($$;@) { my $page=shift; my $pagespec=shift; -- cgit v1.2.3