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

1.21      albertel    1: # The LearningOnline Network with CAPA 
                      2: # implements the tags that control the hints
                      3: #
1.23    ! harris41    4: # $Id: hint.pm,v 1.22 2002/01/11 16:32:29 matthew Exp $
1.21      albertel    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: 
1.23    ! harris41   35: 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);
1.22      matthew    98:     $result.=&Apache::edit::end_row();
                     99:     $result.=&Apache::edit::start_spanning_row();
1.20      albertel  100:   } elsif ($target eq 'modified') {
                    101:     my $constructtag=
                    102:       &Apache::edit::get_new_args($token,$parstack,$safeeval,
                    103: 				  'name','answer','unit', 'format');
                    104:     if ($constructtag) {
                    105:       $result  = &Apache::edit::rebuild_tag($token);
                    106:       $result .= &Apache::edit::handle_insert();
                    107:     }
                    108:   }
                    109:   return $result;
1.3       albertel  110: }
                    111: 
                    112: sub end_numericalhint {
1.15      albertel  113:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    114:   my $result;
                    115:   if ($target eq 'web') {
                    116:     $safeeval->share_from('capa',['&caparesponse_capa_check_answer']);
                    117:     my $name= &Apache::lonxml::get_param('name',$parstack,$safeeval);
1.18      albertel  118:     &Apache::response::setup_params('numericalhint');
                    119:     my $partid=$Apache::inputtags::part;
                    120:     my $id=$Apache::inputtags::response['-1'];
                    121:     #id submissions occured under
                    122:     my $submitid=$Apache::inputtags::response['-2'];
                    123:     my $response = $Apache::lonhomework::history{
                    124: 			    "resource.$partid.$submitid.submission"};
1.15      albertel  125:     &Apache::lonxml::debug("hintgroup is using $response<br />\n");
1.18      albertel  126:     #build safe space expression
1.15      albertel  127:     my $expression="&caparesponse_check_list('".$response."','".
1.18      albertel  128:       $$parstack[$#$parstack];
                    129:     #need to get all possible parms
                    130:     foreach my $key (keys(%Apache::inputtags::params)) {
                    131:       $expression.= ';my $'. #'
                    132: 	$key.'="'.$Apache::inputtags::params{$key}.'"';
                    133:     }
                    134:     $expression.="');";
1.15      albertel  135:     $result = &Apache::run::run($expression,$safeeval);
                    136:     &Apache::lonxml::debug("$expression:result:$result:$Apache::lonxml::curdepth");
                    137:     my ($awards) = split /:/ , $result;
                    138:     my ($ad) = &Apache::inputtags::finalizeawards(split /,/ , $awards);
                    139:     if ($ad eq 'EXACT_ANS' || $ad eq 'APPROX_ANS') { push (@Apache::hint::which,$name); }
                    140:     $result='';
1.17      albertel  141:   } elsif ($target eq 'meta') {
                    142:     $result=&Apache::response::meta_package_write('numericalhint');
1.20      albertel  143:   } elsif ($target eq 'edit') {
                    144:     $result.='</td></tr>'.&Apache::edit::end_table;
1.15      albertel  145:   }
1.16      albertel  146:   &Apache::response::end_hintresponse();
1.15      albertel  147:   return $result;
1.1       albertel  148: }
                    149: 
1.2       albertel  150: # a part shows if it is on, if no specific parts are on, then default shows
1.1       albertel  151: sub start_hintpart {
1.15      albertel  152:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    153: 
                    154:   my $show ='0';
1.20      albertel  155:   my $result = '';
1.15      albertel  156:   if ($target eq 'web') {
                    157:     my $on= &Apache::lonxml::get_param('on',$parstack,$safeeval);
                    158:     &Apache::lonxml::debug("hintpart sees $on and ,$#Apache::hint::which");
                    159:     if ( $on eq 'default' && $#Apache::hint::which == '-1') {
                    160:       $show=1;
                    161:     } else {
                    162:       my $which;
                    163:       foreach $which (@Apache::hint::which) { if ($which eq $on) { $show = 1; last } }
                    164:     }
                    165:     if (!$show) {
                    166:       &Apache::lonxml::get_all_text("/hintpart",$$parser[$#$parser]);
1.1       albertel  167:     }
1.15      albertel  168:   } elsif ($target eq 'grade') {
                    169:     &Apache::lonxml::get_all_text("/hintpart",$$parser[$#$parser]);
1.20      albertel  170:   } elsif ($target eq 'edit') {
1.22      matthew   171:     $result.= &Apache::edit::tag_start($target,$token);
                    172:     $result.= &Apache::edit::text_arg('On:','on',$token);
                    173:     $result.= &Apache::edit::end_row();
                    174:     $result.= &Apache::edit::start_spanning_row();
1.20      albertel  175:   } elsif ($target eq 'modified') {
                    176:     my $constructtag=&Apache::edit::get_new_args($token,$parstack,$safeeval,
                    177: 						 'on');
                    178:     if ($constructtag) {
                    179:       $result = &Apache::edit::rebuild_tag($token);
                    180:       $result.=&Apache::edit::handle_insert();
                    181:     }
1.15      albertel  182:   }
1.20      albertel  183:   return $result;
1.1       albertel  184: }
                    185: 
                    186: sub end_hintpart {
1.20      albertel  187:   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
                    188:   my $result;
                    189:   if ($target eq 'edit') { $result.=&Apache::edit::end_table; }
                    190:   return $result;
1.1       albertel  191: }
                    192: 
                    193: 1;
                    194: __END__

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