Diff for /loncom/interface/lonevaluate.pm between versions 1.3 and 1.4

version 1.3, 2001/12/12 23:46:22 version 1.4, 2001/12/13 00:30:22
Line 60  sub handler { Line 60  sub handler {
     my $prefix=$ENV{'user.name.'}.'@'.$ENV{'user.domain'}.'___'.      my $prefix=$ENV{'user.name.'}.'@'.$ENV{'user.domain'}.'___'.
  $feedurl.'___';   $feedurl.'___';
   
     my @items=('correct','helpful','depth','clear','technical','comments');      my @items=('correct','helpful','depth','clear','technical','comments',
                  'timestamp');
   
     my @retrieve=map{ $prefix.$_ } @items;      my @retrieve=map{ $prefix.$_ } @items;
   
       my %currenteval=
          &Apache::lonnet::get('resevaldata',\@retrieve,$rdomain,$rauth);
   
       my $already=($currenteval{$prefix.'timestamp'} ne '');
   
       $ENV{'form.timestamp'}=time;
   
       my $warning='';
   
     if ($ENV{'form.submiteval'} eq 'true') {      if ($ENV{'form.submiteval'} eq 'true') {
 # ------------------------------------------------ User is submitting something  # ------------------------------------------------ User is submitting something
           my $complete=1;
    foreach my $item (@items) {
       if ($ENV{'form.'.$item}) {
    $currenteval{$prefix.$item}=$ENV{'form.'.$item};
               } elsif ($item ne 'comments') {
                   $complete=0;
               }
           }
           if ($complete) {
              $r->print(<<ENDHEADER);
   <html>
   <head>
   <title>Evaluation submitted</title>
   <meta http-equiv="pragma" content="no-cache"></meta>
   <meta HTTP-EQUIV="Refresh" CONTENT="2; url=/res/$feedurl">
   </head>
   <body bgcolor="#FFFFFF">
   <h1>Thank you for your input!</h1>
   ENDHEADER
          $r->print('Storing feedback: '.
              &Apache::lonnet::put('resevaldata',\%currenteval,$rdomain,$rauth));
              unless ($already) {
          $r->print('<br>Logging first evaluation');
              }
              $r->print('</body></html>');
              return OK;
           } else {
       $warning='Please fill out all fields below';
           }
       
     }      }
   
   # ---------------------------------------------------------- Dial in old values
       my $dialold='';
   
 # ------------------------------------------------------- Print out eval screen  # ------------------------------------------------------- Print out eval screen
     my $standardoptions=(<<ENDOPTIONS);      my $standardoptions=(<<ENDOPTIONS);
 <option value=0>-</option>  <option value=0>-</option>
Line 77  sub handler { Line 121  sub handler {
 <option value=5>Strongly Agree</option>  <option value=5>Strongly Agree</option>
 ENDOPTIONS  ENDOPTIONS
   
     my $dialold='';  
     my $oldcomments='';      my $oldcomments='';
   
     $r->print(<<ENDDOCUMENT);      $r->print(<<ENDDOCUMENT);
Line 88  ENDOPTIONS Line 131  ENDOPTIONS
 <body bgcolor="#FFFFFF">  <body bgcolor="#FFFFFF">
 <h1>Evaluate Resource</h1>  <h1>Evaluate Resource</h1>
 <tt>$feedurl</tt><p>  <tt>$feedurl</tt><p>
   <h3><font color="red">$warning</font></h3>
 Please rank the following criteria:  Please rank the following criteria:
 <form method=post>  <form method=post>
 <input type=hidden name=submiteval value=true>  <input type=hidden name=submiteval value=true>
Line 121  $standardoptions Line 165  $standardoptions
 Any comments?  Any comments?
 <br><textarea name=comments cols=40 rows=5>$oldcomments</textarea>  <br><textarea name=comments cols=40 rows=5>$oldcomments</textarea>
 $dialold  $dialold
   <br><input type=submit value="Submit Evaluation">
 </form>  </form>
 </body>  </body>
 </html>  </html>

Removed from v.1.3  
changed lines
  Added in v.1.4


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