File:  [LON-CAPA] / loncom / homework / essayresponse.pm
Revision 1.33: download - view: text, annotated - select for diffs
Fri Mar 5 20:18:26 2004 UTC (20 years, 2 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- BUG#2788, localizing essayresponse

    1: # The LearningOnline Network with CAPA
    2: # essay (ungraded) style responses
    3: #
    4: # $Id: essayresponse.pm,v 1.33 2004/03/05 20:18:26 albertel 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: 
   29: package Apache::essayresponse;
   30: use strict;
   31: use Apache::lonxml();
   32: use Apache::lonnet();
   33: use Apache::lonlocal;
   34: 
   35: BEGIN {
   36:     &Apache::lonxml::register('Apache::essayresponse',('essayresponse'));
   37: }
   38: 
   39: sub start_essayresponse {
   40:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
   41:     my $result;
   42:     my $id = &Apache::response::start_response($parstack,$safeeval);
   43:     if ($target eq 'meta') {
   44: 	$result=&Apache::response::meta_package_write('essayresponse');
   45:     } elsif ($target eq 'web') {
   46: 	my $part= $Apache::inputtags::part;
   47: 
   48: 	my $ncol= &Apache::lonnet::EXT("resource.$part".'_'."$id.maxcollaborators");
   49: 	my $coll= &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.collaborators"});
   50: 	my $uploadedfiletypes= &Apache::lonnet::EXT("resource.$part".'_'."$id.uploadedfiletypes");
   51:         $uploadedfiletypes=~s/[^\w\,]//g;
   52: 	my $uploadedfile= &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.uploadedfile"});
   53: 	$result='<br /><table border="1">';
   54: 	$result.='<tr><td>'.
   55: 	    '<input type="radio" name="HWDRAFT'.$part.'_'.$id.'" value="yes" checked> '.
   56: 	    &mt('Submit entries below as answer to receive credit').' <br />'.
   57: 	    '<input type="radio" name="HWDRAFT'.$part.'_'.$id.'" value="no"> '.
   58: 	    &mt('Save entries below as a draft answer (not submitting them for credit yet)').
   59: 	    ' </td></tr>';
   60: 	if ($ncol > 0) {
   61: 	    $result .='<tr><td>'.
   62: 		'Collaborators: <input type="text" size="70" max="80" name="HWCOL'.
   63: 		$part.'_'.$id.'" value="'.$coll.'" /><br />'.
   64: 		&mt('(Enter maximum [_1] collaborators using username or username@domain, e.g. smithje or smithje@[_2].)',$ncol,$ENV{'user.domain'}).'<br />';
   65: 	    $result .= &check_collaborators($ncol,$coll) if ($coll =~ /\w+/);
   66: 	    $result .='</td></tr>';
   67: 	}
   68:         if ($uploadedfiletypes) {
   69: 	    $result.='<tr><td>'.&mt('Submit a file:').
   70: 		' <input type="file" size="50" name="HWFILE'.
   71: 		$part.'_'.$id.'" onFocus="this.form.enctype='.
   72: 		"'multipart/form-data'".';" /><br />'.
   73: 		&mt('Allowed filetypes: <b>[_1]</b>',$uploadedfiletypes).
   74: 		'<br />';
   75:            if ($uploadedfile) {
   76: 	       my $curfile='<a href="'.&Apache::lonnet::tokenwrapper($Apache::lonhomework::history{"resource.$part.$id.uploadedurl"}).
   77: 		   '"><img src="/adm/lonIcons/unknown.gif" border=0" /> '.
   78: 		   $uploadedfile.'</a>';
   79: 	       $result.=&mt('Currently submitted: <tt>[_1]</tt>',$curfile);
   80:            } else {
   81:               $result.=&mt('(Hand in a file you have prepared on your computer)');
   82:            }
   83:            $result.='</td></tr>'; 
   84:         }
   85:         $result.='</table>';
   86:     }
   87:     return $result;
   88: }
   89: 
   90: sub end_essayresponse {
   91:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
   92:     my $part          = $Apache::inputtags::part;
   93:     my $id            = $Apache::inputtags::response[-1];
   94:     my $increment     = 1;
   95:     my $result;
   96:     if ( $target eq 'grade' ) {
   97: 	my $collaborators = $ENV{'form.HWCOL'.$part.'_'.$id};	
   98: 	if ($collaborators =~ /[^\s]/) {
   99: 	    my $previous_list= &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.collaborators"});
  100: 	    $Apache::lonhomework::results{"resource.$part.$id.collaborators"}=$collaborators
  101: 		if ($collaborators ne $previous_list);
  102: 	}
  103: 	if ( defined($ENV{'form.submitted'}) &&
  104: 	     $ENV{'form.submitted'} eq 'scantron' ) {
  105: 	    $increment=&Apache::response::scored_response($part,$id);
  106: 	} elsif ( defined($ENV{'form.submitted'}) ) {
  107: 	    my $response      = $ENV{'form.HWVAL_'.$id};
  108:             my $filename= $ENV{'form.HWFILE'.$part.'_'.$id.'.filename'};
  109: 	    if (( $response =~ /[^\s]/) || ($filename =~ /[^\s]/)) {
  110:  		my $award;
  111: 		if ($ENV{'form.HWDRAFT'.$part.'_'.$id} eq 'yes') {
  112: 		    $award='SUBMITTED';
  113: 		} else {
  114: 		    $award='DRAFT';
  115: 		}
  116:                 my $uploadedflag=0;
  117:                 if ($filename =~ /[^\s]/) {
  118:  	           my $uploadedfiletypes= &Apache::lonnet::EXT("resource.$part".'_'."$id.uploadedfiletypes");
  119:                    $uploadedfiletypes=~s/[^\w\,]//g;
  120:                    $uploadedfiletypes=','.$uploadedfiletypes.',';
  121:                    my ($extension)=($filename=~/\.(\w+)$/);
  122: 	           if ($uploadedfiletypes=~/\,$extension\,/i) {
  123: 	              $Apache::lonhomework::results{"resource.$part.$id.uploadedfile"}=$filename;
  124:                       $Apache::lonhomework::results{"resource.$part.$id.uploadedurl"}=
  125:                          &Apache::lonnet::userfileupload('HWFILE'.$part.'_'.$id);
  126:                       $uploadedflag=1;
  127: 		   } else {
  128: 		      $award='INVALID_FILETYPE';
  129:                    }
  130: 	        }
  131: 		$Apache::lonhomework::results{"resource.$part.$id.submission"}=$response;
  132: 		$Apache::lonhomework::results{"resource.$part.$id.awarddetail"}=$award;
  133: 		my %previous=&Apache::response::check_for_previous($response,$part,$id);
  134: 		unless ($uploadedflag) { &Apache::response::handle_previous(\%previous,$award); }
  135: #
  136: # Store with resource author for similarity testing
  137: #
  138:                 if ($award eq 'SUBMITTED') {
  139: 		    my ($symb,$crsid,$domain,$name)=
  140: 			&Apache::lonxml::whichuser();
  141: 		    if ($crsid) {
  142: 			my $akey=$name.'.'.$domain.'.'.$crsid;
  143: 			my $essayurl=
  144: 			    &Apache::lonnet::declutter($ENV{'REQUEST_URI'});
  145: 			my ($adom,$aname,$apath)=
  146: 			    ($essayurl=~/^(\w+)\/(\w+)\/(.*)$/);
  147:                         $apath=&Apache::lonnet::escape($apath);
  148: 			$apath=~s/\W/\_/gs;
  149: 			&Apache::lonnet::put('nohist_essay_'.$apath,
  150: 					 { $akey => $response },$adom,$aname);
  151: 		    }
  152:                }
  153: 	    }
  154: 	}
  155:     } elsif ($target eq 'edit') {
  156: 	$result.=&Apache::edit::end_table();
  157:     } elsif ($target eq 'tex') {
  158: 	if ($Apache::lonhomework::type eq 'exam') {
  159: 	    my $repetition=&Apache::response::repetition();
  160: 	    $result.='\begin{enumerate}';
  161: 	    for (my $i=0;$i<$repetition;$i++) {
  162: 		$result.='\item[\textbf{'.($Apache::lonxml::counter+$i).
  163: 		    '}.]\textit{'.&mt('Leave blank on scoring form').
  164: 		    '}\vskip 0 mm';
  165: 	    }
  166: 	    $result.= '\end{enumerate}';
  167: 	}
  168:     }
  169:     if ($target eq 'grade' || $target eq 'web' || $target eq 'answer' ||
  170: 	$target eq 'tex' || $target eq 'analyze') {
  171: 	&Apache::lonxml::increment_counter($increment);
  172:     }
  173:     &Apache::response::end_response;
  174:     return $result;
  175: }
  176: 
  177: sub check_collaborators {
  178:     my ($ncol,$coll) = @_;
  179:     my %classlist=&Apache::lonnet::dump('classlist',
  180: 					$ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
  181: 					$ENV{'course.'.$ENV{'request.course.id'}.'.num'});
  182:     my (@badcollaborators,$result);
  183:     my (@collaborators) = split(/\,?\s+/,$coll);
  184:     foreach (@collaborators) {
  185: 	my $collaborator = $_;
  186: 	if (/@/) {
  187: 	    $collaborator =~ s/@/:/;
  188: 	} else {
  189: 	    $collaborator = $_.':'.$ENV{'user.domain'};
  190: 	}
  191: 	push @badcollaborators, $_ if (!grep /^$collaborator/i,keys %classlist);
  192:     }
  193:     
  194:     if (scalar(@badcollaborators)) {
  195: 	$result = '<table border="0"><tr bgcolor="#ffbbbb"><td> The following user'.
  196: 	    (scalar(@badcollaborators) > 1 ? 's are' : ' is').' invalid: '.
  197: 	    join(', ',@badcollaborators).'. Please correct.</td></tr></table>';
  198:     }
  199:     my $toomany = scalar(@collaborators) - $ncol;
  200:     if ($toomany > 0) {
  201: 	$result .= '<table border="0"><tr bgcolor="#ffbbbb"><td>'.
  202: 	    'You have too many collaborators. Please remove '.$toomany.' collaborator'.
  203: 	    ($toomany > 1 ? 's' :'').'.</td></tr></table>';
  204:     }
  205:     return $result;
  206: }
  207: 
  208: 1;
  209: __END__

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