aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-10-09 13:20:41 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-10-09 13:20:41 -0400
commit6f2cc5ac8cc7e76b3faf20cd7516f82bcb3de7ed (patch)
tree0ca5d3284887d58aa6303c6dca951c00755e91e3 /IkiWiki/Plugin
parentf9f7a6e9f34b120504bb1dc238a3a627e9a8e3dc (diff)
downloadikiwiki-6f2cc5ac8cc7e76b3faf20cd7516f82bcb3de7ed.tar
ikiwiki-6f2cc5ac8cc7e76b3faf20cd7516f82bcb3de7ed.tar.gz
pagespec_match_list: change limit to filter
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r--IkiWiki/Plugin/inline.pm2
-rw-r--r--IkiWiki/Plugin/orphans.pm10
-rw-r--r--IkiWiki/Plugin/postsparkline.pm2
3 files changed, 7 insertions, 7 deletions
diff --git a/IkiWiki/Plugin/inline.pm b/IkiWiki/Plugin/inline.pm
index 815a37838..0fe0bd2e1 100644
--- a/IkiWiki/Plugin/inline.pm
+++ b/IkiWiki/Plugin/inline.pm
@@ -218,7 +218,7 @@ sub preprocess_inline (@) {
@list = pagespec_match_list($params{page}, $params{pages},
deptype => deptype($quick ? "presence" : "content"),
- limit => sub { $_[0] ne $params{page} },
+ filter => sub { $_[0] eq $params{page} },
sort => exists $params{sort} ? $params{sort} : "age",
reverse => yesno($params{reverse}),
num => $num,
diff --git a/IkiWiki/Plugin/orphans.pm b/IkiWiki/Plugin/orphans.pm
index b1ebd1b9d..702943f87 100644
--- a/IkiWiki/Plugin/orphans.pm
+++ b/IkiWiki/Plugin/orphans.pm
@@ -31,24 +31,24 @@ sub preprocess (@) {
my @orphans=pagespec_match_list($params{page}, $params{pages},
# update when orphans are added/removed
deptype => deptype("presence"),
- limit => sub {
+ filter => sub {
my $page=shift;
# Filter out pages that other pages link to.
- return 0 if IkiWiki::backlink_pages($page);
+ return 1 if IkiWiki::backlink_pages($page);
# Toplevel index is assumed to never be orphaned.
- return 0 if $page eq 'index';
+ return 1 if $page eq 'index';
# If the page has a link to some other page, it's
# indirectly linked via that page's backlinks.
- return 0 if grep {
+ return 1 if grep {
length $_ &&
($_ !~ /\/\Q$config{discussionpage}\E$/i || ! $config{discussion}) &&
bestlink($page, $_) !~ /^(\Q$page\E|)$/
} @{$links{$page}};
- return 1;
+ return 0;
},
);
diff --git a/IkiWiki/Plugin/postsparkline.pm b/IkiWiki/Plugin/postsparkline.pm
index 1d4532366..0d5a12e33 100644
--- a/IkiWiki/Plugin/postsparkline.pm
+++ b/IkiWiki/Plugin/postsparkline.pm
@@ -56,7 +56,7 @@ sub preprocess (@) {
my @list=sort { $params{timehash}->{$b} <=> $params{timehash}->{$a} }
pagespec_match_list($params{page}, $params{pages},
deptype => $deptype,
- limit => sub { $_[0] ne $params{page} },
+ filter => sub { $_[0] eq $params{page} },
);
my @data=eval qq{IkiWiki::Plugin::postsparkline::formula::$formula(\\\%params, \@list)};