Diff for /loncom/homework/essayresponse.pm between versions 1.69 and 1.74

version 1.69, 2005/11/15 22:19:57 version 1.74, 2006/09/21 21:23:19
Line 31  use strict; Line 31  use strict;
 use Apache::lonxml();  use Apache::lonxml();
 use Apache::lonnet;  use Apache::lonnet;
 use Apache::lonlocal;  use Apache::lonlocal;
   use lib '/home/httpd/lib/perl/';
   use LONCAPA;
    
   
 BEGIN {  BEGIN {
     &Apache::lonxml::register('Apache::essayresponse',('essayresponse'));      &Apache::lonxml::register('Apache::essayresponse',('essayresponse'));
Line 72  sub start_essayresponse { Line 75  sub start_essayresponse {
  $result.=&Apache::inputtags::file_selector($part,$id,   $result.=&Apache::inputtags::file_selector($part,$id,
    $uploadedfiletypes,'both');     $uploadedfiletypes,'both');
         $result.='</table>';          $result.='</table>';
       } elsif ($target eq 'web' &&
        $Apache::inputtags::status[-1] ne 'CAN_ANSWER') {
    my $part= $Apache::inputtags::part;
    my @msgs;
    if ($Apache::lonhomework::history{"resource.$part.$id.collaborators"} =~ /\S/) {
       my $coll= &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.collaborators"},'<>&"');
       $result .= '<td>'.&mt('Collaborated with [_1]',$coll).'</td>';
    }
   
    my $file_submission = 
       &Apache::inputtags::show_past_file_submission($part,$id);
    if ($file_submission) {
       $result .= '<td>'.$file_submission.'</td>';
    }
   
    my $port_submission = 
       &Apache::inputtags::show_past_portfile_submission($part,$id);
    if ($port_submission) {
       $result .= '<td>'.$port_submission.'</td>';
    }
   
    if ($result ne '') {
       $result = 
    '<table class="LC_pastsubmission"><tr>'.$result.
    '</tr></table>';
    }
     }      }
     return $result;      return $result;
 }  }
Line 80  sub end_essayresponse { Line 109  sub end_essayresponse {
     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;      my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
     my $part          = $Apache::inputtags::part;      my $part          = $Apache::inputtags::part;
     my $id            = $Apache::inputtags::response[-1];      my $id            = $Apache::inputtags::response[-1];
     my $increment     = 1;      my $increment     = &Apache::response::repetition();
     my $result;      my $result;
     if ( $target eq 'grade' ) {      if ( $target eq 'grade' ) {
  my $collaborators = $env{'form.HWCOL'.$part.'_'.$id};   my $collaborators = $env{'form.HWCOL'.$part.'_'.$id};
Line 119  sub end_essayresponse { Line 148  sub end_essayresponse {
     &Apache::lonnet::declutter($ENV{'REQUEST_URI'});      &Apache::lonnet::declutter($ENV{'REQUEST_URI'});
  my ($adom,$aname,$apath)=   my ($adom,$aname,$apath)=
     ($essayurl=~/^(\w+)\/(\w+)\/(.*)$/);      ($essayurl=~/^(\w+)\/(\w+)\/(.*)$/);
                         $apath=&Apache::lonnet::escape($apath);                          $apath=&escape($apath);
  $apath=~s/\W/\_/gs;   $apath=~s/\W/\_/gs;
  &Apache::lonnet::put('nohist_essay_'.$apath,   &Apache::lonnet::put('nohist_essay_'.$apath,
  { $akey => $response },$adom,$aname);   { $akey => $response },$adom,$aname);
Line 129  sub end_essayresponse { Line 158  sub end_essayresponse {
  }    } 
     } elsif ($target eq 'edit') {      } elsif ($target eq 'edit') {
  $result.=&Apache::edit::end_table();   $result.=&Apache::edit::end_table();
     } elsif ($target eq 'tex') {  
  if ($Apache::lonhomework::type eq 'exam') {      } elsif ($target eq 'tex'
     my $repetition=&Apache::response::repetition();       && $Apache::lonhomework::type eq 'exam') {
     $result.='\begin{enumerate}';   $result .= &Apache::inputtags::exam_score_line($target);
     if ($env{'request.state'} eq "construct" ) {$result.='\item[\strut]';}  
     for (my $i=0;$i<$repetition;$i++) {      } elsif ($target eq 'answer') {
  $result.='\item[\textbf{'.($Apache::lonxml::counter+$i).   $result.=&Apache::response::answer_header($$tagstack[-1]);
     '}.]\textit{'.&mt('Leave blank on scoring form').   $result.=&Apache::response::answer_part($$tagstack[-1],'');
     '}\vskip 0 mm';   $result.=&Apache::response::answer_footer($$tagstack[-1]);
     }  
     $result.= '\end{enumerate}';  
     $increment=$repetition;  
  }  
     }      }
   
     if ($target eq 'grade' || $target eq 'web' || $target eq 'answer' ||      if ($target eq 'grade' || $target eq 'web' || $target eq 'answer' ||
  $target eq 'tex' || $target eq 'analyze') {   $target eq 'tex' || $target eq 'analyze') {
  &Apache::lonxml::increment_counter($increment);   &Apache::lonxml::increment_counter($increment);
Line 168  sub file_submission { Line 194  sub file_submission {
   
  my @submitted_files = ($files);   my @submitted_files = ($files);
  if ( $which eq 'portfiles' ) {   if ( $which eq 'portfiles' ) {
     @submitted_files = split(/,/,$files);      @submitted_files = split(/\s*,\s*/,$files);
  }   }
   
  my $uploadedfiletypes= &Apache::lonnet::EXT("resource.$part".'_'."$id.uploadedfiletypes");   my $uploadedfiletypes= &Apache::lonnet::EXT("resource.$part".'_'."$id.uploadedfiletypes");

Removed from v.1.69  
changed lines
  Added in v.1.74


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