File:  [LON-CAPA] / loncom / interface / lonevaluate.pm
Revision 1.15: download - view: text, annotated - select for diffs
Thu Feb 17 08:29:42 2005 UTC (19 years, 2 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- <html> -> &Apache::lonxml::xmlbegin, thus valid doctypes are now getting output, Yeah! StandardsCmpliance

- backing out the encoding changes for now

- some xhtml cleanups
- one icon -> lonhttpd

    1: # The LearningOnline Network
    2: # Evaluate
    3: #
    4: # $Id: lonevaluate.pm,v 1.15 2005/02/17 08:29:42 albertel Exp $
    5: #
    6: # Copyright Michigan State University Board of Trustees
    7: #
    8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
    9: #
   10: # LON-CAPA is free software; you can redistribute it and/or modify
   11: # it under the terms of the GNU General Public License as published by
   12: # the Free Software Foundation; either version 2 of the License, or
   13: # (at your option) any later version.
   14: #
   15: # LON-CAPA is distributed in the hope that it will be useful,
   16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   18: # GNU General Public License for more details.
   19: #
   20: # You should have received a copy of the GNU General Public License
   21: # along with LON-CAPA; if not, write to the Free Software
   22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   23: #
   24: # /home/httpd/html/adm/gpl.txt
   25: #
   26: # http://www.lon-capa.org/
   27: #
   28: # (Internal Server Error Handler
   29: #
   30: # (Login Screen
   31: # 5/21/99,5/22,5/25,5/26,5/31,6/2,6/10,7/12,7/14,
   32: # 1/14/00,5/29,5/30,6/1,6/29,7/1,11/9 Gerd Kortemeyer)
   33: #
   34: # 3/1/1 Gerd Kortemeyer)
   35: #
   36: # 3/1,12/6,12/12,12/21,12/22 Gerd Kortemeyer
   37: #
   38: package Apache::lonevaluate;
   39: 
   40: use strict;
   41: use Apache::lonnet();
   42: use Apache::Constants qw(:common);
   43: use Apache::loncommon();
   44: use Apache::lonenc();
   45: 
   46: sub handler {
   47:     my $r = shift;
   48:     $r->content_type('text/html');
   49:     $r->send_http_header;
   50:     return OK if $r->header_only;
   51: 
   52:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['postdata']);
   53:     my $feedurl=$ENV{'form.postdata'};
   54:     $feedurl=~s/^http\:\/\///;
   55:     $feedurl=~s/^$ENV{'SERVER_NAME'}//;
   56:     $feedurl=~s/^$ENV{'HTTP_HOST'}//;
   57: 
   58:     $feedurl=&Apache::lonnet::declutter($feedurl);
   59: 
   60:     my $title=&Apache::lonnet::gettitle($feedurl);
   61:     my $showurl=&Apache::lonenc::check_encrypt($feedurl);
   62: 
   63:     my ($rdomain,$rauth)=($feedurl=~/^(\w+)\/(\w+)\//);
   64: 
   65:     my $prefix=$ENV{'user.name'}.'@'.$ENV{'user.domain'}.'___'.
   66: 	$feedurl.'___';
   67: 
   68:     my @items=('correct','helpful','depth','clear','technical','comments',
   69:                'timestamp');
   70: 
   71:     my @retrieve=map{ $prefix.$_ } @items;
   72: 
   73:     my %currenteval=
   74:        &Apache::lonnet::get('nohist_resevaldata',\@retrieve,$rdomain,$rauth);
   75: 
   76:     my $already=($currenteval{$prefix.'timestamp'} ne '');
   77: 
   78:     $ENV{'form.timestamp'}=time;
   79: 
   80:     my $warning='';
   81: 
   82:     my $bodytag=&Apache::loncommon::bodytag('Evaluate Resource');
   83: 
   84:     if ($ENV{'form.submiteval'} eq 'true') {
   85: # ------------------------------------------------ User is submitting something
   86:         my $complete=1;
   87: 	foreach my $item (@items) {
   88: 	    if ($ENV{'form.'.$item}) {
   89: 		$currenteval{$prefix.$item}=$ENV{'form.'.$item};
   90:             } elsif ($item ne 'comments') {
   91:                 $complete=0;
   92:             }
   93:         }
   94:         if ($complete) {
   95: 	    my $showurl=&Apache::lonenc::check_encrypt(&Apache::lonnet::clutter($feedurl));
   96: 	    my $html=&Apache::lonxml::xmlbegin();
   97: 	    $r->print(<<ENDHEADER);
   98: $html
   99: <head>
  100: <title>Evaluation submitted</title>
  101: <script>
  102:     function goback() {
  103: 	if ((window.name=='loncapaclient')) {
  104:             window.location='$showurl';
  105:         } else {
  106:             self.close();
  107:         }
  108:     }
  109: </script>
  110: <meta http-equiv="pragma" content="no-cache"></meta>
  111: </head>
  112: $bodytag
  113: <h1>Thank you for your input!</h1>
  114: ENDHEADER
  115:        $r->print('Storing feedback: '.
  116:            &Apache::lonnet::put('nohist_resevaldata',\%currenteval,$rdomain,$rauth));
  117:            unless ($already) {
  118: 	       $r->print('<br>Logging first evaluation');
  119:            }
  120:            $r->print(
  121:             '<script>setTimeout("goback()",2000);</script></body></html>');
  122:            return OK;
  123:         } else {
  124: 	    $warning='Please fill out all fields below';
  125:         }
  126:    
  127:     }
  128: 
  129: # ---------------------------------------------------------- Dial in old values
  130:     my $dialold='';
  131:     my $oldcomments='';
  132: 
  133:     foreach my $item (@items) {
  134:        unless ($item eq 'comments') {
  135:            unless (($item eq 'timestamp') || 
  136:                    (!defined($currenteval{$prefix.$item}))) {
  137:               $dialold.=
  138:                    'document.evaluation.'.$item.'.selectedIndex='.
  139:                    $currenteval{$prefix.$item}.";\n";
  140: 	   }
  141:        } else {
  142:            $oldcomments=$currenteval{$prefix.$item};
  143:        }       
  144:     }
  145: # ------------------------------------------------------- Print out eval screen
  146:     my $standardoptions=(<<ENDOPTIONS);
  147: <option value=0>-</option>
  148: <option value=1>Strongly Disagree</option>
  149: <option value=2>Disagree</option>
  150: <option value=3>Neutral</option>
  151: <option value=4>Agree</option>
  152: <option value=5>Strongly Agree</option>
  153: ENDOPTIONS
  154:     
  155:     my $html=&Apache::lonxml::xmlbegin();
  156:     $r->print(<<ENDDOCUMENT);
  157: $html
  158: <head>
  159: <title>The LearningOnline Network with CAPA</title>
  160: </head>
  161: $bodytag
  162: <tt>$title</tt><p>
  163: <h3><font color="red">$warning</font></h3>
  164: Please rank the following criteria:
  165: <form method=post name=evaluation>
  166: <input type=hidden name=submiteval value=true>
  167: <input type=hidden name=postdata value="$showurl">
  168: The material appears to be correct
  169: <br><select name=correct>
  170: $standardoptions
  171: </select>
  172: <hr>
  173: The material is helpful
  174: <br><select name=helpful>
  175: $standardoptions
  176: </select>
  177: <hr>
  178: The material is covered with sufficient depth
  179: <br><select name=depth>
  180: $standardoptions
  181: </select>
  182: <hr>
  183: The material is presented in a clear way
  184: <br><select name=clear>
  185: $standardoptions
  186: </select>
  187: <hr>
  188: The resource is technically correct 
  189: (loads fast enough, does not produce errors, links work, etc) 
  190: <br><select name=technical>
  191: $standardoptions
  192: </select>
  193: <hr>
  194: Any comments?
  195: <br><textarea name=comments cols=40 rows=5>$oldcomments</textarea>
  196: <script>$dialold</script>
  197: <br><input type=submit value="Submit Evaluation">
  198: </form>
  199: </body>
  200: </html>
  201: ENDDOCUMENT
  202:     return OK;
  203: } 
  204: 
  205: 1;
  206: __END__

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