Annotation of loncom/homework/hint.pm, revision 1.21

1.21    ! albertel    1: # The LearningOnline Network with CAPA 
        !             2: # implements the tags that control the hints
        !             3: #
        !             4: # $Id: gplheader.pl,v 1.1 2001/11/29 18:19:27 www Exp $
        !             5: #
        !             6: # Copyright Michigan State University Board of Trustees
        !             7: #
        !             8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
        !             9: #
        !            10: # LON-CAPA is free software; you can redistribute it and/or modify
        !            11: # it under the terms of the GNU General Public License as published by
        !            12: # the Free Software Foundation; either version 2 of the License, or
        !            13: # (at your option) any later version.
        !            14: #
        !            15: # LON-CAPA is distributed in the hope that it will be useful,
        !            16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
        !            17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
        !            18: # GNU General Public License for more details.
        !            19: #
        !            20: # You should have received a copy of the GNU General Public License
        !            21: # along with LON-CAPA; if not, write to the Free Software
        !            22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
        !            23: #
        !            24: # /home/httpd/html/adm/gpl.txt
        !            25: #
        !            26: # http://www.lon-capa.org/
        !            27: #
        !            28: 
1.1       albertel   29: package Apache::hinttags; 
                     30: 
                     31: use strict;
                     32: use Apache::lonnet;
1.6       albertel   33: use capa;
1.1       albertel   34: 
                     35: sub BEGIN {
1.15      albertel   36:   &Apache::lonxml::register('Apache::hinttags',('hintgroup','hintpart','numericalhint'));
1.1       albertel   37: }
                     38: 
