--- loncom/homework/bridgetask.pm 2005/04/05 15:39:41 1.10 +++ loncom/homework/bridgetask.pm 2005/04/07 06:56:21 1.11 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # definition of tags that give a structure to a document # -# $Id: bridgetask.pm,v 1.10 2005/04/05 15:39:41 albertel Exp $ +# $Id: bridgetask.pm,v 1.11 2005/04/07 06:56:21 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -56,14 +56,14 @@ sub initialize_bridgetask { sub proctor_check_auth { my ($slot)=@_; - my $user=$ENV{'form.proctorname'}; - my $domain=$ENV{'form.proctordomain'}; + my $user=$env{'form.proctorname'}; + my $domain=$env{'form.proctordomain'}; my @allowed=split(",",$slot->{'proctor'}); foreach my $possible (@allowed) { my ($puser,$pdom)=(split('@',$possible)); if ($puser eq $user && $pdom eq $domain) { - my $authhost=&Apache::lonnet::authenticate($puser,$ENV{'form.proctorpassword'},$pdom); + my $authhost=&Apache::lonnet::authenticate($puser,$env{'form.proctorpassword'},$pdom); if ($authhost ne 'no_host') { $Apache::lonhomework::results{'resource.checkedin'}= $user.'@'.$domain; @@ -152,10 +152,10 @@ sub start_Task { $body_tag_start \n $form_tag_start". ''; # if we are viewing someone else preserve that info - if (defined $ENV{'form.grade_symb'}) { + if (defined $env{'form.grade_symb'}) { foreach my $field ('symb','courseid','domain','username') { $result .= ''."\n"; + '" value="'.$env{"form.grade_$field"}.'" />'."\n"; } } } @@ -173,7 +173,7 @@ sub end_Task { if ($target eq 'grade' || $target eq 'web' || $target eq 'answer' || $target eq 'tex') { if ( - (($target eq 'web') && ($ENV{'request.state'} ne 'construct')) || + (($target eq 'web') && ($env{'request.state'} ne 'construct')) || ($target eq 'answer') || ($target eq 'tex') ) { if ($target eq 'web') { @@ -327,10 +327,10 @@ sub proctor_validation_screen { my ($slot) = @_; my (undef,undef,$domain,$user) = &Apache::lonxml::whichuser(); my $url=&Apache::lonnet::studentphoto($domain,$user,'jpg'); - $user=$ENV{'form.proctorname'}; - if ($ENV{'form.proctordomain'}) { $domain=$ENV{'form.proctordomain'}; } + $user=$env{'form.proctorname'}; + if ($env{'form.proctordomain'}) { $domain=$env{'form.proctordomain'}; } my $msg; - if ($ENV{'form.proctorpassword'}) { + if ($env{'form.proctorpassword'}) { $msg='

'.&mt("Failed to authenticate the proctor.") .'

'; } @@ -338,7 +338,7 @@ sub proctor_validation_screen {

Proctor Validation

Your room's proctor needs to validate your access to this resource.

$msg -
+