Diff for /loncom/interface/lonevaluate.pm between versions 1.13 and 1.15

version 1.13, 2004/11/11 22:20:12 version 1.15, 2005/02/17 08:29:42
Line 38 Line 38
 package Apache::lonevaluate;  package Apache::lonevaluate;
   
 use strict;  use strict;
 use Apache::lonnet;  use Apache::lonnet();
 use Apache::Constants qw(:common);  use Apache::Constants qw(:common);
 use Apache::loncommon;  use Apache::loncommon();
   use Apache::lonenc();
   
 sub handler {  sub handler {
     my $r = shift;      my $r = shift;
Line 92  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 149  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.13  
changed lines
  Added in v.1.15


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