Skip Menu |

This queue is for tickets about the Apache-ProxyPass CPAN distribution.

Report information
The Basics
Id: 26541
Status: open
Priority: 0/
Queue: Apache-ProxyPass

People
Owner: Nobody in particular
Requestors: MSTEVENS [...] cpan.org
Cc: smithm [...] gmail.com
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.06
Fixed in: (no value)



Subject: Improve module kwalitee
Module kwalitee as measured at http://cpants.perl.org/dist/Apache-ProxyPass is distressingly low. This should increase it. (build the dist on recent perl with MakeMaker from CPAN for full benefit.)
Subject: apache-proxypass.diff
diff -urN Apache-ProxyPass-0.06/Changes Apache-ProxyPass-0.06.new/Changes --- Apache-ProxyPass-0.06/Changes 1998-03-17 18:22:42.000000000 +0000 +++ Apache-ProxyPass-0.06.new/Changes 2007-04-22 17:15:09.000000000 +0100 @@ -3,6 +3,7 @@ Should work with GET and POST (suggestion and patches via Doug Bagley and Randal Schwartz) +0.07 22 Apr 2007 - - +Improve module kwalitee to increase CPANTS score and update author contact +details. diff -urN Apache-ProxyPass-0.06/Makefile.PL Apache-ProxyPass-0.06.new/Makefile.PL --- Apache-ProxyPass-0.06/Makefile.PL 1998-03-06 17:08:23.000000000 +0000 +++ Apache-ProxyPass-0.06.new/Makefile.PL 2007-04-22 17:12:37.000000000 +0100 @@ -7,5 +7,8 @@ VERSION_FROM => 'ProxyPass.pm', PM => { map { ("$_.pm" => "\$(INST_LIBDIR)/$_.pm") } @libs }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, + ( $] >= 5.005 ? + (ABSTRACT => 'Implement ProxyPass in perl', + AUTHOR => 'Michael Smith <smithm@gmail.com>') : ()), + 'LICENSE' => 'perl', ); - diff -urN Apache-ProxyPass-0.06/MANIFEST Apache-ProxyPass-0.06.new/MANIFEST --- Apache-ProxyPass-0.06/MANIFEST 1970-01-01 01:00:00.000000000 +0100 +++ Apache-ProxyPass-0.06.new/MANIFEST 2007-04-22 17:18:09.000000000 +0100 @@ -0,0 +1,7 @@ +Changes +Makefile.PL +MANIFEST +ProxyPass.pm +README +t/01_pod.t +t/02_pod_coverage.t diff -urN Apache-ProxyPass-0.06/ProxyPass.pm Apache-ProxyPass-0.06.new/ProxyPass.pm --- Apache-ProxyPass-0.06/ProxyPass.pm 1998-03-17 18:32:23.000000000 +0000 +++ Apache-ProxyPass-0.06.new/ProxyPass.pm 2007-04-22 17:14:39.000000000 +0100 @@ -1,6 +1,6 @@ package Apache::ProxyPass; -$VERSION='0.06'; +$VERSION='0.07'; use strict; use LWP::UserAgent (); @@ -97,9 +97,14 @@ Implement the apache mod_proxy module in perl. Based on Apache::ProxyPassThru +=head1 LICENSE + +This program is free software; you can redistribute it and/or modify it under +the same terms as Perl itself. + =head1 AUTHOR -Michael Smith <mjs@iii.co.uk> +Michael Smith <smithm@gmail.com> =cut diff -urN Apache-ProxyPass-0.06/README Apache-ProxyPass-0.06.new/README --- Apache-ProxyPass-0.06/README 1970-01-01 01:00:00.000000000 +0100 +++ Apache-ProxyPass-0.06.new/README 2007-04-22 17:15:59.000000000 +0100 @@ -0,0 +1,11 @@ +Apache::ProxyPass +----------------- +Module: Apache::ProxyPass +Author: Michael Smith <smithm@gmail.com> + +This is just a standard CPAN module. + + Copyright (c) 1995 Michael Smith. All rights reserved. + This program is free software; you can redistribute it and/or + modify it under the same terms as Perl itself. + diff -urN Apache-ProxyPass-0.06/t/01_pod.t Apache-ProxyPass-0.06.new/t/01_pod.t --- Apache-ProxyPass-0.06/t/01_pod.t 1970-01-01 01:00:00.000000000 +0100 +++ Apache-ProxyPass-0.06.new/t/01_pod.t 2007-04-22 17:17:32.000000000 +0100 @@ -0,0 +1,4 @@ +use Test::More; +eval "use Test::Pod 1.00"; +plan skip_all => "Test::Pod 1.00 required for testing POD" if $@; +all_pod_files_ok(); diff -urN Apache-ProxyPass-0.06/t/02_pod_coverage.t Apache-ProxyPass-0.06.new/t/02_pod_coverage.t --- Apache-ProxyPass-0.06/t/02_pod_coverage.t 1970-01-01 01:00:00.000000000 +0100 +++ Apache-ProxyPass-0.06.new/t/02_pod_coverage.t 2007-04-22 17:17:36.000000000 +0100 @@ -0,0 +1,4 @@ +use Test::More; +eval "use Test::Pod::Coverage 1.00"; +plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage" if $@; +all_pod_coverage_ok();
On Sun Apr 22 12:21:28 2007, MSTEVENS wrote: Show quoted text
> Module kwalitee as measured at > http://cpants.perl.org/dist/Apache-ProxyPass is distressingly low. This > should increase it. (build the dist on recent perl with MakeMaker from > CPAN for full benefit.)
I've assumed this should be licensed under the standard perl license, let me know if this is a problem.