Diff for /loncom/interface/lonevaluate.pm between versions 1.26 and 1.28

version 1.26, 2008/11/21 20:17:11 version 1.28, 2008/12/24 07:56:50
Line 48  sub handler { Line 48  sub handler {
   
     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['postdata']);      &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['postdata']);
     my $feedurl=$env{'form.postdata'};      my $feedurl=$env{'form.postdata'};
     $feedurl=~s/^http\:\/\///;      $feedurl=~s/^https?\:\/\///;
     $feedurl=~s/^$ENV{'SERVER_NAME'}//;      $feedurl=~s/^$ENV{'SERVER_NAME'}//;
     $feedurl=~s/^$ENV{'HTTP_HOST'}//;      $feedurl=~s/^$ENV{'HTTP_HOST'}//;
   
Line 100  sub handler { Line 100  sub handler {
 </script>  </script>
 ENDJS  ENDJS
   
             my $start_page =              my $start_page = &Apache::loncommon::start_page('Evaluate Resource',$js);
         &Apache::loncommon::start_page('Evaluate Resource',$js);             $r->print($start_page
     $r->print('                       .'<h1>'.&mt('Thank you for your input!').'</h1>');
 '.$start_page.'             $r->print('<div class="LC_success">'
 <h1>'.&mt('Thank you for your input!').'</h1>                       .&mt('Saving feedback: [_1]'
 ');                           ,&Apache::lonnet::put('nohist_resevaldata',\%currenteval,$rdomain,$rauth))
        $r->print(&mt('Saving feedback: [_1]',                       .'</div>');
      &Apache::lonnet::put('nohist_resevaldata',\%currenteval,$rdomain,$rauth)));  
            unless ($already) {             unless ($already) {
        $r->print('<br />'.&mt('Logging first evaluation'));         $r->print('<br />'.&mt('Logging first evaluation'));
            }             }
Line 115  ENDJS Line 114  ENDJS
             '<script type="text/javascript">setTimeout("goback()",2000);</script>'.&Apache::loncommon::end_page());              '<script type="text/javascript">setTimeout("goback()",2000);</script>'.&Apache::loncommon::end_page());
            return OK;             return OK;
         } else {          } else {
     $warning=&mt('Please fill out all fields below');      $warning=&mt('Please fill out all fields below.');
         }          }
         
     }      }
Line 167  ENDOPTIONS Line 166  ENDOPTIONS
     );      );
     $r->print(<<ENDDOCUMENT);      $r->print(<<ENDDOCUMENT);
 $start_page  $start_page
 <h2><tt>$title</tt></h2><br /><br />  <h2>$title</h2>
 <h3><font color="red">$warning</font></h3>  <p class="LC_warning">$warning</p>
 $lt{'pleaserank'}<br />  $lt{'pleaserank'}<br />
 <form method="post" name="evaluation" action="/adm/evaluate">  <form method="post" name="evaluation" action="/adm/evaluate">
 <input type="hidden" name="submiteval" value="true" />  <input type="hidden" name="submiteval" value="true" />

Removed from v.1.26  
changed lines
  Added in v.1.28


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