File:  [LON-CAPA] / loncom / interface / lonquickgrades.pm
Revision 1.71: download - view: text, annotated - select for diffs
Sun Feb 20 23:57:35 2011 UTC (13 years, 3 months ago) by www
Branches: MAIN
CVS tags: HEAD
Total points and weight

    1: # The LearningOnline Network with CAPA
    2: # Quick Student Grades Display
    3: #
    4: # $Id: lonquickgrades.pm,v 1.71 2011/02/20 23:57:35 www 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: 
   29: package Apache::lonquickgrades;
   30: 
   31: use strict;
   32: use Apache::Constants qw(:common :http);
   33: use POSIX;
   34: use Apache::loncommon;
   35: use Apache::lonlocal;
   36: use Apache::lonnet;
   37: use Apache::grades;
   38: 
   39: sub handler {
   40:     my $r = shift;
   41:     return real_handler($r);
   42: }
   43: 
   44: sub real_handler {
   45:     my $r = shift;
   46: 
   47:     &Apache::loncommon::get_unprocessed_cgi($ENV{QUERY_STRING});
   48: 
   49:     # Handle header-only request
   50:     if ($env{'browser.mathml'}) {
   51: 	&Apache::loncommon::content_type($r,'text/xml');
   52:     } else {
   53: 	&Apache::loncommon::content_type($r,'text/html');
   54:     }
   55:     if ($r->header_only) {
   56: 	$r->send_http_header;
   57:         return OK;
   58:     }
   59: 
   60:     # Send header, don't cache this page
   61:     &Apache::loncommon::no_cache($r);
   62:     $r->send_http_header;
   63: 
   64:     my $showPoints =
   65:         $env{'course.'.$env{'request.course.id'}.'.grading'} eq 'standard';
   66:     my $notshowSPRSlink =
   67:         (($env{'course.'.$env{'request.course.id'}.'.grading'} eq 'external')
   68:       || ($env{'course.'.$env{'request.course.id'}.'.grading'} eq 'externalnototals'));
   69:     my $notshowTotals=
   70:         $env{'course.'.$env{'request.course.id'}.'.grading'} eq 'externalnototals';
   71:     my $showCategories=
   72:         $env{'course.'.$env{'request.course.id'}.'.grading'} eq 'categories';
   73: 
   74: 
   75:     my $title = "Grading and Statistics";#$showPoints ? "Points Display" : "Completed Problems Display";
   76:     my $brcrum = [{href=>"/adm/quickgrades",text => "Points Display"}];
   77:     $r->print(&Apache::loncommon::start_page($title,undef,
   78:                                             {'bread_crumbs' => $brcrum})
   79:              );
   80: 
   81:     &startGradeScreen($r,'quick');
   82: 
   83:     $r->rflush();
   84: 
   85: #    my $uname='korte';
   86: #    my $udom='gerd';
   87: 
   88:     my $uname;
   89:     my $udom;
   90: 
   91:     my ($navmap,$totalParts,$totalPossible,$totalRight,$totalAttempted,$topLevelParts,$topLevelRight,$topLevelAttempted)=
   92:        &getData($showPoints,$uname,$udom);
   93: 
   94:     if ($showCategories) {
   95:        &outputCategories($r,$showPoints,$notshowTotals,
   96:                  $navmap,$totalParts,$totalPossible,$totalRight,$totalAttempted,$topLevelParts,$topLevelRight,$topLevelAttempted);
   97:     } else {
   98:        &outputTable($r,$showPoints,$notshowTotals,
   99:                  $navmap,$totalParts,$totalPossible,$totalRight,$totalAttempted,$topLevelParts,$topLevelRight,$topLevelAttempted);
  100:     }
  101:     &endGradeScreen($r);
  102:     return OK;
  103: 
  104: }
  105: 
  106: sub startGradeScreen {
  107:     my ($r,$mode)=@_;
  108: 
  109:     my $showPoints =
  110:         $env{'course.'.$env{'request.course.id'}.'.grading'} eq 'standard';
  111:     my $notshowSPRSlink =
  112:         (($env{'course.'.$env{'request.course.id'}.'.grading'} eq 'external')
  113:       || ($env{'course.'.$env{'request.course.id'}.'.grading'} eq 'externalnototals')
  114:       || ($env{'course.'.$env{'request.course.id'}.'.grading'} eq 'categories'));
  115:     my $notshowTotals=
  116:         $env{'course.'.$env{'request.course.id'}.'.grading'} eq 'externalnototals';
  117:     my $showCategories=
  118:         $env{'course.'.$env{'request.course.id'}.'.grading'} eq 'categories';
  119: 
  120:     my $allowed_to_view =  &Apache::lonnet::allowed('vgr',$env{'request.course.id'});
  121:     my $allowed_to_edit =  &Apache::lonnet::allowed('mgr',$env{'request.course.id'});
  122: 
  123:     if ($allowed_to_view) {
  124:        my @notes;
  125:        push(@notes,&mt('Students do not see total points.')) if ($notshowTotals);
  126:        push(@notes,&mt('Students do not see link to spreadsheet.')) if ($notshowSPRSlink);
  127:        push(@notes,&mt('Students will see points based on problem weights.')) if ($showPoints);
  128:        push(@notes,&mt('Students will see points based on categories.')) if ($showCategories);
  129:        push(@notes, &Apache::lonhtmlcommon::coursepreflink(&mt('Grade display settings'),'grading'));
  130:        $r->print(&Apache::loncommon::head_subbox(join('  ',@notes)));
  131:     }
  132: 
  133: 
  134:     $r->print("\n".'<ul class="LC_TabContentBigger" id="main">');
  135:     $r->print("\n".'<li'.($mode eq 'quick'?' class="active"':'').'><a href="/adm/quickgrades"><b>&nbsp;&nbsp;&nbsp;&nbsp;'.
  136:                                           ($showPoints?&mt('Individual Points Overview'):($showCategories?&mt('Grades Overview'):&mt('Completion Overview'))).
  137:                                           '&nbsp;&nbsp;&nbsp;&nbsp;</b></a></li>');
  138: 
  139:     if (!($showPoints || $notshowSPRSlink) || ($allowed_to_view)) {
  140:        $r->print("\n".'<li'.($mode eq 'spreadsheet'?' class="active"':'').'><a href="/adm/'.($allowed_to_view?'classcalc':'studentcalc').'"><b>'.
  141:                                                                  &mt('Spreadsheet (Detailed)').'</b></a></li>');
  142:     }
  143:     if ($allowed_to_view) {
  144:        $r->print("\n".'<li'.($mode eq 'statistics'?' class="active"':'').'><a href="/adm/statistics"><b>'.
  145:                                                                  &mt('Statistics and Reports').'</b></a></li>');
  146: 
  147:        $r->print("\n".'<li'.($mode eq 'chart'?' class="active"':'').'><a href="/adm/statistics?reportSelected=student_assessment"><b>'.
  148:                                                                  &mt('Assessment Overview Chart').'</b></a></li>');
  149: 
  150:     }
  151:     if ($allowed_to_edit) {
  152:        $r->print("\n".'<li'.($mode eq 'grading'?' class="active"':'').'><a href="/adm/grades"><b>&nbsp;&nbsp;&nbsp;&nbsp;'.
  153:                                                                  &mt('Content Grading').'&nbsp;&nbsp;&nbsp;&nbsp;</b></a></li>');
  154:        if ($env{'form.symb'}) {
  155:           $r->print("\n".'<li'.($mode eq 'probgrading'?' class="active"':'').'><a href="/adm/grades?symb='.
  156:                                               &Apache::lonhtmlcommon::entity_encode($env{'form.symb'}).
  157:                                               '&command=gradingmenu"><b>&nbsp;&nbsp;&nbsp;&nbsp;'.
  158:                                               &mt('Problem Grading').'&nbsp;&nbsp;&nbsp;&nbsp;</b></a></li>');
  159: 
  160:        }
  161:     }
  162:     $r->print("\n".'</ul>'."\n");
  163:     $r->print('<div class="LC_Box" style="clear:both;margin:0;"><div id="maincoursedoc" style="margin:0 0;padding:0 0;"><div class="LC_ContentBox" id="mainCourseDocuments" style="display: block;">');
  164: }
  165: 
  166: sub endGradeScreen {
  167:    my ($r)=@_;
  168:    $r->print('</div></div></div>');
  169: }
  170: 
  171: 
  172: sub getData {
  173: 
  174:     my ($showPoints,$uname,$udom)=@_;
  175: 
  176:     # Create the nav map
  177:     my $navmap = Apache::lonnavmaps::navmap->new($uname,$udom);
  178: 
  179:     my $res = $navmap->firstResource(); # temp resource to access constants
  180: 
  181:     my $iterator = $navmap->getIterator(undef, undef, undef, 1);
  182:     my $depth = 1;
  183:     $iterator->next(); # ignore first BEGIN_MAP
  184:     my $curRes = $iterator->next();
  185:     
  186:     # General overview of the following: Walk along the course resources.
  187:     # For every problem in the resource, tell its parent maps how many
  188:     # parts and how many parts correct it has. After that, each map will
  189:     # have a count of the total parts underneath it, correct and otherwise.
  190:     # After that, we will walk through the course again and read off
  191:     # maps in order, with their data. 
  192:     # (If in the future people decide not to be cumulative, only add
  193:     #  the counts to the parent map.)
  194:     # For convenience, "totalParts" is also "totalPoints" when we're looking
  195:     #  at points; I can't come up with a variable name that makes sense
  196:     #  equally for both cases.
  197: 
  198:     my $totalParts = 0; my $totalPossible = 0; my $totalRight = 0;
  199:     my $totalAttempted = 0;
  200:     my $now = time();
  201:     my $topLevelParts = 0; my $topLevelRight = 0; my $topLevelAttempted = 0;
  202: 
  203:     # Pre-run: Count parts correct
  204:     while ( $depth > 0 ) {
  205:         if ($curRes == $iterator->BEGIN_MAP()) {$depth++;}
  206:         if ($curRes == $iterator->END_MAP()) { $depth--; }
  207: 
  208:         if (ref($curRes) && $curRes->is_problem() && !$curRes->randomout)
  209:         {
  210:             # Get number of correct, incorrect parts
  211:             my $parts = $curRes->parts();
  212:             my $partsRight = 0;
  213: 	    my $partsCount = 0;
  214: 	    my $partsAttempted = 0;
  215:             my $stack = $iterator->getStack();
  216:             
  217:             for my $part (@{$parts}) {
  218: 		my $completionStatus = $curRes->getCompletionStatus($part);
  219: 		my $dateStatus = $curRes->getDateStatus($part);
  220: 		
  221:                 if ($completionStatus == $curRes->EXCUSED()) {
  222:                     next;
  223:                 }
  224: 		if ($showPoints) {
  225: 		    my $score = 0;
  226: 		    # If we're not telling status and the answer date isn't passed yet, 
  227: 		    # it's an "attempted" point
  228: 		    if ((($curRes->problemstatus($part) eq 'no') ||
  229:                         ($curRes->problemstatus($part) eq 'no_feedback_ever')) &&
  230: 			($dateStatus != $curRes->ANSWER_OPEN)) {
  231: 			my $status = $curRes->simpleStatus($part);
  232: 			if ($status == $curRes->ATTEMPTED) {
  233: 			    $partsAttempted += $curRes->weight($part);
  234: 			    $totalAttempted += $partsAttempted;
  235: 			}
  236: 		    } else {
  237: 			$score = &Apache::grades::compute_points($curRes->weight($part), $curRes->awarded($part));
  238: 		    }
  239: 		    $partsRight += $score;
  240: 		    $totalRight += $score;
  241: 		    $partsCount += $curRes->weight($part);
  242: 
  243: 		    if ($curRes->opendate($part) < $now) {
  244: 			$totalPossible += $curRes->weight($part);
  245: 		    }
  246: 		    $totalParts += $curRes->weight($part);
  247: 		} else {
  248: 		    my $status = $curRes->simpleStatus($part);
  249: 		    my $thisright = 0;
  250: 		    $partsCount++;
  251: 		    if ($status == $curRes->CORRECT ||
  252: 			$status == $curRes->PARTIALLY_CORRECT ) {
  253: 			$partsRight++;
  254: 			$totalRight++;
  255: 			$thisright = 1;
  256: 		    }
  257: 
  258: 		    if ($status == $curRes->ATTEMPTED) {
  259: 			$partsAttempted++;
  260: 			$totalAttempted++;
  261: 		    }
  262: 		    
  263: 		    my $dateStatus = $curRes->getDateStatus($part);
  264: 		    $totalParts++;
  265: 		    if ($curRes->opendate($part) < $now) {
  266: 			$totalPossible++;
  267: 		    }
  268: 		}
  269:             }
  270: 
  271:             if ($depth == 1) { # in top-level only
  272: 		$topLevelParts += $partsCount;
  273: 		$topLevelRight += $partsRight;
  274: 		$topLevelAttempted += $partsAttempted;
  275: 	    }
  276: 
  277:             # Crawl down stack and record parts correct and total
  278:             for my $res (@{$stack}) {
  279:                 if (ref($res) && $res->is_map()) {
  280:                     if (!defined($res->{DATA}->{CHILD_PARTS})) {
  281:                         $res->{DATA}->{CHILD_PARTS} = 0;
  282:                         $res->{DATA}->{CHILD_CORRECT} = 0;
  283: 			$res->{DATA}->{CHILD_ATTEMPTED} = 0;
  284:                     }
  285:                     
  286:                     $res->{DATA}->{CHILD_PARTS} += $partsCount;
  287:                     $res->{DATA}->{CHILD_CORRECT} += $partsRight;
  288: 		    $res->{DATA}->{CHILD_ATTEMPTED} += $partsAttempted;
  289:                 }
  290:             }
  291:         }
  292:         $curRes = $iterator->next();
  293:     }
  294:     return ($navmap,$totalParts,$totalPossible,$totalRight,$totalAttempted,$topLevelParts,$topLevelRight,$topLevelAttempted);
  295: }
  296: 
  297: #
  298: # Outputting everything.
  299: #
  300: 
  301: sub outputTable {
  302: 
  303:     my ($r,$showPoints,$notshowTotals,
  304:            $navmap,$totalParts,$totalPossible,$totalRight,$totalAttempted,$topLevelParts,$topLevelRight,$topLevelAttempted)=@_;
  305: 
  306:     my @start = (255, 255, 192);
  307:     my @end   = (0, 192, 0);
  308: 
  309:     my $indentString = '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
  310: 
  311:     # Second pass: Print the maps.
  312:     $r->print(&Apache::loncommon::start_data_table()
  313:              .&Apache::loncommon::start_data_table_header_row()
  314:              .'<th>'.&mt('Folder').'</th>');
  315:     my $title = &mt($showPoints ? "Points Scored" : "Done");
  316:     if ($totalAttempted) {
  317:         $title .= " / " . &mt("Attempted");
  318:     }
  319:     $r->print("<th>$title".($notshowTotals?'':" / ".&mt('Total')).'</th>'
  320:              .&Apache::loncommon::end_data_table_header_row());
  321: #
  322: # Output of folder scores
  323: #
  324: 
  325:     my $iterator = $navmap->getIterator(undef, undef, undef, 1);
  326:     my $depth = 1;
  327:     $iterator->next(); # ignore first BEGIN_MAP
  328:     my $curRes = $iterator->next();
  329: 
  330:     while ($depth > 0) {
  331:         if ($curRes == $iterator->BEGIN_MAP()) {$depth++;}
  332:         if ($curRes == $iterator->END_MAP()) { $depth--; }
  333: 
  334:         if (ref($curRes) && $curRes->is_map()) {
  335:             my $title = $curRes->compTitle();
  336:             
  337:             my $correct = $curRes->{DATA}->{CHILD_CORRECT};
  338:             my $total = $curRes->{DATA}->{CHILD_PARTS};
  339: 	    my $attempted = $curRes->{DATA}->{CHILD_ATTEMPTED};
  340: 
  341:             if ($total > 0) {
  342:                 my $ratio;
  343:                 $ratio = $correct / $total;
  344:                 my $color = &mixColors(\@start, \@end, $ratio);
  345:                 $r->print(&Apache::loncommon::start_data_table_row()
  346:                          .'<td style="background-color:'.$color.';">');
  347:                 
  348: 		my $thisIndent = '';
  349:                 for (my $i = 1; $i < $depth; $i++) { $thisIndent .= $indentString; }
  350:                 
  351:                 $r->print("$thisIndent$title</td>");
  352: 		if ($totalAttempted) {
  353: 		    $r->print('<td valign="top">'
  354:                              .$thisIndent
  355:                              .'<span class="LC_nobreak">'
  356:                              .$correct.' / '.$attempted.($notshowTotals?'':' / '.$total)
  357:                              .'</span></td>'
  358:                              .&Apache::loncommon::end_data_table_row()
  359:                     );
  360: 		} else {
  361: 		    $r->print('<td valign="top">'
  362:                              .$thisIndent
  363:                              .'<span class="LC_nobreak">'
  364:                              .$correct.($notshowTotals?'':' / '.$total)
  365:                              .'</span></td>'
  366:                              .&Apache::loncommon::end_data_table_row());
  367: 		}
  368:             }
  369:         }
  370: 
  371:         $curRes = $iterator->next();
  372:     }
  373: 
  374:     # If there were any problems at the top level, print an extra "catchall"
  375:     if ($topLevelParts > 0) {
  376:         my $ratio = $topLevelRight / $topLevelParts;
  377:         my $color = &mixColors(\@start, \@end, $ratio);
  378:         $r->print(&Apache::loncommon::start_data_table_row()
  379:                  .'<td style="background-color:'.$color.';">');
  380:         $r->print(&mt("Problems Not Contained In A Folder")."</td><td>");
  381:         $r->print("$topLevelRight / $topLevelParts</td>"
  382:                  .&Apache::loncommon::end_data_table_row());
  383:     }
  384: 
  385: #
  386: # show totals (if applicable), close table
  387: #
  388:     if ($showPoints) {
  389:         my $maxHelpLink = &Apache::loncommon::help_open_topic("Quick_Grades_Possibly_Correct");
  390: 
  391:         $title = $showPoints ? "Points" : "Parts Done";
  392:         my $totaltitle = $showPoints ? &mt("Awarded Total Points") : &mt("Total Parts Done");
  393:         $r->print(&Apache::loncommon::start_data_table_row()
  394:                  .'<td colspan="2" align="right">'.$totaltitle.': <b>'.$totalRight.'</b><br />');
  395:         $r->print(&mt('Max Possible To Date')." $maxHelpLink: <b>$totalPossible</b><br />");
  396:         $title = $showPoints ? "Points" : "Parts";
  397:         $r->print(&mt("Total $title In Course").': <b>'.$totalParts.'</b></td>'
  398:                  .&Apache::loncommon::end_data_table_row());
  399:     }
  400: 
  401:     $r->print(&Apache::loncommon::end_data_table()
  402:              .&Apache::loncommon::end_page());
  403: 
  404: }
  405: 
  406: #
  407: # === Outputting category-based grades.
  408: #
  409: # $category{'order'}: output order of categories by id
  410: # $category{'all'}: complete list of all categories 
  411: # $category{$id.'_name'}: display-name of category
  412: #
  413: 
  414: sub outputCategories {
  415: 
  416:     my ($r,$showPoints,$notshowTotals,
  417:            $navmap,$totalParts,$totalPossible,$totalRight,$totalAttempted,$topLevelParts,$topLevelRight,$topLevelAttempted)=@_;
  418: # Take care of storing and retrieving categories
  419: 
  420:     my $cangrade=&Apache::lonnet::allowed('mgr');
  421: 
  422:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
  423:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
  424:     my %categories=();
  425: # Loading old categories
  426:     %categories=&Apache::lonnet::dump('grading_categories',$cdom,$cnum);
  427: # Storing
  428:     if (($cangrade) && (($env{'form.storechanges'}) || ($env{'form.storemove'} ne ''))) {
  429: # Process the changes
  430:         %categories=&process_category_edits($r,$cangrade,%categories);
  431: # Actually store
  432:         &Apache::lonnet::logthis("Storing ".$categories{'order'});
  433:         &Apache::lonnet::put('grading_categories',\%categories,$cdom,$cnum);
  434:     }
  435: # new categories loaded now
  436: # Form only generated if user can change the grading categories
  437:     if ($cangrade) {
  438:         $r->print('<form method="post">');
  439:     }
  440: #
  441:     &output_category_table($r,$cangrade,$navmap,%categories);
  442: #
  443:     if ($cangrade) {
  444:         $r->print('<input type="hidden" name="storemove" value="" />'.
  445:                   '<input type="submit" name="storechanges" value="'.&mt("Save changes to grading categories").'" /></form>');
  446:     }
  447: }
  448: 
  449: #
  450: # Process editing commands, update category hash
  451: #
  452: 
  453: sub process_category_edits {
  454:     my ($r,$cangrade,%categories)=@_;
  455:     unless ($cangrade) { return %categories; }
  456:     my $cmd=$env{'form.cmd'};
  457:     if ($cmd eq 'createnewcat') {
  458:         %categories=&make_new_category($r,$cangrade,undef,%categories);
  459:     } elsif ($cmd=~/^delcat\_(.+)$/) {
  460:         %categories=&del_category($1,$cangrade,%categories);
  461:     } else {
  462: # Simply store the rest of the stuff
  463:         foreach my $id (split(/\,/,$categories{'order'})) {
  464:             %categories=&set_category_name($cangrade,$id,$env{'form.name_'.$id},%categories);
  465:             %categories=&set_category_total($cangrade,$id,$env{'form.totaltype_'.$id},$env{'form.total_'.$id},%categories);
  466:             %categories=&set_category_weight($cangrade,$id,$env{'form.weight_'.$id},%categories);
  467: # More changes here
  468:         }
  469:     }
  470:     return %categories;
  471: }
  472: 
  473: #
  474: # Output the table
  475: #
  476: 
  477: sub output_category_table {
  478:     my ($r,$cangrade,$navmaps,%categories)=@_;
  479:     my $sum=0;
  480:     my $total=0;
  481:     $r->print(&Apache::loncommon::start_data_table());
  482: #
  483:     &output_category_table_header($r,$cangrade);
  484: #
  485:     my @order=split(/\,/,$categories{'order'});
  486: #
  487:     my $maxpos=$#order;
  488:     for (my $i=0;$i<=$maxpos;$i++) {
  489:         my ($value,$weight)=&output_and_calc_category($r,$cangrade,$navmaps,$order[$i],$i,$maxpos,%categories);
  490:         $sum+=$value*$weight;
  491:         $total+=$weight;
  492:     }
  493: #
  494:     &bottom_line_category($r,$cangrade,$sum,$total);
  495: #
  496:     $r->print(&Apache::loncommon::end_data_table());
  497:     return $sum;
  498: }
  499: 
  500: sub output_category_table_header {
  501:     my ($r,$cangrade)=@_;
  502:     $r->print(&Apache::loncommon::start_data_table_header_row());
  503:     if ($cangrade) {
  504:         $r->print('<th colspan="2">'.&mt("Move").'</th><th>'.&mt('Action').'</th>');
  505:     }
  506:     $r->print('<th>'.&mt('Category').'</th>'.
  507:               '<th>'.&mt('Contents').'</th>'.
  508:               '<th>'.&mt('Calculation').'</th>'.
  509:               '<th>'.&mt('Total Points').'</th>'.
  510:               '<th>'.&mt('Relative Weight').'</th>');
  511:     $r->print(&Apache::loncommon::end_data_table_header_row());
  512: }
  513: 
  514: 
  515: #
  516: # Output one category to table
  517: #
  518: 
  519: sub output_and_calc_category {
  520:     my ($r,$cangrade,$navmaps,$id,$currentpos,$maxpos,%categories)=@_;
  521:     my $value=0;
  522:     my $weight=0;
  523:     my $iconpath = &Apache::loncommon::lonhttpdurl($r->dir_config('lonIconsURL') . "/");
  524:     my %lt=&Apache::lonlocal::texthash(
  525:            'up' => 'Move Up',
  526:            'dw' => 'Move Down');
  527:     $r->print("\n".&Apache::loncommon::start_data_table_row());
  528: 
  529:     if ($cangrade) {
  530:         $r->print(<<ENDMOVE);
  531: <td>
  532: <div class="LC_docs_entry_move">
  533:   <a href='/adm/quickgrades?cmd=up_$id&storechanges=1'>
  534:     <img src="${iconpath}move_up.gif" alt='$lt{'up'}' class="LC_icon" />
  535:   </a>
  536: </div>
  537: <div class="LC_docs_entry_move">
  538:   <a href='/adm/quickgrades?cmd=down_$id&storechanges=1'>
  539:     <img src="${iconpath}move_down.gif" alt='$lt{'dw'}' class="LC_icon" />
  540:   </a>
  541: </div>
  542: </td>
  543: ENDMOVE
  544:         $r->print("\n<td>\n<select name='newpos_$id' onchange='this.form.storemove.value=\"$id\";this.form.submit()'>");
  545:         for (my $i=0;$i<=$maxpos;$i++) {
  546:             if ($i==$currentpos) {
  547:                 $r->print('<option value="" selected="selected">('.$i.')</option>');
  548:             } else {
  549:                 $r->print('<option value="'.$i.'">'.$i.'</option>');
  550:             }
  551:         }
  552:         $r->print("\n</select>\n</td>\n");
  553:         $r->print('<td><a href="/adm/quickgrades?cmd=delcat_'.$id.'&storechanges=1">'.&mt('Delete').'</a></td>');
  554:         $r->print('<td><input type="text" name="name_'.$id.
  555:                   '" value="'.&Apache::lonhtmlcommon::entity_encode($categories{$id.'_name'}).'" /></td>');
  556:     } else {
  557:         $r->print('<td>'.$categories{$id.'_name'}.'</td>');
  558:     }
  559: # Content
  560: # FIXME: just placeholders
  561:     if ($cangrade) {
  562:        $r->print("<td>Content Edit</td>");
  563:     } else {
  564:        $r->print("<td>Content</td>");
  565:     }
  566: # Calculation
  567: # FIXME: just placeholders
  568:     if ($cangrade) {
  569:        $r->print("<td>Calculation Edit</td>");
  570:     } else {
  571:        $r->print("<td>Calculation</td>");
  572:     }
  573: # Total
  574:     if ($cangrade) {
  575:        $r->print('<td>'.
  576:                   '<select name="totaltype_'.$id.'">'.
  577:                   '<option value="default"'.($categories{$id.'_totaltype'} eq 'default'?' selected="selected"':'').'>'.&mt('default').'</option>'.
  578:                   '<option value="typein"'.($categories{$id.'_totaltype'} eq 'typein'?' selected="selected"':'').'>'.&mt('Type-in value').'</option>'.
  579:                   '</select>'.
  580:                   '<input type="text" size="4" name="total_'.$id.
  581:                   '" value="'.&Apache::lonhtmlcommon::entity_encode($categories{$id.'_total'}).'" /></td>');
  582:     } else {
  583:         $r->print('<td>'.($categories{$id.'_totaltype'} eq 'default'?&mt('default'):$categories{$id.'_total'}).'</td>');
  584:     }
  585: # Weight
  586:     if ($cangrade) {
  587:        $r->print('<td>'.
  588:                   '<input type="text" size="4" name="weight_'.$id.
  589:                   '" value="'.&Apache::lonhtmlcommon::entity_encode($categories{$id.'_weight'}).'" /></td>');
  590:     } else {
  591:         $r->print('<td>'.$categories{$id.'_weight'}.'</td>');
  592:     }
  593: 
  594:     return ($value,$weight);
  595: }
  596: 
  597: #
  598: # Bottom line with grades
  599: #
  600: 
  601: sub bottom_line_category {
  602:     my ($r,$cangrade,$sum,$total)=@_;
  603:     $r->print(&Apache::loncommon::start_data_table_row());
  604:     if ($cangrade) {
  605:         $r->print('<td colspan="3"><a href="/adm/quickgrades?cmd=createnewcat&storechanges=1">'.&mt('Create New Category').'</a></td>');
  606:     }
  607:     $r->print('<td colspan="5">'.&mt('Current:').$sum.'<br />'.&mt('Total:').$total.'<br /></td>');
  608: }
  609: 
  610: #
  611: # Make one new category
  612: #
  613: 
  614: sub make_new_category {
  615:     my ($r,$cangrade,$ordernum,%categories)=@_;
  616:     unless ($cangrade) { return %categories; }
  617: # Generate new ID
  618:     my $id=time.'_'.$$.'_'.rand(10000);
  619: # Add new ID to list of all IDs ever created in this course
  620:     $categories{'all'}.=','.$id;
  621:     $categories{'all'}=~s/^\,//;
  622: # Add new ID to ordered list of displayed and evaluated categories
  623:     $categories{'order'}.=','.$id;
  624:     $categories{'order'}=~s/^\,//;
  625: # Move it into desired space
  626:     if (defined($ordernum)) {
  627:         %categories=&move_category($id,$cangrade,$ordernum,%categories);
  628:     }
  629:     $categories{$id.'_weight'}=0;
  630:     $categories{$id.'_totaltype'}='default';
  631:     return %categories;
  632: }
  633: 
  634: #
  635: # Delete category
  636: #
  637: 
  638: sub del_category {
  639:    my ($id,$cangrade,%categories)=@_; 
  640:    my @neworder=();
  641:    foreach my $currentid (split(/\,/,$categories{'order'})) {
  642:       unless ($currentid eq $id) {
  643:          push(@neworder,$currentid);
  644:       }
  645:    }
  646:    $categories{'order'}=join(',',@neworder);
  647:    return %categories;
  648: }
  649: 
  650: #
  651: # Move a category to a desired position n the display order
  652: #
  653: 
  654: sub move_category {
  655:     my ($id,$cangrade,$ordernum,%categories)=@_;
  656:     unless ($cangrade) { return %categories; }
  657:     my @order=split(/\,/,$categories{'order'});
  658: # Where is the index currently?
  659:     my $currentpos=&current_pos_category($id,%categories);
  660:     if (defined($currentpos)) {
  661:         if ($currentpos<$ordernum) {
  662: # This is moving to a higher index
  663: # ....X1234....
  664: # ....1234X....
  665:             for (my $i=$currentpos;$i<$ordernum;$i++) {
  666:                 $order[$i]=$order[$i+1];
  667:             }
  668:             $order[$ordernum]=$id;
  669:         }
  670:         if ($currentpos>$ordernum) {
  671: # This is moving to a lower index
  672: # ....1234X....
  673: # ....X1234....
  674:             for (my $i=$currentpos;$i>$ordernum;$i--) {
  675:                 $order[$i]=$order[$i-1];
  676:             }
  677:             $order[$ordernum]=$id;
  678:         }
  679:     }
  680:     $categories{'order'}=join(',',@order);
  681:     return %categories;
  682: }
  683: 
  684: #
  685: #  Find current postion of a category in the order
  686: #
  687: 
  688: sub current_pos_category {
  689:     my ($id,%categories)=@_;
  690:     my @order=split(/\,/,$categories{'order'});
  691:     for (my $i=0;$i<=$#order;$i++) {
  692:         if ($order[$i] eq $id) { return $i; }
  693:     }
  694: # not found
  695:     return undef;
  696: }
  697: 
  698: #
  699: # Set name of a category
  700: #
  701: sub set_category_name {
  702:     my ($cangrade,$id,$name,%categories)=@_;
  703:     unless ($cangrade) { return %categories; }
  704:     $categories{$id.'_name'}=$name;
  705:     return %categories;
  706: }
  707: 
  708: #
  709: # Set total of a category
  710: #
  711: sub set_category_total {
  712:     my ($cangrade,$id,$totaltype,$total,%categories)=@_;
  713:     unless ($cangrade) { return %categories; }
  714:     if (($categories{$id.'_total'} eq '') && ($total=~/\d/)) {
  715:         $totaltype='typein';
  716:     }
  717:     $categories{$id.'_totaltype'}=$totaltype;
  718:     if ($totaltype eq 'default') {
  719:         $categories{$id.'_total'}='';
  720:     } else {
  721:         $total=~s/\D//gs;
  722:         unless ($total) { $total=0; }
  723:         $categories{$id.'_total'}=$total;
  724:     }
  725:     return %categories;
  726: }
  727: 
  728: sub set_category_weight {
  729:     my ($cangrade,$id,$weight,%categories)=@_;
  730:     unless ($cangrade) { return %categories; }
  731:     $weight=~s/\D//gs;
  732:     unless ($weight) { $weight=0; }
  733:     $categories{$id.'_weight'}=$weight;
  734:     return %categories;
  735: }
  736: 
  737: #
  738: # === end category-related
  739: #
  740: #
  741: # Pass this two refs to arrays for the start and end color, and a number
  742: # from 0 to 1 for how much of the latter you want to mix in. It will
  743: # return a string ready to show ("#FFC309");
  744: 
  745: sub mixColors {
  746:     my $start = shift;
  747:     my $end = shift;
  748:     my $ratio = shift;
  749:     
  750:     my ($a,$b);
  751:     my $final = "";
  752:     $a = $start->[0]; $b = $end->[0];
  753:     my $mix1 = POSIX::floor((1-$ratio)*$a + $ratio*$b);
  754:     $a = $start->[1]; $b = $end->[1];
  755:     my $mix2 = POSIX::floor((1-$ratio)*$a + $ratio*$b);
  756:     $a = $start->[2]; $b = $end->[2];
  757:     my $mix3 = POSIX::floor((1-$ratio)*$a + $ratio*$b);
  758: 
  759:     $final = sprintf "%02x%02x%02x", $mix1, $mix2, $mix3;
  760:     return "#" . $final;
  761: }
  762: 
  763: 1;

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