AnnoCPAN

 view release on metacpan or  search on metacpan

html/index.cgi  view on Meta::CPAN

#!/home/ivan/bin/speedy
#!/home/ivan/bin/perl
#!/usr/bin/perl

use strict;
use warnings;

use lib qw(../lib /home/ivan/perl);
use CGI::Compress::Gzip;
use CGI::Carp 'fatalsToBrowser';
use Template;
use AnnoCPAN::Config '../_config.pl';
use AnnoCPAN::Control;

AnnoCPAN::Control->new(
    cgi => CGI::Compress::Gzip->new,
)->run;

html/perldoc.cgi  view on Meta::CPAN

#!/home/ivan/bin/speedy
#!/home/ivan/bin/perl
#!/usr/bin/perl

use strict;
use warnings;

use lib qw(../lib /home/ivan/perl);
use CGI;
use CGI::Carp 'fatalsToBrowser';
use Template;
use AnnoCPAN::Config '../_config.pl';
use AnnoCPAN::Control;

$ENV{QUERY_STRING} = 
        'mode=search;field=Module;latest=1;redirect=1;name=' . $ENV{QUERY_STRING}; 

AnnoCPAN::Control->new->run;

html/save_xml.cgi  view on Meta::CPAN

#!/home/ivan/bin/speedy
#!/home/ivan/bin/perl
#!/usr/bin/perl

use strict;
use warnings;

use lib qw(../lib /home/ivan/perl);
use AnnoCPAN::XMLCGI;
use Template;
use AnnoCPAN::Config '../_config.pl';
use AnnoCPAN::Control;

AnnoCPAN::Control->new(
    cgi => AnnoCPAN::XMLCGI->new,
)->run;



( run in 0.350 second using v1.01-cache-2.11-cpan-87723dcf8b7 )