stas        2003/01/14 20:54:42

  Modified:    t/conf   modperl_extra.pl
               t/filter/TestFilter input_msg.pm
  Log:
  move the preloading bit into the filter file, so it's more self contained
  (easier to add new similar tests)
  
  Revision  Changes    Path
  1.22      +0 -2      modperl-2.0/t/conf/modperl_extra.pl
  
  Index: modperl_extra.pl
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/t/conf/modperl_extra.pl,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- modperl_extra.pl  15 Dec 2002 08:30:40 -0000      1.21
  +++ modperl_extra.pl  15 Jan 2003 04:54:42 -0000      1.22
  @@ -17,8 +17,6 @@
   use Apache::Const -compile => ':common';
   use APR::Const -compile => ':common';
   
  -eval { require TestFilter::input_msg };
  -
   use APR::Table ();
   
   unless ($ENV{MOD_PERL}) {
  
  
  
  1.12      +3 -1      modperl-2.0/t/filter/TestFilter/input_msg.pm
  
  Index: input_msg.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/t/filter/TestFilter/input_msg.pm,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- input_msg.pm      11 Apr 2002 11:08:43 -0000      1.11
  +++ input_msg.pm      15 Jan 2003 04:54:42 -0000      1.12
  @@ -68,7 +68,9 @@
   1;
   __END__
   <VirtualHost TestFilter::input_msg>
  -
  +  # must be preloaded so the FilterConnectionHandler attributes will
  +  # be set by the time the filter is inserted into the filter chain
  +  PerlModule TestFilter::input_msg
     PerlInputFilterHandler TestFilter::input_msg
   
     <Location /TestFilter::input_msg::response>
  
  
  


Reply via email to