dougm       01/04/19 10:42:19

  Modified:    lib/ModPerl Code.pm
  Log:
  add PerlInputFilterHandler
  
  Revision  Changes    Path
  1.59      +3 -2      modperl-2.0/lib/ModPerl/Code.pm
  
  Index: Code.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/lib/ModPerl/Code.pm,v
  retrieving revision 1.58
  retrieving revision 1.59
  diff -u -r1.58 -r1.59
  --- Code.pm   2001/04/18 05:25:01     1.58
  +++ Code.pm   2001/04/19 17:42:16     1.59
  @@ -14,14 +14,15 @@
       PerSrv     => [qw(PostReadRequest Trans)], #Init
       PerDir     => [qw(HeaderParser
                         Access Authen Authz
  -                      Type Fixup OutputFilter Response Log)], #Init Cleanup
  +                      Type Fixup Response Log
  +                      InputFilter OutputFilter)], #Init Cleanup
       Connection => [qw(PreConnection ProcessConnection)],
   );
   
   my %hooks = map { $_, canon_lc($_) }
       map { @{ $handlers{$_} } } keys %handlers;
   
  -my %not_ap_hook = map { $_, 1 } qw(response output_filter);
  +my %not_ap_hook = map { $_, 1 } qw(response output_filter input_filter);
   
   my %hook_proto = (
       Process    => {
  
  
  

Reply via email to