Diff for /loncom/auth/lonacc.pm between versions 1.14 and 1.16

version 1.14, 2000/12/25 12:44:43 version 1.16, 2001/01/06 16:12:24
Line 2 Line 2
 # Cookie Based Access Handler  # Cookie Based Access Handler
 # 5/21/99,5/22,5/29,5/31,6/15,16/11,22/11,  # 5/21/99,5/22,5/29,5/31,6/15,16/11,22/11,
 # 01/06,01/13,05/31,06/01,09/06,09/25,09/28,10/30,11/6,  # 01/06,01/13,05/31,06/01,09/06,09/25,09/28,10/30,11/6,
 # 12/25 Gerd Kortemeyer  # 12/25,12/26,06/01 Gerd Kortemeyer
   
 package Apache::lonacc;  package Apache::lonacc;
   
Line 11  use Apache::Constants qw(:common :http : Line 11  use Apache::Constants qw(:common :http :
 use Apache::File;  use Apache::File;
 use Apache::lonnet;  use Apache::lonnet;
 use CGI::Cookie();  use CGI::Cookie();
   use Fcntl qw(:flock);
   
 sub handler {  sub handler {
     my $r = shift;      my $r = shift;
Line 29  sub handler { Line 30  sub handler {
             my @profile;              my @profile;
     {      {
              my $idf=Apache::File->new("$lonidsdir/$handle.id");               my $idf=Apache::File->new("$lonidsdir/$handle.id");
                flock($idf,LOCK_SH);
              @profile=<$idf>;               @profile=<$idf>;
                $idf->close();
     }      }
             my $envi;              my $envi;
             for ($envi=0;$envi<=$#profile;$envi++) {              for ($envi=0;$envi<=$#profile;$envi++) {
Line 81  sub handler { Line 84  sub handler {
  if ($lines[$i]=~/^$contentsep/) {   if ($lines[$i]=~/^$contentsep/) {
     if ($name) {      if ($name) {
                         chomp($value);                          chomp($value);
                         $ENV{"form.$name"}=$value;  
  if ($fname) {   if ($fname) {
     $ENV{"form.$name.filename"}=$fname;      $ENV{"form.$name.filename"}=$fname;
                             $ENV{"form.$name.mimetype"}=$fmime;                              $ENV{"form.$name.mimetype"}=$fmime;
                           } else {
                               $value=~s/\s+$//s;
                         }                          }
                           $ENV{"form.$name"}=$value;
                     }                      }
                     if ($i<$#lines) {                      if ($i<$#lines) {
  $i++;   $i++;

Removed from v.1.14  
changed lines
  Added in v.1.16


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>