diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-05-06 13:13:01 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-05-06 13:13:01 -0400 |
commit | 838955aba445f29b7990c7be97c505b6cbe86057 (patch) | |
tree | 7e54f05e5fb56e0e9ac956ae75f01a2f387cd7bf /IkiWiki | |
parent | 3c66e1552b70fe5ed5211aafcf127c647d79b481 (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.pm | 10 |
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 |