--- loncom/homework/inputtags.pm 2004/03/31 05:23:59 1.138 +++ loncom/homework/inputtags.pm 2005/09/09 18:45:56 1.175 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # input definitons # -# $Id: inputtags.pm,v 1.138 2004/03/31 05:23:59 albertel Exp $ +# $Id: inputtags.pm,v 1.175 2005/09/09 18:45:56 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -30,6 +30,7 @@ use HTML::Entities(); use strict; use Apache::loncommon; use Apache::lonlocal; +use Apache::lonnet; BEGIN { &Apache::lonxml::register('Apache::inputtags',('hiddenline','textfield','textline')); @@ -45,6 +46,10 @@ sub initialize_inputtags { @Apache::inputtags::response=(); # list of all response ids seen in this problem @Apache::inputtags::responselist=(); + # list of all current hint ids + @Apache::inputtags::hint=(); + # list of all hint ids seen in this problem + @Apache::inputtags::hintlist=(); # list of whether or not a specific response was previously used @Apache::inputtags::previous=(); # submission it was used in @@ -65,12 +70,16 @@ sub initialize_inputtags { @Apache::inputtags::importlist=(); # just used to note whether we have seen a response that isn't in a part $Apache::inputtags::response_with_no_part=0; + # storage location so the begin <*response> tag can generate the correct + # answer string for display by the + %Apache::inputtags::answertxt=(); } sub check_for_duplicate_ids { my %check; foreach my $id (@Apache::inputtags::partlist, @Apache::inputtags::responselist, + @Apache::inputtags::hintlist, @Apache::inputtags::importlist) { $check{$id}++; } @@ -122,15 +131,17 @@ sub start_textfield { my $cols = &Apache::lonxml::get_param('cols',$parstack,$safeeval); if ( $cols eq '') { $cols = 80; } my $rows = &Apache::lonxml::get_param('rows',$parstack,$safeeval); - if ( $rows eq '') { $rows = 10; } + if ( $rows eq '') { $rows = 16; } my $addchars=&Apache::lonxml::get_param('addchars',$parstack,$safeeval); $result=''; if ($addchars) { $result.=&addchars('HWVAL_'.$resid,$addchars); } - $result.= '