stas 01/12/10 21:09:43 Modified: build bugreport.pl config.pl lib/ModPerl Config.pm Log: - s/config_as_str/as_string/ - pod fix Revision Changes Path 1.2 +1 -1 modperl-2.0/build/bugreport.pl Index: bugreport.pl =================================================================== RCS file: /home/cvs/modperl-2.0/build/bugreport.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- bugreport.pl 2001/04/20 18:08:06 1.1 +++ bugreport.pl 2001/12/11 05:09:43 1.2 @@ -6,7 +6,7 @@ use ModPerl::Config (); -my $env = ModPerl::Config::config_as_str(); +my $env = ModPerl::Config::as_string(); { local $/ = undef; my $template = <DATA>; 1.3 +1 -1 modperl-2.0/build/config.pl Index: config.pl =================================================================== RCS file: /home/cvs/modperl-2.0/build/config.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- config.pl 2001/04/20 18:08:06 1.2 +++ config.pl 2001/12/11 05:09:43 1.3 @@ -6,4 +6,4 @@ use ModPerl::Config (); -print ModPerl::Config::config_as_str(); +print ModPerl::Config::as_string(); 1.6 +4 -4 modperl-2.0/lib/ModPerl/Config.pm Index: Config.pm =================================================================== RCS file: /home/cvs/modperl-2.0/lib/ModPerl/Config.pm,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- Config.pm 2001/09/29 15:38:37 1.5 +++ Config.pm 2001/12/11 05:09:43 1.6 @@ -6,7 +6,7 @@ use Apache::Build (); use Apache::TestConfig (); -sub config_as_str{ +sub as_string { my $build_config = Apache::Build->build_config; my $cfg = ''; @@ -52,11 +52,11 @@ =pod -=head1 NAME - ModPerl::Config +=head1 NAME -=head1 DESCRIPTION +ModPerl::Config - Functions to retrieve mod_perl specific env information. -Functions to retrieve mod_perl specific env information. +=head1 DESCRIPTION =cut