projects
/
ikiwiki.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3c66e15
)
remove pagespec_match_list override for external
author
Joey Hess
<joey@gnu.kitenet.net>
Wed, 6 May 2009 17:13:01 +0000
(13:13 -0400)
committer
Joey Hess
<joey@gnu.kitenet.net>
Wed, 6 May 2009 17:13:01 +0000
(13:13 -0400)
Not needed since it returns a list of pages, not a fail/success object.
IkiWiki/Plugin/external.pm
patch
|
blob
|
history
diff --git
a/IkiWiki/Plugin/external.pm
b/IkiWiki/Plugin/external.pm
index 57a72eb685e4ea2a6be982102fa21e78fb0c2367..0d292dfc2520e0020e5eee164084d4ab93751a10 100644
(file)
--- 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