Diff for /loncom/lonnet/perl/lonnet.pm between versions 1.40 and 1.45

version 1.40, 2000/10/09 20:26:17 version 1.45, 2000/10/12 02:11:16
Line 42 Line 42
 # varval(name)       : value of a variable  # varval(name)       : value of a variable
 # refreshstate()     : refresh the state information string  # refreshstate()     : refresh the state information string
 # symblist(map,hash) : Updates symbolic storage links  # symblist(map,hash) : Updates symbolic storage links
 # symbread(filename) : returns the data handle  # symbread([filename]) : returns the data handle (filename optional)
 # rndseed()          : returns a random seed    # rndseed()          : returns a random seed  
 # getfile(filename)  : returns the contents of filename, or a -1 if it can't  # getfile(filename)  : returns the contents of filename, or a -1 if it can't
 #                      be found, replicates and subscribes to the file  #                      be found, replicates and subscribes to the file
Line 62 Line 62
 # 08/22,08/28,08/31,09/01,09/02,09/04,09/05,09/25,09/28,09/30 Gerd Kortemeyer  # 08/22,08/28,08/31,09/01,09/02,09/04,09/05,09/25,09/28,09/30 Gerd Kortemeyer
 # 10/04 Gerd Kortemeyer  # 10/04 Gerd Kortemeyer
 # 10/04 Guy Albertelli  # 10/04 Guy Albertelli
 # 10/06,10/09 Gerd Kortemeyer  # 10/06,10/09,10/10,10/11 Gerd Kortemeyer
   
 package Apache::lonnet;  package Apache::lonnet;
   
Line 431  sub log { Line 431  sub log {
 sub store {  sub store {
     my %storehash=@_;      my %storehash=@_;
     my $symb;      my $symb;
     unless ($symb=escape(&symbread($ENV{'request.filename'}))) { return ''; }      unless ($symb=escape(&symbread())) { return ''; }
     my $namespace;      my $namespace;
     unless ($namespace=$ENV{'request.course.id'}) { return ''; }      unless ($namespace=$ENV{'request.course.id'}) { return ''; }
     my $namevalue='';      my $namevalue='';
Line 448  sub store { Line 448  sub store {
   
 sub restore {  sub restore {
     my $symb;      my $symb;
     unless ($symb=escape(&symbread($ENV{'request.filename'}))) { return ''; }      unless ($symb=escape(&symbread())) { return ''; }
     my $namespace;      my $namespace;
     unless ($namespace=$ENV{'request.course.id'}) { return ''; }      unless ($namespace=$ENV{'request.course.id'}) { return ''; }
     my $answer=reply(      my $answer=reply(
Line 596  sub get { Line 596  sub get {
                  $ENV{'user.home'});                   $ENV{'user.home'});
    my @pairs=split(/\&/,$rep);     my @pairs=split(/\&/,$rep);
    my %returnhash=();     my %returnhash=();
      my $i=0;
    map {     map {
       my ($key,$value)=split(/=/,$_);        $returnhash{$_}=unescape($pairs[$i]);
       $returnhash{unescape($key)}=unescape($value);        $i++;
    } @pairs;     } @storearr;
    return %returnhash;     return %returnhash;
 }  }
   
Line 657  sub eget { Line 658  sub eget {
                  $ENV{'user.home'});                   $ENV{'user.home'});
    my @pairs=split(/\&/,$rep);     my @pairs=split(/\&/,$rep);
    my %returnhash=();     my %returnhash=();
      my $i=0;
    map {     map {
       my ($key,$value)=split(/=/,$_);        $returnhash{$_}=unescape($pairs[$i]);
       $returnhash{unescape($key)}=unescape($value);        $i++;
    } @pairs;     } @storearr;
    return %returnhash;     return %returnhash;
 }  }
   
Line 759  sub allowed { Line 761  sub allowed {
 # Restricted by state?  # Restricted by state?
   
            if ($thisallowed=~/X/) {             if ($thisallowed=~/X/) {
       if (&condval($uricond)>1) {        if (&condval($uricond)) {
          return '2';           return '2';
               } else {                } else {
                  return '';                   return '';
Line 1027  sub symblist { Line 1029  sub symblist {
 # ------------------------------------------------------ Return symb list entry  # ------------------------------------------------------ Return symb list entry
   
 sub symbread {  sub symbread {
     my $thisfn=declutter(shift);      my $thisfn=shift;
       unless ($thisfn) {
    $thisfn=$ENV{'request.filename'};
       }
       $thisfn=declutter($thisfn);
     my %hash;      my %hash;
     my %bighash;      my %bighash;
     my $syval='';      my $syval='';
     if (($ENV{'request.course.fn'}) && ($ENV{'request.filename'})) {      if (($ENV{'request.course.fn'}) && ($thisfn)) {
         if (tie(%hash,'GDBM_File',$ENV{'request.course.fn'}.'_symb.db',          if (tie(%hash,'GDBM_File',$ENV{'request.course.fn'}.'_symb.db',
                       &GDBM_READER,0640)) {                        &GDBM_READER,0640)) {
     $syval=$hash{$thisfn};      $syval=$hash{$thisfn};
Line 1041  sub symbread { Line 1047  sub symbread {
         if ($syval) {          if ($syval) {
            unless ($syval=~/\_\d+$/) {             unless ($syval=~/\_\d+$/) {
        unless ($ENV{'form.request.prefix'}=~/\.(\d+)\_$/) {         unless ($ENV{'form.request.prefix'}=~/\.(\d+)\_$/) {
                     &appenv('request.ambiguous' => $thisfn);
                   return '';                    return '';
                }                     }    
                $syval.=$1;                 $syval.=$1;
Line 1080  sub symbread { Line 1087  sub symbread {
         }          }
         if ($syval) { return $syval.'___'.$thisfn; }          if ($syval) { return $syval.'___'.$thisfn; }
     }      }
       &appenv('request.ambiguous' => $thisfn);
     return '';      return '';
 }  }
   
Line 1099  sub numval { Line 1107  sub numval {
   
 sub rndseed {  sub rndseed {
     my $symb;      my $symb;
     unless ($symb=&symbread($ENV{'request.filename'})) { return ''; }      unless ($symb=&symbread()) { return time; }
     my $symbchck=unpack("%32C*",$symb);      my $symbchck=unpack("%32C*",$symb);
     my $symbseed=numval($symb)%$symbchck;      my $symbseed=numval($symb)%$symbchck;
     my $namechck=unpack("%32C*",$ENV{'user.name'});      my $namechck=unpack("%32C*",$ENV{'user.name'});

Removed from v.1.40  
changed lines
  Added in v.1.45


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