Diff for /loncom/interface/lonevaluate.pm between versions 1.14 and 1.16

version 1.14, 2004/11/11 22:47:55 version 1.16, 2005/02/17 08:50:20
Line 45  use Apache::lonenc(); Line 45  use Apache::lonenc();
   
 sub handler {  sub handler {
     my $r = shift;      my $r = shift;
     $r->content_type('text/html');      &Apache::loncommon::content_type($r,'text/html');
     $r->send_http_header;      $r->send_http_header;
     return OK if $r->header_only;      return OK if $r->header_only;
   
Line 93  sub handler { Line 93  sub handler {
         }          }
         if ($complete) {          if ($complete) {
     my $showurl=&Apache::lonenc::check_encrypt(&Apache::lonnet::clutter($feedurl));      my $showurl=&Apache::lonenc::check_encrypt(&Apache::lonnet::clutter($feedurl));
            $r->print(<<ENDHEADER);      my $html=&Apache::lonxml::xmlbegin();
 <html>      $r->print(<<ENDHEADER);
   $html
 <head>  <head>
 <title>Evaluation submitted</title>  <title>Evaluation submitted</title>
 <script>  <script>
Line 150  ENDHEADER Line 151  ENDHEADER
 <option value=4>Agree</option>  <option value=4>Agree</option>
 <option value=5>Strongly Agree</option>  <option value=5>Strongly Agree</option>
 ENDOPTIONS  ENDOPTIONS
       
       my $html=&Apache::lonxml::xmlbegin();
     $r->print(<<ENDDOCUMENT);      $r->print(<<ENDDOCUMENT);
 <html>  $html
 <head>  <head>
 <title>The LearningOnline Network with CAPA</title>  <title>The LearningOnline Network with CAPA</title>
 </head>  </head>

Removed from v.1.14  
changed lines
  Added in v.1.16


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