File:  [LON-CAPA] / loncom / interface / lonwhatsnew.pm
Revision 1.63: download - view: text, annotated - select for diffs
Fri Oct 13 22:03:26 2006 UTC (17 years, 7 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- missing a <td> when no problems shown

    1: #
    2: # $Id: lonwhatsnew.pm,v 1.63 2006/10/13 22:03:26 albertel Exp $
    3: #
    4: # Copyright Michigan State University Board of Trustees
    5: #
    6: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
    7: #
    8: # LON-CAPA is free software; you can redistribute it and/or modify
    9: # it under the terms of the GNU General Public License as published by
   10: # the Free Software Foundation; either version 2 of the License, or
   11: # (at your option) any later version.
   12: #
   13: # LON-CAPA is distributed in the hope that it will be useful,
   14: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   15: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   16: # GNU General Public License for more details.
   17: #
   18: # You should have received a copy of the GNU General Public License
   19: # along with LON-CAPA; if not, write to the Free Software
   20: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   21: #
   22: # /home/httpd/html/adm/gpl.txt
   23: #
   24: # http://www.lon-capa.org/
   25: #
   26: 
   27: 
   28: package Apache::lonwhatsnew;
   29: 
   30: use strict;
   31: use lib qw(/home/httpd/lib/perl);
   32: use Apache::lonnet;
   33: use Apache::loncommon();
   34: use Apache::lonhtmlcommon();
   35: use Apache::lonlocal;
   36: use Apache::loncoursedata();
   37: use Apache::lonnavmaps();
   38: use Apache::lonuserstate;
   39: use Apache::Constants qw(:common :http);
   40: use Time::Local;
   41: use GDBM_File;
   42: use lib '/home/httpd/lib/perl/';
   43: use LONCAPA;
   44: 
   45: #----------------------------
   46: # handler
   47: #
   48: #----------------------------
   49: 
   50: sub handler {
   51:     my $r = shift;
   52:     if ($r->header_only) {
   53:         &Apache::loncommon::content_type($r,'text/html');
   54:         $r->send_http_header;
   55:         return OK;
   56:     }
   57:     &Apache::loncommon::get_unprocessed_cgi(
   58:                                    $ENV{'QUERY_STRING'},['command','refpage']);
   59: 
   60:     my $command = $env{'form.command'};
   61:     my $refpage = $env{'form.refpage'};
   62: 
   63:     my %checkallowed = ( coursenormalmail => 1,
   64: 			 coursecritmail => 1, );
   65:     foreach my $perm_check (['whn','whatsnew',1],
   66: 			    ['pch','coursediscussion',1],
   67: 			    ['mgr','handgrading',1],
   68: 			    ['vgr','abovethreshold',1],
   69: 			    ['opa','haserrors',1],
   70: 			    ['mdc','versionchanges',0],
   71: 			    ) {
   72: 	my ($perm,$key,$check_section) = @{ $perm_check };
   73: 	my $scope = $env{'request.course.id'};
   74: 	if (!($checkallowed{$key} = &Apache::lonnet::allowed($perm,$scope))) {
   75: 	    $scope .= '/'.$env{'request.course.sec'};
   76: 	    if ( $check_section ) {
   77: 		$checkallowed{$key} = &Apache::lonnet::allowed($perm,$scope);
   78: 	    }
   79: 	    if ($checkallowed{$key}) {
   80: 		$checkallowed{$key.'_section'} = $env{'request.course.sec'};
   81: 	    }
   82: 	}
   83:     }
   84: 
   85:     if ( ! $env{'request.course.fn'} || ! $checkallowed{'whatsnew'}) {
   86:         # Not in a course, or no whn priv in course
   87:         $env{'user.error.msg'}="/adm/whatsnew::whn:0:0:Cannot display what's new page";
   88:         return HTTP_NOT_ACCEPTABLE;
   89:     }
   90: 
   91:     &Apache::loncommon::content_type($r,'text/html');
   92:     $r->send_http_header;
   93: 
   94:     $r->print(&display_header($command,\%checkallowed));
   95: 
   96:     &Apache::lonhtmlcommon::clear_breadcrumbs();
   97:     &Apache::lonhtmlcommon::add_breadcrumb
   98:             ({href=>'/adm/whatsnew',
   99:               text=>"Display Action Items"});
  100:     if (($command eq 'chgthreshold') && $checkallowed{'abovethreshold'}) {
  101:         &Apache::lonhtmlcommon::add_breadcrumb
  102:             ({href=>'/adm/whatsnew?command=chgthreshold&refpage='.$refpage,
  103:               text=>"Change thresholds"});
  104:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
  105:             ("What's New?",#'Course_Action_Items_Thresholds'
  106: 	     ));
  107:     } elsif (($command eq 'chginterval') && $checkallowed{'versionchanges'} ) {
  108:         &Apache::lonhtmlcommon::add_breadcrumb
  109:             ({href=>'/adm/whatsnew?command=chginterval&refpage='.$refpage,
  110:               text=>"Change interval"});
  111:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
  112:             ("What's New?",#'Course_Action_Items_Intervals'
  113: 	     ));
  114:     } elsif (($command eq 'chgdisc') && $checkallowed{'coursediscussion'}) {
  115:         &Apache::lonhtmlcommon::add_breadcrumb
  116:             ({href=>'/adm/whatsnew?command=chgdisc&refpage='.$refpage,
  117:               text=>"Change discussion display"});
  118:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
  119:             ("What's New?",#'Course_Action_Items_Intervals'
  120: 	     ));
  121:     } elsif ($command eq 'courseinit') {
  122:         &Apache::lonhtmlcommon::add_breadcrumb
  123:             ({href=>'/adm/whatsnew?command=courseinit&refpage='.$refpage,
  124:               text=>"Course initialization preference"});
  125:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
  126:             ("What's New?",#'Course_Action_Items_Initialization'
  127: 	     ));
  128:     } else {
  129:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
  130:             ("What's New?",#'Course_Action_Items_Display'
  131: 	     ));
  132:     }
  133:     &display_main_box($r,$command,$refpage,\%checkallowed);
  134:     return OK;
  135: }
  136: 
  137: #------------------------------
  138: # display_main_box
  139: #
  140: # Display all the elements within the main box
  141: #------------------------------
  142:                                                                                 
  143: sub display_main_box {
  144:     my ($r,$command,$refpage,$checkallowed) = @_;
  145:     my $domain=&Apache::loncommon::determinedomain();
  146:     my $function = &Apache::loncommon::get_users_function();
  147:     my $tabbg=&Apache::loncommon::designparm($function.'.tabbg',$domain);
  148:     my $lctype = lc(&Apache::loncommon::course_type());
  149:     $r->print('<table width="100%" border="0" cellpadding="5" cellspacing="0"><tr><td width="100%">');
  150: 
  151:     my %threshold_titles = &Apache::lonlocal::texthash (
  152:                          av_attempts => 'Average number of attempts',
  153:                          degdiff => 'Degree of difficulty',
  154:                          numstudents => 'Total number of students with submissions',
  155:     );
  156: 
  157:     my %interval_titles = &Apache::lonlocal::texthash (
  158:                             -1 => "since start of $lctype",
  159:                        2592000 => 'since last month',
  160:                         604800 => 'since last week',
  161:                          86400 => 'since yesterday',
  162:     );
  163: 
  164:     my %initpage = &Apache::lonlocal::texthash (
  165:                      firstres => "first resource in the $lctype",
  166:                      whatsnew => "what's new? page",
  167:                      userpref => 'your general user preferences',
  168:                      coursespecific => "specific setting for this $lctype",
  169:                    );
  170:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
  171:     my $crs = $env{'course.'.$env{'request.course.id'}.'.num'};
  172: 
  173:     if (($command eq 'chgthreshold') 
  174: 	&& $checkallowed->{'abovethreshold'}) {
  175:         &display_threshold_config($r,$refpage,$tabbg,\%threshold_titles,
  176:                                                                    $cdom,$crs);
  177:     } elsif (($command eq 'chginterval') 
  178: 	     && $checkallowed->{'versionchanges'}) {
  179:         &display_interval_config($r,$refpage,\%interval_titles);
  180:     } elsif (($command eq 'chgdisc') 
  181: 	     && $checkallowed->{'coursediscussion'}) {
  182:         &display_discussion_config($r,$refpage);
  183:     } elsif ($command eq 'courseinit') {
  184:         &courseinit_config($r,$refpage,\%initpage);
  185:     } else {
  186:         &display_actions_box($r,$tabbg,$command,$refpage,\%threshold_titles,
  187:                         \%interval_titles,\%initpage,$cdom,$crs,$checkallowed);
  188:     }
  189:     my $end_page = &Apache::loncommon::end_page();
  190:     $r->print(<<END_OF_BLOCK);
  191:   </td>
  192:  </tr>
  193: </table><br />
  194: $end_page
  195: END_OF_BLOCK
  196: }
  197: 
  198: #-------------------------------
  199: # display_header
  200: #
  201: # Display the header information and set
  202: # up the HTML
  203: #-------------------------------
  204: 
  205: sub display_header {
  206:     my ($command,$checkallowed) = @_;
  207:     
  208:     my $scripttag;
  209:     unless ($command eq 'chgthreshold' || $command eq 'chginterval') {
  210:        $scripttag = <<"END";
  211: <script type="text/javascript">
  212: function change_display(caller,change) {
  213:     caller.value = change;
  214:     document.visible.submit(); 
  215: }
  216: 
  217: function changeAll(change) {
  218: END
  219:         foreach my $item (keys(%{$checkallowed})) {
  220: 	    if ($item =~ /_section$/) { next; }
  221:             if ($$checkallowed{$item}) {
  222:                 $scripttag.='document.visible.display_'.$item.'.value=change'.
  223:                             "\n";
  224:             }
  225:         }
  226:         $scripttag.='document.visible.submit();
  227: }
  228: </script>
  229: ';
  230:     }
  231:     my $course_type=&Apache::loncommon::course_type();
  232:     return &Apache::loncommon::start_page($course_type.' Action Items',
  233: 					  $scripttag);
  234: }
  235: 
  236: #-------------------------------
  237: # display_actions_box
  238: #
  239: # Display the action items
  240: #
  241: #-------------------------------
  242:                                                                                 
  243: sub display_actions_box {
  244:     my ($r,$tabbg,$command,$refpage,$threshold_titles,$interval_titles,
  245:                                       $initpage,$cdom,$crs,$checkallowed) = @_;
  246:     my $rowColor1 = "#ffffff";
  247:     my $rowColor2 = "#eeeeee";
  248: 
  249:     my $udom = $env{'user.domain'};
  250:     my $uname = $env{'user.name'};
  251:     my $cid = $env{'request.course.id'};
  252:     my $crstype = &Apache::loncommon::course_type();
  253:     my $lctype = lc($crstype);
  254:     my %stulabel = (
  255:                     'Course' => 'students',
  256:                     'Group' => 'members',
  257:                    );
  258:     my %lt = &Apache::lonlocal::texthash(
  259:                  'yacc' => 'You are accessing an invalid course',
  260:                  'gtfr' => 'Go to first resource',
  261:                  'hial' => 'Hide all',
  262:                  'shal' => 'Show all',
  263:     );
  264: 
  265:     my %unread = ();
  266:     my %ungraded = ();
  267:     my %bombed = ();
  268:     my %triggered = ();
  269:     my %changed = ();
  270:     my @newmsgs = ();
  271:     my @critmsgs = ();
  272:     my @newdiscussions = ();
  273:     my @tograde = ();
  274:     my @bombs = ();
  275:     my @warnings = ();
  276:     my $msgcount = 0;
  277:     my $critmsgcount = 0;
  278: 
  279:     my %res_title = ();
  280:     my %show = ();
  281:     my $needitems = 0;
  282:     my $boxcount = 0;
  283: 
  284:     my $result;
  285:     if ($command eq 'newcourseinit') {
  286:         $result = &store_courseinit_setting($uname,$udom,$cid,$initpage);
  287:     }
  288: 
  289:     my %threshold = (
  290:                       av_attempts => 2,
  291:                       degdiff => 0.5,
  292:                       numstudents => 2,
  293:                      );
  294:     my %pagedesc = &Apache::lonlocal::texthash (
  295:                      firstres => 'First resource',
  296:                      whatsnew => "What's New? page",
  297:                      userpref => 'user preference',
  298:                      coursespecific => $lctype.' only',
  299:                      default => 'default',
  300:                    );
  301: 
  302:     my ($initcontrol,$initdisp) = &curr_courseinit();
  303:     my $currinit = $pagedesc{$initdisp}.' ('.$pagedesc{$initcontrol}.')';
  304: 
  305:     unless ($cid) {
  306:         $r->print('<br /><b><center>'.$lt{'yacc'}.'</center></b><br /><br />');
  307:         return;
  308:     }
  309: 
  310:     if ($refpage eq 'start') {
  311:         if (tie(my %bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
  312:             &GDBM_READER(),0640)) {
  313:             my $furl=$bighash{'first_url'};
  314:             untie(%bighash);
  315:             $r->print('<font size="+1"><a href="'.$furl.'">'.$lt{'gtfr'}.
  316:                   '</a></font><br />');
  317:         }
  318:     }
  319:     $r->print(&mt('Page set to be displayed after you have selected a role in this '.$lctype).
  320:               '. <nobr>'.&mt('Currently: <i>[_1]</i>',$currinit).'.&nbsp;&nbsp;'.
  321:               &mt('<b>Change</b> for just <a href="/adm/whatsnew?command=courseinit&refpage=[_1]">this '.$lctype.'</a>',$refpage).' '.
  322:               &mt('or for all <a href="/adm/preferences?action=changecourseinit&refpage=[_1]">your courses</a>',$refpage).'</nobr><br /><hr />');
  323: 
  324:     if ($command eq 'reset') {
  325:         $result = &process_reset($cdom,$crs);
  326:     } elsif ($command eq 'update') {
  327:         $result = &process_update($uname,$udom,$threshold_titles);
  328:     } elsif ($command eq 'newinterval') {
  329:         $result = &store_interval_setting($uname,$udom,$cid,$interval_titles);
  330:     } elsif ($command eq 'newdiscconf') {
  331:         $result = &store_discussion_setting($uname,$udom,$cid);
  332:     }
  333: 
  334:     my $store_result=&store_display_settings($uname,$udom,$cid,$checkallowed);
  335: 
  336:     unless ($store_result eq 'ok') { 
  337:         &Apache::lonnet::logthis('Error storing whatsnew settings: '.
  338:             $store_result.' for '.'user '.$uname.':'.$udom.' in '.$lctype.' '.$cid);
  339:         $result .= &mt('Unable to store visibility settings due to [_1]',
  340:                        $store_result); 
  341:     }
  342: 
  343:     if ($result) {
  344:         $r->print($result.'<hr width="100%" />');
  345:     }
  346:     $r->rflush();
  347: 
  348: 
  349:     my %display_settings = &get_display_settings($uname,$udom,$cid);
  350:     my $timediff = $display_settings{$cid.':interval'};
  351:     unless (defined($timediff)) { $timediff = 604800; } 
  352:     my $now = time;
  353:     my $interval = $$interval_titles{$timediff};
  354:     if ($timediff == -1) {
  355:         $timediff = time;
  356:     } 
  357:     my $starttime = $now - $timediff;
  358:     my $countunread = $display_settings{$cid.':countunread'};
  359:     unless (defined($countunread)) {
  360:         $countunread = 'on';
  361:     }
  362: 
  363:     my %headings = &Apache::lonlocal::texthash(
  364:                 coursediscussion =>  'Unread '.$lctype.' discussion posts',
  365:                 handgrading =>  'Problems requiring handgrading',
  366:                 haserrors => 'Problems with errors',
  367:                 versionchanges => 'Resources in '.$lctype.' with version changes '.$interval,
  368:                 coursenormalmail => 'New '.$lctype.' messages',
  369:                 coursecritmail => 'New critical messages in '.$lctype,
  370:     );
  371: 
  372:     if ($$checkallowed{'abovethreshold'}) {
  373:         &get_curr_thresholds(\%threshold,$uname,$udom,$cid,$cdom,$crs);
  374:     }
  375: 
  376:     $headings{'abovethreshold'} = 
  377: 	&mt('Problems with av. attempts &ge; [_1] or deg. difficulty &ge; [_2] <br /> and total number of '.$stulabel{$crstype}.' with submissions &ge; [_3]',
  378: 	    $threshold{'av_attempts'},$threshold{'degdiff'},
  379: 	    $threshold{'numstudents'});
  380: 
  381:     my @actionorder = ('handgrading','haserrors','abovethreshold','versionchanges','coursediscussion','coursenormalmail','coursecritmail');
  382: 
  383:     foreach my $key (keys(%{$checkallowed})) {
  384: 	if ($key =~ /_section$/) { next; }
  385:         $show{$key} = 0;
  386:         if ($$checkallowed{$key}) {
  387:             unless ($display_settings{$cid.':'.$key} eq 'hide') {
  388:                 $show{$key} = 1;
  389:             }
  390:         }
  391:     }
  392: 
  393:     foreach my $item (@actionorder) {
  394:         unless ($item eq 'coursenormalmail' || $item eq 'coursecritmail') {
  395:             if ($show{$item}) {
  396:                 $needitems = 1;
  397:                 last;
  398:             }
  399:         }
  400:     }
  401: 
  402:     if ($needitems) {
  403:         &getitems(\%unread,\%ungraded,\%bombed,\%triggered,\%changed,\@newdiscussions,\@tograde,\@bombs,\@warnings,$rowColor1,$rowColor2,\%threshold,$cdom,$crs,\%res_title,\%show,$starttime,$countunread);
  404:     }
  405:     if ($show{'coursenormalmail'}) {
  406:         $msgcount = &getnormalmail(\@newmsgs);
  407:     }
  408:     if ($show{'coursecritmail'}) {
  409:         $critmsgcount = &getcritmail(\@critmsgs);
  410:     }
  411: 
  412:     $r->print(qq|<a href="javascript:changeAll('hide');">$lt{'hial'}</a>
  413:      &nbsp;&nbsp;<a href="javascript:changeAll('show');">$lt{'shal'}</a>
  414:      <form method="post" name="visible" action="/adm/whatsnew">\n|);
  415:     foreach my $item (keys(%{$checkallowed})) {
  416: 	if ($item =~ /_section$/) { next; }
  417:         if ($$checkallowed{$item}) {
  418:             $r->print('<input type="hidden" name="display_'.$item.'" />'."\n");
  419:         }
  420:     }
  421: 
  422:     $r->print('<input type="hidden" name="refpage" value="'.$refpage.'"></form><br /><table border="0" width="100%" cellpadding="2" cellspacing="4"><tr><td align="left" valign="top" width="45%">');
  423: 
  424:     my $displayed = 0;
  425:     my $totalboxes = 0;
  426:     foreach my $key (keys(%{$checkallowed})) {
  427: 	if ($key =~ /_section$/) { next; }
  428: 	if ($key eq 'whatsnew' ) { next; } # whatsnew check creates no box
  429:         if ($$checkallowed{$key}) {
  430:             $totalboxes ++;
  431:         }
  432:     }
  433:     my $halfway = int($totalboxes/2) + $totalboxes%2;
  434:     foreach my $actionitem (@actionorder) {
  435:         if ($$checkallowed{$actionitem}) {
  436:             if ($displayed == $halfway) {
  437:                 $r->print('</td><td width="6%">&nbsp;</td><td align="left" valign="top" width="47%">');
  438:             }
  439:             &display_launcher($r,$actionitem,$refpage,$checkallowed,$tabbg,$rowColor1,$rowColor2,\%show,\%headings,\%res_title,\@tograde,\%ungraded,\@bombs,\%bombed,\%changed,\@warnings,\%triggered,\@newdiscussions,\%unread,$msgcount,\@newmsgs,$critmsgcount,\@critmsgs,$interval,$countunread);
  440:             $displayed ++; 
  441:         }
  442:     }
  443:     $r->print('
  444:            </table>
  445:           </td>
  446:          </tr>
  447:         </table>
  448:       </td>
  449:     </tr>
  450:    </table>');
  451: }
  452: 
  453: #-------------------------------
  454: # display_threshold_config
  455: #
  456: # Display the threshold setting screen 
  457: #
  458: #-------------------------------
  459:                                                                                 
  460: sub display_threshold_config {
  461:     my ($r,$refpage,$tabbg,$threshold_titles,$cdom,$crs) = @_;
  462:     my $uname = $env{'user.name'};
  463:     my $udom = $env{'user.dom'};
  464:     my $cid = $env{'request.course.id'};
  465:     my %threshold = ();
  466:     my $rowColor1 = "#ffffff";
  467:     my $rowColor2 = "#eeeeee";
  468:     my $rowColor;
  469: 
  470:     my @thresholditems = ("av_attempts","degdiff","numstudents");
  471:     foreach my $item (@thresholditems) {
  472:         $threshold{$item} = '';
  473:     }
  474:     my %threshold_titles = &Apache::lonlocal::texthash(
  475:                          av_attempts => 'Average number of attempts',
  476:                          degdiff => 'Degree of difficulty',
  477:                          numstudents => 'Total number of students with submissions',
  478:                          );
  479:     &get_curr_thresholds(\%threshold,$uname,$udom,$cid,$cdom,$crs);
  480: 
  481:     $r->print('<br /><form name="thresholdform" method="post" action="/adm/whatsnew">
  482:         <table border="0" cellpadding="2" cellspacing="4">
  483:          <tr>
  484:           <td align="left" valign="top" width="45%">
  485:            <table border="0" cellpadding="0" cellspacing="0" bgcolor="#000000">
  486:             <tr>
  487:              <td>
  488:                <table border="0" cellpadding="1" cellspacing="1" bgcolor="#000000">
  489:                 <tr>
  490:                 <td bgcolor="#ffffff">
  491:                  <table cellspacing="0" cellpadding="4" border="0">
  492:      <tr bgcolor="'.$tabbg.'">
  493:       <th>Threshold Name</th>
  494:       <th>Current value</th>
  495:       <th>Change?</th>
  496:      </tr>');
  497:     my $rowNum =0;
  498:     foreach my $type (@thresholditems) {
  499:         my $parameter = $env{'request.course.id'}.':threshold_'.$type;
  500: # onchange is javascript to automatically check the 'Set' button.
  501:         my $onchange = 'onFocus="javascript:window.document.forms'.
  502:               "['thresholdform'].elements['".$parameter."_setparmval']".
  503:               '.checked=true;"';
  504:         if ($rowNum %2 == 1) {
  505:             $rowColor = $rowColor1;
  506:         } else {
  507:             $rowColor = $rowColor2;
  508:         }
  509:         $r->print('
  510:      <tr bgcolor="'.$rowColor.'">
  511:       <td>'.$threshold_titles{$type}.'</td>
  512:       <td>'.&Apache::lonhtmlcommon::textbox($parameter.'_value',
  513:                                             $threshold{$type},
  514:                                             10,$onchange).'</td>
  515:       <td>'
  516:            .&Apache::lonhtmlcommon::checkbox($parameter.'_setparmval').
  517:       '</td>
  518:      </tr>');
  519:         $rowNum ++;
  520:     }
  521:     $r->print('</table></td></tr></table></td></tr></table>
  522:            <br /><input type="submit" name="threshold" value="Make changes" />
  523:                  <input type="hidden" name="command" value="update" />
  524:                  <input type="hidden" name="refpage" value="'.$refpage.'" />
  525:                </form>');
  526: }
  527: 
  528: #-------------------------------
  529: # display_interval_config
  530: #
  531: # Display the interval setting screen
  532: #
  533: #-------------------------------
  534:                                                                                    
  535: sub display_interval_config {
  536:     my ($r,$refpage,$interval_titles) = @_;
  537:     my $lctype = lc(&Apache::loncommon::course_type());
  538:     my $current = &get_current($env{'user.name'},$env{'user.domain'},
  539:                                 $env{'request.course.id'},'interval');
  540:     $r->print('<br />'.&mt('Choose the time window to use for display of version changes for resources in the '.$lctype.'.'));
  541:     unless ($current eq '') {
  542:         $r->print(' '.&mt('Current value is [_1]','<b>'.
  543:                   $$interval_titles{$current}.'</b>.'));
  544:     }
  545:     $r->print('<br /><br />
  546: <form method="post" name="intervalswitch" action="/adm/whatsnew">
  547: <input type="hidden" name="command" value="newinterval" />
  548: <input type="hidden" name="refpage" value="'.$refpage.'" />
  549: <select name="interval">
  550: ');
  551:     foreach my $key (reverse sort ({$a cmp $b} (keys(%{$interval_titles})))) {
  552:         $r->print('<option value="'.$key.'">Version changes '.$$interval_titles{$key}.
  553:                   '</option>'."\n");
  554:     }
  555:     $r->print('</select>&nbsp;&nbsp;
  556:                <input type="submit" name="display" value="'.
  557:                &mt('Change interval').'" /></form>');
  558:     return;
  559: }
  560: 
  561: #----------------------------------------------
  562: # display_discussion_config
  563: #
  564: # Display the discussion display setting screen
  565: #
  566: #----------------------------------------------
  567:                                                                                   
  568: sub display_discussion_config {
  569:     my ($r,$refpage) = @_;
  570:     my $current = &get_current($env{'user.name'},$env{'user.domain'},
  571:                                 $env{'request.course.id'},'countunread');
  572:     if ($current eq '') {
  573:         $current = 'on';
  574:     }
  575:     my %opposite = ( 
  576:                       'on' => 'off',
  577:                       'off' => 'on',
  578:                     );
  579:     $r->print('<script type="text/javascript">
  580: function toggle_countunread(choice) {
  581:     if (choice == "unchanged") {
  582:         document.discussionswitch.command.value = "";
  583:     }
  584:     document.discussionswitch.submit();
  585: }
  586: </script>');
  587:     $r->print('<br />'.&mt('Choose whether or not to display a count of the number of new posts for each resource or bulletin board which has unread posts.').'<br />'.&mt('This can increase the time taken to gather data for the [_1] page by a few seconds.',"<i>What's New?</i>").'&nbsp;&nbsp;'.&mt('Currently set to [_1].','<b>'.$current.'</b>'));
  588:     $r->print('<br /><br />
  589: <form method="post" name="discussionswitch" action="/adm/whatsnew">
  590: <input type="hidden" name="command" value="newdiscconf" />
  591: <input type="hidden" name="refpage" value="'.$refpage.'" />
  592: <input type="hidden" name="countunread" value="'.$opposite{$current}.'" />
  593: ');
  594:     $r->print('<br/>
  595:                <input type="button" name="display" value="'.
  596:                &mt('Change to [_1]',$opposite{$current}).'" 
  597:                onclick="javascript:toggle_countunread('."'change'".')" />
  598:                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp&nbsp;&nbsp;
  599:                <input type="button" name="nochange" value="'.
  600:                &mt("No change").'" 
  601:                onclick="javascript:toggle_countunread('."'unchanged'".')" />
  602:                </form>');
  603:     return;
  604: }
  605: 
  606: #---------------------------------------------------
  607: # courseinit_config
  608: #
  609: # Set page displayed when course loads after 
  610: # selecting a role in the course from the roles page. 
  611: #
  612: #---------------------------------------------------
  613: 
  614: sub courseinit_config {
  615:     my ($r,$refpage,$initpage) = @_;
  616:     my ($control,$current) = &curr_courseinit();
  617:     my @chgstate = ('userpref','coursespecific');
  618:     my @chgentry = ('firstres','whatsnew');
  619:     my $lctype = lc(&Apache::loncommon::course_type());
  620:     my %lt = &Apache::lonlocal::texthash(
  621:                              'chwp' => "Choose which page will be displayed when you enter this $lctype after selecting a role.",
  622:                              'cuva' => 'Current value is determined by',
  623:                              'anis' => 'and is set to display',
  624:                              'padc' => 'Page display controlled by',
  625:                              'chce' => 'Choose '.$lctype.' entry',
  626:                              'moce' => 'Modify '.$lctype.' entry',
  627:     );
  628:     $r->print(<<"END"); 
  629: <br />$lt{'chwp'}
  630: <br />$lt{'cuva'}: <b>
  631: $$initpage{$control}</b> $lt{'anis'} <b>
  632: $$initpage{$current}</b>.<br /><br />
  633: <form method="post" name="courseinitswitch" action="/adm/whatsnew">
  634: <input type="hidden" name="command" value="newcourseinit" />
  635: <input type="hidden" name="refpage" value="$refpage" />
  636: $lt{'padc'}:&nbsp;&nbsp;
  637: END
  638:     foreach my $choice (@chgstate) {
  639:         my $chkstring;
  640:         if ($choice eq $control) {
  641:             $chkstring = ' checked="checked" ';
  642:         }  
  643:         $r->print('<nobr><label><input type="radio" name="courseinit_control" value="'.
  644:                    $choice.'"'.$chkstring.'/>'.$$initpage{$choice}.
  645:                    '&nbsp;&nbsp;</label></nobr>');
  646:     }
  647:     $r->print('<br /><br />'.&mt('If').' '.$$initpage{'coursespecific'}.
  648:               ' - <br />'.$lt{'chce'}.": \n");
  649:     foreach my $choice (@chgentry) {
  650:         my $chkstring;
  651:         if (($choice eq $current) && ($control eq 'coursespecific')) {
  652:             $chkstring = ' checked="checked" ';
  653:         }
  654:         $r->print('<nobr><label><input type="radio" name="courseinit_page" value="'.
  655:                   $choice.'"'.$chkstring.'/>'.$$initpage{$choice}.
  656:                   '&nbsp;&nbsp;</label></nobr>');
  657:     }
  658:     $r->print('<br /><br /><input type="submit" name="display" value="'.
  659:                $lt{'moce'}.'" /></form>');
  660:     return;
  661: }
  662: 
  663: sub curr_courseinit {
  664:     my $current = &get_current($env{'user.name'},$env{'user.domain'},
  665:                                 $env{'request.course.id'},'courseinit');
  666:     my $control;
  667:     if ($current) {
  668:         $control = 'coursespecific';
  669:     } else {
  670:         $control = 'userpref';
  671:         my %userenv = &Apache::lonnet::get('environment',
  672:                                                       ['course_init_display']);
  673:         if (exists($userenv{'course_init_display'})) {
  674:             $current = $userenv{'course_init_display'};
  675:         }
  676:         unless ($current) {
  677:             $current = 'whatsnew';
  678:         }
  679:     }
  680:     return ($control,$current);
  681: }
  682: 
  683: sub display_launcher {
  684:     my ($r,$action,$refpage,$checkallowed,$tabbg,$rowColor1,$rowColor2,$show,
  685:         $headings,$res_title,$tograde,$ungraded,$bombs,$bombed,$changed,
  686:         $warnings,$triggered,$newdiscussions,$unread,$msgcount,$newmsgs,
  687:                           $critmsgcount,$critmsgs,$interval,$countunread) = @_;
  688: 
  689:     if ($$checkallowed{$action}) {
  690:         &start_box($r,$tabbg,$show,$headings,$action,$refpage,$action);
  691:         if ($$show{$action}) {
  692:             if ($action eq 'handgrading') {    # UNGRADED ITEMS
  693:                 &display_handgrade($r,$tograde,$rowColor1,$rowColor2,
  694:                                                                     $ungraded);
  695:             } elsif ($action eq 'haserrors') { # BOMBS
  696:                 &display_haserrors($r,$bombs,$rowColor1,$rowColor2,$bombed,
  697:                                                                    $res_title);
  698:             } elsif ($action eq 'versionchanges') { # VERSION CHANGES
  699:                 &display_versionchanges($r,$changed,$res_title,$rowColor1,
  700:                                                          $rowColor2,$interval);
  701: 
  702:             } elsif ($action eq 'abovethreshold') { # DEGDIFF/AV. TRIES TRIGGERS
  703:                 &display_abovethreshold($r,$refpage,$warnings,$triggered,
  704: 					$res_title);
  705:             } elsif ($action eq 'coursediscussion') { # UNREAD COURSE DISCUSSION
  706:                 &display_coursediscussion($r,$newdiscussions,$unread,
  707:                                 $countunread,$res_title,$rowColor1,$rowColor2);
  708:             } elsif ($action eq 'coursenormalmail') { # NORMAL MESSAGES
  709:                 &display_coursenormalmail($r,$msgcount,$newmsgs,$rowColor1,
  710:                                                                    $rowColor2);
  711:             } elsif ($action eq 'coursecritmail') { # CRITICAL MESSAGES
  712:                 &display_coursecritmail($r,$critmsgcount,$critmsgs,$rowColor1,
  713:                                                                    $rowColor2);
  714:             }
  715:         }
  716:         &end_box($r);
  717:     }
  718:     return;
  719: }
  720: 
  721: sub getitems {
  722:     my ($unread,$ungraded,$bombed,$triggered,$changed,$newdiscussions,
  723:         $tograde,$bombs,$warnings,$rowColor1,$rowColor2,$threshold,$cdom,$crs,
  724:                                  $res_title,$show,$starttime,$countunread) = @_;
  725:     my $navmap = Apache::lonnavmaps::navmap->new();
  726:     # force retrieve Resource to seed the part id cache we'll need it later
  727:     my @allres=$navmap->retrieveResources(undef,
  728:                      sub {if ($_[0]->is_problem) { $_[0]->parts();} return 1;});
  729:     my %resourcetracker;
  730:     my $discussiontime;
  731: 
  732: # Resource version changes
  733:     if ($$show{'versionchanges'}) {
  734:         &checkversions($cdom,$crs,$navmap,$changed,$starttime);
  735:     }
  736: 
  737:     if ($$show{'abovethreshold'}) {
  738:         %resourcetracker =  &Apache::lonnet::dump('nohist_resourcetracker',
  739:                                                                    $cdom,$crs);
  740:     }
  741: 
  742:     foreach my $resource (@allres) {
  743:         my $result = '';
  744:         my $applies = 0;
  745:         my $symb = $resource->symb();
  746:         %{$$bombed{$symb}} = ();
  747:         %{$$ungraded{$symb}} = ();
  748:         %{$$triggered{$symb}} = ();
  749:         $$triggered{$symb}{numparts} = 0;
  750:         my $title = $resource->compTitle();
  751:         $$res_title{$symb} = $title;
  752:         my $ressymb = $resource->wrap_symb();
  753: 
  754: # Check if there are unread discussion postings
  755:         if ($$show{'coursediscussion'}) {
  756:             &check_discussions($resource,$symb,$ressymb,$title,
  757: 			       $newdiscussions,$unread,$countunread);
  758:         }
  759: 
  760: # Check for ungraded problems
  761:         if ($resource->is_problem()) {
  762:             if ($$show{'handgrading'}) {
  763:                 &check_handgraded($resource,$symb,$title,$cdom,$crs,$ungraded,
  764:                                                                      $tograde);
  765:             }
  766:         }
  767: 
  768: # Check for bombs
  769:         if ($$show{'haserrors'}) {
  770:             &check_bombed($resource,$symb,$title,$bombs,$bombed);
  771:         }
  772: 
  773: # Maxtries and degree of difficulty for problem parts, unless handgradeable
  774:         if ($$show{'abovethreshold'}) {  
  775:             &check_thresholds($resource,$symb,\%resourcetracker,
  776: 			      $triggered,$threshold,$warnings);
  777:         }
  778: 
  779:     }
  780: }
  781: 
  782: sub check_discussions {
  783:     my ($resource,$symb,$ressymb,$title,$newdiscussions,$unread,
  784: 	$countunread) = @_;
  785: 
  786:     if (!$resource->hasDiscussion()) { return; }
  787: 
  788:     %{$$unread{$ressymb}} = ();
  789:     $$unread{$ressymb}{'title'} = $title;
  790:     $$unread{$ressymb}{'symb'} = $symb;
  791:     push(@{$newdiscussions}, $ressymb);
  792:     
  793:     $$unread{$ressymb}{'lastpost'} = $resource->last_post_time();
  794:     
  795:     if ($countunread eq 'on') {
  796: 	$$unread{$ressymb}{'unreadcount'} = $resource->unread_discussion();
  797:     }
  798: }
  799: 
  800: sub check_handgraded {
  801:     my ($resource,$symb,$title,$cdom,$cnum,$ungraded,$tograde) = @_;
  802:     if ($resource->is_problem()) {
  803:         my ($map,$ind,$url)=&Apache::lonnet::decode_symb($symb);
  804:         my $partlist=$resource->parts();
  805:         my $handgradeable;
  806:         foreach my $part (@$partlist) {
  807:             if ($resource->handgrade($part) eq 'yes') {
  808:                 $handgradeable=1; last;
  809:             }
  810:         }
  811:         if ($handgradeable) {
  812:             my @ungraded = &Apache::bridgetask::get_queue_symb_status(
  813:                                              'gradingqueue',$symb,$cdom,$cnum);
  814:             if (@ungraded > 0) {
  815:                 $$ungraded{$symb}{count} = scalar(@ungraded);
  816:                 $$ungraded{$symb}{title} = $title;
  817:                 push(@{$tograde}, $symb);
  818:             }
  819:         }
  820:     }
  821: }
  822: 
  823: sub check_bombed {
  824:     my ($resource,$symb,$title,$bombs,$bombed) = @_;
  825:     if ($resource->getErrors()) {
  826:         my $errors = $resource->getErrors();
  827:         $errors =~ s/^,//;
  828:         my @bombs = split(/,/, $errors);
  829:         my $errorcount = scalar(@bombs);
  830:         my $errorlink = '<a href="/adm/email?display='.
  831:                         &escape($bombs[0]).'">'.
  832:                         $title.'</a>';
  833:         $$bombed{$symb}{errorcount} = $errorcount;
  834:         $$bombed{$symb}{errorlink} = $errorlink;
  835:         push(@{$bombs}, $symb);
  836:     }
  837: }
  838: 
  839: sub check_thresholds {
  840:     my ($resource,$symb,$resourcetracker,$triggered,$threshold,$warnings) = @_;
  841: # Compile maxtries and degree of difficulty for problem parts, unless handgradeable
  842:     my @parts = @{$resource->parts()};
  843:     my %stats;
  844:     my %lastreset = ();
  845:     my $warning = 0;
  846:     my $rowColor;
  847:     foreach my $part (@parts) {
  848:         if ($resource->handgrade($part) eq 'yes') {
  849:             next;
  850:         }
  851:         if ($resource->is_survey($part)) {
  852:             next;
  853:         }
  854:         %{$stats{$part}} = ();
  855:         my ($attempts,$users,$corrects,$degdiff,$av_attempts);
  856:         if (exists($$resourcetracker{$symb."\0".$part."\0attempts"})) {
  857:             $attempts = $$resourcetracker{$symb."\0".$part."\0attempts"};
  858:         }
  859:         if (exists($$resourcetracker{$symb."\0".$part."\0users"})) {
  860:             $users = $$resourcetracker{$symb."\0".$part."\0users"};
  861:         }
  862:         if (exists($$resourcetracker{$symb."\0".$part."\0correct"})) {
  863:             $corrects = $$resourcetracker{$symb."\0".$part."\0correct"};
  864:         }
  865:         if ($attempts > 0) {
  866:             $degdiff =  1 - ($corrects/$attempts);
  867:             $degdiff = sprintf("%.2f",$degdiff);
  868:         }
  869:         if ($users > 0) {
  870:             $av_attempts = $attempts/$users;
  871:             $av_attempts = sprintf("%.2f",$av_attempts);
  872:         }
  873:         if ((($degdiff ne '' && $degdiff >= $$threshold{'degdiff'}) || ($av_attempts ne '' && $av_attempts >= $$threshold{'av_attempts'})) && ($users >= $$threshold{'numstudents'})) {
  874:             $stats{$part}{degdiff} = $degdiff;
  875:             $stats{$part}{attempts} = $av_attempts;
  876:             $stats{$part}{users} = $users;
  877:             $lastreset{$part} = $$resourcetracker{$symb."\0".$part."\0resettime"};
  878:             if ($lastreset{$part}) {
  879:                 $lastreset{$part} = &Apache::lonnavmaps::timeToHumanString($lastreset{$part});
  880:             }
  881:             $warning = 1;
  882:         }
  883:     }
  884:     if ($warning) {
  885:         $$triggered{$symb}{title} = $resource->title;
  886:         my $partcount = 0;
  887:         @{$$triggered{$symb}{text}} = ();
  888:         foreach my $part (@parts) {
  889:             if (exists($stats{$part}{users})) {
  890:                 my $resetname = 'reset_'.&escape($symb."\0".$part);
  891:                 my $resettitle = 'title_'.&escape($symb."\0".$part);
  892:                 if (@parts > 1) {
  893:                     $$triggered{$symb}{text}[$partcount] = '
  894:                      <td>part - '.$part.'</td>';
  895:                 } else {
  896:                     $$triggered{$symb}{text}[$partcount] = '
  897:                      <td>single part</td>';
  898:                 }
  899:                 $$triggered{$symb}{text}[$partcount] .= '
  900:                      <td>'.$stats{$part}{users}.'</td>
  901:                      <td>'.$stats{$part}{attempts}.'</td>
  902:                      <td>'.$stats{$part}{degdiff}.'</td>
  903:                      <td>'.$lastreset{$part}.'</td>
  904:                      <td><input type="checkbox" name="'.$resetname.'" /><input type="hidden" name="'.$resettitle.'" value="'.&escape($$triggered{$symb}{title}).'" /></td>';
  905:                 $partcount ++;
  906:             }
  907:             $$triggered{$symb}{numparts} = $partcount;
  908:         }
  909:         push(@{$warnings},$symb);
  910:     }
  911: }
  912: 
  913: 
  914: sub get_curr_thresholds {
  915:     my ($threshold,$uname,$udom,$cid,$cdom,$crs) = @_;
  916:     my %thresholdsettings = &Apache::lonnet::dump('nohist_whatsnew',$udom,
  917:                                                      $uname,$cid.':threshold');
  918:     my $thresholdcount = 0;
  919:     my ($tmp) = %thresholdsettings;
  920:     unless ($tmp =~ /^(con_lost|error|no_such_host)/i) {
  921:         foreach my $item (keys %{$threshold}) { 
  922:             if (exists($thresholdsettings{$cid.':threshold_'.$item})) {
  923:                 $$threshold{$item} = 
  924:                              $thresholdsettings{$cid.':threshold_'.$item};
  925:                 $thresholdcount ++;
  926:             }
  927:         }
  928:     }
  929:     if ($thresholdcount == 3) {
  930:         return;
  931:     }
  932:     my %coursesettings = &Apache::lonnet::dump('environment',
  933:                                               $cdom,$crs,'internal.threshold');
  934:     my ($temp) = %coursesettings;
  935:     unless ($temp =~ /^(con_lost|error|no_such_host)/i) {  
  936:         foreach my $item (keys %{$threshold}) {
  937:             unless (exists($thresholdsettings{$cid.':threshold_'.$item})) {
  938:                 if (exists($coursesettings{'internal.threshold_'.$item})) {
  939:                     $$threshold{$item} = 
  940:                              $coursesettings{'internal.threshold_'.$item};
  941:                 }
  942:             }
  943:         }
  944:     }
  945:     return;
  946: }
  947: 
  948: sub get_current {
  949:     my ($uname,$udom,$cid,$caller) = @_;
  950:     my $currvalue;
  951:     my %settings = &Apache::lonnet::dump('nohist_whatsnew',$udom,$uname,$cid.
  952:                                                                 ':'.$caller);
  953:     my ($tmp) = %settings;
  954:     unless ($tmp =~ /^(con_lost|error|no_such_host)/i) {
  955:         $currvalue = $settings{$cid.':'.$caller};
  956:     }
  957:     return $currvalue;
  958: }
  959: 
  960: sub process_reset {
  961:     my ($dom,$crs) = @_;
  962:     my $result = '<b>'.&mt('Counters reset for following problems (and parts):').
  963:                            '</b><br />';
  964:     my @agg_types = ('attempts','users','correct');
  965:     my %agg_titles = &Apache::lonlocal::texthash (
  966:                      attempts => 'Number of submissions',
  967:                      users => 'Students with submissions',
  968:                      correct => 'Number of correct submissions',
  969:                      );
  970:     my @resets = ();
  971:     my %titles = ();
  972:     foreach my $key (keys(%env)) {
  973:         next if ($key !~ /^form\.reset_(.+)$/);
  974:         my $title = &unescape($env{'form.title_'.$1});
  975:         my $reset_item = &unescape($1);
  976:         my %curr_aggregates = &Apache::lonnet::dump('nohist_resourcetracker',$dom,$crs,$reset_item);
  977:         my %aggregates = ();
  978:         my ($symb,$part) = split(/\0/,$reset_item);
  979:         foreach my $type (@agg_types) {
  980:             $aggregates{$reset_item."\0".$type} = 0;
  981:         }  
  982: 	$aggregates{$reset_item."\0".'resettime'} = time;
  983:         my $putresult = &Apache::lonnet::put('nohist_resourcetracker',\%aggregates,
  984:                           $dom,$crs);
  985:         if ($putresult eq 'ok') {
  986:             $result .= $title.' -part '.$part.': ';
  987:             my %new_aggregates = &Apache::lonnet::dump('nohist_resourcetracker',$dom,$crs,$reset_item);
  988:             foreach my $type (@agg_types) {
  989:                 $result .= $agg_titles{$type}.' = '.$new_aggregates{$reset_item."\0".$type}.'; ';
  990:             }
  991:             $result =~ s/; $//;
  992:             $result .= '<br />';
  993:         } else {
  994:             $result = $title.' -part '.$part.': '.&mt('Unable to reset counters to zero due to [_1]',$putresult).'.<br />'."\n";
  995:         }
  996:     }
  997:     return $result;
  998: }
  999: 
 1000: sub process_update {
 1001:     my ($uname,$udom,$threshold_titles) = @_;
 1002:     my $setoutput = '<b>Changes to threshold(s) for problem tracking:</b><br />';
 1003:     foreach (keys %env) {
 1004:         next if ($_!~/^form\.(.+)\_setparmval$/);
 1005:         my $name  = $1;
 1006:         my $value = $env{'form.'.$name.'_value'};
 1007:         if ($name && defined($value)) {
 1008:             my $put_result = &Apache::lonnet::put('nohist_whatsnew',
 1009:                                                   {$name=>$value},$udom,$uname);
 1010:            
 1011:             my ($shortname) = ($name =~ /^\Q$env{'request.course.id'}\E:threshold_(.+)$/);
 1012:             if ($put_result eq 'ok') {
 1013:                 $setoutput.=&mt('Set threshold for [_1] to [_2]',
 1014: 				'<b>'.$$threshold_titles{$shortname}.'</b>',
 1015: 				'<b>'.$value.'</b>').'<br />';
 1016: 	    } else {
 1017:                 $setoutput.=&mt('Unable to set threshold for [_1] to [_2] due to [_3].',
 1018: 				'<b>'.$name.'</b>','<b>'.$value.'</b>',
 1019: 				'<tt>'.$put_result.'</tt>').'<br />';
 1020:             }
 1021:         }
 1022:     }
 1023:     return $setoutput;
 1024: }
 1025: 
 1026: sub getnormalmail {
 1027:     my ($newmsgs) = @_;
 1028: # Check for unread mail in course
 1029:     my $msgcount = 0;
 1030: 
 1031:     my @messages = sort(&Apache::lonnet::getkeys('nohist_email'));
 1032:     foreach my $message (@messages) {
 1033: 	my $msgid=&escape($message);
 1034:         my ($sendtime,$shortsubj,$fromname,$fromdom,$status,$fromcid)=
 1035:             &Apache::lonmsg::unpackmsgid($msgid);
 1036:         if (($fromcid) && ($fromcid eq $env{'request.course.id'})) {
 1037:             if (defined($sendtime) && $sendtime!~/error/) {
 1038:                 my $numsendtime = $sendtime;
 1039:                 $sendtime = &Apache::lonlocal::locallocaltime($sendtime);
 1040:                 if ($status eq 'new') {
 1041:                     $msgcount ++;
 1042:                     if ($shortsubj eq '') {
 1043:                         $shortsubj = &mt('No subject');
 1044:                     }
 1045:                     push(@{$newmsgs}, {
 1046:                         msgid    => $msgid,
 1047:                         sendtime => $sendtime,
 1048:                         shortsub => $shortsubj,
 1049:                         from     => $fromname,
 1050:                         fromdom  => $fromdom
 1051:                         });
 1052:                 }
 1053:             }
 1054:         }
 1055:     }
 1056:     return $msgcount;
 1057: }
 1058: 
 1059: sub getcritmail {
 1060:     my ($critmsgs) = @_; 
 1061: # Check for critical messages in course
 1062:     my %what=&Apache::lonnet::dump('critical');
 1063:     my $result = '';
 1064:     my $critmsgcount = 0;
 1065:     foreach my $msgid (sort(keys(%what))) {
 1066:         my ($sendtime,$shortsubj,$fromname,$fromdom,$status,$fromcid)=
 1067:             &Apache::lonmsg::unpackmsgid($msgid);
 1068:         if (($fromcid) && ($fromcid eq  $env{'request.course.id'})) {
 1069:             if (defined($sendtime) && $sendtime!~/error/) {
 1070:                 my $numsendtime = $sendtime;
 1071:                 $sendtime = &Apache::lonlocal::locallocaltime($sendtime);
 1072:                 $critmsgcount ++;
 1073:                 if ($shortsubj eq '') {
 1074:                     $shortsubj = &mt('No subject');
 1075:                 }
 1076:                 push(@{$critmsgs}, {
 1077:                         msgid    => $msgid,
 1078:                         sendtime => $sendtime,
 1079:                         shortsub => $shortsubj,
 1080:                         from     => $fromname,
 1081:                         fromdom  => $fromdom
 1082:                         });
 1083:             }
 1084:         }
 1085:     }
 1086:     return $critmsgcount;
 1087: }
 1088: 
 1089: 
 1090: sub checkversions {
 1091:     my ($cdom,$crs,$navmap,$changed,$starttime) = @_;
 1092:     my %changes=&Apache::lonnet::dump('versionupdate',$cdom,$crs);
 1093:     my ($tmp) = keys(%changes);
 1094:     unless ($tmp =~ /^(con_lost|error|no_such_host)/i) {
 1095:         if (keys(%changes) > 0) {
 1096:             foreach my $key (sort(keys(%changes))) {
 1097:                 if ($changes{$key} > $starttime) {
 1098:                     my $version;
 1099:                     my ($root,$extension)=($key=~/^(.*)\.(\w+)$/);
 1100:                     my $currentversion=&Apache::lonnet::getversion($key);
 1101:                     my $revdate = 
 1102:                           &Apache::lonnet::metadata($root.'.'.$extension,
 1103:                                                      'lastrevisiondate');
 1104:                     $revdate =  &Apache::lonlocal::locallocaltime($revdate);
 1105:                     my $linkurl=&Apache::lonnet::clutter($key);
 1106:                     my $usedversion=$navmap->usedVersion('version_'.$linkurl);
 1107:                     my @resources = $navmap->getResourceByUrl($linkurl,1);
 1108:                     if (($usedversion) && ($usedversion ne 'mostrecent')) {
 1109:                         $version = $usedversion;     
 1110:                     } else {
 1111:                         $version = $currentversion;
 1112:                     }
 1113:                     foreach my $res (@resources) {
 1114:                          if (ref($res) eq 'Apache::lonnavmaps::resource') { 
 1115:                             my $symb = $res->symb();
 1116:                             %{$$changed{$symb}} = (
 1117:                                                 current => $currentversion,
 1118:                                                 version => $version,
 1119:                                                 revdate => $revdate,
 1120:                             );
 1121:                         }
 1122:                     }
 1123:                 }
 1124:             }
 1125:         }
 1126:     }
 1127:     return;
 1128: }
 1129: 
 1130: sub display_handgrade {
 1131:     my ($r,$tograde,$rowColor1,$rowColor2,$ungraded) = @_;
 1132:     my $rowColor;
 1133:     my %lt = &Apache::lonlocal::texthash(
 1134:                         'prna' => 'Problem Name',
 1135:                         'nmun' => 'Number ungraded',
 1136:                         'nopr' => 'No problems require handgrading',
 1137:     );
 1138:     if (@{$tograde} > 0) {
 1139:         $r->print('<tr bgcolor="#cccccc"><td><b><small>'.$lt{'prna'}.'</small></b></td><td align="right"><b><small>'.$lt{'nmun'}.'</small></b></td></tr>');
 1140:         my $rowNum = 0;
 1141:         foreach my $res (@{$tograde}) {
 1142:             if ($rowNum %2 == 1) {
 1143:                 $rowColor = $rowColor1;
 1144:             } else {
 1145:                 $rowColor = $rowColor2;
 1146:             }
 1147:             my ($map,$id,$url)=&Apache::lonnet::decode_symb($res);
 1148:             my $linkurl=&Apache::lonnet::clutter($url);
 1149:             $linkurl .= '?symb='.&escape($res);
 1150:                                                                                
 1151:             $r->print('<tr bgcolor="'.$rowColor.'"><td><a href="'.$linkurl.'"><small>'.$$ungraded{$res}{title}.'</small></a></td><td align="right"><small>'.$$ungraded{$res}{count}.'</small></td></tr>');
 1152:             $rowNum ++;
 1153:         }
 1154:     } else {
 1155:         $r->print('<tr><td bgcolor="#ffffff"><br><center><i><b><small>&nbsp;&nbsp;'.$lt{'nopr'}.'&nbsp;&nbsp;</small><br><br></b></i></td></tr>');
 1156:     }
 1157: }
 1158: 
 1159: sub display_haserrors {
 1160:     my ($r,$bombs,$rowColor1,$rowColor2,$bombed,$res_title) = @_;
 1161:     my $bombnum = 0;
 1162:     my $rowColor;
 1163:     my %lt = &Apache::lonlocal::texthash(
 1164:                                    reso => 'Resource',
 1165:                                    nmer => 'Number of errors',
 1166:                                    noer => 'No problems with errors',
 1167:     );
 1168:     if (@{$bombs} > 0) {
 1169:         $r->print('<tr bgcolor="#cccccc"><td><b><small>'.$lt{'reso'}.'</small></b></td><td align="right"><b><small>'.$lt{'nmer'}.'</small></b></td></tr>');
 1170:         @{$bombs} = sort { &cmp_title($a,$b,$res_title) } @{$bombs};
 1171:         foreach my $bomb (@{$bombs}) {
 1172:             if ($bombnum %2 == 1) {
 1173:                 $rowColor = $rowColor1;
 1174:             } else {
 1175:                 $rowColor = $rowColor2;
 1176:             }
 1177:             $r->print('<tr bgcolor="'.$rowColor.'"><td><small>'.$$bombed{$bomb}{errorlink}.'</small></td><td align="right"><small>'.$$bombed{$bomb}{errorcount}.'</small></td></tr>');
 1178:             $bombnum ++;
 1179:         }
 1180:     } else {
 1181:         $r->print('<tr><td bgcolor="#ffffff"><br /><center><b><i><small>'.$lt{'noer'}.'</small></i></b></center><br /></td></tr>');
 1182:     }
 1183:     return;
 1184: }
 1185: 
 1186: sub display_abovethreshold {
 1187:     my ($r,$refpage,$warnings,$triggered,$res_title) = @_;
 1188:     my %lt = &Apache::lonlocal::texthash(
 1189:                  reso => 'Resource',
 1190:                  part => 'Part',
 1191:                  nust => 'Num. students',
 1192:                  avat => 'Av. Attempts',
 1193:                  dedi => 'Deg. Diff',
 1194:                  lare => 'Last Reset',
 1195:                  reco => 'Reset Count?',
 1196:                  rese => 'Reset counters to 0',
 1197:                  nopr => 'No problems satisfy threshold criteria',
 1198:     );
 1199:     if (@{$warnings} > 0) {
 1200:         @{$warnings} = sort { &cmp_title($a,$b,$res_title) } @{$warnings};
 1201:         $r->print('<form name="reset_tracking" method="post" action="/adm/whatsnew">'.
 1202:                 ' <input type="hidden" name="command" value="reset" />'."\n".
 1203:                 ' <input type="hidden" name="refpage" value="'.$refpage.'" />'.
 1204:                 "\n");
 1205:         $r->print('<tr class="LC_info_row">'.
 1206: 		  '<td class="LC_first_item">'.$lt{'reso'}.'</td>'.
 1207: 		  '<td>'.$lt{'part'}.'</td><td>'.$lt{'nust'}.'</td>'.
 1208: 		  '<td>'.$lt{'avat'}.'</td><td>'.$lt{'dedi'}.'</td>'.
 1209: 		  '<td>'.$lt{'lare'}.'</td><td>'.$lt{'reco'}.'</td></tr>');
 1210: 	my $row;
 1211:         foreach my $res (@{$warnings}) {
 1212: 	    $row++;
 1213:             my ($map,$id,$url)=&Apache::lonnet::decode_symb($res);
 1214:             my $linkurl=&Apache::lonnet::clutter($url);
 1215:             my $rowspan;
 1216:             if ($$triggered{$res}{numparts} > 1) {
 1217:                 $rowspan = 'rowspan="'.$$triggered{$res}{numparts}.'"';
 1218:             }
 1219:             $linkurl .= '?symb='.&escape($res);
 1220:             my $css_class = $row%2?'LC_odd_row':'';
 1221:             $r->print('<tr class="'.$css_class.'">'.
 1222: 		      '<td class="LC_first_item" '.$rowspan.'><a href="'.$linkurl.'">'.
 1223: 		      $$triggered{$res}{title}.'</a></td>');
 1224:                       if (ref($$triggered{$res}{text}) eq 'ARRAY') {
 1225: 		          $r->print($$triggered{$res}{text}[0]);
 1226:                       }
 1227:                       $r->print('</tr>');
 1228:             if (ref($$triggered{$res}{text}) eq 'ARRAY') {
 1229:                 if (@{$$triggered{$res}{text}} > 1) {
 1230:                     for (my $i=1; $i<@{$$triggered{$res}{text}}; $i++) {
 1231:                         $r->print('<tr class="'.$css_class.'">'.
 1232:                                   $$triggered{$res}{text}[$i].'</tr>');
 1233:                     }
 1234:                 }
 1235:             }
 1236:         }
 1237:         $r->print('<tr class="LC_info_row"><td colspan="7"><br /><input type="submit" name="counters" value="'.$lt{'rese'}.'" /></td></tr></form>');
 1238:     } else {
 1239:         $r->print('<tr class="LC_empty_row"><td>'.$lt{'nopr'}.'</td></tr>');
 1240:     }
 1241: }
 1242: 
 1243: sub display_versionchanges {
 1244:     my ($r,$changed,$res_title,$rowColor1,$rowColor2,$interval) = @_;
 1245:     my %lt = &Apache::lonlocal::texthash(
 1246:         'reso' => 'Resource',
 1247:         'revd' => 'Last revised',
 1248:         'newv' => 'New version',
 1249:         'veru' => 'Version used',
 1250:         'noup' => 'No updated versions', 
 1251:     );
 1252:     my $rowColor;
 1253:     if (keys(%{$changed}) > 0) {
 1254:         $r->print('<tr bgcolor="#cccccc"><td><b><small>'.$lt{'reso'}.'</small></b></td><td><b><small>'.$lt{'revd'}.'</small></b></td><td><b><small>'.$lt{'newv'}.'</small></b></td><td><b><small>'.$lt{'veru'}.'</small></b></td></tr>');
 1255:         
 1256:         
 1257:         my @changes = sort { &cmp_title($a,$b,$res_title) } keys(%{$changed});
 1258:         my $changenum = 0;
 1259:         foreach my $item (@changes) {
 1260:             if ($changenum %2 == 1) {
 1261:                 $rowColor = $rowColor1;
 1262:             } else {
 1263:                 $rowColor = $rowColor2;
 1264:             }
 1265:             my ($map,$id,$url)=&Apache::lonnet::decode_symb($item);
 1266:             my $linkurl=&Apache::lonnet::clutter($url);
 1267:             $linkurl .= '?symb='.&escape($item);
 1268: 
 1269:             $r->print('<tr bgcolor="'.$rowColor.'"><td><small><a href="'.$linkurl.'">'.$$res_title{$item}.'</a></small></td><td><small>'.$$changed{$item}{'revdate'}.'</small></td><td><small>'.$$changed{$item}{'current'}.'</small></td><td><small>'.$$changed{$item}{'version'}.'</small></td></tr>');
 1270:             $changenum ++;
 1271:         }
 1272:     } else {
 1273:         $r->print('<tr><td bgcolor="#ffffff"><br /><center><b><i><small>'.$lt{'noup'}.' '.$interval.'</small></i></b></center><br /></td></tr>');
 1274:     }
 1275:     return;
 1276: }
 1277:  
 1278: sub display_coursediscussion {
 1279:     my ($r,$newdiscussions,$unread,$countunread,$res_title,$rowColor1,
 1280:                                                               $rowColor2) = @_;
 1281:     my $lctype = lc(&Apache::loncommon::course_type());
 1282:     my %lt = &Apache::lonlocal::texthash(
 1283:                 'loca' => 'Location',
 1284:                 'type' => 'Type',
 1285:                 'numn' => 'Number of new posts',
 1286:                 'noun' => 'No unread posts in '.$lctype.' discussions',
 1287:                 'tmlp' => 'Time of last post', 
 1288:     );
 1289:     my $rowColor;
 1290:     if (@{$newdiscussions} > 0) {
 1291:         $r->print('<tr bgcolor="#cccccc"><td><b><small>'.$lt{'loca'}.
 1292:                   '</small></b></td><td><b><small>'.$lt{'type'}.
 1293:                   '</small></b>');
 1294:         if ($countunread eq 'on') {
 1295:             $r->print('<td><b><small>'.$lt{'tmlp'}.'</small></b></td>'.
 1296:                       '<td align="right"><b><small>'.$lt{'numn'}.
 1297:                       '</small></b></td>');
 1298:         } else {
 1299:             $r->print('<td align="right"><b><small>'.$lt{'tmlp'}.
 1300:                          '</small></b></td>');
 1301:         }
 1302:         $r->print("</tr>\n");
 1303:         @{$newdiscussions} = sort { &cmp_title($a,$b,$res_title) }
 1304:                                                             @{$newdiscussions};
 1305:         my $rowNum = 0;
 1306:         foreach my $ressymb (@{$newdiscussions}) {
 1307:             my $forum_title = $$unread{$ressymb}{'title'};
 1308:             my $type = 'Resource';
 1309:             my $feedurl=&Apache::lonfeedback::get_feedurl($ressymb);
 1310:             if ($feedurl =~ /bulletinboard/) {
 1311:                 $type = 'Bulletin Board';
 1312:             }
 1313:             if ($rowNum %2 == 1) {
 1314:                 $rowColor = $rowColor1;
 1315:             } else {
 1316:                 $rowColor = $rowColor2;
 1317:             }
 1318:             my $lastpost = &Apache::lonnavmaps::timeToHumanString(
 1319:                                                $$unread{$ressymb}{'lastpost'});
 1320:             $r->print('<tr bgcolor="'.$rowColor.'"><td><small><a href="'.$feedurl.'?symb='.$$unread{$ressymb}{symb}.'">'.$forum_title.'</a>&nbsp;</td><td><small>'.$type.'&nbsp;</small></td>');
 1321:             if ($countunread eq 'on') {
 1322:                 my $unreadnum = $$unread{$ressymb}{'unreadcount'};
 1323:                 $r->print('<td><small>'.$lastpost.'<small></td><td align="right">'.
 1324:                           '<small>',$unreadnum.'&nbsp;</small></td>');
 1325:             } else {
 1326:                 $r->print('<td align="right"><small>'.$lastpost.'</small></td>');
 1327:             }
 1328:             $r->print("</tr>\n");
 1329:             $rowNum ++;
 1330:         }
 1331:     } else {
 1332:         $r->print('<tr><td bgcolor="#ffffff"><br><center>&nbsp;<i><b><small>'.
 1333:                   $lt{'noun'}.'</small></b></i><br><br></td></tr>');
 1334:     }
 1335: }
 1336: 
 1337: sub display_coursenormalmail {
 1338:     my ($r,$msgcount,$newmsgs,$rowColor1,$rowColor2) = @_;
 1339:     my $rowColor;
 1340:     my $lctype = lc(&Apache::loncommon::course_type());
 1341:     if ($msgcount > 0) {
 1342:         $r->print('<tr bgcolor="#cccccc"><td><b><small>'.&mt('Number').'</small></b></td><td><b><small>'.&mt('Subject').'</small></b></td><td><b><small>'.&mt('Sender').'</small></b></td><td><b><small>'.&mt('Date/Time').'</small></b></td></tr>');
 1343:         my $rowNum = 0;
 1344:         my $mailcount = 1;
 1345:         foreach my $msg (@{$newmsgs}) {
 1346:             if ($rowNum %2 == 1) {
 1347:                 $rowColor = $rowColor1;
 1348:             } else {
 1349:                 $rowColor = $rowColor2;
 1350:             }
 1351:             $r->print('<tr bgcolor="'.$rowColor.'"><td valign="top"><small>'.$mailcount.'. &nbsp;</small></td><td valign="top"><small><a href="/adm/communicate">'.$msg->{'shortsub'}.'</a>&nbsp; &nbsp;</small></td><td valign="top"><small>&nbsp;'.$msg->{'from'}.'@'.$msg->{'fromdom'}.'&nbsp;</small></td><td valign="top"><small>'.$msg->{'sendtime'}.'</small></td></tr>');
 1352:             $rowNum ++;
 1353:             $mailcount ++;
 1354:         }
 1355:     } else {
 1356:         $r->print('<tr><td bgcolor="#ffffff" width="100%"><center><br /><b><i><small>'.&mt('No new '.$lctype.' messages').'</small></i></b><br /><br /></center></td></tr>');
 1357:     }
 1358: }
 1359: 
 1360: sub display_coursecritmail {
 1361:     my ($r,$critmsgcount,$critmsgs,$rowColor1,$rowColor2) = @_;
 1362:     my $rowColor;
 1363:     my $lctype = lc(&Apache::loncommon::course_type());
 1364:     if ($critmsgcount > 0) {
 1365:         $r->print('<tr bgcolor="#cccccc"><td><b><small>'.&mt('Number').'</small></b></td><td><b><small>'.&mt('Subject').'</small></b></td><td><b><small>'.&mt('Sender').'</small></b></td><td><b><small>'.&mt('Date/Time').'</small></b></td></tr>');
 1366:         my $rowNum = 0;
 1367:         my $mailcount = 1;
 1368:         foreach my $msg (@{$critmsgs}) {
 1369:             if ($rowNum %2 == 1) {
 1370:                 $rowColor = $rowColor1;
 1371:             } else {
 1372:                 $rowColor = $rowColor2;
 1373:             }
 1374:             $r->print('<tr bgcolor="'.$rowColor.'"><td valign="top"><small>'.$mailcount.'. &nbsp;<small></td><td valign="top"><small><a href="/adm/email?folder=critical">'.$msg->{'shortsub'}.'</a>&nbsp; &nbsp;</small></td><td valign="top"><small>&nbsp;'.$msg->{'from'}.'@'.$msg->{'fromdom'}.'&nbsp;</small></td><td valign="top"><small>'.$msg->{'sendtime'}.'</small></td></tr>');
 1375:             $rowNum ++;
 1376:             $mailcount ++;
 1377:         }
 1378:     } else {
 1379:         $r->print('<tr><td bgcolor="#ffffff" width="100%"><center><br /><b><i><small>'.&mt('No unread critical messages in '.$lctype).'</small></i></b><br /><br /></center></td></tr>');
 1380:     }
 1381: }
 1382: 
 1383: sub cmp_title {
 1384:     my ($a,$b,$res_title) = @_;
 1385:     my ($atitle,$btitle) = (lc($$res_title{$a}),lc($$res_title{$b}));
 1386:     $atitle=~s/^\s*//;
 1387:     $btitle=~s/^\s*//;
 1388:     return $atitle cmp $btitle;
 1389: }
 1390: 
 1391: sub get_display_settings {
 1392:     my ($uname,$udom,$cid) = @_;
 1393:     my %settings = &Apache::lonnet::dump('nohist_whatsnew',$udom,$uname,$cid); 
 1394:     my ($tmp) = keys(%settings);
 1395:     if ($tmp=~ /^(con_lost|error|no_such_host)/i) {
 1396:         %settings = ();
 1397:         unless ($tmp =~ /^error: 2 /) {
 1398: 	    my $lctype = lc(&Apache::loncommon::course_type());
 1399:             &Apache::lonnet::logthis('Error retrieving whatsnew settings: '.
 1400:             $tmp.' for '.$uname.':'.$udom.' for '.$lctype.': '.$cid);
 1401:         }
 1402:     }
 1403:     return %settings;
 1404: }
 1405: 
 1406: sub store_display_settings {
 1407:     my ($uname,$udom,$cid,$checkallowed) = @_;
 1408:     my %whatsnew_settings;
 1409:     my $result;
 1410:     foreach my $key (keys(%{$checkallowed})) {
 1411: 	if ($key =~ /_section$/) { next; }
 1412:         if (exists($env{'form.display_'.$key})) {
 1413:             unless ($env{'form.display_'.$key} eq '') {
 1414:                 $whatsnew_settings{$cid.':'.$key} = $env{'form.display_'.$key};
 1415:             }
 1416:         }
 1417:     }
 1418:     if (keys(%whatsnew_settings)) {
 1419:         $result = &Apache::lonnet::put('nohist_whatsnew',\%whatsnew_settings,
 1420:                                                                  $udom,$uname);
 1421:     } else {
 1422:         $result = 'ok';
 1423:     }
 1424:     return $result;
 1425: }
 1426: 
 1427: sub store_interval_setting {
 1428:     my ($uname,$udom,$cid,$interval_titles) = @_;
 1429:     my %interval_settings = ();
 1430:     my $result;
 1431:     if (defined($env{'form.interval'})) {
 1432:         $interval_settings{$cid.':interval'} = $env{'form.interval'};
 1433:         my $outcome = &Apache::lonnet::put('nohist_whatsnew',
 1434:                                              \%interval_settings,$udom,$uname);
 1435:         if ($outcome eq 'ok') {
 1436:             $result = &mt('Interval set to version changes [_1]',
 1437:                   '<b>'.$$interval_titles{$env{'form.interval'}}.'</b><br />');
 1438: 
 1439:         } else {
 1440: 	    my $lctype = lc(&Apache::loncommon::course_type());
 1441:             &Apache::lonnet::logthis('Error storing whatsnew interval setting'.
 1442:                 ' '.$outcome.' for '.$uname.':'.$udom.' in '.$lctype.' '.$cid);
 1443:             $result = &mt('Unable to set interval to [_1] due to [_2].',
 1444:                          '<b>'.$$interval_titles{$env{'form.interval'}}.'</b>',
 1445:                          '<tt>'.$outcome.'</tt>.<br />');
 1446:         }
 1447:     }
 1448:     return $result;
 1449: }
 1450: 
 1451: sub store_discussion_setting {
 1452:     my ($uname,$udom,$cid) = @_;
 1453:     my %discussion_settings;
 1454:     my $result;
 1455:     if (defined($env{'form.countunread'})) {
 1456:         $discussion_settings{$cid.':countunread'} = $env{'form.countunread'};
 1457:         my $outcome = &Apache::lonnet::put('nohist_whatsnew',
 1458:                                              \%discussion_settings,$udom,$uname);
 1459:         if ($outcome eq 'ok') {
 1460:             $result = &mt('Count unread posts in discussions display set to [_1]',
 1461:                   '<b>'.$env{'form.countunread'}.'</b><br />');
 1462:                                                                                   
 1463:         } else {
 1464: 	    my $lctype = lc(&Apache::loncommon::course_type());
 1465:             &Apache::lonnet::logthis('Error storing whatsnew countunread setting'.
 1466:                 ' '.$outcome.' for '.$uname.':'.$udom.' in '.$lctype.' '.$cid);
 1467:             $result = &mt('Unable to set "number unread posts display" to [_1]'.
 1468:                           ' due to [_2].',
 1469:                          '<b>'.$env{'form.countunread'}.'</b>',
 1470:                          '<tt>'.$outcome.'</tt>.<br />');
 1471:         }
 1472:     }
 1473:     return $result;
 1474: }
 1475: 
 1476: sub store_courseinit_setting {
 1477:     my ($uname,$udom,$cid,$initpage) = @_;
 1478:     my %courseinit_settings;
 1479:     my $page_control;
 1480:     my $result;
 1481:     if (defined($env{'form.courseinit_control'})) {
 1482:         if ($env{'form.courseinit_control'} eq 'userpref') {
 1483:             $courseinit_settings{$cid.':courseinit'} = '';
 1484:             $page_control = 'global preferences';
 1485:         } else {
 1486:             if (defined($env{'form.courseinit_page'})) {
 1487:                 $courseinit_settings{$cid.':courseinit'} = 
 1488:                                                   $env{'form.courseinit_page'};
 1489:                 $page_control = 'course specific setting';
 1490:             }
 1491:         }
 1492:         if ($page_control) {
 1493: 	    my $lctype = lc(&Apache::loncommon::course_type());
 1494:             my $outcome = &Apache::lonnet::put('nohist_whatsnew',
 1495:                                            \%courseinit_settings,$udom,$uname);
 1496:             if ($outcome eq 'ok') {
 1497:                 if ($page_control eq 'global preferences') {
 1498:                     $result = &mt("Page displayed after role selection in $lctype now set by <b>user's global preferences</b>.");
 1499:                 } else {
 1500:                     $result = &mt('Page displayed after role selection in this '.$lctype.' set to <b>[_2]</b>',$lctype,$$initpage{$env{'form.courseinit_page'}});
 1501:                 }
 1502:             } else {
 1503:                 &Apache::lonnet::logthis('Error storing whatsnew courseinit '.
 1504:                                          'setting: '.$outcome.' for '.$uname.
 1505:                                          ':'.$udom.' in '.$lctype.' '.$cid);
 1506:                 if ($page_control eq 'global preferences') {
 1507:                     $result = &mt('Unable to set control of page display to [_1]'.
 1508:                           ' due to [_2].',
 1509:                          '<b>'.$page_control.'</b>',
 1510:                          '<tt>'.$outcome.'</tt>.<br />');
 1511:                 } else {
 1512:                     $result = &mt('Unable to set page display, after role selection, for this '.$lctype.' to <b>[_2]</b> due to <tt>[_3]</tt>.<br />',
 1513:                          $$initpage{$env{'form.courseinit_page'}},$outcome);
 1514:                 }
 1515:             }
 1516:         }
 1517:     }
 1518:     return $result;
 1519: }
 1520: 
 1521: sub start_box {
 1522:     my ($r,$tabbg,$show,$heading,$caller,$refpage) = @_;
 1523:     my %lt = &Apache::lonlocal::texthash( 
 1524:                        chth => 'Change thresholds?',
 1525:                        chin => 'Change interval?',
 1526:                        chop => 'Change options?',
 1527:     );
 1528:     my ($showhide,$class);
 1529:     if ($$show{$caller}) {
 1530:         $showhide = '<b><a href="javascript:change_display(document.visible.'.
 1531:                                'display_'.$caller.",'hide'".');">Hide</a></b>';
 1532:    
 1533:     } else {
 1534:         $showhide = '<b><a href="javascript:change_display(document.visible.'.
 1535:                                'display_'.$caller.",'show'".');">Show</a></b>';
 1536:     }
 1537:     
 1538:     $r->print('
 1539:          <table border="0" cellpadding="0" cellspacing="0" bgcolor="#000000" width="100%">
 1540:           <tr>
 1541:            <td>
 1542:             <table border="0" cellpadding="1" cellspacing="1" bgcolor="#000000" width="100%">
 1543:               <tr>
 1544:                <td bgcolor="'.$tabbg.'">
 1545:                 <table width="100%" border="0" cellspacing="0" cellpadding="0">
 1546:                  <tr>
 1547:                   <td><b>'.$$heading{$caller}.'</b></td>
 1548:                   <td valign="top" align="right">'.$showhide.'</td>
 1549:                  </tr>
 1550:                 </table>
 1551:                </td>
 1552:               </tr>');
 1553:      if (($caller eq 'abovethreshold') && ($$show{$caller})) {
 1554:          if ($$show{$caller}) {
 1555:              $r->print('
 1556:               <tr>
 1557:                 <td bgcolor="'.$tabbg.'" align="right"><a href="/adm/whatsnew?command=chgthreshold&refpage='.$refpage.'"><b><small>'.$lt{'chth'}.'</small></b></a></td>
 1558:               </tr>');
 1559:          }
 1560: 	 $class='class="LC_whatsnew"';
 1561:      } elsif (($caller eq 'versionchanges') && ($$show{$caller})) {
 1562:          if ($$show{$caller}) {
 1563:              $r->print('
 1564:               <tr>
 1565:                 <td bgcolor="'.$tabbg.'" align="right"><a href="/adm/whatsnew?command=chginterval&refpage='.$refpage.'"><b><small>'.$lt{'chin'}.'</small></b></a></td>
 1566:               </tr>');
 1567:          }
 1568:      } elsif ($caller eq 'coursediscussion') {
 1569:          if ($$show{$caller}) {
 1570:              $r->print('
 1571:               <tr>
 1572:                 <td bgcolor="'.$tabbg.'" align="right"><a href="/adm/whatsnew?command=chgdisc&refpage='.$refpage.'"><b><small>'.$lt{'chop'}.'</small></b></a></td>
 1573:               </tr>');
 1574:          }
 1575:      }
 1576:     $r->print('
 1577:               <tr>
 1578:                <td bgcolor="#ffffff">
 1579:                 <table cellpadding="2" cellspacing="0" border="0" width="100%" '.$class.'>
 1580: ');
 1581:     return;
 1582: }
 1583: 
 1584: sub end_box {
 1585:     my ($r) = shift;
 1586:     $r->print('
 1587:       </table>
 1588:      </td>
 1589:     </tr>
 1590:    </table>
 1591:   </td>
 1592:  </tr>
 1593: </table><br />');
 1594:     return;
 1595: }
 1596: 
 1597: 1;

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