Diff for /loncom/interface/lonevaluate.pm between versions 1.17 and 1.18

version 1.17, 2005/04/07 06:56:23 version 1.18, 2006/03/02 21:11:00
Line 89  sub handler { Line 89  sub handler {
 $html  $html
 <head>  <head>
 <title>Evaluation submitted</title>  <title>Evaluation submitted</title>
 <script>  <script type="text/javascript">
     function goback() {      function goback() {
  if ((window.name=='loncapaclient')) {   if ((window.name=='loncapaclient')) {
             window.location='$showurl';              window.location='$showurl';
Line 106  ENDHEADER Line 106  ENDHEADER
        $r->print('Storing feedback: '.         $r->print('Storing feedback: '.
            &Apache::lonnet::put('nohist_resevaldata',\%currenteval,$rdomain,$rauth));             &Apache::lonnet::put('nohist_resevaldata',\%currenteval,$rdomain,$rauth));
            unless ($already) {             unless ($already) {
        $r->print('<br>Logging first evaluation');         $r->print('<br />Logging first evaluation');
            }             }
            $r->print(             $r->print(
             '<script>setTimeout("goback()",2000);</script></body></html>');              '<script type="text/javascript">setTimeout("goback()",2000);</script></body></html>');
            return OK;             return OK;
         } else {          } else {
     $warning='Please fill out all fields below';      $warning='Please fill out all fields below';
Line 135  ENDHEADER Line 135  ENDHEADER
     }      }
 # ------------------------------------------------------- Print out eval screen  # ------------------------------------------------------- Print out eval screen
     my $standardoptions=(<<ENDOPTIONS);      my $standardoptions=(<<ENDOPTIONS);
 <option value=0>-</option>  <option value="0">-</option>
 <option value=1>Strongly Disagree</option>  <option value="1">Strongly Disagree</option>
 <option value=2>Disagree</option>  <option value="2">Disagree</option>
 <option value=3>Neutral</option>  <option value="3">Neutral</option>
 <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();      my $html=&Apache::lonxml::xmlbegin();
Line 150  $html Line 150  $html
 <title>The LearningOnline Network with CAPA</title>  <title>The LearningOnline Network with CAPA</title>
 </head>  </head>
 $bodytag  $bodytag
 <tt>$title</tt><p>  <tt>$title</tt><br /><br />
 <h3><font color="red">$warning</font></h3>  <h3><font color="red">$warning</font></h3>
 Please rank the following criteria:  Please rank the following criteria:
 <form method=post name=evaluation>  <form method="post" name="evaluation" action="/adm/evaluate">
 <input type=hidden name=submiteval value=true>  <input type="hidden" name="submiteval" value="true" />
 <input type=hidden name=postdata value="$showurl">  <input type="hidden" name="postdata" value="$showurl" />
 The material appears to be correct  The material appears to be correct
 <br><select name=correct>  <br /><select name="correct">
 $standardoptions  $standardoptions
 </select>  </select>
 <hr>  <hr />
 The material is helpful  The material is helpful
 <br><select name=helpful>  <br /><select name="helpful">
 $standardoptions  $standardoptions
 </select>  </select>
 <hr>  <hr />
 The material is covered with sufficient depth  The material is covered with sufficient depth
 <br><select name=depth>  <br /><select name="depth">
 $standardoptions  $standardoptions
 </select>  </select>
 <hr>  <hr />
 The material is presented in a clear way  The material is presented in a clear way
 <br><select name=clear>  <br /><select name="clear">
 $standardoptions  $standardoptions
 </select>  </select>
 <hr>  <hr />
 The resource is technically correct   The resource is technically correct 
 (loads fast enough, does not produce errors, links work, etc)   (loads fast enough, does not produce errors, links work, etc) 
 <br><select name=technical>  <br /><select name="technical">
 $standardoptions  $standardoptions
 </select>  </select>
 <hr>  <hr />
 Any comments?  Any comments?
 <br><textarea name=comments cols=40 rows=5>$oldcomments</textarea>  <br /><textarea name="comments" cols="40" rows="5">$oldcomments</textarea>
 <script>$dialold</script>  <script type="text/javascript">$dialold</script>
 <br><input type=submit value="Submit Evaluation">  <br /><input type="submit" value="Submit Evaluation" />
 </form>  </form>
 </body>  </body>
 </html>  </html>

Removed from v.1.17  
changed lines
  Added in v.1.18


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