stas        2003/07/28 03:33:59

  Modified:    lib/Apache compat.pm
               todo     deprecated_features.txt
               .        Changes
  Log:
  Apache::compat: $r->cgi_env, $r->cgi_var are now aliases to
  $r->subprocess_env
  
  Revision  Changes    Path
  1.86      +3 -0      modperl-2.0/lib/Apache/compat.pm
  
  Index: compat.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/lib/Apache/compat.pm,v
  retrieving revision 1.85
  retrieving revision 1.86
  diff -u -r1.85 -r1.86
  --- compat.pm 11 Apr 2003 07:34:03 -0000      1.85
  +++ compat.pm 28 Jul 2003 10:33:58 -0000      1.86
  @@ -401,6 +401,9 @@
   
   sub is_main { !shift->main }
   
  +# really old back-compat methods, they shouldn't be used in mp1
  +*cgi_var = *cgi_env = \&Apache::RequestRec::subprocess_env;
  +
   package Apache::File;
   
   use Fcntl ();
  
  
  
  1.8       +1 -1      modperl-2.0/todo/deprecated_features.txt
  
  Index: deprecated_features.txt
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/todo/deprecated_features.txt,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- deprecated_features.txt   6 Dec 2002 13:09:15 -0000       1.7
  +++ deprecated_features.txt   28 Jul 2003 10:33:59 -0000      1.8
  @@ -6,7 +6,7 @@
   
   - MaxModPerlRequestsPerChild
   
  -- $r->seqno, $r->sent_header, $r->cgi_env, $r->cgi_var,
  +- $r->seqno, $r->sent_header, 
     $r->query_string, $r->basic_http_header, $r->new_read,
     $r->write_client, $r->read_client_block, $r->translate_name
   
  
  
  
  1.197     +3 -0      modperl-2.0/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/Changes,v
  retrieving revision 1.196
  retrieving revision 1.197
  diff -u -r1.196 -r1.197
  --- Changes   25 Jul 2003 01:49:10 -0000      1.196
  +++ Changes   28 Jul 2003 10:33:59 -0000      1.197
  @@ -12,6 +12,9 @@
   
   =item 1.99_10-dev
   
  +Apache::compat: $r->cgi_env, $r->cgi_var are now aliases to
  +$r->subprocess_env [Stas]
  +
   For Win32, generate .pdb files for debugging when built with
   MP_DEBUG. These will get installed into the same directory as
   the associated dll/so libs. As well, install mod_perl.lib
  
  
  

Reply via email to