--- loncom/homework/radiobuttonresponse.pm 2002/11/14 20:30:34 1.61 +++ loncom/homework/radiobuttonresponse.pm 2012/02/05 16:11:57 1.153.6.10 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # mutliple choice style responses # -# $Id: radiobuttonresponse.pm,v 1.61 2002/11/14 20:30:34 sakharuk Exp $ +# $Id: radiobuttonresponse.pm,v 1.153.6.10 2012/02/05 16:11:57 foxr Exp $ # # Copyright Michigan State University Board of Trustees # @@ -18,505 +18,1606 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with LON-CAPA; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# along with LON-CAPA; if not, write to the Free Software# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # /home/httpd/html/adm/gpl.txt # # http://www.lon-capa.org/ # -# 2/21 Guy package Apache::radiobuttonresponse; use strict; use HTML::Entities(); +use Apache::lonlocal; +use Apache::lonnet; +use Apache::response; +use Apache::caparesponse; + +my $default_bubbles_per_line = 10; +my @alphabet = ( 'A' .. 'Z' ); # Foil labels. + + BEGIN { - &Apache::lonxml::register('Apache::radiobuttonresponse',('radiobuttonresponse')); + &Apache::lonxml::register( 'Apache::radiobuttonresponse', + ('radiobuttonresponse') ); +} + +#--------------------------------------------------------------------------- +# +# Generic utility subs. + +sub bubble_line_count { + my ( $numfoils, $bubbles_per_line ) = @_; + my $bubble_lines; + $bubble_lines = int( $numfoils / $bubbles_per_line ); + if ( ( $numfoils % $bubbles_per_line ) != 0 ) { + $bubble_lines++; + } + return $bubble_lines; + } + +#------------------------------------------------------------------------------ +# +# XML handlers. sub start_radiobuttonresponse { - my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_; - my $result; - #when in a radiobutton response use these - &Apache::lonxml::register('Apache::radiobuttonresponse',('foilgroup','foil','conceptgroup')); - push (@Apache::lonxml::namespace,'radiobuttonresponse'); - my $id = &Apache::response::start_response($parstack,$safeeval); - %Apache::hint::radiobutton=(); - if ($target eq 'meta') { - $result=&Apache::response::meta_package_write('radiobuttonresponse'); - } elsif ($target eq 'edit' ) { - $result.=&Apache::edit::start_table($token). - '
+ #
+
+
+ my ($opening_html, $closing_html, $pre_foil, $post_foil) =
+ &html_direction_fragments($direction);
+
+ $result = $opening_html;
+
+ # Different rendering depending on whether answers are shown:
+ # I played with different factorings but this seems the most concise/clear...
+ # although I don't like the $showanswer conditino inside the loop. Other things I tried
+ # - two loops..much longer code..no gain in clarity.
+ # - Using a visitor patttern passing it the rendering code chunklets and
+ # an anonymous hash reference for state data etc. Very cool but
+ # quite a bit more code and quite a bit less clear.
+
+ my $temp = 0;
+ foreach my $name (@{$names}) {
+ $result .= $pre_foil;
+
+ if ($showanswer) {
+ my $foiltext = $Apache::response::foilgroup{$name . '.text'};
+
+ # Bold the prior response:
+
+ if (defined($lastresponse->{$name})) {
+ $result .= '' . $foiltext . '';
+ } else {
+ $result .= $foiltext;
+ }
+ } else {
+ $result .= &html_radiobutton(
+ $part, $Apache::inputtags::response['-1'], $name, $lastresponse, $temp
+ );
+ }
+
+ $result .= $post_foil;
$temp++;
- }
}
- }
- return $result;
+
+
+ $result .= $closing_html;
+ return $result;
+
}
-sub whichfoils {
- my ($max,$randomize)=@_;
+##
+# Generate LaTeX for surveys.
+#
+# @param $names - names of the foils to display.
+# @param $showanswer - flag that is true to display answers.
+# @param $lastresponse - Reference to a hash the indicates the last response.
+# @param $direction - Orientation of foils ('horiztonal' or otherwise).
+# @param $venv - LaTeX name for vertical env.
+#
+# @return string
+# @retval LaTeX rendering of the survey question.
- my @truelist;
- my @falselist;
- my @whichfalse =();
- my ($truecnt,$falsecnt) = &getfoilcounts();
- my $count=0;
- # we will add in 1 of the true statements
- if (($falsecnt+1)>$max) { $count=$max } else { $count=$falsecnt+1; }
- my $answer=int(&Math::Random::random_uniform() * ($count));
- &Apache::lonxml::debug("Count is $count, $answer is $answer");
- my @names;
- if ( $Apache::response::foilgroup{'names'} ) {
- @names= @{ $Apache::response::foilgroup{'names'} };
- }
- if (&Apache::response::showallfoils()) {
- @whichfalse=@names;
- } elsif ($randomize eq 'no') {
- &Apache::lonxml::debug("No randomization");
- my $havetrue=0;
- foreach my $name (@names) {
- if ($Apache::response::foilgroup{$name.'.value'} eq 'true') {
- if (!$havetrue ) {
- push(@whichfalse,$name); $havetrue++; $answer=$#whichfalse;
- }
- } elsif ($Apache::response::foilgroup{$name.'.value'} eq 'false') {
- push (@whichfalse,$name);
- } elsif ($Apache::response::foilgroup{$name.'.value'} eq 'unused') {
- } else {
- &Apache::lonxml::error(&HTML::Entities::encode("No valid value assigned ($Apache::response::foilgroup{$name.'.value'}) for foil $name in
', '', ' ', ' ');
+ } else {
+ return ('', '
', '
', '');
+ }
+}
+
+##
+#
+# Displays all the foils of a problem in a format suitable for
+# surveys, surveys for credit, anonymous surveys and anonymous surveys for credit.
+#
+# @param $direction - Display direction of the choices ('horiztonal' or not).
+# @param $target - Rendering target.
+#
+# @return string
+# @retval Text that renders for the selected target.
+#
+sub displayallfoils{
+ my ( $direction, $target ) = @_;
+ my $result;
+ &Apache::lonxml::debug("survey style display");
+
+ my @names;
+
+ if ( $Apache::response::foilgroup{'names'} ) {
+ @names = @{ $Apache::response::foilgroup{'names'} };
+ }
+
+
+ my $id = $Apache::inputtags::response['-1'];
+ my $part = $Apache::inputtags::part;
+
+ my $showanswer = &Apache::response::show_answer();
+ my $lastresponse = &get_last_survey_response($part, $showanswer, $id);
+ my $used_names = &remove_unused(\@names);
+
+
+ if ($target ne 'tex') {
+ $result .= &display_survey_html(
+ $used_names, $part, $showanswer, $lastresponse, $direction
+ );
+ } else {
+
+ my $vertical_env = &latex_vertical_environment();
+ $result .= &latex_survey(
+ $used_names, $showanswer, $lastresponse, $direction, $vertical_env
+ );
+
+ }
+
+
+
+ return $result;
+}
+
+
+
+sub whichfoils {
+ my ( $max, $randomize ) = @_;
+
+ my @truelist;
+ my @falselist;
+ my @whichfalse = ();
+ my ( $truecnt, $falsecnt ) = &getfoilcounts();
+ my $count = 0;
+
+ # we will add in 1 of the true statements
+ if ( $max > 0 && ( $falsecnt + 1 ) > $max ) { $count = $max }
+ else { $count = $falsecnt + 1; $max = $count; }
+ my $answer = int( &Math::Random::random_uniform() * ($count) );
+ &Apache::lonxml::debug("Count is $count, $answer is $answer");
+ my @names;
+ if ( $Apache::response::foilgroup{'names'} ) {
+ @names = @{ $Apache::response::foilgroup{'names'} };
+ }
+ if ( &Apache::response::showallfoils() ) {
+ @whichfalse = @names;
+ }
+ elsif ( $randomize eq 'no' ) {
+ &Apache::lonxml::debug("No randomization");
+ my $havetrue = 0;
+ foreach my $name (@names) {
+ if ( $Apache::response::foilgroup{ $name . '.value' } eq 'true' ) {
+ if ( !$havetrue ) {
+ push( @whichfalse, $name );
+ $havetrue++;
+ $answer = $#whichfalse;
+ }
+ }
+ elsif (
+ $Apache::response::foilgroup{ $name . '.value' } eq 'false' )
+ {
+ push( @whichfalse, $name );
+ }
+ elsif (
+ $Apache::response::foilgroup{ $name . '.value' } eq 'unused' )
+ {
+ }
+ else {
+ &Apache::lonxml::error(
+ &HTML::Entities::encode(
+"No valid value assigned ($Apache::response::foilgroup{$name.'.value'}) for foil $name in
' );
+ }
+ }
+ else {
+ my $current = 0;
+ &Apache::lonhomework::showhash(%Apache::response::foilgroup);
+ my ( %top, %bottom );
+
+ #first find out where everyone wants to be
+ foreach my $name (@names) {
+ $current++;
+ if ( $Apache::response::foilgroup{ $name . '.value' } eq 'true' ) {
+ push( @truelist, $name );
+ if ( $Apache::response::foilgroup{ $name . '.location' } eq
+ 'top' )
+ {
+ $top{$name} = $current;
+ }
+ elsif ( $Apache::response::foilgroup{ $name . '.location' } eq
+ 'bottom' )
+ {
+ $bottom{$name} = $current;
+ }
+ }
+ elsif (
+ $Apache::response::foilgroup{ $name . '.value' } eq 'false' )
+ {
+ push( @falselist, $name );
+ if ( $Apache::response::foilgroup{ $name . '.location' } eq
+ 'top' )
+ {
+ $top{$name} = $current;
+ }
+ elsif ( $Apache::response::foilgroup{ $name . '.location' } eq
+ 'bottom' )
+ {
+ $bottom{$name} = $current;
+ }
+ }
+ elsif (
+ $Apache::response::foilgroup{ $name . '.value' } eq 'unused' )
+ {
+ }
+ else {
+ &Apache::lonxml::error(
+ &HTML::Entities::encode(
+"No valid value assigned ($Apache::response::foilgroup{$name.'.value'}) for foil $name in
' );
+ }
+
+ #insert the true statement, keeping track of where it wants to be
+ if ( $Apache::response::foilgroup{ $truename . '.location' } eq 'top'
+ && $dosplice )
+ {
+ $toplist[ $top{$truename} ] = $truename;
+ $answer = -1;
+ foreach my $top ( reverse(@toplist) ) {
+ if ($top) { $answer++; }
+ if ( $top eq $truename ) { last; }
+ }
+ $dosplice = 0;
+ }
+ elsif (
+ $Apache::response::foilgroup{ $truename . '.location' } eq 'bottom'
+ && $dosplice )
+ {
+ $bottomlist[ $bottom{$truename} ] = $truename;
+ $answer = -1;
+ foreach my $bot (@bottomlist) {
+ if ($bot) { $answer++; }
+ if ( $bot eq $truename ) { last; }
+ }
+ $answer += $topcount + $#whichfalse + 1;
+ $dosplice = 0;
+ }
+ else {
+ if ( $topcount > 0 || $bottomcount > 0 ) {
+ my $inc = 1;
+ if ( ( $bottomcount > 0 )
+ && ( $Apache::lonhomework::type ne 'exam' ) )
+ {
+ $inc = 2;
+ }
+ $answer = int(
+ &Math::Random::random_uniform() * ( $#whichfalse + $inc ) )
+ + $topcount;
+ }
+ }
+ &Apache::lonxml::debug("Answer now wants $answer");
+
+ #add the top items to the top, bottom items to the bottom
+ for ( my $i = 0 ; $i <= $#toplist ; $i++ ) {
+ if ( $toplist[$i] ) { unshift( @whichfalse, $toplist[$i] ) }
+ }
+ for ( my $i = 0 ; $i <= $#bottomlist ; $i++ ) {
+ if ( $bottomlist[$i] ) { push( @whichfalse, $bottomlist[$i] ) }
+ }
+
+ #if the true statement is randomized insert it into the list
+ if ($dosplice) {
+ splice( @whichfalse, $answer, 0, $truelist[$whichtrue] );
+ }
+ }
+ &Apache::lonxml::debug("Answer is $answer");
+ return ( $answer, @whichfalse );
+}
+
+##
+# Return a list of foil texts given foil names.
+#
+# @param $whichfoils - Reference to a list of foil names.
+#
+# @return array
+# @retval foil texts
+#
+sub get_foil_texts {
+ my ($whichfoils) = @_;
+ my @foil_texts;
+
+ foreach my $name (@{$whichfoils}) {
+ push(@foil_texts, $Apache::response::foilgroup{$name . '.text'});
+ }
+ return @foil_texts;
+}
+
+##
+# Generate the HTML for a single html foil.
+# @param $part - The part for which the response is being generated.
+# @param $fieldname - The basename of the radiobutton field
+# @param $name - The foilname.
+# @param $last_responses - Reference to a hash that holds the most recent
+# responses.
+# @param $value - radiobutton value.
+#
+# @return text
+# @retval The generated html.
+#
+sub html_radiobutton {
+ my ($part, $fieldname, $name, $last_responses, $value) = @_;
+
+ my $result='';
+
+ return $result;
+
+}
+##
+# Return a reference to the last response hash. This hash has exactly
+# one or zero entries. The one entry is keyed by the foil 'name' of
+# the prior response
+#
+# @param $part - Number of the problem part.
+#
+# @return reference to a hash.
+# @retval see above.
+#
+sub get_last_response {
+ my ($part) = @_;
+
+ my $id = $Apache::inputtags::response['-1'];
+ my ( $lastresponse, $newvariation );
+
+ if ((( $Apache::lonhomework::history{"resource.$part.type"} eq 'randomizetry')
+ || ( $Apache::lonhomework::type eq 'randomizetry' )
+ )
+ && ( $Apache::inputtags::status[-1] eq 'CAN_ANSWER' )
+ )
+ {
+
+ if ( $env{ 'form.' . $part . '.rndseed' } ne
+ $Apache::lonhomework::history{"resource.$part.rndseed"} )
+ {
+ $newvariation = 1;
+ }
+ }
+ unless ($newvariation) {
+ $lastresponse =
+ $Apache::lonhomework::history{"resource.$part.$id.submission"};
+ }
+ my %lastresponse = &Apache::lonnet::str2hash($lastresponse);
+
+ return \%lastresponse;
+}
+
+##
+# Display foils in html rendition.:
+#
+# @param $whichfoils - Set of foils to display.
+# @param $target - Rendition target...there are several html targets.
+# @param $direction - 'horizontal' if layout is horizontal.
+# @param $part - Part of the problem that's being displayed.
+# @param $show_answer- True if answers should be shown.
+#
+# @return string
+# @retval generated html.
+#
+sub display_foils_html {
+ my ($whichfoils, $target, $direction, $part, $show_answer) = @_;
+ my $result;
+
+
+ # if the answers get shown, we need to label each item as correct or
+ # incorrect.
+
+ my ($opening_html, $finalclose, $item_pretext, $item_posttext) =
+ &html_direction_fragments($direction);
+
+ $result .= $opening_html;
+
+
+ if ($show_answer) {
+
+ foreach my $name (@{$whichfoils}) {
+
+ # If the item gets further surrounded by tags, this
+ # holds the closures for those tages.
+
+ my $item_closetag = '';
+
+ $result .= $item_pretext;
+
+ # Label each foil as correct or incorrect:
+
+ if ($Apache::response::foilgroup{$name . '.value'} eq 'true') {
+ $result .= &mt('Correct:') . '';
+ $item_closetag .= '';
+
+ } else {
+ $result .= &mt('Incorrect');
+ }
+
+ # Web rendition encloses the
+ # item text in a label tag as well:
+
+ if ($target eq 'web') {
+ $result .= '' . $item_closetag;
+ }
+ $result .= $Apache::response::foilgroup{$name . '.text'};
+ $result .= $item_closetag;
+ $result .= $item_posttext;
+ $result .= "\n"; # make the html a bit more readable.
+ }
+
+
+ } else {
+ my $lastresponse = &get_last_response($part);
+
+ my $item_no = 0;
+ foreach my $name (@{$whichfoils}) {
+ $result .= $item_pretext;
+ $result .= &html_radiobutton(
+ $part, $Apache::inputtags::response[-1],
+ $name, $lastresponse, $item_no
+ );
+ $result .= $item_posttext;
+ $item_no++;
}
+
}
- my $truename=$truelist[$whichtrue];
- my $dosplice=1;
- #insert the true statement, keeping track of where it wants to be
- if ($Apache::response::foilgroup{$truename.'.location'} eq 'top' ) {
- $toplist[$top{$truename}]=$truename;
- $answer=-1;
- foreach my $top (reverse(@toplist)) {
- if ($top) { $answer++;}
- if ($top eq $truename) { last; }
- }
- $dosplice=0;
- } elsif ($Apache::response::foilgroup{$truename.'.location'} eq 'bottom') {
- $bottomlist[$bottom{$truename}]=$truename;
- $answer=-1;
- foreach my $bot (@bottomlist) {
- if ($bot) { $answer++;}
- if ($bot eq $truename) { last; }
+ $result .= $finalclose;
+
+ return $result;
+}
+##
+# Display foils in exam mode for latex
+#
+# @param $whichfoils - Reference to an array that contains the foil names to display
+# @param $bubbles_per_line - Number of bubbles on a line.
+# @param $direction - Rendering direction 'horizontal' is what we're looking for.
+# @param $venv - Name of LaTeX environment to use for vertical rendering.
+#
+# @return string
+# @return the latex rendering of the exam problem.
+#
+#
+sub display_latex_exam {
+ my ($whichfoils, $bubbles_per_line, $direction, $venv) = @_;
+ my $result;
+ my $numlines;
+ my $bubble_number = 0;
+ my $line = 0;
+ my $i = 0;
+
+
+ if ($direction eq 'horizontal') {
+
+ # Marshall the display text for each foil and turn things over to
+ # Apache::response::make_horizontal_bubbles:
+
+ my @foil_texts = &get_foil_texts($whichfoils);
+ $result .= &Apache::caparesponse::make_horizontal_latex_bubbles(
+ $whichfoils, \@foil_texts, '$\bigcirc$');
+
+ } else {
+ $result .= "\\begin{$venv}";
+
+ # This section puts out the prefix that tells the user
+ # (if necessary) to only choose one bubble in the next n lines
+ # for problems with more than one line worth of bubbles in the grid sheet:
+
+ my $numitems = scalar( @{$whichfoils} );
+ $numlines = int( $numitems / $bubbles_per_line );
+ if ( ( $numitems % $bubbles_per_line ) != 0 ) {
+ $numlines++;
}
- $answer+=$topcount+$#whichfalse+1;
- $dosplice=0;
+ if ( $numlines < 1 ) {
+ $numlines = 1;
+ }
+ if ( $numlines > 1 ) {
+ my $linetext;
+ for ( my $i = 0 ; $i < $numlines ; $i++ ) {
+ $linetext .= $Apache::lonxml::counter + $i . ', ';
+ }
+ $linetext =~ s/,\s$//;
+ $result .=
+ '\item[\small {\textbf{'
+ . $linetext . '}}]'
+ . ' {\footnotesize '
+ . &mt( '(Bubble once in [_1] lines)', $numlines )
+ . '} \hspace*{\fill} \\\\';
+ }
+ else {
+ $result .= '\item[\textbf{' . $Apache::lonxml::counter . '}.]';
+ }
+
+ # Now output the bubbles themselves:
+
+ foreach my $name (@{$whichfoils}) {
+ if ( $bubble_number >= $bubbles_per_line ) {
+ $line++;
+ $i = 0;
+ $bubble_number = 0;
+ }
+ my $identifier;
+ if ( $numlines > 1 ) {
+ $identifier = $Apache::lonxml::counter + $line;
+ }
+ $result .=
+ '{\small \textbf{'
+ . $identifier
+ . $alphabet[$i]
+ . '}}$\bigcirc$'
+ . $Apache::response::foilgroup{ $name . '.text' }
+ . '\\\\'; #' stupid emacs -- it thinks it needs that apostrophe to close the quote
+
+ $i++;
+ $bubble_number++;
+ }
+ $result .= "\\end{$venv}";
+
+ }
+
+ return $result;
+
+}
+
+##
+# Display latex when exam mode is not on.
+#
+# @param $whichfoils - The foils to display
+# @param $direction - Display direction ('horizontal' is what matters to us).
+# @param $venv - Vertical env. to use for vertical rendering.
+# @param $vend - End the vertical environment being used.
+#
+# @return string
+# @retval - The LaTeX rendering of the resource.'
+#
+sub display_latex {
+ my ($whichfoils, $direction, $venv) = @_;
+ my $result;
+
+ # how we render depends on the direction.
+ # Vertical is some kind of list environment determined by vbegin/vend.
+ # Horizontal is a table that is generated by
+ # Apache::caparesponse::make_horizontal_latex_bubbles with an empty string
+ # for the actual bubble text.
+
+ if ($direction eq 'horizontal') {
+ my @foil_texts = &get_foil_texts($whichfoils);
+ $result .= &Apache::caparesponse::make_horizontal_latex_bubbles(
+ $whichfoils, \@foil_texts, '');
} else {
- if ($topcount>0) {
- $answer = int(&Math::Random::random_uniform() * ($#whichfalse+1))
- + $topcount;
- }
- }
- #add the top items to the top, bottom items to the bottom
- for (my $i=0;$i<=$#toplist;$i++) {
- if ($toplist[$i]) { unshift(@whichfalse,$toplist[$i]) }
- }
- for (my $i=0;$i<=$#bottomlist;$i++) {
- if ($bottomlist[$i]) { push(@whichfalse,$bottomlist[$i]) }
- }
- #if the true statement is randomized insert it into the list
- if ($dosplice) { splice(@whichfalse,$answer,0,$truelist[$whichtrue]); }
- }
- &Apache::lonxml::debug("Answer is $answer");
- return ($answer,@whichfalse);
+ $result .= "\\begin{$venv}";
+ foreach my $name (@{$whichfoils}) {
+ $result .= '\vspace*{-2 mm}\item '
+ . $Apache::response::foilgroup{ $name . '.text' };
+ }
+
+ $result .= "\\end{$venv}";
+ }
+ return $result;
}
+
+##
+# Render foils for a PDF form. This is a variant of tex rednering that provides
+# sufficient markup that the final PDF is a form that can be filled in online,
+# or offline.
+#
+# @param $whichfoils - References an array of foils to display in the order in which
+# they should be displayed.
+# @param $direction - Rendering direction. 'horiztonal' means inputs are laid out
+# horizontally otherwise they are stacked vertically.
+# @param $venv - Vertical environment in which to wrap the foils.
+#
+# @return string
+# @retval String containing the rendering of the resource.
+#
+# TODO: Take into account direction!!!
+#
+sub display_pdf_form {
+ my ($whichfoils, $direction, $venv) = @_;
+ my $temp = 0;
+ my $result;
+
+ $result .= "\\begin{$venv}";
+ foreach my $name ( @{$whichfoils} ) {
+
+ my $fieldname =
+ $env{'request.symb'}
+ . '&part_'
+ . $Apache::inputtags::part
+ . '&radiobuttonresponse'
+ . '&HWVAL_'
+ . $Apache::inputtags::response['-1'];
+ $result .= '\item[{'
+ . &Apache::lonxml::print_pdf_radiobutton( $fieldname,
+ $temp )
+ . '}]'
+ . $Apache::response::foilgroup{ $name . '.text' }
+ . "\n";
+
+ $temp++;
+ }
+ $result .= "\\end{$venv}";
+
+ return $result;
+}
+
+
+##
+# Display selected foils: This is really just a dispatchter to appropriate renderers
+#
+# @param $target - Target (e.g. 'tex'...).
+# @param $answer - True if answers should be shown.
+# @param $whichfoils - Array of foil selectors that indicate which foils shouild be
+# rendered, in rendering order.
+# @param $direction- Rendering direction ('horizontal' is the one we look for,
+# otherwise foils are rendered one per line vertically.
+# @param $bubbles_per_line - number of exam bubbles per line.
+#
+# @return string
+# @retval The rendered problem.
+
sub displayfoils {
- my ($target,$max,$randomize)=@_;
- my $result;
+ my ( $target, $answer, $whichfoils, $direction, $bubbles_per_line ) = @_;
+ my $result;
+
+ my $part = $Apache::inputtags::part;
+ my $solved = $Apache::lonhomework::history{"resource.$part.solved"};
+
+ # Show answers html.
+
+ if ( ( $target ne 'tex' )
+ && &Apache::response::show_answer() )
+ {
+
+ $result = &display_foils_html(
+ $whichfoils, $target, $direction, $part, 1);
+
+ # other html
+ } elsif ($target ne 'tex') {
+ $result = &display_foils_html($whichfoils, $target, $direction, $part,
+ 0, 0);
- my ($answer,@whichfoils)=&whichfoils($max,$randomize);
- if ($Apache::lonhomework::history{"resource.$Apache::inputtags::part.solved"} =~ /^correct/ || ($Apache::inputtags::status[-1] eq 'SHOW_ANSWER')) {
- foreach my $name (@whichfoils) {
- if ($target ne 'tex') {
- $result.="
";
- } else {
- $result.='\item \vskip -2 mm ';
- }
- if ($Apache::response::foilgroup{$name.'.value'} eq 'true') {
- if ($target ne 'tex') { $result.='Correct:'; } else { $result.='Correct: \textbf{';}
- } else {
- $result.='Incorrect:';
- }
- if ($target ne 'tex') {
- $result.=$Apache::response::foilgroup{$name.'.text'}."\n";
- } else {
- $result.=$Apache::response::foilgroup{$name.'.text'};
- }
- if ($Apache::response::foilgroup{$name.'.value'} eq 'true') {
- if ($target ne 'tex') { $result.='';} else {$result.='}';}
- }
- }
- } else {
- my @alphabet = ('A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z');
- my $i = 0;
- my $temp=0;
- my $id=$Apache::inputtags::response['-1'];
- my $part=$Apache::inputtags::part;
- my $lastresponse=$Apache::lonhomework::history{"resource.$part.$id.submission"};
- my %lastresponse=&Apache::lonnet::str2hash($lastresponse);
- foreach my $name (@whichfoils) {
- if ($target ne 'tex') {
- $result.="
\n";
- if ($Apache::lonhomework::type eq 'exam') {
- $result .= '
';
- }
- } else {
- if ($Apache::lonhomework::type eq 'exam') {
- $result .= '{\small \textbf{'.$alphabet[$i].'}}$\bigcirc$'.$Apache::response::foilgroup{$name.'.text'}.'\\\\'; #' stupid emacs
- $i++;
- } else {
- $result .= '\vspace*{-2 mm}\item '.$Apache::response::foilgroup{$name.'.text'};
- }
- }
- $temp++;
- }
- }
- if ($target ne 'tex') { $result.="A: Correct B: Incorrect
"; } else { $result.='\vskip 0 mm '; }
- return $result;
+ # LaTeX rendering:
+ } else {
+
+
+ my $id = $Apache::inputtags::response['-1'];
+ my $part = $Apache::inputtags::part;
+ my $numlines;
+
+ # Decide how to bracket the list of foils:
+
+ my $vertical_env = &latex_vertical_environment();
+
+ # Rendering for latex exams.
+
+ if ( ( $Apache::lonhomework::type eq 'exam' ) )
+ {
+ $result .= &display_latex_exam(
+ $whichfoils, $bubbles_per_line, $direction, $vertical_env);
+
+ $result .= '\vskip 0mm ';
+
+ } else {
+
+ # Different rendering for PDF form than for a
+ # 'regular' answer direction is honored in both of those
+ #
+
+ if ( ($env{'form.pdfFormFields'} eq 'yes')
+ && ($Apache::inputtags::status[-1] eq 'CAN_ANSWER'))
+ {
+ $result .= &display_pdf_form($whichfoils, $direction, $vertical_env);
+ } else {
+ $result .= &display_latex($whichfoils, $direction, $vertical_env );
+ }
+ $result .= '\vskip 0 mm ';
+
+ }
+
+
+ }
+ return $result;
+}
+
+sub displayallanswers {
+ my @names;
+ if ( $Apache::response::foilgroup{'names'} ) {
+ @names = @{ $Apache::response::foilgroup{'names'} };
+ }
+ my $result = &Apache::response::answer_header('radiobuttonresponse');
+ foreach my $name (@names) {
+ $result .=
+ &Apache::response::answer_part( 'radiobuttonresponse',
+ $Apache::response::foilgroup{ $name . '.value' } );
+ }
+ $result .= &Apache::response::answer_footer('radiobuttonresponse');
+ return $result;
}
sub displayanswers {
- my ($max,$randomize)=@_;
- my ($answer,@whichopt) = &whichfoils($max,$randomize);
- my $result=&Apache::response::answer_header('radiobuttonresponse');
- foreach my $name (@whichopt) {
- $result.=&Apache::response::answer_part('radiobuttonresponse',
- $Apache::response::foilgroup{$name.'.value'})
- }
- $result.=&Apache::response::answer_footer('radiobuttonresponse');
- return $result;
+ my ( $answer, $whichopt, $bubbles_per_line ) = @_;
+ my $result;
+
+ if ( $Apache::lonhomework::type eq 'exam' ) {
+ my $line = int( $answer / $bubbles_per_line );
+ my $correct = ( 'A' .. 'Z' )[ $answer % $bubbles_per_line ];
+ $result .=
+ &Apache::response::answer_header( 'radiobuttonresponse', $line );
+ $result .=
+ &Apache::response::answer_part( 'radiobuttonresponse', $correct );
+ }
+ else {
+ $result .= &Apache::response::answer_header('radiobuttonresponse');
+ }
+ foreach my $name ( @{$whichopt} ) {
+ $result .=
+ &Apache::response::answer_part( 'radiobuttonresponse',
+ $Apache::response::foilgroup{ $name . '.value' } );
+ }
+ $result .= &Apache::response::answer_footer('radiobuttonresponse');
+ return $result;
}
sub start_conceptgroup {
- my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
- $Apache::radiobuttonresponse::conceptgroup=1;
- %Apache::response::conceptgroup=();
- my $result;
- if ($target eq 'edit') {
- $result.=&Apache::edit::tag_start($target,$token);
- $result.=&Apache::edit::text_arg('Concept:','concept',$token,'50').
- &Apache::edit::end_row().&Apache::edit::start_spanning_row();
- } elsif ($target eq 'modified') {
- my $constructtag=&Apache::edit::get_new_args($token,$parstack,
- $safeeval,'concept');
- if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
- }
- return $result;
+ my ( $target, $token, $tagstack, $parstack, $parser, $safeeval, $style ) =
+ @_;
+ $Apache::radiobuttonresponse::conceptgroup = 1;
+ %Apache::response::conceptgroup = ();
+ my $result;
+ if ( $target eq 'edit' ) {
+ $result .= &Apache::edit::tag_start( $target, $token );
+ $result .=
+ &Apache::edit::text_arg( 'Concept:', 'concept', $token, '50' )
+ . &Apache::edit::end_row()
+ . &Apache::edit::start_spanning_row();
+ }
+ elsif ( $target eq 'modified' ) {
+ my $constructtag =
+ &Apache::edit::get_new_args( $token, $parstack, $safeeval,
+ 'concept' );
+ if ($constructtag) { $result = &Apache::edit::rebuild_tag($token); }
+ }
+ return $result;
}
sub end_conceptgroup {
- my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
- $Apache::radiobuttonresponse::conceptgroup=0;
- my $result;
- if ($target eq 'web' || $target eq 'grade' || $target eq 'answer' || $target eq 'tex') {
- if (defined(@{ $Apache::response::conceptgroup{'names'} })) {
- my @names = @{ $Apache::response::conceptgroup{'names'} };
- my $pick=int(&Math::Random::random_uniform() * ($#names+1));
- my $name=$names[$pick];
- push @{ $Apache::response::foilgroup{'names'} }, $name;
- $Apache::response::foilgroup{"$name.text"} = $Apache::response::conceptgroup{"$name.text"};
- $Apache::response::foilgroup{"$name.value"} = $Apache::response::conceptgroup{"$name.value"};
- $Apache::response::foilgroup{"$name.location"} = $Apache::response::conceptgroup{"$name.location"};
- my $concept = &Apache::lonxml::get_param('concept',$parstack,$safeeval);
- $Apache::response::foilgroup{"$name.concept"} = $concept;
- &Apache::lonxml::debug("Selecting $name in $concept");
- my $part_id="$Apache::inputtags::part.$Apache::inputtags::response[-1]";
- push(@{ $Apache::hint::radiobutton{"$part_id.concepts"} },$concept);
- $Apache::hint::radiobutton{"$part_id.concept.$concept"}=
- $Apache::response::conceptgroup{'names'};
- }
- } elsif ($target eq 'edit') {
- $result=&Apache::edit::end_table();
- }
- return $result;
+ my ( $target, $token, $tagstack, $parstack, $parser, $safeeval, $style ) =
+ @_;
+ $Apache::radiobuttonresponse::conceptgroup = 0;
+ my $result;
+ if ( $target eq 'web'
+ || $target eq 'grade'
+ || $target eq 'answer'
+ || $target eq 'tex'
+ || $target eq 'analyze' )
+ {
+ &Apache::response::pick_foil_for_concept( $target,
+ [ 'value', 'text', 'location' ],
+ \%Apache::hint::radiobutton, $parstack, $safeeval );
+ }
+ elsif ( $target eq 'edit' ) {
+ $result = &Apache::edit::end_table();
+ }
+ return $result;
}
sub insert_conceptgroup {
- my $result="\n\t\t