Diff for /loncom/homework/radiobuttonresponse.pm between versions 1.134 and 1.135

version 1.134, 2008/08/08 16:37:13 version 1.135, 2008/09/05 12:50:45
Line 100  sub start_radiobuttonresponse { Line 100  sub start_radiobuttonresponse {
  } else {   } else {
     $result .= ' \renewcommand{\labelenumi}{\Alph{enumi}.}';      $result .= ' \renewcommand{\labelenumi}{\Alph{enumi}.}';
  }   }
  $result .= '\begin{enumerate}';          if($env{'form.pdfFormFields'} eq 'yes') {
               $result .= &Apache::lonxml::print_pdf_hiddenfield('meta', $env{'user.name'}, $env{'user.domain'});
               $result .= "\n\\\\\n\\\\\n";
           } else {
               $result .= '\begin{enumerate}';
           }
     } elsif ($target eq 'analyze') {      } elsif ($target eq 'analyze') {
  my $part_id="$Apache::inputtags::part.$id";   my $part_id="$Apache::inputtags::part.$id";
         $Apache::lonhomework::analyze{"$part_id.type"} = 'radiobuttonresponse';          $Apache::lonhomework::analyze{"$part_id.type"} = 'radiobuttonresponse';
Line 113  sub end_radiobuttonresponse { Line 118  sub end_radiobuttonresponse {
     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;      my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
     my $result;      my $result;
     if ($target eq 'edit') { $result=&Apache::edit::end_table(); }      if ($target eq 'edit') { $result=&Apache::edit::end_table(); }
     if ($target eq 'tex') { $result .= '\end{enumerate}'; }      if ($target eq 'tex' and $env{'form.pdfFormFields'} ne 'yes') { 
           $result .= '\end{enumerate}'; 
       }
     &Apache::response::end_response;      &Apache::response::end_response;
     pop @Apache::lonxml::namespace;      pop @Apache::lonxml::namespace;
     &Apache::lonxml::deregister('Apache::radiobuttonresponse',('foilgroup','foil','conceptgroup'));      &Apache::lonxml::deregister('Apache::radiobuttonresponse',('foilgroup','foil','conceptgroup'));
Line 347  sub displayallfoils { Line 354  sub displayallfoils {
     $result.="<td>";      $result.="<td>";
  } else {   } else {
     if ($target eq 'tex') {      if ($target eq 'tex') {
  $result .= '\item \vskip -2mm ';          if($env{'form.pdfFormFields'} eq 'yes') {
     } else {                              my $fieldname = $env{'request.symb'}.
                                              '&part_'. $Apache::inputtags::part.
                                              '&radiobuttonresponse'.
                                              '&HWVAL_' . $Apache::inputtags::response['-1'];
                               my $value = $temp;
                               my $text = $Apache::response::foilgroup{$name.'.text'};
                               $result .= &Apache::lonxml::print_pdf_radiobutton($fieldname,
                                                                                $value,
                                                                                $text)."\n";
                           } else {
                               $result .= '\item \vskip -2mm ';
                           }
                       } else {
  $result.="<br />";   $result.="<br />";
     }      }
  }   }
  if ($target eq 'tex') {   if ($target eq 'tex') {
     $result .= '$\bigcirc$'.$Apache::response::foilgroup{$name.'.text'}.'\\\\';  #' stupid emacs      if($env{'form.pdfFormFields'} ne 'yes') {
                           $result .= '$\bigcirc$'.$Apache::response::foilgroup{$name.'.text'}.'\\\\';  #' stupid emacs
                       }
     $i++;      $i++;
  } else {   } else {
     $result .= '<label>';      $result .= '<label>';
Line 632  sub displayfoils { Line 653  sub displayfoils {
     $i++;      $i++;
     $bubble_number++;      $bubble_number++;
  } else {   } else {
     $result .= '\vspace*{-2 mm}\item '.$Apache::response::foilgroup{$name.'.text'};        if($env{'form.pdfFormFields'} eq 'yes') {
  }  
                            my $fieldname = $env{'request.symb'}.
                                            '&part_'. $Apache::inputtags::part.
                                            '&radiobuttonresponse'.
                                            '&HWVAL_' . $Apache::inputtags::response['-1'];
                            my $value = $temp;
                            my $text = $Apache::response::foilgroup{$name.'.text'};
                            $result .= &Apache::lonxml::print_pdf_radiobutton($fieldname, $value, $text).'\newline'."\n";
                        } else { 
                            $result .= '\vspace*{-2 mm}\item '.$Apache::response::foilgroup{$name.'.text'};
                        }
                   }
     }      }
     if ($target ne 'tex' && $direction eq 'horizontal') {      if ($target ne 'tex' && $direction eq 'horizontal') {
  $result.="</td>";    $result.="</td>"; 

Removed from v.1.134  
changed lines
  Added in v.1.135


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