--- rat/lonuserstate.pm 2002/10/10 19:05:32 1.46 +++ rat/lonuserstate.pm 2003/02/03 18:03:53 1.49 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Construct and maintain state and binary representation of course for user # -# $Id: lonuserstate.pm,v 1.46 2002/10/10 19:05:32 www Exp $ +# $Id: lonuserstate.pm,v 1.49 2003/02/03 18:03:53 harris41 Exp $ # # Copyright Michigan State University Board of Trustees # @@ -40,7 +40,6 @@ # 11/1,11/2,11/14,11/16,11/22,12/28, # YEAR=2001 # 07/05/01,08/30,08/31 Gerd Kortemeyer -# 12/16 Scott Harrison # ### @@ -120,6 +119,12 @@ sub loadmap { $hash{'kind_'.$rid}='res'; $hash{'title_'.$rid}=$token->[2]->{'title'}; my $turi=$token->[2]->{'src'}; + $Apache::lonnet::titlecache{ + &Apache::lonnet::symbclean( + &Apache::lonnet::declutter($uri).'___'. + $token->[2]->{'id'}.'___'. + &Apache::lonnet::declutter($turi))}= + $token->[2]->{'title'}; unless ($ispage) { $turi=~/\.(\w+)$/; my $embstyle=&Apache::loncommon::fileembstyle($1); @@ -272,7 +277,8 @@ sub traceroute { $sofar=simplify($sofar); unless ($beenhere=~/\&$rid\&/) { $beenhere.=$rid.'&'; - if (($retfurl eq '') && ($hash{'src_'.$rid})) { + if (($retfurl eq '') && ($hash{'src_'.$rid}) + && ($hash{'src_'.$rid}!~/\.sequence$/)) { my ($mapid,$resid)=split(/\./,$rid); $retfurl=$hash{'src_'.$rid}. (($hash{'src_'.$rid}=~/\?/)?'&':'?').'symb='. @@ -486,9 +492,9 @@ sub readmap { &pickrandom(); } # ------------------------------------------------------------ Version tracking - if (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) { - &Apache::lonnet::logthis('Will be version tracking'); - } +# if (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) { +# &Apache::lonnet::logthis('Will be version tracking'); +# } unless ((untie(%hash)) && (untie(%parmhash))) { &Apache::lonnet::logthis("WARNING: ". "Could not untie coursemap $fn for $uri."); @@ -516,8 +522,6 @@ sub readmap { $retfurl='/adm/email?critical=display'; } } - - return ($retfurl,$errtext); }