summaryrefslogtreecommitdiff
path: root/IkiWiki
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-05-06 13:13:01 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-05-06 13:13:01 -0400
commit838955aba445f29b7990c7be97c505b6cbe86057 (patch)
tree7e54f05e5fb56e0e9ac956ae75f01a2f387cd7bf /IkiWiki
parent3c66e1552b70fe5ed5211aafcf127c647d79b481 (diff)
remove pagespec_match_list override for external
Not needed since it returns a list of pages, not a fail/success object.
Diffstat (limited to 'IkiWiki')
-rw-r--r--IkiWiki/Plugin/external.pm10
1 files changed, 0 insertions, 10 deletions
diff --git a/IkiWiki/Plugin/external.pm b/IkiWiki/Plugin/external.pm
index 57a72eb68..0d292dfc2 100644
--- a/IkiWiki/Plugin/external.pm
+++ b/IkiWiki/Plugin/external.pm
@@ -239,14 +239,4 @@ sub pagespec_match ($@) {
$page, $spec, @_));
}
-sub pagespec_match_list ($@) {
- # convert return object into a XML RPC boolean
- my $plugin=shift;
- my $pages=shift;
- my $spec=shift;
-
- return RPC::XML::boolean->new(0 + IkiWiki::pagespec_match_list(
- $pages, $spec, @_));
-}
-
1