Diff for /loncom/homework/essayresponse.pm between versions 1.91 and 1.112

version 1.91, 2008/11/16 02:46:25 version 1.112, 2010/08/29 19:36:37
Line 26 Line 26
 # http://www.lon-capa.org/  # http://www.lon-capa.org/
 #  #
   
 =pod  
   
 =head1 NAME  
   
 Apache::easyresponse  
   
 =head1 SYNOPSIS  
   
 Handler to evaluate essay (ungraded) style responses.  
   
 This is part of the LearningOnline Network with CAPA project  
 described at http://www.lon-capa.org.  
   
 =cut  
   
 package Apache::essayresponse;  package Apache::essayresponse;
 use strict;  use strict;
 use Apache::lonxml();  use Apache::lonxml();
   use Apache::lonhtmlcommon;
   use Apache::loncommon;
 use Apache::lonnet;  use Apache::lonnet;
   use Apache::lonnavmaps;
 use Apache::lonlocal;  use Apache::lonlocal;
 use LONCAPA qw(:DEFAULT :match);  use LONCAPA qw(:DEFAULT :match);
     
Line 66  sub start_essayresponse { Line 54  sub start_essayresponse {
  my $coll= &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.collaborators"},'<>&"');   my $coll= &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.collaborators"},'<>&"');
  my $uploadedfiletypes= &Apache::lonnet::EXT("resource.$part".'_'."$id.uploadedfiletypes");   my $uploadedfiletypes= &Apache::lonnet::EXT("resource.$part".'_'."$id.uploadedfiletypes");
         $uploadedfiletypes=~s/[^\w\,]//g;          $uploadedfiletypes=~s/[^\w\,]//g;
  if ( $Apache::lonhomework::type eq 'survey' ) {          my $maxfilesize=&Apache::lonnet::EXT("resource.$part".'_'."$id.maxfilesize");
     $result.= '<input type="hidden" name="HWDRAFT'.$part.'_'.$id.'" value="yes" /> ';          if (!defined($maxfilesize)) {
  }              $maxfilesize = 10.0; #FIXME This should become a domain configuration 
  $result.='<br /><table border="1">';          }
  if ( $Apache::lonhomework::type ne 'survey' ) {   if (($Apache::lonhomework::type eq 'survey') ||
     $result.= '<tr><td>'.              ($Apache::lonhomework::type eq 'surveycred') ||
               ($Apache::lonhomework::type eq 'anonsurvey') ||
               ($Apache::lonhomework::type eq 'anonsurveycred')) {
       $result.= '<input type="hidden" name="HWDRAFT'.$part.'_'.$id.'" value="yes" />';
    }
           my $status_text = &mt('Submission type');
           if ($Apache::lonhomework::history{"resource.$part.award"} eq 'DRAFT') {
               $status_text .= '<br />'.&mt('(Currently -- draft)');
           }
           $result.= '<p>'.&Apache::lonhtmlcommon::start_pick_box().
                     &Apache::lonhtmlcommon::row_title($status_text);
    if (($Apache::lonhomework::type ne 'survey') &&
               ($Apache::lonhomework::type ne 'surveycred') &&
               ($Apache::lonhomework::type ne 'anonsurvey') &&
               ($Apache::lonhomework::type ne 'anonsurveycred')) {
               my $closure;
               unless ($ncol || $uploadedfiletypes) {
                   $closure = 1;
               }
       $result.= 
  '<label>'.   '<label>'.
  '<input type="radio" name="HWDRAFT'.$part.'_'.$id.'" value="yes" checked="checked" /> '.   '<input type="radio" name="HWDRAFT'.$part.'_'.$id.'" value="yes" checked="checked" />&nbsp;'.
  &mt('Submit entries below as answer to receive credit').   &mt('Submit entries below as answer to receive credit').
  '</label> <br />'.   '</label> <br />'.
  '<label>'.   '<label>'.
  '<input type="radio" name="HWDRAFT'.$part.'_'.$id.'" value="no" /> '.   '<input type="radio" name="HWDRAFT'.$part.'_'.$id.'" value="no" />&nbsp;'.
  &mt('Save entries below as a draft answer (not submitting them for credit yet)').   &mt('Save entries below (not submitted for credit yet)').
  '</label>'.   '</label>'.
  '</td></tr>';                  &Apache::lonhtmlcommon::row_closure($closure);
  }   }
   
  if ($ncol > 0) {   if ($ncol > 0) {
     $result .='<tr><td>'.'<label>'.      $result.= &Apache::lonhtmlcommon::row_title(&mt('Collaborators')).
                         '<label>'.
       &mt('Collaborators:').' <input type="text" size="70" max="80" name="HWCOL'.        &mt('Collaborators:').' <input type="text" size="70" max="80" name="HWCOL'.
       $part.'_'.$id.'" value="'.$coll.'" /><br />'.        $part.'_'.$id.'" value="'.$coll.'" /><br />'.
       &mt('(Enter a maximum of [quant,_1,collaborator] using username or username:domain, e.g. smithje or smithje:[_2].)',$ncol,$env{'user.domain'});        &mt('(Enter a maximum of [quant,_1,collaborator] using username or username:domain, e.g. smithje or smithje:[_2].)',$ncol,$env{'user.domain'});
Line 93  sub start_essayresponse { Line 101  sub start_essayresponse {
             }              }
             $result .= '</label><br />';              $result .= '</label><br />';
     $result .= &check_collaborators($ncol,$coll) if ($coll =~ /\w+/);      $result .= &check_collaborators($ncol,$coll) if ($coll =~ /\w+/);
     $result .='</td></tr>';      $result .= &Apache::lonhtmlcommon::row_closure();
  }   }
  $result.=&Apache::inputtags::file_selector($part,$id,          my $filesfrom = 'both';
    $uploadedfiletypes,'both');          my $stuname = &Apache::lonnet::EXT('user.name');
         $result.='</table>';          my $studom = &Apache::lonnet::EXT('user.domain');
           if (!&Apache::lonnet::usertools_access($stuname,$studom,'portfolio')) {
               $filesfrom = 'uploadonly';
           }
    $result.=&Apache::inputtags::file_selector($part,$id,$uploadedfiletypes,
      $filesfrom,undef,$maxfilesize);
           $result.=&Apache::lonhtmlcommon::end_pick_box().'</p>';
     } elsif ($target eq 'web' &&      } elsif ($target eq 'web' &&
      $Apache::inputtags::status[-1] ne 'CAN_ANSWER') {       $Apache::inputtags::status[-1] ne 'CAN_ANSWER') {
  my $part= $Apache::inputtags::part;   my $part= $Apache::inputtags::part;
  my @msgs;   my @msgs;
  if ($Apache::lonhomework::history{"resource.$part.$id.collaborators"} =~ /\S/) {   if ($Apache::lonhomework::history{"resource.$part.$id.collaborators"} =~ /\S/) {
     my $coll= &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.collaborators"},'<>&"');      my $coll= &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.collaborators"},'<>&"');
     $result .= '<td>'.&mt('Collaborated with [_1]',$coll).'</td>';      $result .= '<td><i>'.&mt('Collaborated with [_1]',$coll).'</i></td>';
  }   }
   
  my $file_submission =           my $current_files_display = &Apache::inputtags::current_file_submissions($part,$id);
     &Apache::inputtags::show_past_file_submission($part,$id);          if ($current_files_display) {
  if ($file_submission) {              $result .= '<td><b>'.&mt('Submitted files:').'</b><br />'.
     $result .= '<td>'.$file_submission.'</td>';                         $current_files_display.'</td>';
  }          }
   
  my $port_submission =   
     &Apache::inputtags::show_past_portfile_submission($part,$id);  
  if ($port_submission) {  
     $result .= '<td>'.$port_submission.'</td>';  
  }  
   
  if ($result ne '') {   if ($result ne '') {
     $result =       $result = 
Line 135  sub end_essayresponse { Line 143  sub end_essayresponse {
     my $increment     = &Apache::response::repetition();      my $increment     = &Apache::response::repetition();
     my $result;      my $result;
     if ( $target eq 'grade' ) {      if ( $target eq 'grade' ) {
  my $collaborators = $env{'form.HWCOL'.$part.'_'.$id};  # Deal with collaborators
  if ($collaborators =~ /[^\s]/) {   my $collaborators = $env{'form.HWCOL'.$part.'_'.$id};
     my $previous_list= &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.collaborators"},'<>&"');   my $previous_list= &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.collaborators"},'<>&"');
     $Apache::lonhomework::results{"resource.$part.$id.collaborators"}=$collaborators   if ($collaborators ne $previous_list) { 
  if ($collaborators ne $previous_list);  #           &Apache::lonnet::logthis("New collaborators [$collaborators] [$previous_list]");
  }             $Apache::lonhomework::results{"resource.$part.$id.collaborators"}=$collaborators; 
           }
   # Scantron
  if (  &Apache::response::submitted('scantron') ) {   if (  &Apache::response::submitted('scantron') ) {
     $increment=&Apache::response::scored_response($part,$id);      $increment=&Apache::response::scored_response($part,$id);
  } elsif ( &Apache::response::submitted() ) {   } elsif ( &Apache::response::submitted() ) {
     my $response      = $env{'form.HWVAL_'.$id};      my $response      = $env{'form.HWVAL_'.$id};
             my $filename = $env{'form.HWFILE'.$part.'_'.$id.'.filename'} ||               my $jspart=$part;
               $jspart=~s/\./_/g;
               my $filename = $env{'form.HWFILE'.$jspart.'_'.$id.'.filename'} || 
                            $env{'form.HWFILETOOBIG'.$part.'_'.$id};                             $env{'form.HWFILETOOBIG'.$part.'_'.$id};
             my $portfiles = $env{'form.HWPORT'.$part.'_'.$id};              my $portfiles = $env{'form.HWPORT'.$jspart.'_'.$id};
     if (( $response =~ /[^\s]/) || ($filename =~ /[^\s]/) || ($portfiles =~ /[^\s]/)) {              my @deletions = &Apache::loncommon::get_env_multiple('form.HWFILE'.$jspart.'_'.$id.'_delete');
               my ($is_submit,$was_draft);
               if ($env{'form.HWDRAFT'.$part.'_'.$id} eq 'yes') {
                    $is_submit = 1;
               }
               if ($Apache::lonhomework::history{"resource.$part.award"} eq 'DRAFT') {
                   $was_draft = 1;
               }
       if (($response =~ /[^\s]/) || ($filename =~ /[^\s]/) || ($portfiles =~ /[^\s]/) || 
                   (@deletions > 0) || ($was_draft && $is_submit)) {
   my $award='DRAFT';    my $award='DRAFT';
         if ($env{'form.HWDRAFT'.$part.'_'.$id} eq 'yes') {          if ($env{'form.HWDRAFT'.$part.'_'.$id} eq 'yes') {
     $award='SUBMITTED';                      if ($Apache::lonhomework::type eq 'anonsurvey') {
                           $award='ANONYMOUS';
                       } elsif ($Apache::lonhomework::type eq 'anonsurveycred') {
                           $award='ANONYMOUS_CREDIT';
                       } elsif ($Apache::lonhomework::type eq 'surveycred') {
                           $award='SUBMITTED_CREDIT';
                       } else {
           $award='SUBMITTED';
                       }
  }   }
                 my $uploadedflag=0;                  my $uploadedflag=0;
                 my $totalsize=0;                  my $totalsize=0;
  &file_submission($part,$id,'filename',\$award,\$uploadedflag,\$totalsize);                  &file_submission($part,$id,\$award,\$uploadedflag,\$totalsize,\@deletions);
  &file_submission($part,$id,'portfiles',\$award,\$uploadedflag,\$totalsize);  
  $Apache::lonhomework::results{"resource.$part.$id.submission"}=$response;   $Apache::lonhomework::results{"resource.$part.$id.submission"}=$response;
  $Apache::lonhomework::results{"resource.$part.$id.awarddetail"}=$award;   $Apache::lonhomework::results{"resource.$part.$id.awarddetail"}=$award;
  my %previous=&Apache::response::check_for_previous($response,$part,$id);   my %previous=&Apache::response::check_for_previous($response,$part,$id);
  unless ($uploadedflag) { &Apache::response::handle_previous(\%previous,$award); }   if ($uploadedflag) {
                       if ($award eq 'FILENAME_INUSE') {
                           delete($Apache::lonhomework::results{"resource.$id.tries"});
                       }
                   } else {
                       &Apache::response::handle_previous(\%previous,$award);
                   }
 #  #
 # Store with resource author for similarity testing  # Store with resource author for similarity testing
 #  #
Line 180  sub end_essayresponse { Line 214  sub end_essayresponse {
  { $akey => $response },$adom,$aname);   { $akey => $response },$adom,$aname);
     }      }
                 }                  }
     }              }
  }    } 
     } elsif ($target eq 'edit') {      } elsif ($target eq 'edit') {
  $result.=&Apache::edit::end_table();   $result.=&Apache::edit::end_table();
Line 208  sub end_essayresponse { Line 242  sub end_essayresponse {
   
  if ($target eq 'analyze') {   if ($target eq 'analyze') {
             $Apache::lonhomework::analyze{"$part.$id.type"} = 'essayresponse';              $Apache::lonhomework::analyze{"$part.$id.type"} = 'essayresponse';
               push (@{ $Apache::lonhomework::analyze{"parts"} },"$part.$id");
     &Apache::lonhomework::set_bubble_lines();      &Apache::lonhomework::set_bubble_lines();
  }   }
     }      }
Line 247  sub format_prior_response { Line 282  sub format_prior_response {
 }  }
   
 sub file_submission {  sub file_submission {
     my ($part,$id,$which,$award,$uploadedflag,$totalsize)=@_;      my ($part,$id,$award,$uploadedflag,$totalsize,$deletions)=@_;
     my $files;      my $files;
     my $jspart=$part;      my $jspart=$part;
     $jspart=~s/\./_/g;      $jspart=~s/\./_/g;
     if ($which eq 'portfiles') {       my ($symb,$crsid,$udom,$uname) = &Apache::lonnet::whichuser();
         $files= $env{'form.HWPORT'.$jspart.'_'.$id};      my %crsinfo = &Apache::lonnet::coursedescription($crsid);
     } elsif ($which eq 'filename') {      my $cdom = $crsinfo{'domain'};
         if ($env{'form.HWFILETOOBIG'.$jspart.'_'.$id} ne '') {      my $cnum = $crsinfo{'num'};
             $$award = 'EXCESS_FILESIZE';      my (@portfiles,$uploadedurl,@submitted_portfiles,$submitted_upload,
             return;          @acceptable_portfiles,$acceptable_upload,@accepted_portfiles,
         } else {          $accepted_upload,@savedportfiles,$stored_upload,@tolock,
             $files = $env{'form.HWFILE'.$jspart.'_'.$id.'.filename'};          %port_delete,$uploaded_delete);
       if ($Apache::lonhomework::history{"resource.$part.$id.portfiles"} ||
           $Apache::lonhomework::history{"resource.$part.$id.uploadedurl"}) {
           if ($Apache::lonhomework::history{"resource.$part.$id.portfiles"}) {
               @portfiles = split(/,/,$Apache::lonhomework::history{"resource.$part.$id.portfiles"});
           }
           $uploadedurl = $Apache::lonhomework::history{"resource.$part.$id.uploadedurl"};
           if (ref($deletions) eq 'ARRAY') {
               if (@{$deletions} > 0) {
                   foreach my $file (@{$deletions}) {
                       $file = &HTML::Entities::decode($file);
                       if (grep(/^\Q$file\E$/,@portfiles)) {
                           $port_delete{$file} = 1;
                       } elsif ($file =~ m{^/uploaded/\Q$udom\E/\Q$uname\E/essayresponse/\Q$cdom\E/\Q$cnum\E/}) {
                           $uploaded_delete = $file; 
                       } elsif ($file =~ m{^/uploaded/\Q$udom\E/\Q$uname\E/essayresponse/[^/]+$}) {
                           $uploaded_delete = $file;
                       }
                   }
               }
           }
           foreach my $current (@portfiles) {
               unless ($port_delete{$current}) {
                   push(@savedportfiles,$current);
               }
           }
           if ($uploaded_delete) {
               if ($uploaded_delete eq $uploadedurl) {
                   $Apache::lonhomework::results{"resource.$part.$id.uploadedfile"} = "";
                   $Apache::lonhomework::results{"resource.$part.$id.uploadedurl"} = "";
               } else {
                   undef($uploaded_delete);
               }
         }          }
     }      }
     if ($files =~ /[^\s]/) {      if ($env{'form.HWPORT'.$jspart.'_'.$id} ne '') {
  $files =~s/,$//;          my $newfiles= $env{'form.HWPORT'.$jspart.'_'.$id};
         my (@submitted_files,@acceptable_files,@accepted_files);          $newfiles =~s/,$//;
         if ($which eq 'portfiles') {          if ($newfiles =~ /[^\s]/) {
             @submitted_files = split(/\s*,\s*/,$files);              foreach my $file (split(/\s*,\s*/,$newfiles)) {
         } else {                  if ($file =~ /[^\s]/) {
             @submitted_files = ($files);                      push(@submitted_portfiles,$file);
                   }
               }
         }          }
         my $uploadedfiletypes=       }
       if ($env{'form.HWFILETOOBIG'.$part.'_'.$id} ne '') {
           $$award = 'EXCESS_FILESIZE';
       } elsif ($env{'form.HWFILE'.$jspart.'_'.$id.'.filename'} ne '') {
           my $newfile = $env{'form.HWFILE'.$jspart.'_'.$id.'.filename'};
           if ($newfile =~ /[^\s]/) {
               $submitted_upload = $newfile;
           }
       }
       if (@savedportfiles) {
           foreach my $file (reverse(@savedportfiles)) {
               unless(grep(/^\Q$file\E$/,@submitted_portfiles)) {
                   unshift(@submitted_portfiles,$file);
               }
           }
       }
       if (@submitted_portfiles || $submitted_upload) {
           my $uploadedfiletypes=
             &Apache::lonnet::EXT("resource.$part".'_'."$id.uploadedfiletypes");              &Apache::lonnet::EXT("resource.$part".'_'."$id.uploadedfiletypes");
         if ($uploadedfiletypes) {          if ($uploadedfiletypes ne '') {
             $uploadedfiletypes=~s/[^\w\,]//g;              $uploadedfiletypes=~s/[^\w\,]//g;
             $uploadedfiletypes=','.$uploadedfiletypes.',';              $uploadedfiletypes=','.$uploadedfiletypes.',';
             foreach my $file (@submitted_files) {              if (@submitted_portfiles) {
                 my ($extension)=($file=~/\.(\w+)$/);                  foreach my $file (@submitted_portfiles) {
                 if ($uploadedfiletypes=~/\,\s*\Q$extension\E\s*\,/i) {                      my ($extension)=($file=~/\.(\w+)$/);
                     push(@acceptable_files,$file);                      if ($uploadedfiletypes=~/\,\s*\Q$extension\E\s*\,/i) {
                           push(@acceptable_portfiles,$file);
                       }
                   }
               }
               if ($submitted_upload) {
                   my ($upload_ext)=($submitted_upload=~/\.(\w+)$/);
                   if ($uploadedfiletypes=~/\,\s*\Q$upload_ext\E\s*\,/i) {
                       $acceptable_upload = $submitted_upload;
                 } else {                  } else {
                     $$award='INVALID_FILETYPE';                      $$award='INVALID_FILETYPE';
                     if ($which eq 'filename') {                      &delete_form_items($jspart,$id);
                         &delete_form_items($jspart,$id);  
                     }  
                 }                  }
             }              }
           } else {
               @acceptable_portfiles = @submitted_portfiles;
               $acceptable_upload = $submitted_upload;
         }          }
       }
       if ((@acceptable_portfiles) || ($acceptable_upload ne '')) {
         my $maxfilesize=&Apache::lonnet::EXT("resource.$part".'_'."$id.maxfilesize");          my $maxfilesize=&Apache::lonnet::EXT("resource.$part".'_'."$id.maxfilesize");
         if (!$maxfilesize) {          if (!$maxfilesize) {
             $maxfilesize = 100.0; #FIXME This should become a domain configuration              $maxfilesize = 10.0; #FIXME This should become a domain configuration
         }          }
         my %dirlist;          my %dirlist;
         foreach my $file (@acceptable_files) {          if (@acceptable_portfiles) {
             if ($which eq 'filename') {              foreach my $file (@acceptable_portfiles) {
                 if (ref($totalsize)) {                  my ($path,$filename) = ($file =~ m{^(.*/)([^/]+)$});
                     $$totalsize += $env{'form.HWFILESIZE'.$jspart.'_'.$id};  
                 }  
             } else {  
                 my ($symb,$crsid,$udom,$uname) = &Apache::lonnet::whichuser();  
                 my ($path,$filename) = ($file =~ m{^(.+)/([^/]+)$});  
                 my $fullpath = '/userfiles/portfolio'.$path;                  my $fullpath = '/userfiles/portfolio'.$path;
                 if (!exists($dirlist{$fullpath})) {                  if (!exists($dirlist{$fullpath})) {
                     my @list = &Apache::lonnet::dirlist($fullpath,$udom,$uname,1);                      my @list = &Apache::lonnet::dirlist($fullpath,$udom,$uname,1);
                     foreach my $dir_line (@list) {                      $dirlist{$fullpath} = \@list;
                   }
                   if (ref($dirlist{$fullpath}) eq 'ARRAY') {
                       foreach my $dir_line (@{$dirlist{$fullpath}}) {
                         my ($fname,$dom,undef,$testdir,undef,undef,undef,undef,                          my ($fname,$dom,undef,$testdir,undef,undef,undef,undef,
                             $size,undef,$mtime,undef,undef,undef,$obs,undef) =                               $size,undef,$mtime,undef,undef,undef,$obs,undef) =
                         split(/\&/,$dir_line,16);                          split(/\&/,$dir_line,16);
                         if ($filename eq $fname) {                          if ($filename eq $fname) {
                             my $mbsize = $size/(1024.0*1024.0);                              my $mbsize = $size/(1024.0*1024.0);
Line 314  sub file_submission { Line 409  sub file_submission {
                             last;                              last;
                         }                          }
                     }                      }
                     $dirlist{$fullpath} = \@list;                  }
                   if (ref($totalsize)) {
                       if ($$totalsize > $maxfilesize) {
                           $$award='EXCESS_FILESIZE';
                           &delete_form_items($jspart,$id);
                       } else {
                           push(@accepted_portfiles,$file);
                       }
                   } else {
                       push(@accepted_portfiles,$file);
                 }                  }
             }              }
           }
           if ($acceptable_upload ne '') {
             if (ref($totalsize)) {              if (ref($totalsize)) {
                   $$totalsize += $env{'form.HWFILESIZE'.$jspart.'_'.$id};
                 if ($$totalsize > $maxfilesize) {                  if ($$totalsize > $maxfilesize) {
                     $$award='EXCESS_FILESIZE';                      $$award='EXCESS_FILESIZE';
                     if ($which eq 'filename') {                      delete($env{'form.HWFILE'.$jspart.'_'.$id});
                         &delete_form_items($jspart,$id);                  } else {
                       $accepted_upload = $acceptable_upload;
                   }
               } else {
                   $accepted_upload = $acceptable_upload;
               }
           }
       }
       if ($accepted_upload ne '') {
           my ($map,$resid,$resurl)=&Apache::lonnet::decode_symb($symb);
           my $turnindir;
           my %userhash = &Apache::lonnet::userenvironment($udom,$uname,'turnindir');
           $turnindir = $userhash{'turnindir'};
           if ($turnindir eq '') {
               $turnindir = &mt('turned in');
               $turnindir =~ s/\W+/_/g;
               my %newhash = (
                               'turnindir' => $turnindir,
                             );
               &Apache::lonnet::put('environment',\%newhash,$udom,$uname);
           }
           my $prefix = 'portfolio';
           my $path = '/'.$turnindir.'/';
           my $restitle=&Apache::lonnet::gettitle($symb);
           $restitle =~ s/\W+/_/g;
           if ($restitle eq '') {
               $restitle = ($resurl =~ m{/[^/]+$});
               if ($restitle eq '') {
                   $restitle = time;
               }
           }
           my @pathitems;
           my $navmap = Apache::lonnavmaps::navmap->new();
           if (defined($navmap)) {
               my $mapres = $navmap->getResourceByUrl($map);
               if (ref($mapres)) {
                   my $pcslist = $mapres->map_hierarchy();
                   if ($pcslist ne '') {
                       foreach my $pc (split(/,/,$pcslist)) {
                           my $res = $navmap->getByMapPc($pc);
                           if (ref($res)) {
                               my $title = $res->compTitle();
                               $title =~ s/\W+/_/g;
                               if ($title ne '') {
                                   push(@pathitems,$title);
                               }
                           }
                     }                      }
                 }                  }
                   my $maptitle = $mapres->compTitle();
                   $maptitle =~ s/\W+/_/g;
                   if ($maptitle ne '') {
                       push(@pathitems,$maptitle);
                   }
             } else {              } else {
                 push(@accepted_files,$file);                  $$award = 'INTERNAL_ERROR';
             }              }
           } else {
               $$award = 'INTERNAL_ERROR';
         }          }
  my $uploadedfiletypes= &Apache::lonnet::EXT("resource.$part".'_'."$id.uploadedfiletypes");          push(@pathitems,$restitle);
         $Apache::lonhomework::results{"resource.$part.$id.$which"}=join(',',@accepted_files);          $path .= join('/',@pathitems);
         if (($$award eq 'INVALID_FILETYPE') || ($award eq 'EXCESS_FILESIZE')) {          my $formelement = 'HWFILE'.$jspart.'_'.$id;
             return;          my $fname = &Apache::lonnet::clean_filename($env{'form.'.$formelement.'.filename'});
           my $url = '/uploaded/'.$udom.'/'.$uname.'/'.$prefix.$path.'/'.$fname;
           my @stat = &Apache::lonnet::stat_file($url);
           if (@stat && $stat[0] ne 'no_such_dir') {
               $$award = 'FILENAME_INUSE';
           } else {
               my ($mode,%allfiles,%codebase);
               my $result = &Apache::lonnet::userfileupload($formelement,'',
                                $prefix.$path,$mode,\%allfiles,\%codebase);
               if ($result =~ m{^/uploaded/}) {
                   $stored_upload = $path.'/'.$fname;
                   $Apache::lonhomework::results{"resource.$part.$id.portfiles"} = $stored_upload;
                   push(@tolock,$stored_upload);
               } else {
                   $$award = 'INTERNAL_ERROR';
               }
         }          }
  if (ref($uploadedflag)) {          delete($env{'form.HWFILE'.$jspart.'_'.$id});
     $$uploadedflag=1;  
  }  
  if ($which eq 'portfiles') {  
     my ($symb,$crsid,$domain,$name)=&Apache::lonnet::whichuser();  
     &Apache::lonnet::unmark_as_readonly($domain,$name,[$symb,$crsid]);  
     &Apache::lonnet::mark_as_readonly($domain,$name,\@submitted_files,[$symb,$crsid]);  
     &Apache::lonnet::clear_selected_files($name);  
  }  
  if ($which eq 'filename') {  
     $Apache::lonhomework::results{"resource.$part.$id.uploadedfile"}=  
  $files;  
     $Apache::lonhomework::results{"resource.$part.$id.uploadedurl"}=  
  &Apache::lonnet::userfileupload('HWFILE'.$jspart.'_'.$id,undef,  
  'essayresponse');  
             &Apache::lonnet::delenv($env{'form.HWFILE'.$jspart.'_'.$id});  
  }  
     } elsif ($which eq 'portfiles' &&  
      $Apache::lonhomework::history{"resource.$part.$id.$which"}) {  
  my ($symb,$crsid,$domain,$name)=&Apache::lonnet::whichuser();  
  &Apache::lonnet::unmark_as_readonly($domain,$name,[$symb,$crsid]);  
  $Apache::lonhomework::results{"resource.$part.$id.$which"}="";  
     }      }
       if (@accepted_portfiles) {
           if ($stored_upload) {
               $Apache::lonhomework::results{"resource.$part.$id.portfiles"} .= ',';
           }
           $Apache::lonhomework::results{"resource.$part.$id.portfiles"}.=join(',',@accepted_portfiles);
           push(@tolock,@accepted_portfiles);
       }
       if (!defined($Apache::lonhomework::results{"resource.$part.$id.portfiles"})) {
           if (keys(%port_delete) > 0) {
               $Apache::lonhomework::results{"resource.$part.$id.portfiles"} = "";
           }
       }
       if (($Apache::lonhomework::history{"resource.$part.$id.portfiles"} ne  
            $Apache::lonhomework::results{"resource.$part.$id.portfiles"}) ||
           ($uploaded_delete)) {
           if (ref($uploadedflag)) {
               $$uploadedflag=1;
           }
       }
       &Apache::lonnet::unmark_as_readonly($udom,$uname,[$symb,$crsid]);
       &Apache::lonnet::mark_as_readonly($udom,$uname,[@tolock],[$symb,$crsid]);
       &Apache::lonnet::clear_selected_files($uname);
       return;
 }  }
   
 sub delete_form_items {  sub delete_form_items {
     my ($jspart,$id) = @_;      my ($jspart,$id) = @_;
     &Apache::lonnet::delenv($env{'form.HWFILE'.$jspart.'_'.$id.'.filename'});      delete($env{'form.HWFILE'.$jspart.'_'.$id.'.filename'});
     &Apache::lonnet::delenv($env{'form.HWFILE'.$jspart.'_'.$id.'.mimetype'});      delete($env{'form.HWFILE'.$jspart.'_'.$id.'.mimetype'});
     &Apache::lonnet::delenv($env{'form.HWFILE'.$jspart.'_'.$id});      delete($env{'form.HWFILE'.$jspart.'_'.$id});
 }  }
   
   
 sub check_collaborators {  sub check_collaborators {
     my ($ncol,$coll) = @_;      my ($ncol,$coll) = @_;
     my %classlist=&Apache::lonnet::dump('classlist',      my %classlist=&Apache::lonnet::dump('classlist',
Line 373  sub check_collaborators { Line 549  sub check_collaborators {
  $env{'course.'.$env{'request.course.id'}.'.num'});   $env{'course.'.$env{'request.course.id'}.'.num'});
     my (@badcollaborators,$result);      my (@badcollaborators,$result);
       
     my (@collaborators) = split(/,?\s+/,$coll);      my (@collaborators) = split(/[,;\s]+/,$coll);
     foreach my $entry (@collaborators) {      foreach my $entry (@collaborators) {
         my $collaborator;          my $collaborator;
  if ($entry =~ /:/) {   if ($entry =~ /:/) {
Line 415  sub check_collaborators { Line 591  sub check_collaborators {
   
 1;  1;
 __END__  __END__
   
   
   =pod
   
   =head1 NAME
   
   Apache::essayresponse
   
   =head1 SYNOPSIS
   
   Handler to evaluate essay (ungraded) style responses.
   
   This is part of the LearningOnline Network with CAPA project
   described at http://www.lon-capa.org.
   
   =head1 SUBROUTINES
   
   =over 
   
   =item start_essayresponse()
   
   =item end_essayresponse()
   
   =item format_prior_response()
   
   =item file_submission()
   
   =item delete_form_items()
   
   =item check_collaborators()
   
   =back
   
   =cut

Removed from v.1.91  
changed lines
  Added in v.1.112


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