cvs commit: modperl-2.0 Changes

2002-08-19 Thread dougm

dougm   2002/08/19 13:02:24

  Modified:.Changes
  Log:
  updates from post-_04 changes
  
  Revision  ChangesPath
  1.34  +7 -0  modperl-2.0/Changes
  
  Index: Changes
  ===
  RCS file: /home/cvs/modperl-2.0/Changes,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- Changes   16 Aug 2002 10:22:39 -  1.33
  +++ Changes   19 Aug 2002 20:02:24 -  1.34
   -40,6 +40,13 
   apr_table_t is now an opaque type, use apr_table_elts() to get the array
   record [Stas Bekman]
   
  +add support for redirects with PerlOptions +ParseHeaders
  +
  +backport to 2.0.35
  +
  +adjust to filter register api change
  +
  +added APR::ThreadMutex module
   
   =item 1.99_04 - June 21, 2002
   
  
  
  



cvs commit: modperl-2.0/src/modules/perl modperl_filter.c

2002-08-19 Thread dougm

dougm   2002/08/19 13:07:01

  Modified:.Changes
   src/modules/perl modperl_filter.c
  Log:
  fix PerlOptions +ParseHeaders to only parse once per-request
  
  Revision  ChangesPath
  1.35  +2 -0  modperl-2.0/Changes
  
  Index: Changes
  ===
  RCS file: /home/cvs/modperl-2.0/Changes,v
  retrieving revision 1.34
  retrieving revision 1.35
  diff -u -r1.34 -r1.35
  --- Changes   19 Aug 2002 20:02:24 -  1.34
  +++ Changes   19 Aug 2002 20:07:01 -  1.35
   -10,6 +10,8 
   
   =item 1.99_05-dev
   
  +fix PerlOptions +ParseHeaders to only parse once per-request
  +
   add external redirects Registry tests [Stas Bekman]
   
   get rid of the compat layer in ModPerl-Registry [Stas Bekman]
  
  
  
  1.38  +2 -0  modperl-2.0/src/modules/perl/modperl_filter.c
  
  Index: modperl_filter.c
  ===
  RCS file: /home/cvs/modperl-2.0/src/modules/perl/modperl_filter.c,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- modperl_filter.c  14 Aug 2002 14:54:47 -  1.37
  +++ modperl_filter.c  19 Aug 2002 20:07:01 -  1.38
   -14,6 +14,8 
   const char *bodytext = NULL;
   int status = modperl_cgi_header_parse(r, (char *)buf, bodytext);
   
  +wb-header_parse = 0; /* only once per-request */
  +
   if (status == HTTP_MOVED_TEMPORARILY) {
   return APR_SUCCESS; /* XXX: HTTP_MOVED_TEMPORARILY ? */
   }