Diff for /loncom/homework/response.pm between versions 1.49 and 1.52

version 1.49, 2001/10/01 20:18:31 version 1.52, 2001/12/04 14:53:18
Line 16  sub start_response { Line 16  sub start_response {
   my ($parstack,$safeeval)=@_;    my ($parstack,$safeeval)=@_;
   my $id= &Apache::lonxml::get_param('id',$parstack,$safeeval);    my $id= &Apache::lonxml::get_param('id',$parstack,$safeeval);
   if ($id eq '') { $id = $Apache::lonxml::curdepth; }    if ($id eq '') { $id = $Apache::lonxml::curdepth; }
     if ($#Apache::inputtags::import > -1) {
       &Apache::lonxml::debug("Turning :$id: into");
       $id = join('_',@Apache::inputtags::import).'_'.$id;
       &Apache::lonxml::debug("New  :$id:");
     }
   push (@Apache::inputtags::response,$id);    push (@Apache::inputtags::response,$id);
   push (@Apache::inputtags::responselist,$id);    push (@Apache::inputtags::responselist,$id);
   @Apache::inputtags::inputlist=();    @Apache::inputtags::inputlist=();
Line 309  sub start_responseparam { Line 314  sub start_responseparam {
       $result = &Apache::edit::rebuild_tag($token);        $result = &Apache::edit::rebuild_tag($token);
       $result.=&Apache::edit::handle_insert();        $result.=&Apache::edit::handle_insert();
     }      }
     } elsif ($target eq 'grade') {
       if ($ENV{'request.state'} eq 'construct') {
         my $name    = &Apache::lonxml::get_param('name',$parstack,$safeeval);
         my $default = &Apache::lonxml::get_param('default',$parstack,$safeeval);
         $Apache::inputtags::params{$name}=$default;
       }
   }    }
   return $result;    return $result;
 }  }
Line 322  sub end_responseparam { Line 333  sub end_responseparam {
 sub setup_params {  sub setup_params {
   my ($tag) = @_;    my ($tag) = @_;
   
     if ($ENV{'request.state'} eq 'construct') { return; }
   @Apache::inputtags::params=();    @Apache::inputtags::params=();
   my %paramlist=();    my %paramlist=();
   foreach my $key (keys(%Apache::lonnet::packagetab)) {    foreach my $key (keys(%Apache::lonnet::packagetab)) {
Line 352  sub setup_params { Line 364  sub setup_params {
 sub answer_header {  sub answer_header {
   my ($type) = @_;    my ($type) = @_;
   my $result;    my $result;
   if ($type eq 'optionresponse') {    if ($type eq 'optionresponse' || $type eq 'radiobuttonresponse' ) {
     $result = '<table border="1"><tr><th>Answer for Part:'.      $result = '<table border="1"><tr><th>Answer for Part:'.
       $Apache::inputtags::part. '</th></tr><tr>'."\n";        $Apache::inputtags::part. '</th></tr><tr>'."\n";
   } else {    } else {
Line 365  sub answer_header { Line 377  sub answer_header {
 sub answer_part {  sub answer_part {
   my ($type,$answer) = @_;    my ($type,$answer) = @_;
   my $result;    my $result;
   if ($type eq 'optionresponse') {    if ($type eq 'optionresponse' || $type eq 'radiobuttonresponse') {
     $result = '<td>'.$answer.'</td>';      $result = '<td>'.$answer.'</td>';
   } else {    } else {
     $result = '<td>'.$answer.'</td>';      $result = '<td>'.$answer.'</td>';
Line 376  sub answer_part { Line 388  sub answer_part {
 sub answer_footer {  sub answer_footer {
   my ($type) = @_;    my ($type) = @_;
   my $result;    my $result;
   if ($type eq 'optionresponse') {    if ($type eq 'optionresponse' || $type eq 'radiobuttonresponse') {
     $result = '</tr></table>';      $result = '</tr></table>';
   } else {    } else {
     $result = '</tr></table>';      $result = '</tr></table>';

Removed from v.1.49  
changed lines
  Added in v.1.52


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>