version 1.596.2.12.2.59, 2021/12/17 20:20:14
|
version 1.596.2.12.2.60, 2022/02/09 23:50:00
|
Line 6667 sub scantron_parse_scanline {
|
Line 6667 sub scantron_parse_scanline {
|
} |
} |
|
|
sub get_master_seq { |
sub get_master_seq { |
my ($resources,$master_seq,$symb_to_resource) = @_; |
my ($resources,$master_seq,$symb_to_resource,$need_symb_in_map,$symb_for_examcode) = @_; |
return unless ((ref($resources) eq 'ARRAY') && (ref($master_seq) eq 'ARRAY') && |
return unless ((ref($resources) eq 'ARRAY') && (ref($master_seq) eq 'ARRAY') && |
(ref($symb_to_resource) eq 'HASH')); |
(ref($symb_to_resource) eq 'HASH')); |
|
if ($need_symb_in_map) { |
|
return unless (ref($symb_for_examcode) eq 'HASH'); |
|
} |
my $resource_error; |
my $resource_error; |
foreach my $resource (@{$resources}) { |
foreach my $resource (@{$resources}) { |
my $ressymb; |
my $ressymb; |
Line 6677 sub get_master_seq {
|
Line 6680 sub get_master_seq {
|
$ressymb = $resource->symb(); |
$ressymb = $resource->symb(); |
push(@{$master_seq},$ressymb); |
push(@{$master_seq},$ressymb); |
$symb_to_resource->{$ressymb} = $resource; |
$symb_to_resource->{$ressymb} = $resource; |
|
if ($need_symb_in_map) { |
|
unless ($resource->is_map()) { |
|
my $map=(&Apache::lonnet::decode_symb($ressymb))[0]; |
|
unless (exists($symb_for_examcode->{$map})) { |
|
$symb_for_examcode->{$map} = $ressymb; |
|
} |
|
} |
|
} |
} else { |
} else { |
$resource_error = 1; |
$resource_error = 1; |
last; |
last; |
Line 8493 sub scantron_validate_doublebubble {
|
Line 8504 sub scantron_validate_doublebubble {
|
if (ref($map)) { |
if (ref($map)) { |
$randomorder = $map->randomorder(); |
$randomorder = $map->randomorder(); |
$randompick = $map->randompick(); |
$randompick = $map->randompick(); |
|
unless ($randomorder || $randompick) { |
|
foreach my $res ($navmap->retrieveResources($map,sub { $_[0]->is_map() },1,0,1)) { |
|
if ($res->randomorder()) { |
|
$randomorder = 1; |
|
} |
|
if ($res->randompick()) { |
|
$randompick = 1; |
|
} |
|
last if ($randomorder || $randompick); |
|
} |
|
} |
if ($randomorder || $randompick) { |
if ($randomorder || $randompick) { |
$nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource); |
$nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource); |
if ($nav_error) { |
if ($nav_error) { |
Line 8676 sub scantron_validate_missingbubbles {
|
Line 8698 sub scantron_validate_missingbubbles {
|
if (ref($map)) { |
if (ref($map)) { |
$randomorder = $map->randomorder(); |
$randomorder = $map->randomorder(); |
$randompick = $map->randompick(); |
$randompick = $map->randompick(); |
|
unless ($randomorder || $randompick) { |
|
foreach my $res ($navmap->retrieveResources($map,sub { $_[0]->is_map() },1,0,1)) { |
|
if ($res->randomorder()) { |
|
$randomorder = 1; |
|
} |
|
if ($res->randompick()) { |
|
$randompick = 1; |
|
} |
|
last if ($randomorder || $randompick); |
|
} |
|
} |
if ($randomorder || $randompick) { |
if ($randomorder || $randompick) { |
$nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource); |
$nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource); |
if ($nav_error) { |
if ($nav_error) { |
Line 8817 sub scantron_process_students {
|
Line 8850 sub scantron_process_students {
|
} |
} |
my $map=$navmap->getResourceByUrl($sequence); |
my $map=$navmap->getResourceByUrl($sequence); |
my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb, |
my ($randomorder,$randompick,@master_seq,%symb_to_resource,%grader_partids_by_symb, |
%grader_randomlists_by_symb); |
%grader_randomlists_by_symb,%symb_for_examcode); |
if (ref($map)) { |
if (ref($map)) { |
$randomorder = $map->randomorder(); |
$randomorder = $map->randomorder(); |
$randompick = $map->randompick(); |
$randompick = $map->randompick(); |
|
unless ($randomorder || $randompick) { |
|
foreach my $res ($navmap->retrieveResources($map,sub { $_[0]->is_map() },1,0,1)) { |
|
if ($res->randomorder()) { |
|
$randomorder = 1; |
|
} |
|
if ($res->randompick()) { |
|
$randompick = 1; |
|
} |
|
last if ($randomorder || $randompick); |
|
} |
|
} |
} else { |
} else { |
$r->print(&navmap_errormsg()); |
$r->print(&navmap_errormsg()); |
return ''; |
return ''; |
Line 8828 sub scantron_process_students {
|
Line 8872 sub scantron_process_students {
|
my $nav_error; |
my $nav_error; |
my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0); |
my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0); |
if ($randomorder || $randompick) { |
if ($randomorder || $randompick) { |
$nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource); |
$nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource,1,\%symb_for_examcode); |
if ($nav_error) { |
if ($nav_error) { |
$r->print(&navmap_errormsg()); |
$r->print(&navmap_errormsg()); |
return ''; |
return ''; |
Line 8975 SCANTRONFORM
|
Line 9019 SCANTRONFORM
|
} |
} |
|
|
if (($scancode) && ($randomorder || $randompick)) { |
if (($scancode) && ($randomorder || $randompick)) { |
my $parmresult = |
foreach my $key (keys(%symb_for_examcode)) { |
&Apache::lonparmset::storeparm_by_symb($symb, |
my $symb_in_map = $symb_for_examcode{$key}; |
'0_examcode',2,$scancode, |
if ($symb_in_map ne '') { |
'string_examcode',$uname, |
my $parmresult = |
$udom); |
&Apache::lonparmset::storeparm_by_symb($symb_in_map, |
|
'0_examcode',2,$scancode, |
|
'string_examcode',$uname, |
|
$udom); |
|
} |
|
} |
} |
} |
$completedstudents{$uname}={'line'=>$line}; |
$completedstudents{$uname}={'line'=>$line}; |
if ($env{'form.verifyrecord'}) { |
if ($env{'form.verifyrecord'}) { |
Line 9618 sub checkscantron_results {
|
Line 9667 sub checkscantron_results {
|
if (ref($map)) { |
if (ref($map)) { |
$randomorder=$map->randomorder(); |
$randomorder=$map->randomorder(); |
$randompick=$map->randompick(); |
$randompick=$map->randompick(); |
|
unless ($randomorder || $randompick) { |
|
foreach my $res ($navmap->retrieveResources($map,sub { $_[0]->is_map() },1,0,1)) { |
|
if ($res->randomorder()) { |
|
$randomorder = 1; |
|
} |
|
if ($res->randompick()) { |
|
$randompick = 1; |
|
} |
|
last if ($randomorder || $randompick); |
|
} |
|
} |
} |
} |
my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0); |
my @resources=$navmap->retrieveResources($map,\&scantron_filter,1,0); |
my $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource); |
my $nav_error = &get_master_seq(\@resources,\@master_seq,\%symb_to_resource); |
Line 11280 ssi_with_retries()
|
Line 11340 ssi_with_retries()
|
- missingbubble - array ref of the bubble lines that have missing |
- missingbubble - array ref of the bubble lines that have missing |
bubble errors |
bubble errors |
|
|
$randomorder - True if exam folder has randomorder set |
$randomorder - True if exam folder (or a sub-folder) has randomorder set |
$randompick - True if exam folder has randompick set |
$randompick - True if exam folder (or a sub-folder) has randompick set |
$respnumlookup - Reference to HASH mapping question numbers in bubble lines |
$respnumlookup - Reference to HASH mapping question numbers in bubble lines |
for current line to question number used for same question |
for current line to question number used for same question |
in "Master Seqence" (as seen by Course Coordinator). |
in "Master Seqence" (as seen by Course Coordinator). |