blogspam: Load RPC::XML library in checkconfig, so that an error can be printed at...
authorJoey Hess <joey@gnu.kitenet.net>
Wed, 22 Apr 2009 17:33:20 +0000 (13:33 -0400)
committerJoey Hess <joey@gnu.kitenet.net>
Wed, 22 Apr 2009 17:33:20 +0000 (13:33 -0400)
IkiWiki/Plugin/blogspam.pm
debian/changelog

index cbd9859a533cf58dba27e1af20dc04368ab66e5e..c9883fbc2f4611948462aff26b147c3c4234a409 100644 (file)
@@ -9,6 +9,7 @@ my $defaulturl='http://test.blogspam.net:8888/';
 
 sub import {
        hook(type => "getsetup", id => "blogspam",  call => \&getsetup);
+       hook(type => "checkconfig", id => "skeleton", call => \&checkconfig);
        hook(type => "checkcontent", id => "blogspam", call => \&checkcontent);
 }
 
@@ -43,17 +44,19 @@ sub getsetup () {
                },
 }
 
-sub checkcontent (@) {
-       my %params=@_;
-
+sub checkconfig () {
+       # This is done at checkconfig time because printing an error
+       # if the module is missing when a spam is posted would not
+       # let the admin know about the problem.
        eval q{
                use RPC::XML;
                use RPC::XML::Client;
        };
-       if ($@) {
-               warn($@);
-               return undef;
-       }
+       error $@ if $@;
+}
+
+sub checkcontent (@) {
+       my %params=@_;
        
        if (exists $config{blogspam_pagespec}) {
                return undef
index 533a2a16f0af7be62c4df9ffb1049cd12a100470..011f4b669a21c5ba3771954b2e6a572ae7f4f353 100644 (file)
@@ -2,6 +2,10 @@ ikiwiki (3.11) UNRELEASED; urgency=low
 
   * Add python:Depends to control file. Closes: #525086
   * websetup: Display stderr in browser if ikiwiki setup fails.
+  * blogspam: Load RPC::XML library in checkconfig, so that an
+    error can be printed at that point if it's not available,
+    allowing the admin to see it during wiki setup.
+    Closes: #520015
 
  -- Joey Hess <joeyh@debian.org>  Tue, 21 Apr 2009 21:41:38 -0400