--- rat/lonuserstate.pm 2000/09/04 17:17:51 1.8
+++ rat/lonuserstate.pm 2000/10/31 19:31:42 1.14
@@ -10,7 +10,8 @@
# 7/1 Gerd Kortemeyer)
# 7/1,7/3,7/4,7/7,7/8,7/10 Gerd Kortemeyer)
#
-# 7/15,7/17,7/18,8/1,8/2,8/4,8/5,8/21,8/22,8/23,8/30,9/2,9/4 Gerd Kortemeyer
+# 7/15,7/17,7/18,8/1,8/2,8/4,8/5,8/21,8/22,8/23,8/30,
+# 9/2,9/4,9/29,9/30,10/2,10/11,10/30,10/31 Gerd Kortemeyer
package Apache::lonuserstate;
@@ -20,6 +21,7 @@ use Apache::File;
use HTML::TokeParser;
use Apache::lonnet();
use GDBM_File;
+use Apache::lonmsg;
# ---------------------------------------------------- Globals for this package
@@ -41,8 +43,7 @@ sub loadmap {
my $fn='/home/httpd/html'.$uri;
- unless (($fn=~/\.course$/) ||
- ($fn=~/\.sequence$/) ||
+ unless (($fn=~/\.sequence$/) ||
($fn=~/\.page$/)) {
$errtext.="Invalid map: $fn\n";
return OK;
@@ -116,8 +117,7 @@ sub loadmap {
$hash{'type_'.$rid}='normal';
}
- if (($turi=~/\.course$/) ||
- ($turi=~/\.sequence$/) ||
+ if (($turi=~/\.sequence$/) ||
($turi=~/\.page$/)) {
$hash{'is_map_'.$rid}=1;
&loadmap($turi);
@@ -250,7 +250,7 @@ sub accinit {
map {
my $sub=$_;
my $orig=$_;
- $sub=~/\(\((\d+\&(:?\d+\&)*)(?:\d+\&*)+\)(?:\|\(\1(?:\d+\&*)+\))+\)/;
+ $sub=~/\(\((\d+\&(:?\d+\&)*)(?:\d+\&*)+\)(?:\|\(\1(?:\d+\&*)+\))+\)/;
my $factor=$1;
$sub=~s/$factor//g;
$sub=~s/^\(/\($factor\(/;
@@ -269,43 +269,62 @@ sub accinit {
} keys %hash;
map {
if ($_=~/^ids/) {
- my $resid=$hash{$_};
+ map {
+ my $resid=$_;
my $uri=$hash{'src_'.$resid};
my @uriparts=split(/\//,$uri);
my $urifile=$uriparts[$#uriparts];
$#uriparts--;
my $uripath=join('/',@uriparts);
$uripath=~s/^\/res\///;
+ my $uricond='0';
if (defined($hash{'conditions_'.$resid})) {
- $urifile.=':'.$captured{$hash{'conditions_'.$resid}};
- } else {
- $urifile.=':0';
+ $uricond=$captured{$hash{'conditions_'.$resid}};
}
if (defined($acchash{'acc.res.'.$short.'.'.$uripath})) {
- $acchash{'acc.res.'.$short.'.'.$uripath}.=$urifile.'&';
+ if ($acchash{'acc.res.'.$short.'.'.$uripath}=~
+ /(\&$urifile\:[^\&]*)/) {
+ my $replace=$1;
+ $acchash{'acc.res.'.$short.'.'.$uripath}
+ =~s/$replace/$replace\|$uricond/;
+ } else {
+ $acchash{'acc.res.'.$short.'.'.$uripath}.=
+ $urifile.':'.$uricond.'&';
+ }
} else {
- $acchash{'acc.res.'.$short.'.'.$uripath}='&'.$urifile.'&';
- }
- }
+ $acchash{'acc.res.'.$short.'.'.$uripath}=
+ '&'.$urifile.':'.$uricond.'&';
+ }
+ } split(/\,/,$hash{$_});
+ }
} keys %hash;
my $courseuri=$uri;
$courseuri=~s/^\/res\///;
+ &Apache::lonnet::delenv('(acc\.|httpref\.)');
&Apache::lonnet::appenv(%acchash,
- "request.course" => $short,
+ "request.course.id" => $short,
"request.course.fn" => $fn,
"request.course.uri" => $courseuri);
}
# ---------------------------------------------------- Read map and all submaps
-#
-# Call with uri of course map, short name for course, and filename for
-# binary structure
-#
-
sub readmap {
- my ($uri,$short,$fn)=@_;
+ my $short=shift;
+ $short=~s/^\///;
+ my %cenv=&Apache::lonnet::coursedescription($short);
+ my $fn=$cenv{'fn'};
+ my $uri;
+ $short=~s/\//\_/g;
+ unless ($uri=$cenv{'url'}) {
+ &Apache::lonnet::logthis("WARNING: ".
+ "Could not load course $short.");
+ return 'No course data available.';
+ }
@cond=('true:normal');
+ unlink($fn.'.db');
+ unlink($fn.'_symb.db');
+ unlink($fn.'.state');
if (tie(%hash,'GDBM_File',"$fn.db",&GDBM_WRCREAT,0640)) {
%hash=();
$errtext='';
@@ -332,6 +351,7 @@ sub readmap {
&Apache::lonnet::logthis("WARNING: ".
"Could not tie coursemap $fn for $uri.");
}
+ &Apache::lonmsg::author_res_msg($ENV{'request.course.uri'},$errtext);
return $errtext;
}