Diff for /loncom/interface/lonevaluate.pm between versions 1.1 and 1.2

version 1.1, 2001/01/03 16:20:59 version 1.2, 2001/12/06 22:07:30
Line 1 Line 1
 # The LearningOnline Network  # The LearningOnline Network
 # Evaluate  # Evaluate
 #  #
   # $Id$
   #
   # Copyright Michigan State University Board of Trustees
   #
   # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
   #
   # LON-CAPA is free software; you can redistribute it and/or modify
   # it under the terms of the GNU General Public License as published by
   # the Free Software Foundation; either version 2 of the License, or
   # (at your option) any later version.
   #
   # LON-CAPA is distributed in the hope that it will be useful,
   # but WITHOUT ANY WARRANTY; without even the implied warranty of
   # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   # GNU General Public License for more details.
   #
   # You should have received a copy of the GNU General Public License
   # along with LON-CAPA; if not, write to the Free Software
   # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   #
   # /home/httpd/html/adm/gpl.txt
   #
   # http://www.lon-capa.org/
   #
 # (Internal Server Error Handler  # (Internal Server Error Handler
 #  #
 # (Login Screen  # (Login Screen
Line 9 Line 33
 #  #
 # 3/1/1 Gerd Kortemeyer)  # 3/1/1 Gerd Kortemeyer)
 #  #
 # 3/1 Gerd Kortemeyer  # 3/1,12/6 Gerd Kortemeyer
 #  #
 package Apache::lonevaluate;  package Apache::lonevaluate;
   
Line 23  sub handler { Line 47  sub handler {
     return OK if $r->header_only;      return OK if $r->header_only;
   
 # --------------------------------------------------- Print login screen header  # --------------------------------------------------- Print login screen header
     
       my $standardoptions=(<<ENDOPTIONS);
   <option value=0>-</option>
   <option value=1>Strongly Disagree</option>
   <option value=2>Disagree</option>
   <option value=3>Neutral</option>
   <option value=4>Agree</option>
   <option value=5>Strongly Agree</option>
   ENDOPTIONS
   
       my $dialold='';
       my $oldcomments='';
   
     $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>
 <body bgcolor="#FFFFFF">  <body bgcolor="#FFFFFF">
 <h1>Evaluate</h1>  <h1>Evaluate Resource</h1>
 <img src="/adm/lonKaputt/lonconstruct.gif">  Please rank the following criteria:
   <form method=post>
   <input type=hidden name=submiteval value=true>
   The material appears to be correct
   <br><select name=correct>
   $standardoptions
   </select>
   <hr>
   The material is helpful
   <br><select name=helpful>
   $standardoptions
   </select>
   <hr>
   The material is covered with sufficient depth
   <br><select name=depth>
   $standardoptions
   </select>
   <hr>
   The material is presented in a clear way
   <br><select name=clear>
   $standardoptions
   </select>
   <hr>
   The resource is technically correct 
   (loads fast enough, does not produce errors, links work, etc) 
   <br><select name=depth>
   $standardoptions
   </select>
   <hr>
   Any comments?
   <br><textarea name=comments cols=40 rows=5>$oldcomments</textarea>
   $dialold
   </form>
 </body>  </body>
 </html>  </html>
 ENDDOCUMENT  ENDDOCUMENT

Removed from v.1.1  
changed lines
  Added in v.1.2


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