1.2       albertel   39: 
1.15      albertel   40: @Apache::hint::which=();
1.1       albertel   41: sub start_hintgroup {
1.15      albertel   42:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                     43:   my $skiptoend='0';
                     44:   my $result;
1.20      albertel   45: 
1.15      albertel   46:   if ($target eq 'web') {
                     47:     my $id=$Apache::inputtags::part;
                     48:     my $numtries=$Apache::lonhomework::history{"resource.$id.tries"};
                     49:     if ( $numtries eq '') { $numtries = 0; }
                     50:     my $hinttries=&Apache::lonnet::EXT("resource.$id.hinttries");
                     51:     if ( $hinttries eq '') { $hinttries = 1; }
                     52:     &Apache::lonxml::debug("found :$id:$numtries:$hinttries:");
                     53:     if ( $numtries < $hinttries ) {
                     54:       $skiptoend='1';
                     55:     } else {
                     56:       if ($target eq 'web') {$result='<table bgcolor="#dddddd"><tr><td>';}
1.9       albertel   57:     }
1.20      albertel   58:     if ($skiptoend) {
                     59:       &Apache::lonxml::get_all_text("/hintgroup",$$parser[$#$parser]);
                     60:     }
1.15      albertel   61:   }
                     62:   @Apache::hint::which=();
                     63:   return $result;
1.1       albertel   64: }
                     65: 
                     66: sub end_hintgroup {
1.15      albertel   67:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                     68:   my $result;
1.20      albertel   69: 
1.15      albertel   70:   if ($target eq 'web') {
                     71:     my $id=$Apache::inputtags::part;
                     72:     my $numtries=$Apache::lonhomework::history{"resource.$id.tries"};
                     73:     if ( $numtries eq '') { $numtries = 0; }
                     74:     my $hinttries=&Apache::lonnet::EXT("resource.$id.hinttries");
                     75:     if ( $hinttries eq '') { $hinttries = 1; }
                     76:     &Apache::lonxml::debug("found :$id:$numtries:$hinttries:");
1.19      albertel   77:     if ( $numtries >= $hinttries ) {
                     78:       $result='</td></tr></table>';
                     79:     }
1.20      albertel   80:   } elsif ($target eq 'edit') {
                     81:     $result.=&Apache::edit::end_table();
1.15      albertel   82:   }
1.19      albertel   83:   @Apache::hint::which=();
1.15      albertel   84:   return $result;
1.3       albertel   85: }
                     86: 
                     87: sub start_numericalhint {
1.16      albertel   88:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.15      albertel   89:   #do everything in end, so intervening <responseparams> work
1.16      albertel   90:   &Apache::response::start_hintresponse($parstack,$safeeval);
1.20      albertel   91:   my $result;
                     92:   if ($target eq 'edit') {
                     93:     $result.=&Apache::edit::tag_start($target,$token);
                     94:     $result.=&Apache::edit::text_arg('Name:','name',$token);
                     95:     $result.=&Apache::edit::text_arg('Answer:','answer',$token);
                     96:     $result.=&Apache::edit::text_arg('Unit:','unit',$token,5);
                     97:     $result.=&Apache::edit::text_arg('Format:','format',$token,4);
                     98:     $result.='</td></tr><tr><td colspan="3">';
                     99:   } elsif ($target eq 'modified') {
                    100:     my $constructtag=
                    101:       &Apache::edit::get_new_args($token,$parstack,$safeeval,
                    102: 				  'name','answer','unit', 'format');
                    103:     if ($constructtag) {
                    104:       $result  = &Apache::edit::rebuild_tag($token);
                    105:       $result .= &Apache::edit::handle_insert();
                    106:     }
                    107:   }
                    108:   return $result;
1.3       albertel  109: }
                    110: 
                    111: sub end_numericalhint {
1.15      albertel  112:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    113:   my $result;
                    114:   if ($target eq 'web') {
                    115:     $safeeval->share_from('capa',['&caparesponse_capa_check_answer']);
                    116:     my $name= &Apache::lonxml::get_param('name',$parstack,$safeeval);
1.18      albertel  117:     &Apache::response::setup_params('numericalhint');
                    118:     my $partid=$Apache::inputtags::part;
                    119:     my $id=$Apache::inputtags::response['-1'];
                    120:     #id submissions occured under
                    121:     my $submitid=$Apache::inputtags::response['-2'];
                    122:     my $response = $Apache::lonhomework::history{
                    123: 			    "resource.$partid.$submitid.submission"};
1.15      albertel  124:     &Apache::lonxml::debug("hintgroup is using $response<br />\n");
1.18      albertel  125:     #build safe space expression
1.15      albertel  126:     my $expression="&caparesponse_check_list('".$response."','".
1.18      albertel  127:       $$parstack[$#$parstack];
                    128:     #need to get all possible parms
                    129:     foreach my $key (keys(%Apache::inputtags::params)) {
                    130:       $expression.= ';my $'. #'
                    131: 	$key.'="'.$Apache::inputtags::params{$key}.'"';
                    132:     }
                    133:     $expression.="');";
1.15      albertel  134:     $result = &Apache::run::run($expression,$safeeval);
                    135:     &Apache::lonxml::debug("$expression:result:$result:$Apache::lonxml::curdepth");
                    136:     my ($awards) = split /:/ , $result;
                    137:     my ($ad) = &Apache::inputtags::finalizeawards(split /,/ , $awards);
                    138:     if ($ad eq 'EXACT_ANS' || $ad eq 'APPROX_ANS') { push (@Apache::hint::which,$name); }
                    139:     $result='';
1.17      albertel  140:   } elsif ($target eq 'meta') {
                    141:     $result=&Apache::response::meta_package_write('numericalhint');
1.20      albertel  142:   } elsif ($target eq 'edit') {
                    143:     $result.='</td></tr>'.&Apache::edit::end_table;
1.15      albertel  144:   }
1.16      albertel  145:   &Apache::response::end_hintresponse();
1.15      albertel  146:   return $result;
1.1       albertel  147: }
                    148: 
1.2       albertel  149: # a part shows if it is on, if no specific parts are on, then default shows
1.1       albertel  150: sub start_hintpart {
1.15      albertel  151:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    152: 
                    153:   my $show ='0';
1.20      albertel  154:   my $result = '';
1.15      albertel  155:   if ($target eq 'web') {
                    156:     my $on= &Apache::lonxml::get_param('on',$parstack,$safeeval);
                    157:     &Apache::lonxml::debug("hintpart sees $on and ,$#Apache::hint::which");
                    158:     if ( $on eq 'default' && $#Apache::hint::which == '-1') {
                    159:       $show=1;
                    160:     } else {
                    161:       my $which;
                    162:       foreach $which (@Apache::hint::which) { if ($which eq $on) { $show = 1; last } }
                    163:     }
                    164:     if (!$show) {
                    165:       &Apache::lonxml::get_all_text("/hintpart",$$parser[$#$parser]);
1.1       albertel  166:     }
1.15      albertel  167:   } elsif ($target eq 'grade') {
                    168:     &Apache::lonxml::get_all_text("/hintpart",$$parser[$#$parser]);
1.20      albertel  169:   } elsif ($target eq 'edit') {
                    170:     $result.= &Apache::edit::tag_start($target,$token,
                    171: 				       &Apache::lonxml::description($token));
                    172:     $result.= &Apache::edit::text_arg('On:','on',$token).'</td></tr><tr><td colspan="3">';
                    173:   } elsif ($target eq 'modified') {
                    174:     my $constructtag=&Apache::edit::get_new_args($token,$parstack,$safeeval,
                    175: 						 'on');
                    176:     if ($constructtag) {
                    177:       $result = &Apache::edit::rebuild_tag($token);
                    178:       $result.=&Apache::edit::handle_insert();
                    179:     }
1.15      albertel  180:   }
1.20      albertel  181:   return $result;
1.1       albertel  182: }
                    183: 
                    184: sub end_hintpart {
1.20      albertel  185:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
                    186:   my $result;
                    187:   if ($target eq 'edit') { $result.=&Apache::edit::end_table; }
                    188:   return $result;
1.1       albertel  189: }
                    190: 
                    191: 1;
                    192: __END__

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