File:  [LON-CAPA] / loncom / interface / lonwhatsnew.pm
Revision 1.104: download - view: text, annotated - select for diffs
Fri Apr 15 13:57:18 2011 UTC (13 years ago) by bisitz
Branches: MAIN
CVS tags: language_hyphenation_merge, language_hyphenation, HEAD, BZ4492-merge, BZ4492-feature_horizontal_radioresponse
Remove "version_" when calling method $navmap->usedVersion as lonnavmaps will already add "version_" to the url thrown in sub routine usedVersion($url).
users can now view problem version correctly in what's new page "resources in course with version changes" if they use earlier version of the problem.

(Credits: Leo Christianto)

    1: #
    2: # $Id: lonwhatsnew.pm,v 1.104 2011/04/15 13:57:18 bisitz 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::lonuserutils; 
   40: use Apache::Constants qw(:common :http);
   41: use Time::Local;
   42: use GDBM_File;
   43: use lib '/home/httpd/lib/perl/';
   44: use LONCAPA;
   45: use HTML::Entities;
   46: 
   47: #----------------------------
   48: # handler
   49: #
   50: #----------------------------
   51: 
   52: sub handler {
   53:     my $r = shift;
   54:     if ($r->header_only) {
   55:         &Apache::loncommon::content_type($r,'text/html');
   56:         $r->send_http_header;
   57:         return OK;
   58:     }
   59:     &Apache::loncommon::get_unprocessed_cgi(
   60:                                    $ENV{'QUERY_STRING'},['command','refpage']);
   61: 
   62:     my $command = $env{'form.command'};
   63:     my $refpage = $env{'form.refpage'};
   64: 
   65:     my %checkallowed = ( coursenormalmail => 1,
   66: 			 coursecritmail => 1, );
   67:     foreach my $perm_check (['whn','whatsnew',1],
   68: 			    ['pch','coursediscussion',1],
   69: 			    ['mgr','handgrading',1],
   70: 			    ['vgr','abovethreshold',1],
   71: 			    ['opa','haserrors',1],
   72: 			    ['mdc','versionchanges',0],
   73:                             ['vcl','newroles',1],
   74:                             ['vcl','oldroles',1],
   75: 			    ) {
   76: 	my ($perm,$key,$check_section) = @{ $perm_check };
   77: 	my $scope = $env{'request.course.id'};
   78: 	if (!($checkallowed{$key} = &Apache::lonnet::allowed($perm,$scope))) {
   79: 	    $scope .= '/'.$env{'request.course.sec'};
   80: 	    if ( $check_section ) {
   81: 		$checkallowed{$key} = &Apache::lonnet::allowed($perm,$scope);
   82: 	    }
   83: 	    if ($checkallowed{$key}) {
   84: 		$checkallowed{$key.'_section'} = $env{'request.course.sec'};
   85: 	    }
   86: 	}
   87:     }
   88: 
   89:     if ( ! $env{'request.course.fn'} || ! $checkallowed{'whatsnew'}) {
   90:         # Not in a course, or no whn priv in course
   91:         $env{'user.error.msg'}="/adm/whatsnew:whn:0:0:Cannot display what's new page";
   92:         return HTTP_NOT_ACCEPTABLE;
   93:     }
   94: 
   95:     &Apache::loncommon::content_type($r,'text/html');
   96:     $r->send_http_header;
   97: 
   98:     $r->print(&display_header($command,\%checkallowed));
   99: 
  100:     &Apache::lonhtmlcommon::clear_breadcrumbs();
  101:     &Apache::lonhtmlcommon::add_breadcrumb
  102:             ({href=>'/adm/whatsnew',
  103:               text=>"What's New?"});
  104:     if (($command eq 'chgthreshold') && $checkallowed{'abovethreshold'}) {
  105:         &Apache::lonhtmlcommon::add_breadcrumb
  106:             ({href=>'/adm/whatsnew?command=chgthreshold&refpage='.$refpage,
  107:               text=>"Change thresholds"});
  108:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
  109:             ("What's New?",#'Course_Action_Items_Thresholds'
  110: 	     ));
  111:     } elsif (($command eq 'chginterval') && $checkallowed{'versionchanges'} ) {
  112:         &Apache::lonhtmlcommon::add_breadcrumb
  113:             ({href=>'/adm/whatsnew?command=chginterval&refpage='.$refpage,
  114:               text=>"Change interval"});
  115:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
  116:             ("What's New?",#'Course_Action_Items_Intervals'
  117: 	     ));
  118:     } elsif (($command eq 'chgdisc') && $checkallowed{'coursediscussion'}) {
  119:         &Apache::lonhtmlcommon::add_breadcrumb
  120:             ({href=>'/adm/whatsnew?command=chgdisc&refpage='.$refpage,
  121:               text=>"Change discussion display"});
  122:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
  123:             ("What's New?",#'Course_Action_Items_Intervals'
  124: 	     ));
  125:     } elsif ($command eq 'courseinit') {
  126:         &Apache::lonhtmlcommon::add_breadcrumb
  127:             ({href=>'/adm/whatsnew?command=courseinit&refpage='.$refpage,
  128:               text=>"Course initialization preference"});
  129:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
  130:             ("What's New?",#'Course_Action_Items_Initialization'
  131: 	     ));
  132:     } elsif ($command eq 'chgoldroleinterval' && $checkallowed{'oldroles'}) {
  133:         &Apache::lonhtmlcommon::add_breadcrumb
  134:             ({href=>'/adm/whatsnew?command=chgoldroleinterval&refpage='.$refpage,
  135:               text=>"Change interval"});
  136:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
  137:             ("What's New?",#'Course_Action_Items_Intervals'
  138:              ));
  139:     } elsif ($command eq 'chgnewroleinterval' && $checkallowed{'newroles'}) {
  140:         &Apache::lonhtmlcommon::add_breadcrumb
  141:             ({href=>'/adm/whatsnew?command=chgnewroleinterval&refpage='.$refpage,
  142:               text=>"Change interval"});
  143:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
  144:             ("What's New?",#'Course_Action_Items_Intervals'
  145:              ));
  146:     } else {
  147:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
  148:             ("What's New?",#'Course_Action_Items_Display'
  149: 	     ));
  150:     }
  151:     &display_main_box($r,$command,$refpage,\%checkallowed);
  152:     return OK;
  153: }
  154: 
  155: #------------------------------
  156: # display_main_box
  157: #
  158: # Display all the elements within the main box
  159: #------------------------------
  160:                                                                                 
  161: sub display_main_box {
  162:     my ($r,$command,$refpage,$checkallowed) = @_;
  163:     my $domain=&Apache::loncommon::determinedomain();
  164:     my $function = &Apache::loncommon::get_users_function();
  165:     my $lctype = lc(&Apache::loncommon::course_type());
  166:     $r->print('<table width="100%" border="0" cellpadding="5" cellspacing="0"><tr><td width="100%">');
  167: 
  168:     my %threshold_titles = &Apache::lonlocal::texthash (
  169:                          av_attempts => 'Average number of attempts',
  170:                          degdiff => 'Degree of difficulty',
  171:                          numstudents => 'Total number of students with submissions',
  172:     );
  173:     my %versions = (
  174:                        -1 => "version changes since start of $lctype",
  175:                   2592000 => 'version changes since last month',
  176:                    604800 => 'version changes since last week',
  177:                     86400 => 'version changes since yesterday',
  178:                    );
  179:     my %newroles = (
  180:                        -1 => "roles which have become active since start of $lctype",
  181:                   2592000 => 'roles which have become active since last month',
  182:                    604800 => 'roles which have become active since last week',
  183:                     86400 => 'roles which have become active since yesterday',
  184:                    );
  185:     my %oldroles = (
  186:                        -1 => "roles which expired since start of $lctype",
  187:                   2592000 => 'roles which expired since last month',
  188:                    604800 => 'roles which expired since last week',
  189:                     86400 => 'roles which expired since yesterday',
  190:                    );
  191:     my %interval_titles = (
  192:         versions => \%versions,
  193:         newroles => \%newroles,
  194:         oldroles => \%oldroles,
  195:     );
  196:     my %initpage = &Apache::lonlocal::texthash (
  197:                      firstres => "first resource in the $lctype",
  198:                      whatsnew => "What's New Page",
  199:                      userpref => 'your general user preferences',
  200:                      coursespecific => "specific setting for this $lctype",
  201:                    );
  202:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
  203:     my $crs = $env{'course.'.$env{'request.course.id'}.'.num'};
  204: 
  205:     if (($command eq 'chgthreshold') 
  206: 	&& $checkallowed->{'abovethreshold'}) {
  207:         &display_threshold_config($r,$refpage,\%threshold_titles,
  208:                                                                    $cdom,$crs);
  209:     } elsif (($command eq 'chginterval') 
  210: 	     && $checkallowed->{'versionchanges'}) {
  211:         &display_interval_config($r,$refpage,\%interval_titles,'versions');
  212:     } elsif (($command eq 'chgdisc') 
  213: 	     && $checkallowed->{'coursediscussion'}) {
  214:         &display_discussion_config($r,$refpage);
  215:     } elsif ($command eq 'courseinit') {
  216:         &courseinit_config($r,$refpage,\%initpage);
  217:     } elsif (($command eq 'chgnewroleinterval')
  218:              && $checkallowed->{'newroles'}) {
  219:         &display_interval_config($r,$refpage,\%interval_titles,'newroles');
  220:     } elsif (($command eq 'chgoldroleinterval')
  221:              && $checkallowed->{'oldroles'}) {
  222:         &display_interval_config($r,$refpage,\%interval_titles,'oldroles');
  223:     } else {
  224:         &display_actions_box($r,$command,$refpage,\%threshold_titles,
  225:                         \%interval_titles,\%initpage,$cdom,$crs,$checkallowed);
  226:     }
  227:     my $end_page = &Apache::loncommon::end_page();
  228:     $r->print(<<END_OF_BLOCK);
  229:   </td>
  230:  </tr>
  231: </table><br />
  232: $end_page
  233: END_OF_BLOCK
  234: }
  235: 
  236: #-------------------------------
  237: # display_header
  238: #
  239: # Display the header information and set
  240: # up the HTML
  241: #-------------------------------
  242: 
  243: sub display_header {
  244:     my ($command,$checkallowed) = @_;
  245:     
  246:     my $scripttag;
  247:     unless ($command eq 'chgthreshold' || $command eq 'chginterval' || 
  248:             $command eq 'chgoldroleinterval' || $command eq 'chgnewroleinterval') {
  249:        $scripttag = <<"END";
  250: <script type="text/javascript">
  251: function change_display(caller,change) {
  252:     caller.value = change;
  253:     document.visible.submit();
  254: }
  255: 
  256: function changeAll(change) {
  257: END
  258:         foreach my $item (keys(%{$checkallowed})) {
  259: 	    if ($item =~ /_section$/) { next; }
  260:             if ($$checkallowed{$item}) {
  261:                 $scripttag.='document.visible.display_'.$item.'.value=change'.
  262:                             "\n";
  263:             }
  264:         }
  265:         $scripttag.='document.visible.submit();
  266: }
  267: </script>
  268: ';
  269:     }
  270:     my $course_type=&Apache::loncommon::course_type();
  271:     return &Apache::loncommon::start_page("What's New?",
  272: 					  $scripttag);
  273: }
  274: 
  275: #-------------------------------
  276: # display_actions_box
  277: #
  278: # Display the action items
  279: #
  280: #-------------------------------
  281:                                                                                 
  282: sub display_actions_box {
  283:     my ($r,$command,$refpage,$threshold_titles,$interval_titles,$initpage,
  284:         $cdom,$crs,$checkallowed) = @_;
  285:     my $udom = $env{'user.domain'};
  286:     my $uname = $env{'user.name'};
  287:     my $cid = $env{'request.course.id'};
  288:     my $crstype = &Apache::loncommon::course_type();
  289:     my $lctype = lc($crstype);
  290:     my %stulabel = (
  291:                     'Course' => 'students',
  292:                     'Community' => 'members',
  293:                    );
  294:     my %lt = &Apache::lonlocal::texthash(
  295:                  'yacc' => 'You are accessing an invalid course',
  296:                  'gtfr' => 'Go to first resource',
  297:                  'hial' => 'Hide all',
  298:                  'shal' => 'Show all',
  299:     );
  300: 
  301:     my %unread = ();
  302:     my %ungraded = ();
  303:     my %bombed = ();
  304:     my %triggered = ();
  305:     my %changed = ();
  306:     my @newmsgs = ();
  307:     my @critmsgs = ();
  308:     my @newdiscussions = ();
  309:     my @tograde = ();
  310:     my @bombs = ();
  311:     my @warnings = ();
  312:     my $msgcount = 0;
  313:     my $critmsgcount = 0;
  314:     my $expirecount;
  315:     my %expired;
  316:     my $activecount;
  317:     my %activated;
  318:     my %res_title = ();
  319:     my %show = ();
  320:     my $needitems = 0;
  321:     my $boxcount = 0;
  322: 
  323:     my $result;
  324:     if ($command eq 'newcourseinit') {
  325:         $result = &store_courseinit_setting($uname,$udom,$cid,$initpage);
  326:     }
  327: 
  328:     my %threshold = ();
  329:     my %pagedesc = &Apache::lonlocal::texthash (
  330:                      firstres => 'First resource',
  331:                      whatsnew => "What's New Page",
  332:                      userpref => 'user preference',
  333:                      coursespecific => $lctype.' only',
  334:                      default => 'default',
  335:                    );
  336: 
  337:     my ($initcontrol,$initdisp) = &curr_courseinit();
  338:     my $currinit = $pagedesc{$initdisp}.' ('.$pagedesc{$initcontrol}.')';
  339: 
  340:     unless ($cid) {
  341:         $r->print('<p><span style="text-align: center; font-weight: bold;">'.$lt{'yacc'}.'</span></p>');
  342:         return;
  343:     }
  344: 
  345:     my $header = '';
  346:     if ($refpage eq 'start') {
  347:         if (tie(my %bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
  348:             &GDBM_READER(),0640)) {
  349:             my $furl=&HTML::Entities::encode($bighash{'first_url'},'"<>&');
  350:             untie(%bighash);
  351:             $header .= '<b><a href="'.$furl.'">'.$lt{'gtfr'}.
  352:                   '</a></b><br />';
  353:         }
  354:     }
  355:     $header .= &mt('Page set to be displayed after you have selected a role in this '.$lctype).'.'
  356:               .' <span class="LC_nobreak">'
  357:               .&mt('Currently: [_1].','<i>'.$currinit.'</i>')
  358:               .'&nbsp;&nbsp;'
  359:               .&mt('[_1]Change[_2] for just [_3]this '.$lctype.'[_4] or for [_5]all your courses/communities[_6].'
  360:                   ,'<b>'
  361:                   ,'</b>'
  362:                   ,'<a href="/adm/whatsnew?command=courseinit&amp;refpage='.$refpage.'">'
  363:                   ,'</a>'
  364:                   ,'<a href="/adm/preferences?action=changecourseinit&amp;refpage='.$refpage.'">'
  365:                   ,'</a>')
  366:               .' </span>';
  367: 
  368:     $r->print(&Apache::loncommon::head_subbox($header));
  369: 
  370:     if ($command eq 'reset') {
  371:         $result = &process_reset($cdom,$crs);
  372:     } elsif ($command eq 'update') {
  373:         $result = &process_update($uname,$udom,$threshold_titles);
  374:     } elsif ($command eq 'newinterval') {
  375:         $result = &store_interval_setting($uname,$udom,$cid,$interval_titles);
  376:     } elsif ($command eq 'newdiscconf') {
  377:         $result = &store_discussion_setting($uname,$udom,$cid);
  378:     }
  379: 
  380:     my $store_result=&store_display_settings($uname,$udom,$cid,$checkallowed);
  381: 
  382:     unless ($store_result eq 'ok') { 
  383:         &Apache::lonnet::logthis('Error saving whatsnew settings: '.
  384:             $store_result.' for '.'user '.$uname.':'.$udom.' in '.$lctype.' '.$cid);
  385:         $result .= '<span class="LC_error">'
  386:                   .&mt('Unable to save visibility settings due to [_1]',
  387:                        $store_result)
  388:                   .'</span>';
  389:     }
  390: 
  391:     if ($result) {
  392:         $r->print($result.'<hr />');
  393:     }
  394:     $r->rflush();
  395: 
  396:     my (%timediff,%interval);
  397:     my %display_settings = &get_display_settings($uname,$udom,$cid);
  398:     $timediff{'versions'} = $display_settings{$cid.':interval'};
  399:     unless (defined($timediff{'versions'})) { $timediff{'versions'} = 604800; } 
  400:     $interval{'versions'} = $interval_titles->{'versions'}->{$timediff{'versions'}};
  401: 
  402:     my %headings = &Apache::lonlocal::texthash(
  403:                 coursediscussion => 'Unread '.$lctype.' discussion posts',
  404:                 handgrading      => 'Problems requiring handgrading',
  405:                 haserrors        => 'Problems with errors',
  406:                 coursenormalmail => 'New '.$lctype.' messages',
  407:                 coursecritmail   => 'New critical messages in '.$lctype,
  408:     );
  409: 
  410:     if ($timediff{'versions'} == -1) {
  411:         $headings{'versionchanges'} = &mt('Resources in '.$lctype.' with version changes since start of '.$lctype);
  412:     } elsif ($timediff{'versions'} == 2592000) {
  413:         $headings{'versionchanges'} = &mt('Resources in '.$lctype.' with version changes since last month');
  414:     } elsif ($timediff{'versions'} == 604800) {
  415:         $headings{'versionchanges'} = &mt('Resources in '.$lctype.' with version changes since last week');
  416:     } elsif ($timediff{'versions'} == 86400) {
  417:         $headings{'versionchanges'} = &mt('Resources in '.$lctype.' with version changes since yesterday');
  418:     }
  419: 
  420:     $timediff{'oldroles'} = $display_settings{$cid.':oldroleinterval'};
  421:     unless (defined($timediff{'oldroles'})) { $timediff{'oldroles'} = 604800; }
  422:     $interval{'oldroles'} = $interval_titles->{'oldroles'}->{$timediff{'oldroles'}};
  423: 
  424:     if ($timediff{'oldroles'} == -1) {
  425:         $headings{'oldroles'} = &mt('Roles for which access to '.$lctype.' has expired since start of '.$lctype);
  426:     } elsif ($timediff{'oldroles'} == 2592000) {
  427:         $headings{'oldroles'} = &mt('Roles for which access to '.$lctype.' has expired since last month');
  428:     } elsif ($timediff{'oldroles'} == 604800) {
  429:         $headings{'oldroles'} = &mt('Roles for which access to '.$lctype.' has expired since last week');
  430:     } elsif ($timediff{'oldroles'} == 86400) {
  431:         $headings{'oldroles'} = &mt('Roles for which access to '.$lctype.' has expired since yesterday');
  432:     }
  433: 
  434:     $timediff{'newroles'} = $display_settings{$cid.':newroleinterval'};
  435:     unless (defined($timediff{'newroles'})) { $timediff{'newroles'} = 604800; }
  436:     $interval{'newroles'} = $interval_titles->{'newroles'}->{$timediff{'newroles'}};
  437: 
  438:     if ($timediff{'newroles'} == -1) {
  439:         $headings{'newroles'} = &mt('Roles for which access to '.$lctype.' has become available since start of '.$lctype);
  440:     } elsif ($timediff{'newroles'} == 2592000) {
  441:         $headings{'newroles'} = &mt('Roles for which access to '.$lctype.' has become available since last month');
  442:     } elsif ($timediff{'newroles'} == 604800) {
  443:         $headings{'newroles'} = &mt('Roles for which access to '.$lctype.' has become available since last week');
  444:     } elsif ($timediff{'newroles'} == 86400) {
  445:         $headings{'newroles'} = &mt('Roles for which access to '.$lctype.' has become available since yesterday');
  446:     }
  447: 
  448:     my $now = time;
  449:     if ($timediff{'versions'} == -1) {
  450:         $timediff{'versions'} = time;
  451:     }
  452:     my $starttime = $now - $timediff{'versions'};
  453: 
  454:     if ($timediff{'newroles'} == -1) {
  455:         $timediff{'newroles'} = time;
  456:     }
  457:     my $activatedstart = $now - $timediff{'newroles'};
  458: 
  459:     if ($timediff{'oldroles'} == -1) {
  460:         $timediff{'oldroles'} = time;
  461:     }
  462:     my $expiredstart = $now - $timediff{'oldroles'};
  463: 
  464:     my $countunread = $display_settings{$cid.':countunread'};
  465:     unless (defined($countunread)) {
  466:         $countunread = 'on';
  467:     }
  468:     if ($$checkallowed{'abovethreshold'}) {
  469:         &get_curr_thresholds(\%threshold,$uname,$udom,$cid,$cdom,$crs);
  470:     }
  471: 
  472:     $headings{'abovethreshold'} = 
  473: 	&mt('(Problems with av. attempts &ge; [_1] or deg. difficulty &ge; [_2]) [_3] and total number of '.$stulabel{$crstype}.' with submissions &ge; [_4]',
  474: 	    $threshold{'av_attempts'},$threshold{'degdiff'},
  475: 	    '<br />',$threshold{'numstudents'});
  476: 
  477:     my @actionorder = ('handgrading','haserrors','abovethreshold','versionchanges','coursediscussion','coursenormalmail','coursecritmail','newroles','oldroles');
  478: 
  479:     foreach my $key (keys(%{$checkallowed})) {
  480: 	if ($key =~ /_section$/) { next; }
  481:         $show{$key} = 0;
  482:         if ($$checkallowed{$key}) {
  483:             unless ($display_settings{$cid.':'.$key} eq 'hide') {
  484:                 $show{$key} = 1;
  485:             }
  486:         }
  487:     }
  488: 
  489:     foreach my $item (@actionorder) {
  490:         unless ($item eq 'coursenormalmail' || $item eq 'coursecritmail' ||
  491:                 $item eq 'newroles' || $item eq 'oldroles') {
  492:             if ($show{$item}) {
  493:                 $needitems = 1;
  494:                 last;
  495:             }
  496:         }
  497:     }
  498: 
  499:     my $itemserror;
  500:     if ($needitems) {
  501:         $itemserror = &getitems(\%unread,\%ungraded,\%bombed,\%triggered,\%changed,\@newdiscussions,\@tograde,\@bombs,\@warnings,\%threshold,$cdom,$crs,\%res_title,\%show,$starttime,$countunread);
  502:     }
  503:     if ($show{'coursenormalmail'}) {
  504:         $msgcount = &getnormalmail(\@newmsgs);
  505:     }
  506:     if ($show{'coursecritmail'}) {
  507:         $critmsgcount = &getcritmail(\@critmsgs);
  508:     }
  509:     if ($show{'oldroles'}) {
  510:         $expirecount = &getexpired(\%expired,$expiredstart,'previous');
  511:     }
  512:     if ($show{'newroles'}) {
  513:         $activecount = &getactivated(\%activated,$activatedstart,'active');
  514:     }
  515:     $r->print(qq|<a href="javascript:changeAll('hide');">$lt{'hial'}</a>
  516:      &nbsp;&nbsp;<a href="javascript:changeAll('show');">$lt{'shal'}</a>
  517:      <form method="post" name="visible" action="/adm/whatsnew">\n|);
  518:     foreach my $item (keys(%{$checkallowed})) {
  519: 	if ($item =~ /_section$/) { next; }
  520:         if ($$checkallowed{$item}) {
  521:             $r->print('<input type="hidden" name="display_'.$item.'" />'."\n");
  522:         }
  523:     }
  524: 
  525:     $r->print('<input type="hidden" name="refpage" value="'.$refpage.'" /></form><table class="LC_double_column"><tr><td class="LC_left_col">');
  526: 
  527:     my $displayed = 0;
  528:     my $totalboxes = 0;
  529:     foreach my $key (keys(%{$checkallowed})) {
  530: 	if ($key =~ /_section$/) { next; }
  531: 	if ($key eq 'whatsnew' ) { next; } # whatsnew check creates no box
  532:         if ($$checkallowed{$key}) {
  533:             $totalboxes ++;
  534:         }
  535:     }
  536:     my $halfway = 4;
  537: #    my $halfway = int($totalboxes/2) + $totalboxes%2;
  538:     foreach my $actionitem (@actionorder) {
  539:         if ($$checkallowed{$actionitem}) {
  540:             if ($displayed == $halfway) {
  541:                 $r->print('</td><td>&nbsp;</td><td class="LC_right_col" >');
  542:             }
  543:             &display_launcher($r,$actionitem,$refpage,$checkallowed,\%show,\%headings,\%res_title,\@tograde,\%ungraded,\@bombs,\%bombed,\%changed,\@warnings,\%triggered,\@newdiscussions,\%unread,$msgcount,\@newmsgs,$critmsgcount,\@critmsgs,\%interval,$countunread,\%expired,$expirecount,\%activated,$activecount,$crstype,$itemserror);
  544:             $displayed ++; 
  545:         }
  546:     }
  547:     $r->print('
  548:       </td>
  549:     </tr>
  550:    </table>
  551: ');
  552: }
  553: 
  554: #-------------------------------
  555: # display_threshold_config
  556: #
  557: # Display the threshold setting screen 
  558: #
  559: #-------------------------------
  560:                                                                                 
  561: sub display_threshold_config {
  562:     my ($r,$refpage,$threshold_titles,$cdom,$crs) = @_;
  563:     my $uname = $env{'user.name'};
  564:     my $udom = $env{'user.dom'};
  565:     my $cid = $env{'request.course.id'};
  566:     my %threshold = ();
  567:     my $rowColor1 = "#ffffff";
  568:     my $rowColor2 = "#eeeeee";
  569:     my $rowColor;
  570: 
  571:     my @thresholditems = ("av_attempts","degdiff","numstudents");
  572:     my %threshold_titles = &Apache::lonlocal::texthash(
  573:                          av_attempts => 'Average number of attempts',
  574:                          degdiff => 'Degree of difficulty',
  575:                          numstudents => 'Total number of students with submissions',
  576:                          );
  577:     &get_curr_thresholds(\%threshold,$uname,$udom,$cid,$cdom,$crs);
  578: 
  579:     $r->print('<br /><form name="thresholdform" method="post" action="/adm/whatsnew">'.
  580:               &Apache::loncommon::start_data_table().
  581:               &Apache::loncommon::start_data_table_header_row().
  582:              '<th>'.&mt('Threshold Name').'</th>'."\n".
  583:              '<th>'.&mt('Current value').'</th>'."\n".
  584:              '<th>'.&mt('Change?').'</th>'."\n".
  585:               &Apache::loncommon::end_data_table_header_row());
  586:     foreach my $type (@thresholditems) {
  587:         my $parameter = $env{'request.course.id'}.':threshold_'.$type;
  588: # onchange is javascript to automatically check the 'Set' button.
  589:         my $onchange = 'onFocus="javascript:window.document.forms'.
  590:               "['thresholdform'].elements['".$parameter."_setparmval']".
  591:               '.checked=true;"';
  592:         $r->print(&Apache::loncommon::start_data_table_row()."\n".
  593:                  '<td>'.$threshold_titles{$type}.'</td>'."\n".
  594:                  '<td>'.&Apache::lonhtmlcommon::textbox($parameter.'_value',
  595:                                             $threshold{$type},
  596:                                             10,$onchange).'</td>'."\n".
  597:                  '<td>'.
  598:                  &Apache::lonhtmlcommon::checkbox($parameter.'_setparmval').
  599:                  '</td>'."\n".
  600:                  &Apache::loncommon::end_data_table_row());
  601:     }
  602:     $r->print(&Apache::loncommon::end_data_table()."\n".
  603:           '<br /><input type="submit" name="threshold" value="'.&mt('Save').'" />
  604:                  <input type="hidden" name="command" value="update" />
  605:                  <input type="hidden" name="refpage" value="'.$refpage.'" />
  606:                </form>');
  607: }
  608: 
  609: #-------------------------------
  610: # display_interval_config
  611: #
  612: # Display the interval setting screen
  613: #
  614: #-------------------------------
  615:                                                                                    
  616: sub display_interval_config {
  617:     my ($r,$refpage,$interval_titles,$context) = @_;
  618:     my $setting = 'interval';
  619:     if ($context eq 'oldroles') {
  620:         $setting = 'oldroleinterval';
  621:     } elsif ($context eq 'newroles') {
  622:         $setting = 'newroleinterval'; 
  623:     }
  624:     my $lctype = lc(&Apache::loncommon::course_type());
  625:     my $current = &get_current($env{'user.name'},$env{'user.domain'},
  626:                                 $env{'request.course.id'},$setting);
  627:     if ($context eq 'oldroles') {
  628:         $r->print('<br />'.&mt('Choose the time window to use to display roles for which access to the '.$lctype.' expired.').'<br />');
  629:     } elsif ($context eq 'newroles') {
  630:         $r->print('<br />'.&mt('Choose the time window to use to display roles for which access to the '.$lctype.' became available.').'<br />');
  631:     } else {
  632:         $r->print('<br />'.&mt('Choose the time window to use to display resources in the '.$lctype.' with version changes.').'<br />');
  633:     }
  634:     unless ($current eq '') {
  635:         if (ref($interval_titles->{$context}) eq 'HASH') {
  636:             $r->print(' '.&mt('Current value is "[_1]".','<b>'.
  637:                       $interval_titles->{$context}->{$current}.'</b>').'<br />');
  638:         }
  639:     }
  640:     $r->print('<br />
  641: <form method="post" name="intervalswitch" action="/adm/whatsnew">
  642: <input type="hidden" name="command" value="newinterval" />
  643: <input type="hidden" name="intervaltype" value="'.$context.'" />
  644: <input type="hidden" name="refpage" value="'.$refpage.'" />'.
  645: &mt('Display:').' 
  646: <select name="interval">
  647: <option value="" selected="selected">'.&mt('Select').'</option>
  648: ');
  649:     if (ref($interval_titles) eq 'HASH') {
  650:         if (ref($interval_titles->{$context}) eq 'HASH') {
  651:             foreach my $key (reverse sort ({$a cmp $b} (keys(%{$interval_titles->{$context}})))) {
  652:                 $r->print('<option value="'.$key.'">'.&mt($interval_titles->{$context}->{$key}).
  653:                           '</option>'."\n");
  654:             }
  655:         }
  656:     }
  657:     $r->print('</select>&nbsp;&nbsp;
  658:                <input type="submit" name="display" value="'.
  659:                &mt('Save').'" /></form>');
  660:     return;
  661: }
  662: 
  663: #----------------------------------------------
  664: # display_discussion_config
  665: #
  666: # Display the discussion display setting screen
  667: #
  668: #----------------------------------------------
  669:                                                                                   
  670: sub display_discussion_config {
  671:     my ($r,$refpage) = @_;
  672:     my $current = &get_current($env{'user.name'},$env{'user.domain'},
  673:                                 $env{'request.course.id'},'countunread');
  674:     if ($current eq '') {
  675:         $current = 'on';
  676:     }
  677:     my %opposite = ( 
  678:                       'on' => 'off',
  679:                       'off' => 'on',
  680:                     );
  681:     $r->print('<script type="text/javascript">
  682: function toggle_countunread(choice) {
  683:     if (choice == "unchanged") {
  684:         document.discussionswitch.command.value = "";
  685:     }
  686:     document.discussionswitch.submit();
  687: }
  688: </script>');
  689:     $r->print('<br />'
  690:              .&mt('Choose whether or not to display a count of the number of new posts for each resource or discussion board which has unread posts.')
  691:              .'<br />'
  692:              .&mt("This can increase the time taken to gather data for the [_1]What's New Page[_2] by a few seconds.",'<i>','</i>')
  693:              .'&nbsp;&nbsp;'
  694:              .&mt('Currently set to [_1].','<b>'.$current.'</b>.')
  695:     );
  696:     $r->print('<br /><br />
  697: <form method="post" name="discussionswitch" action="/adm/whatsnew">
  698: <input type="hidden" name="command" value="newdiscconf" />
  699: <input type="hidden" name="refpage" value="'.$refpage.'" />
  700: <input type="hidden" name="countunread" value="'.$opposite{$current}.'" />
  701: ');
  702:     $r->print('<br/>
  703:                <input type="button" name="display" value="'.
  704:                &mt('Change to [_1]',&mt($opposite{$current})).'" 
  705:                onclick="javascript:toggle_countunread('."'change'".')" />'.
  706:                ('&nbsp;' x7).
  707:                '<input type="button" name="nochange" value="'.
  708:                &mt("No change").'" 
  709:                onclick="javascript:toggle_countunread('."'unchanged'".')" />
  710:                </form>');
  711:     return;
  712: }
  713: 
  714: #---------------------------------------------------
  715: # courseinit_config
  716: #
  717: # Set page displayed when course loads after 
  718: # selecting a role in the course from the roles page. 
  719: #
  720: #---------------------------------------------------
  721: 
  722: sub courseinit_config {
  723:     my ($r,$refpage,$initpage) = @_;
  724:     my ($control,$current) = &curr_courseinit();
  725:     my @chgstate = ('userpref','coursespecific');
  726:     my @chgentry = ('firstres','whatsnew');
  727:     my $lctype = lc(&Apache::loncommon::course_type());
  728:     my %lt = &Apache::lonlocal::texthash(
  729:                              'chwp' => "Choose which page will be displayed when you enter this $lctype after selecting a role.",
  730:                              'cuva' => 'Current value is determined by',
  731:                              'anis' => 'and is set to display',
  732:                              'padc' => 'Page display controlled by',
  733:                              'chce' => 'Choose '.$lctype.' entry',
  734:                              'moce' => 'Save',
  735:     );
  736:     $r->print(<<"END"); 
  737: <br />$lt{'chwp'}
  738: <br />$lt{'cuva'}: <b>
  739: $$initpage{$control}</b> $lt{'anis'} <b>
  740: $$initpage{$current}</b>.<br /><br />
  741: <form method="post" name="courseinitswitch" action="/adm/whatsnew">
  742: <input type="hidden" name="command" value="newcourseinit" />
  743: <input type="hidden" name="refpage" value="$refpage" />
  744: $lt{'padc'}:&nbsp;&nbsp;
  745: END
  746:     foreach my $choice (@chgstate) {
  747:         my $chkstring;
  748:         if ($choice eq $control) {
  749:             $chkstring = ' checked="checked" ';
  750:         }  
  751:         $r->print('<span class="LC_nobreak"><label><input type="radio" name="courseinit_control" value="'.
  752:                    $choice.'"'.$chkstring.'/>'.$$initpage{$choice}.
  753:                    '&nbsp;&nbsp;</label></span>');
  754:     }
  755:     $r->print('<br /><br />'.&mt('If').' '.$$initpage{'coursespecific'}.
  756:               ' - <br />'.$lt{'chce'}.": \n");
  757:     foreach my $choice (@chgentry) {
  758:         my $chkstring;
  759:         if (($choice eq $current) && ($control eq 'coursespecific')) {
  760:             $chkstring = ' checked="checked" ';
  761:         }
  762:         $r->print('<span class="LC_nobreak"><label><input type="radio" name="courseinit_page" value="'.
  763:                   $choice.'"'.$chkstring.'/>'.$$initpage{$choice}.
  764:                   '&nbsp;&nbsp;</label></span>');
  765:     }
  766:     $r->print('<br /><br /><input type="submit" name="display" value="'.
  767:                $lt{'moce'}.'" /></form>');
  768:     return;
  769: }
  770: 
  771: sub curr_courseinit {
  772:     my $current = &get_current($env{'user.name'},$env{'user.domain'},
  773:                                 $env{'request.course.id'},'courseinit');
  774:     my $control;
  775:     if ($current) {
  776:         $control = 'coursespecific';
  777:     } else {
  778:         $control = 'userpref';
  779:         my %userenv = &Apache::lonnet::get('environment',
  780:                                                       ['course_init_display']);
  781:         if (exists($userenv{'course_init_display'})) {
  782:             $current = $userenv{'course_init_display'};
  783:         }
  784:         unless ($current) {
  785:             $current = 'whatsnew';
  786:         }
  787:     }
  788:     return ($control,$current);
  789: }
  790: 
  791: sub display_launcher {
  792:     my ($r,$action,$refpage,$checkallowed,$show,$headings,$res_title,
  793:         $tograde,$ungraded,$bombs,$bombed,$changed,$warnings,$triggered,
  794:         $newdiscussions,$unread,$msgcount,$newmsgs,$critmsgcount,$critmsgs,
  795:         $interval,$countunread,$expired,$expirecount,$activated,$activecount,
  796:         $crstype,$itemserror) = @_;
  797: 
  798:     if ($$checkallowed{$action}) {
  799:         &start_box($r,$show,$headings,$action,$refpage,$action);
  800:         if ($$show{$action}) {
  801:             if ($action eq 'handgrading') {    # UNGRADED ITEMS
  802:                 &display_handgrade($r,$tograde,$ungraded,$itemserror);
  803:             } elsif ($action eq 'haserrors') { # BOMBS
  804:                 &display_haserrors($r,$bombs,$bombed,$res_title,$itemserror);
  805:             } elsif ($action eq 'versionchanges') { # VERSION CHANGES
  806:                 &display_versionchanges($r,$changed,$res_title,$interval->{'versions'},$itemserror);
  807:             } elsif ($action eq 'abovethreshold') { # DEGDIFF/AV. TRIES TRIGGERS
  808:                 &display_abovethreshold($r,$refpage,$warnings,$triggered,
  809: 					$res_title,$itemserror);
  810:             } elsif ($action eq 'coursediscussion') { # UNREAD COURSE DISCUSSION
  811:                 &display_coursediscussion($r,$newdiscussions,$unread,
  812:                                 $countunread,$res_title,$itemserror);
  813:             } elsif ($action eq 'coursenormalmail') { # NORMAL MESSAGES
  814:                 &display_coursenormalmail($r,$msgcount,$newmsgs);
  815:             } elsif ($action eq 'coursecritmail') { # CRITICAL MESSAGES
  816:                 &display_coursecritmail($r,$critmsgcount,$critmsgs);
  817:             } elsif ($action eq 'newroles') { # ACTIVATED ROLES
  818:                 &display_rolechanges($r,$activecount,$activated,$interval->{'newroles'},
  819:                                      $crstype);
  820:             } elsif ($action eq 'oldroles') { # EXPIRED ROLES
  821:                 &display_rolechanges($r,$expirecount,$expired,$interval->{'oldroles'},
  822:                                      $crstype);
  823:             }
  824:         }
  825:         &end_box($r);
  826:     }
  827:     return;
  828: }
  829: 
  830: sub getitems {
  831:     my ($unread,$ungraded,$bombed,$triggered,$changed,$newdiscussions,
  832:         $tograde,$bombs,$warnings,$threshold,$cdom,$crs,$res_title,$show,
  833:         $starttime,$countunread) = @_;
  834:     my $navmap = Apache::lonnavmaps::navmap->new();
  835:     if (!defined($navmap)) {
  836:         my $itemserror = '<span class="LC_warning">'.&mt('An error occurred retrieving information about the course.').'<br />'.&mt('It is recommended that you [_1]re-select the course[_2].','<a href="/adm/roles">','</a>').'</span>';
  837:         return $itemserror;
  838:     }
  839:     # force retrieve Resource to seed the part id cache we'll need it later
  840:     my @allres=$navmap->retrieveResources(undef,
  841:                      sub {if ($_[0]->is_problem) { $_[0]->parts();} return 1;});
  842:     my %resourcetracker;
  843:     my $discussiontime;
  844: 
  845: # Resource version changes
  846:     if ($$show{'versionchanges'}) {
  847:         &checkversions($cdom,$crs,$navmap,$changed,$starttime);
  848:     }
  849: 
  850:     if ($$show{'abovethreshold'}) {
  851:         %resourcetracker =  &Apache::lonnet::dump('nohist_resourcetracker',
  852:                                                                    $cdom,$crs);
  853:     }
  854: 
  855:     foreach my $resource (@allres) {
  856:         my $result = '';
  857:         my $applies = 0;
  858:         my $symb = $resource->symb();
  859:         %{$$bombed{$symb}} = ();
  860:         %{$$ungraded{$symb}} = ();
  861:         %{$$triggered{$symb}} = ();
  862:         $$triggered{$symb}{numparts} = 0;
  863:         if ($resource->encrypted()) {
  864:             $$triggered{$symb}{'enclink'} = $resource->link();
  865:             $$triggered{$symb}{'encsymb'} = $resource->shown_symb();
  866:         }
  867:         my $title = $resource->compTitle();
  868:         $$res_title{$symb} = $title;
  869:         my $ressymb = $resource->wrap_symb();
  870: 
  871: # Check if there are unread discussion postings
  872:         if ($$show{'coursediscussion'}) {
  873:             &check_discussions($resource,$symb,$ressymb,$title,
  874: 			       $newdiscussions,$unread,$countunread);
  875:         }
  876: 
  877: # Check for ungraded problems
  878:         if ($resource->is_problem()) {
  879:             if ($$show{'handgrading'}) {
  880:                 &check_handgraded($resource,$symb,$title,$cdom,$crs,$ungraded,
  881:                                                                      $tograde);
  882:             }
  883:         }
  884: 
  885: # Check for bombs
  886:         if ($$show{'haserrors'}) {
  887:             &check_bombed($resource,$symb,$title,$bombs,$bombed);
  888:         }
  889: 
  890: # Maxtries and degree of difficulty for problem parts, unless handgradeable
  891:         if ($$show{'abovethreshold'}) {  
  892:             &check_thresholds($resource,$symb,\%resourcetracker,
  893: 			      $triggered,$threshold,$warnings);
  894:         }
  895: 
  896:     }
  897:     return; 
  898: }
  899: 
  900: sub check_discussions {
  901:     my ($resource,$symb,$ressymb,$title,$newdiscussions,$unread,
  902: 	$countunread) = @_;
  903: 
  904:     if (!$resource->hasDiscussion()) { return; }
  905: 
  906:     %{$$unread{$ressymb}} = ();
  907:     $$unread{$ressymb}{'title'} = $title;
  908:     $$unread{$ressymb}{'symb'} = $symb;
  909:     if ($resource->encrypted()) {
  910:         $$unread{$ressymb}{'enclink'} = $resource->link();
  911:         $$unread{$ressymb}{'encsymb'} = $resource->shown_symb();
  912:     }
  913:     push(@{$newdiscussions}, $ressymb);
  914:     
  915:     $$unread{$ressymb}{'lastpost'} = $resource->last_post_time();
  916:     
  917:     if ($countunread eq 'on') {
  918: 	$$unread{$ressymb}{'unreadcount'} = 
  919:                             $resource->discussion_info('unread');
  920:     }
  921: }
  922: 
  923: sub check_handgraded {
  924:     my ($resource,$symb,$title,$cdom,$cnum,$ungraded,$tograde) = @_;
  925:     if ($resource->is_problem()) {
  926:         my ($map,$ind,$url)=&Apache::lonnet::decode_symb($symb);
  927:         my $partlist=$resource->parts();
  928:         my $handgradeable;
  929:         foreach my $part (@$partlist) {
  930:             if ($resource->handgrade($part) eq 'yes') {
  931:                 $handgradeable=1; last;
  932:             }
  933:         }
  934:         if ($handgradeable) {
  935:             my @ungraded = &Apache::bridgetask::get_queue_symb_status(
  936:                                              'gradingqueue',$symb,$cdom,$cnum);
  937:             if (@ungraded > 0) {
  938:                 $$ungraded{$symb}{count} = scalar(@ungraded);
  939:                 $$ungraded{$symb}{title} = $title;
  940:                 if ($resource->encrypted()) {
  941:                     $$ungraded{$symb}{'enclink'} = $resource->link();
  942:                     $$ungraded{$symb}{'encsymb'} = $resource->shown_symb();
  943:                 }
  944:                 push(@{$tograde},$symb);
  945:             }
  946:         }
  947:     }
  948: }
  949: 
  950: sub check_bombed {
  951:     my ($resource,$symb,$title,$bombs,$bombed) = @_;
  952:     if ($resource->getErrors()) {
  953:         my $errors = $resource->getErrors();
  954:         $errors =~ s/^,//;
  955:         my @bombs = split(/,/, $errors);
  956:         my $errorcount = scalar(@bombs);
  957:         my $errorlink = '<a href="/adm/email?display='.
  958:                         &escape($bombs[0]).'">'.
  959:                         $title.'</a>';
  960:         $$bombed{$symb}{errorcount} = $errorcount;
  961:         $$bombed{$symb}{errorlink} = $errorlink;
  962:         push(@{$bombs}, $symb);
  963:     }
  964: }
  965: 
  966: sub check_thresholds {
  967:     my ($resource,$symb,$resourcetracker,$triggered,$threshold,$warnings) = @_;
  968: # Compile maxtries and degree of difficulty for problem parts, unless handgradeable
  969:     my @parts = @{$resource->parts()};
  970:     my %stats;
  971:     my %lastreset = ();
  972:     my $warning = 0;
  973:     foreach my $part (@parts) {
  974:         if ($resource->handgrade($part) eq 'yes') {
  975:             next;
  976:         }
  977:         if ($resource->is_anonsurvey($part)) {
  978:             next;
  979:         }
  980:         if ($resource->is_survey($part)) {
  981:             next;
  982:         }
  983:         %{$stats{$part}} = ();
  984:         my ($attempts,$users,$corrects,$degdiff,$av_attempts);
  985:         if (exists($$resourcetracker{$symb."\0".$part."\0attempts"})) {
  986:             $attempts = $$resourcetracker{$symb."\0".$part."\0attempts"};
  987:         }
  988:         if (exists($$resourcetracker{$symb."\0".$part."\0users"})) {
  989:             $users = $$resourcetracker{$symb."\0".$part."\0users"};
  990:         }
  991:         if (exists($$resourcetracker{$symb."\0".$part."\0correct"})) {
  992:             $corrects = $$resourcetracker{$symb."\0".$part."\0correct"};
  993:         }
  994:         if ($attempts > 0) {
  995:             $degdiff =  1 - ($corrects/$attempts);
  996:             $degdiff = sprintf("%.2f",$degdiff);
  997:         }
  998:         if ($users > 0) {
  999:             $av_attempts = $attempts/$users;
 1000:             $av_attempts = sprintf("%.2f",$av_attempts);
 1001:         }
 1002:         if ((($degdiff ne '' && $degdiff >= $$threshold{'degdiff'}) || ($av_attempts ne '' && $av_attempts >= $$threshold{'av_attempts'})) && ($users >= $$threshold{'numstudents'})) {
 1003:             $stats{$part}{degdiff} = $degdiff;
 1004:             $stats{$part}{attempts} = $av_attempts;
 1005:             $stats{$part}{users} = $users;
 1006:             $lastreset{$part} = $$resourcetracker{$symb."\0".$part."\0resettime"};
 1007:             if ($lastreset{$part}) {
 1008:                 $lastreset{$part} = &Apache::lonnavmaps::timeToHumanString($lastreset{$part});
 1009:             }
 1010:             $warning = 1;
 1011:         }
 1012:     }
 1013:     if ($warning) {
 1014:         $$triggered{$symb}{title} = $resource->title;
 1015:         my $partcount = 0;
 1016:         @{$$triggered{$symb}{text}} = ();
 1017:         foreach my $part (@parts) {
 1018:             if (exists($stats{$part}{users})) {
 1019:                 my $resetname = 'reset_'.&escape($symb."\0".$part);
 1020:                 my $resettitle = 'title_'.&escape($symb."\0".$part);
 1021:                 if (@parts > 1) {
 1022:                     $$triggered{$symb}{text}[$partcount] = '
 1023:                      <td>'.&mt('part - ').$part.'</td>';
 1024:                 } else {
 1025:                     $$triggered{$symb}{text}[$partcount] = '
 1026:                      <td>'.&mt('single part').'</td>';
 1027:                 }
 1028:                 $$triggered{$symb}{text}[$partcount] .= '
 1029:                      <td>'.$stats{$part}{users}.'</td>
 1030:                      <td>'.$stats{$part}{attempts}.'</td>
 1031:                      <td>'.$stats{$part}{degdiff}.'</td>
 1032:                      <td>'.$lastreset{$part}.'</td>
 1033:                      <td><input type="checkbox" name="'.$resetname.'" /><input type="hidden" name="'.$resettitle.'" value="'.&escape($$triggered{$symb}{title}).'" /></td>';
 1034:                 $partcount ++;
 1035:             }
 1036:             $$triggered{$symb}{numparts} = $partcount;
 1037:         }
 1038:         push(@{$warnings},$symb);
 1039:     }
 1040: }
 1041: 
 1042: 
 1043: sub get_curr_thresholds {
 1044:     my ($threshold,$uname,$udom,$cid,$cdom,$crs) = @_;
 1045:     # set default values
 1046:     %$threshold = (av_attempts => 2,
 1047:                   degdiff => 0.5,
 1048:                   numstudents => 2
 1049:                   );
 1050:     my %thresholdsettings = &Apache::lonnet::dump('nohist_whatsnew',$udom,
 1051:                                                      $uname,$cid.':threshold');
 1052:     my $thresholdcount = 0;
 1053:     my ($tmp) = %thresholdsettings;
 1054:     unless ($tmp =~ /^(con_lost|error|no_such_host)/i) {
 1055:         foreach my $item (keys %{$threshold}) { 
 1056:             if (exists($thresholdsettings{$cid.':threshold_'.$item})) {
 1057:                 $$threshold{$item} = 
 1058:                              $thresholdsettings{$cid.':threshold_'.$item};
 1059:                 $thresholdcount ++;
 1060:             }
 1061:         }
 1062:     }
 1063:     if ($thresholdcount == 3) {
 1064:         return;
 1065:     }
 1066:     my %coursesettings = &Apache::lonnet::dump('environment',
 1067:                                               $cdom,$crs,'internal.threshold');
 1068:     my ($temp) = %coursesettings;
 1069:     unless ($temp =~ /^(con_lost|error|no_such_host)/i) {  
 1070:         foreach my $item (keys %{$threshold}) {
 1071:             unless (exists($thresholdsettings{$cid.':threshold_'.$item})) {
 1072:                 if (exists($coursesettings{'internal.threshold_'.$item})) {
 1073:                     $$threshold{$item} = 
 1074:                              $coursesettings{'internal.threshold_'.$item};
 1075:                 }
 1076:             }
 1077:         }
 1078:     }
 1079:     return;
 1080: }
 1081: 
 1082: sub get_current {
 1083:     my ($uname,$udom,$cid,$caller) = @_;
 1084:     my $currvalue;
 1085:     my %settings = &Apache::lonnet::dump('nohist_whatsnew',$udom,$uname,$cid.
 1086:                                                                 ':'.$caller);
 1087:     my ($tmp) = %settings;
 1088:     unless ($tmp =~ /^(con_lost|error|no_such_host)/i) {
 1089:         $currvalue = $settings{$cid.':'.$caller};
 1090:     }
 1091:     return $currvalue;
 1092: }
 1093: 
 1094: sub process_reset {
 1095:     my ($dom,$crs) = @_;
 1096:     my $result = '<b>'.&mt('Counters reset for following problems (and parts):').
 1097:                            '</b><br />';
 1098:     my @agg_types = ('attempts','users','correct');
 1099:     my %agg_titles = &Apache::lonlocal::texthash (
 1100:                      attempts => 'Number of submissions',
 1101:                      users => 'Students with submissions',
 1102:                      correct => 'Number of correct submissions',
 1103:                      );
 1104:     my @resets = ();
 1105:     my %titles = ();
 1106:     foreach my $key (keys(%env)) {
 1107:         next if ($key !~ /^form\.reset_(.+)$/);
 1108:         my $title = &unescape($env{'form.title_'.$1});
 1109:         my $reset_item = &unescape($1);
 1110:         my %curr_aggregates = &Apache::lonnet::dump('nohist_resourcetracker',$dom,$crs,$reset_item);
 1111:         my %aggregates = ();
 1112:         my ($symb,$part) = split(/\0/,$reset_item);
 1113:         foreach my $type (@agg_types) {
 1114:             $aggregates{$reset_item."\0".$type} = 0;
 1115:         }  
 1116: 	$aggregates{$reset_item."\0".'resettime'} = time;
 1117:         my $putresult = &Apache::lonnet::put('nohist_resourcetracker',\%aggregates,
 1118:                           $dom,$crs);
 1119:         if ($putresult eq 'ok') {
 1120:             $result .= $title.' -part '.$part.': ';
 1121:             my %new_aggregates = &Apache::lonnet::dump('nohist_resourcetracker',$dom,$crs,$reset_item);
 1122:             foreach my $type (@agg_types) {
 1123:                 $result .= $agg_titles{$type}.' = '.$new_aggregates{$reset_item."\0".$type}.'; ';
 1124:             }
 1125:             $result =~ s/; $//;
 1126:             $result .= '<br />';
 1127:         } else {
 1128:             $result = $title.' -part '.$part.': '.&mt('Unable to reset counters to zero due to [_1]',$putresult).'.<br />'."\n";
 1129:         }
 1130:     }
 1131:     return $result;
 1132: }
 1133: 
 1134: sub process_update {
 1135:     my ($uname,$udom,$threshold_titles) = @_;
 1136:     my $setoutput = '<b>'.&mt('Changes to threshold(s) for problem tracking:').'</b><br/><br />';
 1137:     foreach (keys %env) {
 1138:         next if ($_!~/^form\.(.+)\_setparmval$/);
 1139:         my $name  = $1;
 1140:         my $value = $env{'form.'.$name.'_value'};
 1141:         if ($name && defined($value) && ($value ne '')) {
 1142:             my $put_result = &Apache::lonnet::put('nohist_whatsnew',
 1143:                                                   {$name=>$value},$udom,$uname);
 1144:            
 1145:             my ($shortname) = ($name =~ /^\Q$env{'request.course.id'}\E:threshold_(.+)$/);
 1146:             if ($put_result eq 'ok') {
 1147:                 $setoutput.= &Apache::lonhtmlcommon::confirm_success(&mt('Set threshold for [_1] to [_2]',
 1148: 				'<b>'.$$threshold_titles{$shortname}.'</b>',
 1149: 				'<b>'.$value.'</b>').'<br />');
 1150: 	    } else {
 1151:                 $setoutput.= &Apache::lonhtmlcommon::confirm_success(&mt('Unable to set threshold for [_1] to [_2] due to [_3].',
 1152: 				'<b>'.$name.'</b>','<b>'.$value.'</b>',
 1153: 				'<tt>'.$put_result.'</tt>').'<br />',1);
 1154:             }
 1155:         }
 1156:     }
 1157:     return &Apache::loncommon::confirmwrapper($setoutput);
 1158: }
 1159: 
 1160: sub getnormalmail {
 1161:     my ($newmsgs) = @_;
 1162: # Check for unread mail in course
 1163:     my $msgcount = 0;
 1164: 
 1165:     my @messages = sort(&Apache::lonnet::getkeys('nohist_email'));
 1166:     foreach my $message (@messages) {
 1167: 	my $msgid=&escape($message);
 1168:         my ($sendtime,$shortsubj,$fromname,$fromdom,$status,$fromcid)=
 1169:             &Apache::lonmsg::unpackmsgid($msgid);
 1170:         if (($fromcid) && ($fromcid eq $env{'request.course.id'})) {
 1171:             if (defined($sendtime) && $sendtime!~/error/) {
 1172:                 if ($status eq 'new') {
 1173:                 $sendtime = &Apache::lonlocal::locallocaltime($sendtime);
 1174: 		    $msgcount ++;
 1175:                     if ($shortsubj eq '') {
 1176:                         $shortsubj = &mt('No subject');
 1177:                     }
 1178:                     push(@{$newmsgs}, {
 1179:                         msgid    => $msgid,
 1180:                         sendtime => $sendtime,
 1181:                         shortsub => $shortsubj,
 1182:                         from     => $fromname,
 1183:                         fromdom  => $fromdom
 1184:                         });
 1185:                 }
 1186:             }
 1187:         }
 1188:     }
 1189:     return $msgcount;
 1190: }
 1191: 
 1192: sub getcritmail {
 1193:     my ($critmsgs) = @_; 
 1194: # Check for critical messages in course
 1195:     my %what=&Apache::lonnet::dump('critical');
 1196:     my $result = '';
 1197:     my $critmsgcount = 0;
 1198:     foreach my $msgid (sort(keys(%what))) {
 1199:         my ($sendtime,$shortsubj,$fromname,$fromdom,$status,$fromcid)=
 1200:             &Apache::lonmsg::unpackmsgid($msgid);
 1201:         if (($fromcid) && ($fromcid eq  $env{'request.course.id'})) {
 1202:             if (defined($sendtime) && $sendtime!~/error/) {
 1203:                 $sendtime = &Apache::lonlocal::locallocaltime($sendtime);
 1204:                 $critmsgcount ++;
 1205:                 if ($shortsubj eq '') {
 1206:                     $shortsubj = &mt('No subject');
 1207:                 }
 1208:                 push(@{$critmsgs}, {
 1209:                         msgid    => $msgid,
 1210:                         sendtime => $sendtime,
 1211:                         shortsub => $shortsubj,
 1212:                         from     => $fromname,
 1213:                         fromdom  => $fromdom
 1214:                         });
 1215:             }
 1216:         }
 1217:     }
 1218:     return $critmsgcount;
 1219: }
 1220: 
 1221: sub getexpired {
 1222:     my ($rolechgs,$rolechgtime,$status) = @_;
 1223:     my $expirecount = &getrolechanges($rolechgs,$rolechgtime,$status);
 1224:     return $expirecount;
 1225: }
 1226: 
 1227: sub getactivated {
 1228:     my ($rolechgs,$rolechgtime,$status) = @_;
 1229:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 1230:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 1231:     my $now = time();
 1232:     my $context = 'course';
 1233:     my ($permission,$allowed) =
 1234:         &Apache::lonuserutils::get_permission($context);
 1235:     my $viewablesec = &Apache::lonuserutils::viewable_section($permission);
 1236:     my %changes=&Apache::lonnet::dump('nohist_rolelog',$cdom,$cnum);
 1237:     my (%stucounted,%advcounted);
 1238:     my $activatedcount = 0;
 1239:     if (keys(%changes) > 0) {
 1240:         foreach my $chg (sort { $b <=> $a } (keys(%changes))) {
 1241:             if (ref($changes{$chg}) eq 'HASH') {
 1242:                 my $timestamp = $changes{$chg}{'exe_time'};
 1243:                 if ($timestamp) {
 1244:                     if ($rolechgtime > 0) {
 1245:                         if ($timestamp < $rolechgtime) {
 1246:                             last;
 1247:                         }
 1248:                     }
 1249:                     if (ref($changes{$chg}{'logentry'}) eq 'HASH') {
 1250:                         next if ($changes{$chg}{'delflag'});
 1251:                         my $start = $changes{$chg}{'logentry'}{'start'};
 1252:                         my $end = $changes{$chg}{'logentry'}{'end'};
 1253:                         my $section = $changes{$chg}{'logentry'}{'section'};
 1254:                         my $role = $changes{$chg}{'logentry'}{'role'};
 1255:                         my $uname = $changes{$chg}{'uname'};
 1256:                         my $udom = $changes{$chg}{'udom'};
 1257:                         next if ($end && $end <= $now);
 1258:                         if (($viewablesec ne '') && ($section ne '')) {
 1259:                             next if ($viewablesec ne $section);
 1260:                         }
 1261:                         next if ($start >= $timestamp);
 1262:                         if ($role eq 'st') {
 1263:                             $stucounted{$uname.':'.$udom.':'.$section} = $start.':'.$end;
 1264:                         } else {
 1265:                             $advcounted{$uname.':'.$udom.':'.$role.':'.$section} = $start.':'.$end;
 1266:                         }
 1267:                         my %chginfo = (
 1268:                                        'section' => $section,
 1269:                                        'uname'   => $uname,
 1270:                                        'udom'    => $udom,
 1271:                                        'role'    => $role,
 1272:                                        'status'  => $status,
 1273:                         );
 1274:                         $activatedcount ++;
 1275:                         push (@{$rolechgs->{$timestamp}},\%chginfo);
 1276:                     }
 1277:                 }
 1278:             }
 1279:         }
 1280:     }
 1281:     $activatedcount += &getrolechanges($rolechgs,$rolechgtime,$status,\%stucounted,\%advcounted);
 1282:     return $activatedcount;
 1283: }
 1284: 
 1285: sub getrolechanges {
 1286:     my ($rolechgs,$rolechgtime,$status,$stucountref,$advcountref) = @_;
 1287:     my (%stucounted,%advcounted);
 1288:     if (ref($stucountref) eq 'HASH') {
 1289:         %stucounted = %{$stucountref};
 1290:     }
 1291:     if (ref($advcountref) eq 'HASH') {
 1292:         %advcounted = %{$advcountref};
 1293:     }
 1294:     my $withsec = 1;
 1295:     my $hidepriv = 1;
 1296:     my $context = 'course';
 1297:     my @statuses = ($status);
 1298:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 1299:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 1300:     my $now = time();
 1301:     my ($permission,$allowed) =
 1302:         &Apache::lonuserutils::get_permission($context);
 1303:     my $viewablesec = &Apache::lonuserutils::viewable_section($permission);
 1304:     my $classlist = &Apache::loncoursedata::get_classlist();
 1305:     my $secidx = &Apache::loncoursedata::CL_SECTION();
 1306:     my $startidx = &Apache::loncoursedata::CL_START();
 1307:     my $endidx = &Apache::loncoursedata::CL_END();
 1308:     my $rolechgcount = 0;
 1309:     foreach my $key (keys(%{$classlist})) {
 1310:         my ($userstatus,$eventtime);   
 1311:         my $student = $classlist->{$key};
 1312:         if (ref($student) eq 'ARRAY') {
 1313:             my $start = $student->[$startidx];
 1314:             my $end = $student->[$endidx];
 1315:             my $sec = $student->[$secidx]; 
 1316:             my ($stuname,$studom) = split(/:/,$key);
 1317:             if ($status eq 'active') {
 1318:                 if (exists($stucounted{$key.':'.$sec})) {
 1319:                     next;
 1320:                 }
 1321:             }
 1322:             if (($end == 0) || ($end > $start)) {
 1323:                 if ($start <= $now) {
 1324:                     if ($end && $end < $now) {
 1325:                         if ($rolechgtime > 0) {
 1326:                             if ($end > $rolechgtime) {
 1327:                                 $userstatus = 'previous';
 1328:                             }
 1329:                         } else {
 1330:                             $userstatus = 'previous';
 1331:                         }
 1332:                     } else {
 1333:                         if ($rolechgtime > 0) {
 1334:                             if ($start >= $rolechgtime) {
 1335:                                 $userstatus = 'active';
 1336:                             }
 1337:                         } else {
 1338:                             $userstatus = 'active';
 1339:                         }
 1340:                     }
 1341:                 }
 1342:             }
 1343:             next if ($userstatus ne $status);
 1344:             if ($status eq 'active') {
 1345:                 $eventtime = $start;
 1346:             } else {
 1347:                 $eventtime = $end;
 1348:             }
 1349:             if (($viewablesec ne '') && ($sec ne '')) {
 1350:                 next if ($viewablesec ne $sec);
 1351:             }
 1352:             my %chginfo = (
 1353:                             'section' => $sec,
 1354:                             'uname'   => $stuname,
 1355:                             'udom'    => $studom,
 1356:                             'role'    => 'st', 
 1357:                             'status'  => $userstatus,
 1358:                           );
 1359:             $rolechgcount ++;
 1360:             push (@{$rolechgs->{$eventtime}},\%chginfo);
 1361:         }
 1362:     }
 1363:     my %advrolehash = &Apache::lonnet::get_my_roles($cnum,$cdom,undef,
 1364:                               \@statuses,undef,undef,$withsec,$hidepriv);
 1365:     foreach my $item (keys(%advrolehash)) {
 1366:         my ($userstatus,$eventtime);
 1367:         my ($uname,$udom,$role,$section) = split(/:/,$item,-1);
 1368:         my ($start,$end) = split(/:/,$advrolehash{$item});
 1369:         if ($start eq '-1' && $end eq '-1') {
 1370:             next;
 1371:         } else {
 1372:             if ($status eq 'active') {
 1373:                 if (exists($advcounted{$item})) {
 1374:                     next;
 1375:                 }
 1376:             }
 1377:             if (($end == 0) || ($end > $start)) {
 1378:                 if ($start <= $now) {
 1379:                     if ($end && $end < $now) {
 1380:                         if ($rolechgtime > 0) {
 1381:                             if ($end > $rolechgtime) {
 1382:                                 $userstatus = 'previous';
 1383:                             }
 1384:                         } else {
 1385:                             $userstatus = 'previous';
 1386:                         }
 1387:                     } else {
 1388:                         if ($rolechgtime > 0) {
 1389:                             if ($start >= $rolechgtime) {
 1390:                                 $userstatus = 'active';
 1391:                             }
 1392:                         } else {
 1393:                             $userstatus = 'active';
 1394:                         }
 1395:                     }
 1396:                 }
 1397:             }
 1398:             next if ($userstatus ne $status);
 1399:             if ($status eq 'active') {
 1400:                 $eventtime = $start;
 1401:             } else {
 1402:                 $eventtime = $end;
 1403:             }
 1404:         }
 1405:         if (($viewablesec ne '') && ($section ne '')) {
 1406:             next if ($viewablesec ne $section);
 1407:         }
 1408:         my %chginfo = ( 
 1409:                         'section' => $section,
 1410:                         'uname'   => $uname,
 1411:                         'udom'    => $udom,
 1412:                         'role'    => $role,
 1413:                         'status'  => $userstatus,    
 1414:                       );
 1415:         $rolechgcount ++; 
 1416:         push (@{$rolechgs->{$eventtime}},\%chginfo); 
 1417:     }
 1418:     return $rolechgcount;
 1419: }
 1420: 
 1421: sub checkversions {
 1422:     my ($cdom,$crs,$navmap,$changed,$starttime) = @_;
 1423:     my %changes=&Apache::lonnet::dump('versionupdate',$cdom,$crs);
 1424:     my ($tmp) = keys(%changes);
 1425:     unless ($tmp =~ /^(con_lost|error|no_such_host)/i) {
 1426:         if (keys(%changes) > 0) {
 1427:             foreach my $key (sort(keys(%changes))) {
 1428:                 if ($changes{$key} > $starttime) {
 1429:                     my $version;
 1430:                     my ($root,$extension)=($key=~/^(.*)\.(\w+)$/);
 1431:                     my $currentversion=&Apache::lonnet::getversion($key);
 1432:                     my $revdate = 
 1433:                           &Apache::lonnet::metadata($root.'.'.$extension,
 1434:                                                      'lastrevisiondate');
 1435:                     $revdate =  &Apache::lonlocal::locallocaltime($revdate);
 1436:                     my $linkurl=&Apache::lonnet::clutter($key);
 1437:                     my $usedversion=$navmap->usedVersion($linkurl);
 1438:                     my @resources = $navmap->getResourceByUrl($linkurl,1);
 1439:                     if (($usedversion) && ($usedversion ne 'mostrecent')) {
 1440:                         $version = $usedversion;     
 1441:                     } else {
 1442:                         $version = $currentversion;
 1443:                     }
 1444:                     foreach my $res (@resources) {
 1445:                          if (ref($res) eq 'Apache::lonnavmaps::resource') { 
 1446:                             my $symb = $res->symb();
 1447:                             %{$$changed{$symb}} = (
 1448:                                                 current => $currentversion,
 1449:                                                 version => $version,
 1450:                                                 revdate => $revdate,
 1451:                             );
 1452:                         }
 1453:                     }
 1454:                 }
 1455:             }
 1456:         }
 1457:     }
 1458:     return;
 1459: }
 1460: 
 1461: sub display_handgrade {
 1462:     my ($r,$tograde,$ungraded,$itemserror) = @_;
 1463:     my %lt = &Apache::lonlocal::texthash(
 1464:                         'prna' => 'Problem Name',
 1465:                         'nmun' => 'Number ungraded',
 1466:                         'nopr' => 'No problems require handgrading',
 1467:     );
 1468:     if (@{$tograde} > 0) {
 1469:         $r->print('<tr class="LC_info_row"><td class="LC_left_item">'.
 1470:                   $lt{'prna'}.'</td><td class="LC_right_item">'.
 1471:                   $lt{'nmun'}.'</td></tr>');
 1472:         my $rowNum = 0;
 1473:         foreach my $res (@{$tograde}) {
 1474:             $rowNum ++;
 1475:             my $css_class = $rowNum%2?' class="LC_odd_row"':'';
 1476:             my $linkurl='/adm/grades';
 1477:             if ($$ungraded{$res}{'enclink'}) {
 1478:                 $linkurl.='?symb='.$$ungraded{$res}{'encsymb'};
 1479:             } else {
 1480:                 $linkurl.='?symb='.&escape($res);
 1481:             }
 1482:             $linkurl.='&command=ungraded';
 1483:             $r->print('<tr'.$css_class.'><td><a href="'.$linkurl.'">'.$$ungraded{$res}{title}.'</a></td><td class="LC_right_item">'.$$ungraded{$res}{count}.'</td></tr>');
 1484:         }
 1485:     } elsif ($itemserror) {
 1486:         $r->print('<tr class="LC_empty_row"><td>'.$itemserror.'</td></tr>');
 1487:     } else {
 1488:         $r->print('<tr class="LC_empty_row"><td>'.$lt{'nopr'}.'</td></tr>');
 1489:     }
 1490: }
 1491: 
 1492: sub display_haserrors {
 1493:     my ($r,$bombs,$bombed,$res_title,$itemserror) = @_;
 1494:     my $bombnum = 0;
 1495:     my %lt = &Apache::lonlocal::texthash(
 1496:                                    reso => 'Resource',
 1497:                                    nmer => 'Number of errors',
 1498:                                    noer => 'No problems with errors',
 1499:     );
 1500:     if (@{$bombs} > 0) {
 1501:         $r->print('<tr class="LC_info_row"><td class="LC_left_item">'.
 1502:                   $lt{'reso'}.'</td><td class="LC_right_item">'.
 1503:                   $lt{'nmer'}.'</td></tr>');
 1504:         @{$bombs} = sort { &cmp_title($a,$b,$res_title) } @{$bombs};
 1505:         foreach my $bomb (@{$bombs}) {
 1506:             $bombnum ++;
 1507:             my $css_class = $bombnum%2?' class="LC_odd_row"':'';
 1508:             $r->print('<tr'.$css_class.'><td>'.$$bombed{$bomb}{errorlink}.
 1509:                       '</td><td class="LC_right_item">'.
 1510:                       $$bombed{$bomb}{errorcount}.'</td></tr>');
 1511:         }
 1512:     } elsif ($itemserror) {
 1513:         $r->print('<tr class="LC_empty_row"><td>'.$itemserror.'</td></tr>');
 1514:     } else {
 1515:         $r->print('<tr class="LC_empty_row"><td>'.$lt{'noer'}.'</td></tr>');
 1516:     }
 1517:     return;
 1518: }
 1519: 
 1520: sub display_abovethreshold {
 1521:     my ($r,$refpage,$warnings,$triggered,$res_title,$itemserror) = @_;
 1522:     my %lt = &Apache::lonlocal::texthash(
 1523:                  reso => 'Resource',
 1524:                  part => 'Part',
 1525:                  nust => 'Num. students',
 1526:                  avat => 'Av. Attempts',
 1527:                  dedi => 'Deg. Diff',
 1528:                  lare => 'Last Reset',
 1529:                  reco => 'Reset Count?',
 1530:                  rese => 'Reset counters to 0',
 1531:                  nopr => 'No problems satisfy threshold criteria',
 1532:     );
 1533:     if (@{$warnings} > 0) {
 1534:         @{$warnings} = sort { &cmp_title($a,$b,$res_title) } @{$warnings};
 1535:         $r->print('<form name="reset_tracking" method="post" action="/adm/whatsnew">'.
 1536:                 ' <input type="hidden" name="command" value="reset" />'."\n".
 1537:                 ' <input type="hidden" name="refpage" value="'.$refpage.'" />'.
 1538:                 "\n");
 1539:         $r->print('<tr class="LC_info_row">'.
 1540: 		  '<td class="LC_left_item">'.$lt{'reso'}.'</td>'.
 1541: 		  '<td>'.$lt{'part'}.'</td><td>'.$lt{'nust'}.'</td>'.
 1542: 		  '<td>'.$lt{'avat'}.'</td><td>'.$lt{'dedi'}.'</td>'.
 1543: 		  '<td>'.$lt{'lare'}.'</td><td  class="LC_right_item">'.
 1544:                   $lt{'reco'}.'</td></tr>');
 1545: 	my $row;
 1546:         foreach my $res (@{$warnings}) {
 1547: 	    $row++;
 1548:             my ($map,$id,$url)=&Apache::lonnet::decode_symb($res);
 1549:             my $linkurl=&Apache::lonnet::clutter($url);
 1550:             my $rowspan;
 1551:             if ($$triggered{$res}{numparts} > 1) {
 1552:                 $rowspan = 'rowspan="'.$$triggered{$res}{numparts}.'"';
 1553:             }
 1554:             $linkurl .= '?symb='.&escape($res);
 1555:             if ($$triggered{$res}{'enclink'}) {
 1556:                 $linkurl = 
 1557:                   $$triggered{$res}{'enclink'}.'?symb='.$$triggered{$res}{'encsymb'};
 1558:             }
 1559:             my $css_class = $row%2?' class="LC_odd_row"':'';
 1560:             $r->print('<tr'.$css_class.'>'.
 1561: 		      '<td class="LC_first_item" '.$rowspan.'><a href="'.$linkurl.'">'.
 1562: 		      $$triggered{$res}{title}.'</a></td>');
 1563:                       if (ref($$triggered{$res}{text}) eq 'ARRAY') {
 1564: 		          $r->print($$triggered{$res}{text}[0]);
 1565:                       }
 1566:                       $r->print('</tr>');
 1567:             if (ref($$triggered{$res}{text}) eq 'ARRAY') {
 1568:                 if (@{$$triggered{$res}{text}} > 1) {
 1569:                     for (my $i=1; $i<@{$$triggered{$res}{text}}; $i++) {
 1570:                         $r->print('<tr class="'.$css_class.'">'.
 1571:                                   $$triggered{$res}{text}[$i].'</tr>');
 1572:                     }
 1573:                 }
 1574:             }
 1575:         }
 1576:         $r->print('<tr class="LC_info_row"><td colspan="7" class="LC_right_item"><br /><input type="submit" name="counters" value="'.$lt{'rese'}.'" /></td></tr></form>');
 1577:     } elsif ($itemserror) {
 1578:         $r->print('<tr class="LC_empty_row"><td>'.$itemserror.'</td></tr>');
 1579:     } else {
 1580:         $r->print('<tr class="LC_empty_row"><td>'.$lt{'nopr'}.'</td></tr>');
 1581:     }
 1582: }
 1583: 
 1584: sub display_versionchanges {
 1585:     my ($r,$changed,$res_title,$interval,$itemserror) = @_;
 1586:     my %lt = &Apache::lonlocal::texthash(
 1587:         'reso' => 'Resource',
 1588:         'revd' => 'Last revised',
 1589:         'newv' => 'New version',
 1590:         'veru' => 'Version used',
 1591:     );
 1592:     if (keys(%{$changed}) > 0) {
 1593:         $r->print('<tr class="LC_info_row"><td class="LC_left_item">'.
 1594:                   $lt{'reso'}.'</td><td>'.$lt{'revd'}.'</td><td>'.
 1595:                   $lt{'newv'}.'</td><td class="LC_right_item">'.
 1596:                   $lt{'veru'}.'</td></tr>');
 1597:         my @changes = sort { &cmp_title($a,$b,$res_title) } keys(%{$changed});
 1598:         my $changenum = 0;
 1599:         foreach my $item (@changes) {
 1600:             $changenum ++;
 1601:             my $css_class = $changenum%2?' class="LC_odd_row"':'';
 1602:             my ($map,$id,$url)=&Apache::lonnet::decode_symb($item);
 1603:             my $linkurl=&Apache::lonnet::clutter($url);
 1604:             $linkurl .= '?symb='.&escape($item);
 1605: 
 1606:             $r->print('<tr'.$css_class.'><td><a href="'.$linkurl.'">'.
 1607:                       $$res_title{$item}.'</a></td><td>'.
 1608:                       $$changed{$item}{'revdate'}.'</td><td>'.
 1609:                       $$changed{$item}{'current'}.'</td><td>'.
 1610:                       $$changed{$item}{'version'}.'</td></tr>');
 1611:         }
 1612:     } elsif ($itemserror) {
 1613:         $r->print('<tr class="LC_empty_row"><td>'.$itemserror.'</td></tr>');
 1614:     } else {
 1615:         $r->print('<tr class="LC_empty_row"><td>'
 1616:                  .&mt('No '.$interval).'</td></tr>');
 1617:     }
 1618:     return;
 1619: }
 1620: 
 1621: sub display_rolechanges {
 1622:     my ($r,$chgcount,$changed,$interval,$crstype) = @_;
 1623:     my $now = time();
 1624:     my %lt = &Apache::lonlocal::texthash(
 1625:         'user'  => 'User',
 1626:         'tich'  => 'Time of change',
 1627:         'role'  => 'Role',
 1628:         'sec'   => 'Section',
 1629:         'status'  => 'Status',
 1630:     );
 1631:     if ($chgcount) {
 1632:         $r->print('<tr class="LC_info_row">'.
 1633:                   '<td class="LC_left_item">'.$lt{'tich'}.'</td>'.
 1634:                   '<td class="LC_left_item">'.$lt{'user'}.'</td>'.
 1635:                   '<td class="LC_left_item">'.$lt{'role'}.'</td>'.
 1636:                   '<td class="LC_left_item">'.$lt{'sec'}.'</td>'.
 1637:                   '<td class="LC_left_item">'.$lt{'status'}.'</td></tr>');
 1638:         if (ref($changed) eq 'HASH') {
 1639:             my @changes = sort { $b <=> $a } (keys(%{$changed}));
 1640:             my $changenum = 0;
 1641:             foreach my $item (@changes) {
 1642:                 if (ref($changed->{$item}) eq 'ARRAY') {
 1643:                     foreach my $chg (@{$changed->{$item}}) {
 1644:                         if (ref($chg) eq 'HASH') {
 1645:                             my $section;
 1646:                             my $role = 
 1647:                                 &Apache::lonnet::plaintext($chg->{'role'},$crstype);
 1648:                             my $status = &mt($chg->{'status'});
 1649:                             if ($chg->{'section'} eq '') {
 1650:                                 $section = &mt('none');
 1651:                             } else {
 1652:                                 $section = $chg->{'section'};
 1653:                             }
 1654:                             my $uname = $chg->{'uname'};
 1655:                             my $udom = $chg->{'udom'};
 1656:                             $changenum ++;
 1657:                             my $css_class = $changenum%2?' class="LC_odd_row"':'';
 1658:                             my $link = 
 1659:                                 &Apache::loncommon::aboutmewrapper(&Apache::loncommon::plainname($uname,$udom),$uname,$udom);
 1660:                             $r->print('<tr'.$css_class.'>'.
 1661:                                       '<td>'.&Apache::lonlocal::locallocaltime($item).'</td>'.
 1662:                                       '<td>'.$link.'</td>'.
 1663:                                       '<td>'.$role.'</td>'.
 1664:                                       '<td>'.$section.'</td>'.
 1665:                                       '<td>'.$status.'</td></tr>');
 1666:                         }
 1667:                     }
 1668:                 }
 1669:             }
 1670:         }
 1671:     } else {
 1672:         $r->print('<tr class="LC_empty_row"><td>'
 1673:                  .&mt('There are no '.$interval).'</td></tr>');
 1674:     }
 1675:     return;
 1676: }
 1677:  
 1678: sub display_coursediscussion {
 1679:     my ($r,$newdiscussions,$unread,$countunread,$res_title,$itemserror) = @_;
 1680:     my $lctype = lc(&Apache::loncommon::course_type());
 1681:     my %lt = &Apache::lonlocal::texthash(
 1682:                 'loca' => 'Location',
 1683:                 'type' => 'Type',
 1684:                 'numn' => 'Number of new posts',
 1685:                 'noun' => 'No unread posts in '.$lctype.' discussions',
 1686:                 'tmlp' => 'Time of last post', 
 1687:     );
 1688:     if (@{$newdiscussions} > 0) {
 1689:         $r->print('<tr class="LC_info_row"><td class="LC_left_item">'.
 1690:                   $lt{'loca'}.'</td><td>'.
 1691:                   $lt{'type'}.'</td>');
 1692:         if ($countunread eq 'on') {
 1693:             $r->print('<td>'.$lt{'tmlp'}.'</td>'.
 1694:                       '<td class="LC_right_item">'.$lt{'numn'}.'</td>');
 1695:         } else {
 1696:             $r->print('<td class="LC_right_item">'.$lt{'tmlp'}.'</td>');
 1697:         }
 1698:         $r->print("</tr>\n");
 1699:         @{$newdiscussions} = sort { &cmp_title($a,$b,$res_title) }
 1700:                                                             @{$newdiscussions};
 1701:         my $rowNum = 0;
 1702:         foreach my $ressymb (@{$newdiscussions}) {
 1703:             $rowNum ++;
 1704:             my $forum_title = $$unread{$ressymb}{'title'};
 1705:             my $type = 'Resource';
 1706:             my $feedurl=&Apache::lonfeedback::get_feedurl($ressymb);
 1707:             my $disclink = $feedurl.'?symb='.$$unread{$ressymb}{symb};
 1708:             if ($feedurl =~ /bulletinboard/) {
 1709:                 $type = 'Discussion Board';
 1710:             }
 1711:             if ($$unread{$ressymb}{'enclink'}) {
 1712:                 $disclink = $$unread{$ressymb}{'enclink'}.'?symb='.$$unread{$ressymb}{'encsymb'};
 1713:             }
 1714:             my $css_class = $rowNum%2?' class="LC_odd_row"':'';
 1715:             my $lastpost = &Apache::lonnavmaps::timeToHumanString(
 1716:                                                $$unread{$ressymb}{'lastpost'});
 1717:             $r->print('<tr'.$css_class.'><td><a href="'.$disclink.'">'.$forum_title.'</a>&nbsp;</td><td>'.&mt($type).'&nbsp;</td>');
 1718:             if ($countunread eq 'on') {
 1719:                 my $unreadnum = $$unread{$ressymb}{'unreadcount'};
 1720:                 $r->print('<td>'.$lastpost.'</td><td class="LC_right_item">'.
 1721:                           $unreadnum.'&nbsp;</td>');
 1722:             } else {
 1723:                 $r->print('<td class="LC_right_item">'.$lastpost.'</td>');
 1724:             }
 1725:             $r->print("</tr>\n");
 1726:         }
 1727:     } elsif ($itemserror) {
 1728:         $r->print('<tr class="LC_empty_row"><td>'.$itemserror.'</td></tr>');
 1729:     } else {
 1730:         $r->print('<tr class="LC_empty_row"><td>'.$lt{'noun'}.'</td></tr>');
 1731:     }
 1732: }
 1733: 
 1734: sub display_coursenormalmail {
 1735:     my ($r,$msgcount,$newmsgs) = @_;
 1736:     my $lctype = lc(&Apache::loncommon::course_type());
 1737:     if ($msgcount > 0) {
 1738:         $r->print('<tr class="LC_info_row"><td class="LC_left_item">'.
 1739:                   &mt('Number').'</td><td>'.&mt('Subject').'</td><td>'.
 1740:                   &mt('Sender').'</td><td class="LC_right_item">'.
 1741:                   &mt('Date/Time').'</td></tr>');
 1742:         my $mailcount = 0;
 1743:         foreach my $msg (@{$newmsgs}) {
 1744:             $mailcount ++;
 1745:             my $css_class = $mailcount%2?' class="LC_odd_row"':'';
 1746:             $r->print('<tr'.$css_class.'><td>'.$mailcount
 1747:                       .'.&nbsp;</td><td><a href="/adm/email?display='
 1748:                       .$msg->{'msgid'}.'">'
 1749:                       .$msg->{'shortsub'}.'</a>&nbsp;&nbsp;</td><td>&nbsp;'
 1750:                       .$msg->{'from'}.':'.$msg->{'fromdom'}.'&nbsp;</td><td>'
 1751:                       .$msg->{'sendtime'}.'</td></tr>');
 1752:         }
 1753:     } else {
 1754:         $r->print('<tr class="LC_empty_row"><td>'.
 1755:                   &mt('No new '.$lctype.' messages').'</td></tr>');
 1756:     }
 1757: }
 1758: 
 1759: sub display_coursecritmail {
 1760:     my ($r,$critmsgcount,$critmsgs) = @_;
 1761:     my $lctype = lc(&Apache::loncommon::course_type());
 1762:     if ($critmsgcount > 0) {
 1763:         $r->print('<tr class="LC_info_row"><td class="LC_left_item">'.
 1764:                   &mt('Number').'</td><td>'.&mt('Subject').'</td><td>'.
 1765:                   &mt('Sender').'</td><td class="LC_right_item">'.
 1766:                   &mt('Date/Time').'</td></tr>');
 1767:         my $mailcount = 0;
 1768:         foreach my $msg (@{$critmsgs}) {
 1769:             $mailcount ++;
 1770:             my $css_class = $mailcount%2?' class="LC_odd_row"':'';
 1771:             $r->print('<tr'.$css_class.'><td>'.$mailcount.
 1772:                       '. &nbsp;</td><td><a href="/adm/email?folder=critical">'.
 1773:                       $msg->{'shortsub'}.'</a>&nbsp; &nbsp;</td><td>&nbsp;'.
 1774:                       $msg->{'from'}.':'.$msg->{'fromdom'}.'&nbsp;</td><td>'.
 1775:                       $msg->{'sendtime'}.'</td></tr>');
 1776:         }
 1777:     } else {
 1778:         $r->print('<tr class="LC_empty_row"><td>'.
 1779:                   &mt('No unread critical messages in '.$lctype).
 1780:                   '</td></tr>');
 1781:     }
 1782: }
 1783: 
 1784: sub cmp_title {
 1785:     my ($a,$b,$res_title) = @_;
 1786:     my ($atitle,$btitle) = (lc($$res_title{$a}),lc($$res_title{$b}));
 1787:     $atitle=~s/^\s*//;
 1788:     $btitle=~s/^\s*//;
 1789:     return $atitle cmp $btitle;
 1790: }
 1791: 
 1792: sub get_display_settings {
 1793:     my ($uname,$udom,$cid) = @_;
 1794:     my %settings = &Apache::lonnet::dump('nohist_whatsnew',$udom,$uname,$cid); 
 1795:     my ($tmp) = keys(%settings);
 1796:     if ($tmp=~ /^(con_lost|error|no_such_host)/i) {
 1797:         %settings = ();
 1798:         unless ($tmp =~ /^error: 2 /) {
 1799: 	    my $lctype = lc(&Apache::loncommon::course_type());
 1800:             &Apache::lonnet::logthis('Error retrieving whatsnew settings: '.
 1801:             $tmp.' for '.$uname.':'.$udom.' for '.$lctype.': '.$cid);
 1802:         }
 1803:     }
 1804:     return %settings;
 1805: }
 1806: 
 1807: sub store_display_settings {
 1808:     my ($uname,$udom,$cid,$checkallowed) = @_;
 1809:     my %whatsnew_settings;
 1810:     my $result;
 1811:     foreach my $key (keys(%{$checkallowed})) {
 1812: 	if ($key =~ /_section$/) { next; }
 1813:         if (exists($env{'form.display_'.$key})) {
 1814:             unless ($env{'form.display_'.$key} eq '') {
 1815:                 $whatsnew_settings{$cid.':'.$key} = $env{'form.display_'.$key};
 1816:             }
 1817:         }
 1818:     }
 1819:     if (keys(%whatsnew_settings)) {
 1820:         $result = &Apache::lonnet::put('nohist_whatsnew',\%whatsnew_settings,
 1821:                                                                  $udom,$uname);
 1822:     } else {
 1823:         $result = 'ok';
 1824:     }
 1825:     return $result;
 1826: }
 1827: 
 1828: sub store_interval_setting {
 1829:     my ($uname,$udom,$cid,$interval_titles) = @_;
 1830:     my %interval_settings = ();
 1831:     my $result;
 1832:     my $context = $env{'form.intervaltype'};
 1833:     if ($env{'form.interval'} ne '') {
 1834:         if ($context eq 'oldroles') {
 1835:             $interval_settings{$cid.':oldroleinterval'} = $env{'form.interval'};
 1836:         } elsif ($context eq 'newroles') {
 1837:             $interval_settings{$cid.':newroleinterval'} = $env{'form.interval'};
 1838:         } else {
 1839:             $interval_settings{$cid.':interval'} = $env{'form.interval'};
 1840:         }
 1841:         my $outcome = &Apache::lonnet::put('nohist_whatsnew',
 1842:                                              \%interval_settings,$udom,$uname);
 1843:         if ($outcome eq 'ok') {
 1844:             if (ref($interval_titles->{$context}) eq 'HASH') {
 1845:                 $result = &Apache::lonhtmlcommon::confirm_success(&mt('New filter setting: [_1].','<b>'. 
 1846:                               $interval_titles->{$context}->{$env{'form.interval'}}.'</b>').'<br />');
 1847:             }
 1848:         } else {
 1849: 	    my $lctype = lc(&Apache::loncommon::course_type());
 1850:             &Apache::lonnet::logthis('Error saving whatsnew '.$context.' interval setting'.
 1851:                 ' '.$outcome.' for '.$uname.':'.$udom.' in '.$lctype.' '.$cid);
 1852:             $result = &Apache::lonhtmlcommon::confirm_success(&mt('Unable to set interval to [_1] due to [_2].',
 1853:                          '<b>'.$interval_titles->{$context}->{$env{'form.interval'}}.'</b>',
 1854:                          '<tt>'.$outcome.'</tt>'),1);
 1855:         }
 1856:     }
 1857:     return &Apache::loncommon::confirmwrapper($result);
 1858: }
 1859: 
 1860: sub store_discussion_setting {
 1861:     my ($uname,$udom,$cid) = @_;
 1862:     my %discussion_settings;
 1863:     my $result;
 1864:     if (defined($env{'form.countunread'})) {
 1865:         $discussion_settings{$cid.':countunread'} = $env{'form.countunread'};
 1866:         my $outcome = &Apache::lonnet::put('nohist_whatsnew',
 1867:                                              \%discussion_settings,$udom,$uname);
 1868:         if ($outcome eq 'ok') {
 1869:             $result = &Apache::lonhtmlcommon::confirm_success(&mt('Count unread posts in discussions display set to [_1]',
 1870:                   '<b>'.&mt($env{'form.countunread'}).'</b>').'<br />');
 1871:                                                                                   
 1872:         } else {
 1873: 	    my $lctype = lc(&Apache::loncommon::course_type());
 1874:             &Apache::lonnet::logthis('Error saving whatsnew countunread setting'.
 1875:                 ' '.$outcome.' for '.$uname.':'.$udom.' in '.$lctype.' '.$cid);
 1876:             $result = &Apache::lonhtmlcommon::confirm_success(&mt('Unable to set "number unread posts display" to [_1]'.
 1877:                           ' due to [_2].',
 1878:                          '<b>'.&mt($env{'form.countunread'}).'</b>',
 1879:                          '<tt>'.$outcome.'</tt>'),1);
 1880:         }
 1881:     }
 1882:     return &Apache::loncommon::confirmwrapper($result);
 1883: }
 1884: 
 1885: sub store_courseinit_setting {
 1886:     my ($uname,$udom,$cid,$initpage) = @_;
 1887:     my %courseinit_settings;
 1888:     my $page_control;
 1889:     my $result;
 1890:     if (defined($env{'form.courseinit_control'})) {
 1891:         if ($env{'form.courseinit_control'} eq 'userpref') {
 1892:             $courseinit_settings{$cid.':courseinit'} = '';
 1893:             $page_control = 'global preferences';
 1894:         } else {
 1895:             if (defined($env{'form.courseinit_page'})) {
 1896:                 $courseinit_settings{$cid.':courseinit'} = 
 1897:                                                   $env{'form.courseinit_page'};
 1898:                 $page_control = 'course specific setting';
 1899:             }
 1900:         }
 1901:         if ($page_control) {
 1902: 	    my $lctype = lc(&Apache::loncommon::course_type());
 1903:             my $outcome = &Apache::lonnet::put('nohist_whatsnew',
 1904:                                            \%courseinit_settings,$udom,$uname);
 1905:             if ($outcome eq 'ok') {
 1906:                 if ($page_control eq 'global preferences') {
 1907:                     $result = &Apache::lonhtmlcommon::confirm_success(&mt("Page displayed after role selection in $lctype now set by [_1]user's global preferences[_2].",'<b>','</b>'));
 1908:                 } else {
 1909:                     $result = &Apache::lonhtmlcommon::confirm_success(&mt('Page displayed after role selection in this '.$lctype.' set to [_1].'
 1910:                                  ,'<b>'.$$initpage{$env{'form.courseinit_page'}}.'</b>'));
 1911:                 }
 1912:             } else {
 1913:                 &Apache::lonnet::logthis('Error saving whatsnew courseinit '.
 1914:                                          'setting: '.$outcome.' for '.$uname.
 1915:                                          ':'.$udom.' in '.$lctype.' '.$cid);
 1916:                 if ($page_control eq 'global preferences') {
 1917:                     $result = &Apache::lonhtmlcommon::confirm_success(&mt('Unable to set control of page display to [_1]'.
 1918:                           ' due to [_2].',
 1919:                          '<b>'.$page_control.'</b>',
 1920:                          '<tt>'.$outcome.'</tt>'),1);
 1921:                 } else {
 1922:                     $result = &Apache::lonhtmlcommon::confirm_success(&mt('Unable to set page display, after role selection, for this '.$lctype.' to [_1] due to [_2].'
 1923:                                  ,'<b>'.$$initpage{$env{'form.courseinit_page'}}.'</b>'
 1924:                                  ,'<tt>'.$outcome.'</tt>'),1);
 1925:                 }
 1926:             }
 1927:         }
 1928:     }
 1929:     return &Apache::loncommon::confirmwrapper($result);
 1930: }
 1931: 
 1932: sub start_box {
 1933:     my ($r,$show,$heading,$caller,$refpage) = @_;
 1934:     my %lt = &Apache::lonlocal::texthash( 
 1935:                        chth => 'Change thresholds?',
 1936:                        chin => 'Change interval?',
 1937:                        chop => 'Change options?',
 1938:     );
 1939:     my $showhide;
 1940:     if ($$show{$caller}) {
 1941:         $showhide = '<b><a href="javascript:change_display(document.visible.'.
 1942:                                'display_'.$caller.",'hide'".');">'.
 1943:                                &mt('Hide').'</a></b>';
 1944:    
 1945:     } else {
 1946:         $showhide = '<b><a href="javascript:change_display(document.visible.'.
 1947:                                'display_'.$caller.",'show'".');">'.
 1948:                                &mt('Show').'</a></b>';
 1949:     }
 1950:     
 1951:     $r->print('
 1952:          <table class="LC_nested_outer">
 1953:           <tr>
 1954:            <th class="LC_left_item">'.$$heading{$caller}.'</th>
 1955:            <th class="LC_right_item">'.$showhide.'</th>
 1956:           </tr>');
 1957:      if (($caller eq 'abovethreshold') && ($$show{$caller})) {
 1958:          if ($$show{$caller}) {
 1959:              $r->print('
 1960:               <tr>
 1961:                 <td class="LC_subheader" colspan="2"><a href="/adm/whatsnew?command=chgthreshold&amp;refpage='.$refpage.'">'.$lt{'chth'}.'</a></td>
 1962:               </tr>');
 1963:          }
 1964:      } elsif (($caller eq 'versionchanges') && ($$show{$caller})) {
 1965:          if ($$show{$caller}) {
 1966:              $r->print('
 1967:               <tr>
 1968:                 <td class="LC_subheader" colspan="2"><a href="/adm/whatsnew?command=chginterval&amp;refpage='.$refpage.'">'.$lt{'chin'}.'</a></td>
 1969:               </tr>');
 1970:          }
 1971:      } elsif ($caller eq 'coursediscussion') {
 1972:          if ($$show{$caller}) {
 1973:              $r->print('
 1974:               <tr>
 1975:                 <td class="LC_subheader" colspan="2"><a href="/adm/whatsnew?command=chgdisc&amp;refpage='.$refpage.'">'.$lt{'chop'}.'</a></td>
 1976:               </tr>');
 1977:          }
 1978:      } elsif (($caller eq 'newroles') && ($$show{$caller})) {
 1979:          if ($$show{$caller}) {
 1980:              $r->print('
 1981:               <tr>
 1982:                 <td class="LC_subheader" colspan="2"><a href="/adm/whatsnew?command=chgnewroleinterval&amp;refpage='.$refpage.'">'.$lt{'chin'}.'</a></td>
 1983:               </tr>');
 1984:          }
 1985:      } elsif (($caller eq 'oldroles') && ($$show{$caller})) {
 1986:          if ($$show{$caller}) {
 1987:              $r->print('
 1988:               <tr>
 1989:                 <td class="LC_subheader" colspan="2"><a href="/adm/whatsnew?command=chgoldroleinterval&amp;refpage='.$refpage.'">'.$lt{'chin'}.'</a></td>
 1990:               </tr>');
 1991:          }
 1992:      }
 1993:     $r->print('
 1994:               <tr>
 1995:                <td colspan="2">
 1996:                 <table class="LC_nested">
 1997: ');
 1998:     return;
 1999: }
 2000: 
 2001: sub end_box {
 2002:     my ($r) = shift;
 2003:     $r->print('
 2004:    </table>
 2005:   </td>
 2006:  </tr>
 2007: </table><br />');
 2008:     return;
 2009: }
 2010: 
 2011: 1;

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