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

version 1.134.2.1, 2008/12/11 03:29:30 version 1.135, 2008/09/05 12:50:45
Line 65  sub start_radiobuttonresponse { Line 65  sub start_radiobuttonresponse {
     if ($target eq 'meta') {      if ($target eq 'meta') {
  $result=&Apache::response::meta_package_write('radiobuttonresponse');   $result=&Apache::response::meta_package_write('radiobuttonresponse');
     } elsif ($target eq 'edit' ) {      } elsif ($target eq 'edit' ) {
         $result.=&Apache::edit::start_table($token)   $result.=&Apache::edit::start_table($token).
            .'<tr><td>'.&Apache::lonxml::description($token)      '<tr><td>'.&Apache::lonxml::description($token).
            .&Apache::loncommon::help_open_topic('Radio_Response_Problems')      &Apache::loncommon::help_open_topic('Radio_Response_Problems').
            .'</td>'      "</td><td>Delete:".
            .'<td><span class="LC_nobreak">'.&mt('Delete?').' '      &Apache::edit::deletelist($target,$token)
            .&Apache::edit::deletelist($target,$token)      ."</td><td>&nbsp".&Apache::edit::end_row()
            .'</span></td>'      .&Apache::edit::start_spanning_row();
            .'<td>&nbsp;'.&Apache::edit::end_row()  
            .&Apache::edit::start_spanning_row();  
  $result.=   $result.=
     &Apache::edit::text_arg('Max Number Of Shown Foils:','max',      &Apache::edit::text_arg('Max Number Of Shown Foils:','max',
     $token,'4').'&nbsp;'x 3 .      $token,'4').
     &Apache::edit::select_arg('Randomize Foil Order:','randomize',      &Apache::edit::select_arg('Randomize Foil Order','randomize',
       ['yes','no'],$token).'&nbsp;'x 3 .        ['yes','no'],$token).
     &Apache::edit::select_arg('Display Direction:','direction',      &Apache::edit::select_arg('Display Direction','direction',
       ['vertical','horizontal'],$token).        ['vertical','horizontal'],$token).
       &Apache::edit::end_row().        &Apache::edit::end_row().
       &Apache::edit::start_spanning_row()."\n";        &Apache::edit::start_spanning_row()."\n";
Line 102  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 115  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 349  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 634  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.2.1  
changed lines
  Added in v.1.135


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