version 1.134, 2005/12/20 16:31:50
|
version 1.137, 2006/03/08 22:17:17
|
Line 37 BEGIN {
|
Line 37 BEGIN {
|
|
|
sub start_response { |
sub start_response { |
my ($parstack,$safeeval)=@_; |
my ($parstack,$safeeval)=@_; |
my $id= &Apache::lonxml::get_param('id',$parstack,$safeeval); |
my $id = &Apache::lonxml::get_id($parstack,$safeeval); |
if ($id eq '') { $id = $Apache::lonxml::curdepth; } |
|
if ($#Apache::inputtags::import > -1) { |
if ($#Apache::inputtags::import > -1) { |
&Apache::lonxml::debug("Turning :$id: into"); |
&Apache::lonxml::debug("Turning :$id: into"); |
$id = join('_',@Apache::inputtags::import).'_'.$id; |
$id = join('_',@Apache::inputtags::import).'_'.$id; |
Line 69 sub end_response {
|
Line 68 sub end_response {
|
|
|
sub start_hintresponse { |
sub start_hintresponse { |
my ($parstack,$safeeval)=@_; |
my ($parstack,$safeeval)=@_; |
my $id= &Apache::lonxml::get_param('id',$parstack,$safeeval); |
my $id = &Apache::lonxml::get_id($parstack,$safeeval); |
if ($id eq '') { $id = $Apache::lonxml::curdepth; } |
|
push (@Apache::inputtags::hint,$id); |
push (@Apache::inputtags::hint,$id); |
push (@Apache::inputtags::hintlist,$id); |
push (@Apache::inputtags::hintlist,$id); |
push (@Apache::inputtags::paramstack,[%Apache::inputtags::params]); |
push (@Apache::inputtags::paramstack,[%Apache::inputtags::params]); |
Line 611 sub answer_header {
|
Line 609 sub answer_header {
|
} else { |
} else { |
$result = '<table border="1"><tr>'; |
$result = '<table border="1"><tr>'; |
if ($Apache::lonhomework::type eq 'exam') { |
if ($Apache::lonhomework::type eq 'exam') { |
$result .= '<td>'.$Apache::lonxml::counter. ')</td>'; |
$result .= '<td>'.$Apache::lonxml::counter+$increment. ')</td>'; |
} else { |
} else { |
$result .= '<td>Answer for Part:'.$Apache::inputtags::part.'</td>'; |
$result .= '<td>Answer for Part:'.$Apache::inputtags::part.'</td>'; |
} |
} |
Line 884 sub add_to_gradingqueue {
|
Line 882 sub add_to_gradingqueue {
|
my ($symb,$courseid,$domain,$name) = &Apache::lonxml::whichuser(); |
my ($symb,$courseid,$domain,$name) = &Apache::lonxml::whichuser(); |
if ( $courseid eq '' |
if ( $courseid eq '' |
|| $symb eq '' |
|| $symb eq '' |
|| $env{'request.state'} eq 'construct') { |
|| $env{'request.state'} eq 'construct' |
|
|| $Apache::lonhomework::type ne 'problem') { |
return; |
return; |
} |
} |
|
|