geoff       2003/10/01 12:53:05

  Modified:    xs/tables/current/Apache ConstantsTable.pm
               lib/Apache ParseSource.pm
               lib/ModPerl Code.pm
  Log:
  added Apache::CRLF, Apache::CR, and Apache::LF to
  Apache::Const's :platform group
  Reviewed by:  stas
  
  Revision  Changes    Path
  1.29      +5 -0      modperl-2.0/xs/tables/current/Apache/ConstantsTable.pm
  
  Index: ConstantsTable.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/xs/tables/current/Apache/ConstantsTable.pm,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- ConstantsTable.pm 12 May 2003 13:00:15 -0000      1.28
  +++ ConstantsTable.pm 1 Oct 2003 19:53:05 -0000       1.29
  @@ -146,6 +146,11 @@
       'config' => [
         'DECLINE_CMD'
       ],
  +    'platform' => [
  +      'CRLF',
  +      'CR',
  +      'LF'
  +    ],
       'types' => [
         'DIR_MAGIC_TYPE'
       ],
  
  
  
  1.44      +1 -0      modperl-2.0/lib/Apache/ParseSource.pm
  
  Index: ParseSource.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/lib/Apache/ParseSource.pm,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -r1.43 -r1.44
  --- ParseSource.pm    12 May 2003 13:00:15 -0000      1.43
  +++ ParseSource.pm    1 Oct 2003 19:53:05 -0000       1.44
  @@ -160,6 +160,7 @@
           types      => [qw{DIR_MAGIC_TYPE}],
           override   => [qw{OR_ ACCESS_CONF RSRC_CONF}],
           log        => [qw(APLOG_)],
  +        platform   => [qw{CRLF CR LF}],
       },
       APR => {
           table     => [qw{APR_OVERLAP_TABLES_}],
  
  
  
  1.107     +3 -1      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.106
  retrieving revision 1.107
  diff -u -r1.106 -r1.107
  --- Code.pm   21 Sep 2003 03:06:17 -0000      1.106
  +++ Code.pm   1 Oct 2003 19:53:05 -0000       1.107
  @@ -828,7 +828,9 @@
             if (strEQ(name, "$name")) {
   EOF
   
  -            if ($name eq 'DECLINE_CMD' || $name eq 'DIR_MAGIC_TYPE') {
  +            if ($name eq 'DECLINE_CMD' || 
  +                $name eq 'DIR_MAGIC_TYPE' ||
  +                $name eq 'CRLF') {
                   print $c_fh <<EOF;
                 return newSVpv($alias{$name}, 0);
   EOF
  
  
  

Reply via email to