From: Daniel Kahn Gillmor Date: Mon, 18 Oct 2010 06:18:37 +0000 (-0400) Subject: begin modularization of Crypt::Monkeysphere::MSVA -- not exporting raw functions... X-Git-Tag: msva-perl_debian/0.6-1~3^2~23 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f4edadf05fad95c0aeb3df55fd617abc98af0f22;p=monkeysphere-validation-agent.git begin modularization of Crypt::Monkeysphere::MSVA -- not exporting raw functions any more --- diff --git a/Crypt/Monkeysphere/MSVA.pm b/Crypt/Monkeysphere/MSVA.pm index 98984c5..8ccebf6 100755 --- a/Crypt/Monkeysphere/MSVA.pm +++ b/Crypt/Monkeysphere/MSVA.pm @@ -19,16 +19,6 @@ use strict; use warnings; - BEGIN { - use Exporter (); - our (@EXPORT_OK,@ISA); - @ISA = qw(Exporter); - @EXPORT_OK = qw( &reviewcert ); - } - our @EXPORT_OK; - - use Crypt::Monkeysphere::MSVA::MarginalUI; - use Crypt::Monkeysphere::MSVA::Logger; use parent qw(HTTP::Server::Simple::CGI); require Crypt::X509; use Regexp::Common qw /net/; @@ -40,6 +30,8 @@ use File::Spec; use File::HomeDir; use Config::General; + use Crypt::Monkeysphere::MSVA::MarginalUI; + use Crypt::Monkeysphere::MSVA::Logger; use JSON; use POSIX qw(strftime);