Annotation of loncom/interface/lonwhatsnew.pm, revision 1.129

1.128     raeburn     1: # The LearningOnline Network
                      2: # What's New in a course
1.2       albertel    3: #
1.129   ! raeburn     4: # $Id: lonwhatsnew.pm,v 1.128 2020/09/01 22:25:27 raeburn Exp $
1.2       albertel    5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
                     14: #
                     15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
                     27: #
                     28: 
                     29: 
1.1       raeburn    30: package Apache::lonwhatsnew;
                     31: 
                     32: use strict;
                     33: use lib qw(/home/httpd/lib/perl);
                     34: use Apache::lonnet;
1.3       albertel   35: use Apache::loncommon();
                     36: use Apache::lonhtmlcommon();
1.1       raeburn    37: use Apache::lonlocal;
1.3       albertel   38: use Apache::loncoursedata();
                     39: use Apache::lonnavmaps();
1.18      raeburn    40: use Apache::lonuserstate;
1.77      raeburn    41: use Apache::lonuserutils; 
1.1       raeburn    42: use Apache::Constants qw(:common :http);
                     43: use Time::Local;
1.24      albertel   44: use GDBM_File;
1.55      www        45: use lib '/home/httpd/lib/perl/';
                     46: use LONCAPA;
1.98      raeburn    47: use HTML::Entities;
1.1       raeburn    48: 
                     49: #----------------------------
                     50: # handler
                     51: #
                     52: #----------------------------
                     53: 
                     54: sub handler {
                     55:     my $r = shift;
1.7       raeburn    56:     if ($r->header_only) {
                     57:         &Apache::loncommon::content_type($r,'text/html');
                     58:         $r->send_http_header;
                     59:         return OK;
                     60:     }
1.39      raeburn    61:     &Apache::loncommon::get_unprocessed_cgi(
                     62:                                    $ENV{'QUERY_STRING'},['command','refpage']);
1.1       raeburn    63: 
1.36      raeburn    64:     my $command = $env{'form.command'};
1.39      raeburn    65:     my $refpage = $env{'form.refpage'};
1.1       raeburn    66: 
1.121     raeburn    67:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                     68:     my $crs = $env{'course.'.$env{'request.course.id'}.'.num'};
                     69: 
                     70:     my ($isadhoc,%checkallowed);
                     71: 
                     72:     if ($env{'request.role'} =~ m{^(cc|co)/}) {
                     73:         my $rolecode = $1;
                     74:         if ($env{"environment.internal.$cdom.$crs.$env{'request.role'}.adhoc"}) {
                     75:             $isadhoc = 1;
                     76:         }
                     77:     } elsif ($env{'request.role'} =~ m{^cr/$cdom/$cdom\-domainconfig/(\w+)\./}) {
                     78:         my $rolename = $1;
                     79:         if ($env{"environment.internal.$cdom.$crs.cr/$cdom/$cdom-domainconfig/$rolename.adhoc"}) {
                     80:             $isadhoc = 1;
                     81:         }
                     82:     }
                     83:     unless ($isadhoc) {
                     84:         %checkallowed = ( coursenormalmail => 1,
                     85: 			  coursecritmail => 1,);
                     86:     }
1.44      albertel   87:     foreach my $perm_check (['whn','whatsnew',1],
                     88: 			    ['pch','coursediscussion',1],
                     89: 			    ['mgr','handgrading',1],
                     90: 			    ['vgr','abovethreshold',1],
1.121     raeburn    91: 			    ['vgr','haserrors',1],
1.122     raeburn    92: 			    ['whn','versionchanges',1],
1.77      raeburn    93:                             ['vcl','newroles',1],
                     94:                             ['vcl','oldroles',1],
1.106     raeburn    95:                             ['whn','crslogin',1],
1.126     raeburn    96:                             ['vcl','sessions',1],
1.119     raeburn    97:                             ['mgr','resetcounters',1],
1.44      albertel   98: 			    ) {
                     99: 	my ($perm,$key,$check_section) = @{ $perm_check };
                    100: 	my $scope = $env{'request.course.id'};
                    101: 	if (!($checkallowed{$key} = &Apache::lonnet::allowed($perm,$scope))) {
                    102: 	    $scope .= '/'.$env{'request.course.sec'};
                    103: 	    if ( $check_section ) {
                    104: 		$checkallowed{$key} = &Apache::lonnet::allowed($perm,$scope);
                    105: 	    }
                    106: 	    if ($checkallowed{$key}) {
                    107: 		$checkallowed{$key.'_section'} = $env{'request.course.sec'};
                    108: 	    }
                    109: 	}
                    110:     }
1.43      albertel  111: 
1.44      albertel  112:     if ( ! $env{'request.course.fn'} || ! $checkallowed{'whatsnew'}) {
1.43      albertel  113:         # Not in a course, or no whn priv in course
1.103     raeburn   114:         $env{'user.error.msg'}="/adm/whatsnew:whn:0:0:Cannot display what's new page";
1.1       raeburn   115:         return HTTP_NOT_ACCEPTABLE;
                    116:     }
                    117: 
1.44      albertel  118:     &Apache::loncommon::content_type($r,'text/html');
                    119:     $r->send_http_header;
1.36      raeburn   120: 
                    121:     $r->print(&display_header($command,\%checkallowed));
                    122: 
1.7       raeburn   123:     &Apache::lonhtmlcommon::clear_breadcrumbs();
1.36      raeburn   124:     &Apache::lonhtmlcommon::add_breadcrumb
                    125:             ({href=>'/adm/whatsnew',
1.90      hauer     126:               text=>"What's New?"});
1.44      albertel  127:     if (($command eq 'chgthreshold') && $checkallowed{'abovethreshold'}) {
1.7       raeburn   128:         &Apache::lonhtmlcommon::add_breadcrumb
1.73      raeburn   129:             ({href=>'/adm/whatsnew?command=chgthreshold&refpage='.$refpage,
1.13      raeburn   130:               text=>"Change thresholds"});
1.7       raeburn   131:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
1.54      albertel  132:             ("What's New?",#'Course_Action_Items_Thresholds'
1.49      albertel  133: 	     ));
1.44      albertel  134:     } elsif (($command eq 'chginterval') && $checkallowed{'versionchanges'} ) {
1.36      raeburn   135:         &Apache::lonhtmlcommon::add_breadcrumb
1.73      raeburn   136:             ({href=>'/adm/whatsnew?command=chginterval&refpage='.$refpage,
1.36      raeburn   137:               text=>"Change interval"});
                    138:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
1.54      albertel  139:             ("What's New?",#'Course_Action_Items_Intervals'
1.49      albertel  140: 	     ));
1.44      albertel  141:     } elsif (($command eq 'chgdisc') && $checkallowed{'coursediscussion'}) {
1.39      raeburn   142:         &Apache::lonhtmlcommon::add_breadcrumb
1.73      raeburn   143:             ({href=>'/adm/whatsnew?command=chgdisc&refpage='.$refpage,
1.39      raeburn   144:               text=>"Change discussion display"});
                    145:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
1.54      albertel  146:             ("What's New?",#'Course_Action_Items_Intervals'
1.49      albertel  147: 	     ));
1.39      raeburn   148:     } elsif ($command eq 'courseinit') {
                    149:         &Apache::lonhtmlcommon::add_breadcrumb
1.73      raeburn   150:             ({href=>'/adm/whatsnew?command=courseinit&refpage='.$refpage,
1.39      raeburn   151:               text=>"Course initialization preference"});
                    152:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
1.54      albertel  153:             ("What's New?",#'Course_Action_Items_Initialization'
1.49      albertel  154: 	     ));
1.77      raeburn   155:     } elsif ($command eq 'chgoldroleinterval' && $checkallowed{'oldroles'}) {
                    156:         &Apache::lonhtmlcommon::add_breadcrumb
                    157:             ({href=>'/adm/whatsnew?command=chgoldroleinterval&refpage='.$refpage,
                    158:               text=>"Change interval"});
                    159:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
                    160:             ("What's New?",#'Course_Action_Items_Intervals'
                    161:              ));
                    162:     } elsif ($command eq 'chgnewroleinterval' && $checkallowed{'newroles'}) {
                    163:         &Apache::lonhtmlcommon::add_breadcrumb
                    164:             ({href=>'/adm/whatsnew?command=chgnewroleinterval&refpage='.$refpage,
                    165:               text=>"Change interval"});
                    166:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
                    167:             ("What's New?",#'Course_Action_Items_Intervals'
                    168:              ));
1.106     raeburn   169:     } elsif ($command eq 'chgcrslogininterval' && $checkallowed{'crslogin'}) {
                    170:         &Apache::lonhtmlcommon::add_breadcrumb
                    171:             ({href=>'/adm/whatsnew?command=chgcrslogininterval&refpage='.$refpage,
                    172:               text=>"Change interval"});
                    173:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
                    174:             ("What's New?",#'Course_Action_Items_Intervals'
                    175:              ));
1.126     raeburn   176:     } elsif ($command eq 'chgsessionlimit' && $checkallowed{'sessions'}) {
                    177:         &Apache::lonhtmlcommon::add_breadcrumb
                    178:             ({href=>'/adm/whatsnew?command=chgsessionlimit&refpage='.$refpage,
                    179:               text=>"Change session range"});
                    180:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
                    181:             ("What's New?",#'Course_Action_Items_Sessions'
                    182:              ));
1.7       raeburn   183:     } else {
                    184:         $r->print(&Apache::lonhtmlcommon::breadcrumbs
1.54      albertel  185:             ("What's New?",#'Course_Action_Items_Display'
1.49      albertel  186: 	     ));
1.7       raeburn   187:     }
1.121     raeburn   188:     &display_main_box($r,$command,$refpage,\%checkallowed,$cdom,$crs);
1.14      albertel  189:     return OK;
1.1       raeburn   190: }
                    191: 
                    192: #------------------------------
                    193: # display_main_box
                    194: #
                    195: # Display all the elements within the main box
                    196: #------------------------------
                    197:                                                                                 
                    198: sub display_main_box {
1.121     raeburn   199:     my ($r,$command,$refpage,$checkallowed,$cdom,$crs) = @_;
1.1       raeburn   200:     my $domain=&Apache::loncommon::determinedomain();
1.40      raeburn   201:     my $function = &Apache::loncommon::get_users_function();
1.59      albertel  202:     my $lctype = lc(&Apache::loncommon::course_type());
1.7       raeburn   203:     $r->print('<table width="100%" border="0" cellpadding="5" cellspacing="0"><tr><td width="100%">');
1.13      raeburn   204: 
1.39      raeburn   205:     my %threshold_titles = &Apache::lonlocal::texthash (
1.13      raeburn   206:                          av_attempts => 'Average number of attempts',
                    207:                          degdiff => 'Degree of difficulty',
                    208:                          numstudents => 'Total number of students with submissions',
                    209:     );
1.78      bisitz    210:     my %versions = (
1.77      raeburn   211:                        -1 => "version changes since start of $lctype",
                    212:                   2592000 => 'version changes since last month',
                    213:                    604800 => 'version changes since last week',
                    214:                     86400 => 'version changes since yesterday',
                    215:                    );
1.78      bisitz    216:     my %newroles = (
1.77      raeburn   217:                        -1 => "roles which have become active since start of $lctype",
                    218:                   2592000 => 'roles which have become active since last month',
                    219:                    604800 => 'roles which have become active since last week',
                    220:                     86400 => 'roles which have become active since yesterday',
                    221:                    );
1.78      bisitz    222:     my %oldroles = (
1.77      raeburn   223:                        -1 => "roles which expired since start of $lctype",
                    224:                   2592000 => 'roles which expired since last month',
                    225:                    604800 => 'roles which expired since last week',
                    226:                     86400 => 'roles which expired since yesterday',
                    227:                    );
1.106     raeburn   228:     my %crslogins = (
                    229:                        -1 => 'last logins for anyone who has ever logged in',
                    230:                   2592000 => 'last logins for users in last 30 days',
                    231:                    604800 => 'last logins for users in last 7 days',
                    232:                     86400 => 'last logins for users in last 24 hours',
                    233:                    );
1.126     raeburn   234:     my %sessions = (
                    235:                      300  => 'course sessions active in the last 5 minutes',
                    236:                      600  => 'course sessions active in the last 10 minutes',
                    237:                      1800 => 'course sessions active in the last 30 minutes',
                    238:                      7200 => 'course sessions active in the last 2 hours',
                    239:                     -7200 => 'course sessions with last activity more than 2 hours ago',
                    240:                    );
1.77      raeburn   241:     my %interval_titles = (
                    242:         versions => \%versions,
                    243:         newroles => \%newroles,
                    244:         oldroles => \%oldroles,
1.106     raeburn   245:         crslogin => \%crslogins,
1.126     raeburn   246:         sessions => \%sessions,
1.36      raeburn   247:     );
1.39      raeburn   248:     my %initpage = &Apache::lonlocal::texthash (
1.56      raeburn   249:                      firstres => "first resource in the $lctype",
1.88      hauer     250:                      whatsnew => "What's New Page",
1.39      raeburn   251:                      userpref => 'your general user preferences',
1.56      raeburn   252:                      coursespecific => "specific setting for this $lctype",
1.39      raeburn   253:                    );
1.15      raeburn   254: 
1.44      albertel  255:     if (($command eq 'chgthreshold') 
                    256: 	&& $checkallowed->{'abovethreshold'}) {
1.121     raeburn   257:         &display_threshold_config($r,$refpage,\%threshold_titles,$cdom,$crs);
1.44      albertel  258:     } elsif (($command eq 'chginterval') 
                    259: 	     && $checkallowed->{'versionchanges'}) {
1.77      raeburn   260:         &display_interval_config($r,$refpage,\%interval_titles,'versions');
1.44      albertel  261:     } elsif (($command eq 'chgdisc') 
                    262: 	     && $checkallowed->{'coursediscussion'}) {
1.39      raeburn   263:         &display_discussion_config($r,$refpage);
                    264:     } elsif ($command eq 'courseinit') {
                    265:         &courseinit_config($r,$refpage,\%initpage);
1.77      raeburn   266:     } elsif (($command eq 'chgnewroleinterval')
                    267:              && $checkallowed->{'newroles'}) {
                    268:         &display_interval_config($r,$refpage,\%interval_titles,'newroles');
                    269:     } elsif (($command eq 'chgoldroleinterval')
                    270:              && $checkallowed->{'oldroles'}) {
                    271:         &display_interval_config($r,$refpage,\%interval_titles,'oldroles');
1.106     raeburn   272:     } elsif (($command eq 'chgcrslogininterval')
                    273:              && $checkallowed->{'crslogin'}) {
                    274:         &display_interval_config($r,$refpage,\%interval_titles,'crslogin');
1.126     raeburn   275:     } elsif (($command eq 'chgsessionlimit')
                    276:              && $checkallowed->{'sessions'}) {
                    277:         &display_interval_config($r,$refpage,\%interval_titles,'sessions');
1.1       raeburn   278:     } else {
1.69      raeburn   279:         &display_actions_box($r,$command,$refpage,\%threshold_titles,
1.39      raeburn   280:                         \%interval_titles,\%initpage,$cdom,$crs,$checkallowed);
1.1       raeburn   281:     }
1.52      albertel  282:     my $end_page = &Apache::loncommon::end_page();
1.1       raeburn   283:     $r->print(<<END_OF_BLOCK);
                    284:   </td>
                    285:  </tr>
                    286: </table><br />
1.52      albertel  287: $end_page
1.1       raeburn   288: END_OF_BLOCK
                    289: }
                    290: 
                    291: #-------------------------------
                    292: # display_header
                    293: #
                    294: # Display the header information and set
                    295: # up the HTML
                    296: #-------------------------------
                    297: 
1.39      raeburn   298: sub display_header {
1.36      raeburn   299:     my ($command,$checkallowed) = @_;
1.52      albertel  300:     
1.36      raeburn   301:     my $scripttag;
1.77      raeburn   302:     unless ($command eq 'chgthreshold' || $command eq 'chginterval' || 
1.106     raeburn   303:             $command eq 'chgoldroleinterval' ||
                    304:             $command eq 'chgnewroleinterval' || $command eq 'chgcrslogininterval') {
1.36      raeburn   305:        $scripttag = <<"END";
                    306: <script type="text/javascript">
1.106     raeburn   307: // <![CDATA[
1.36      raeburn   308: function change_display(caller,change) {
                    309:     caller.value = change;
1.77      raeburn   310:     document.visible.submit();
1.36      raeburn   311: }
                    312: 
                    313: function changeAll(change) {
                    314: END
                    315:         foreach my $item (keys(%{$checkallowed})) {
1.44      albertel  316: 	    if ($item =~ /_section$/) { next; }
1.39      raeburn   317:             if ($$checkallowed{$item}) {
                    318:                 $scripttag.='document.visible.display_'.$item.'.value=change'.
                    319:                             "\n";
                    320:             }
1.36      raeburn   321:         }
1.126     raeburn   322:         $scripttag.=<<"ENDTOGG";
                    323:     document.visible.submit();
1.36      raeburn   324: }
1.106     raeburn   325: 
1.109     raeburn   326: function thresholdreset() {
                    327:     document.visible.command.value="reset";
                    328:     document.visible.submit();
                    329: }
                    330: 
1.126     raeburn   331: function toggledetails(prefix) {
                    332:     var total = document.visible[prefix+'count'].value;
                    333:     var sumrow = document.visible[prefix+'row'].value;
1.106     raeburn   334:     if (total == 0) {
                    335:         return;
                    336:     }
1.126     raeburn   337:     var showdetails = 0;
                    338:     for (var i=0; i<document.visible[prefix+'details'].length; i++) {
                    339:         if (document.visible[prefix+'details'][i].checked) {
                    340:             showdetails = document.visible[prefix+'details'][i].value;
1.106     raeburn   341:         }
                    342:     }
                    343:     var detval = "none";
                    344:     var sumval = "";
1.126     raeburn   345:     if (showdetails == 1) {
1.106     raeburn   346:         detval = "";
                    347:         sumval = "none";
                    348:     }
                    349:     for (var j=0; j<total; j++) {
                    350:         var counter = j+1;
1.126     raeburn   351:         var itemid = prefix+"det_"+counter;
1.106     raeburn   352:         personele = document.getElementById(itemid);
                    353:         if (personele != null) {
                    354:             personele.style.display = detval;
                    355:         }
                    356:     }
1.126     raeburn   357:     var detheaderele = document.getElementById(prefix+"titledet");
1.106     raeburn   358:     if (detheaderele != null) {
                    359:         detheaderele.style.display = detval;
                    360:     }
                    361:     for (var k=0; k<sumrow; k++) {
                    362:         var counter = k+1;
1.126     raeburn   363:         var itemid = prefix+"sum_"+counter;
                    364:         catele = document.getElementById(itemid);
                    365:         if (catele != null) {
                    366:             catele.style.display = sumval;
1.106     raeburn   367:         }
                    368:     }
1.126     raeburn   369:     var sumheaderele = document.getElementById(prefix+"titlesum");
1.106     raeburn   370:     if (sumheaderele != null) {
                    371:         sumheaderele.style.display = sumval;
                    372:     }
                    373:     return;
                    374: }
                    375: // ]]>
1.36      raeburn   376: </script>
1.126     raeburn   377: ENDTOGG
1.36      raeburn   378:     }
1.58      albertel  379:     my $course_type=&Apache::loncommon::course_type();
1.90      hauer     380:     return &Apache::loncommon::start_page("What's New?",
1.58      albertel  381: 					  $scripttag);
1.1       raeburn   382: }
                    383: 
                    384: #-------------------------------
                    385: # display_actions_box
                    386: #
                    387: # Display the action items
                    388: #
                    389: #-------------------------------
                    390:                                                                                 
1.39      raeburn   391: sub display_actions_box {
1.69      raeburn   392:     my ($r,$command,$refpage,$threshold_titles,$interval_titles,$initpage,
                    393:         $cdom,$crs,$checkallowed) = @_;
1.36      raeburn   394:     my $udom = $env{'user.domain'};
                    395:     my $uname = $env{'user.name'};
                    396:     my $cid = $env{'request.course.id'};
1.59      albertel  397:     my $crstype = &Apache::loncommon::course_type();
1.56      raeburn   398:     my $lctype = lc($crstype);
                    399:     my %stulabel = (
                    400:                     'Course' => 'students',
1.95      raeburn   401:                     'Community' => 'members',
1.56      raeburn   402:                    );
1.36      raeburn   403:     my %lt = &Apache::lonlocal::texthash(
1.60      raeburn   404:                  'yacc' => 'You are accessing an invalid course',
1.36      raeburn   405:                  'gtfr' => 'Go to first resource',
                    406:                  'hial' => 'Hide all',
                    407:                  'shal' => 'Show all',
                    408:     );
                    409: 
1.1       raeburn   410:     my %unread = ();
                    411:     my %ungraded = ();
                    412:     my %bombed = ();
1.11      raeburn   413:     my %triggered = ();
1.33      raeburn   414:     my %changed = ();
1.1       raeburn   415:     my @newmsgs = ();
                    416:     my @critmsgs = ();
                    417:     my @newdiscussions = ();
                    418:     my @tograde = ();
                    419:     my @bombs = ();
1.11      raeburn   420:     my @warnings = ();
1.33      raeburn   421:     my $msgcount = 0;
                    422:     my $critmsgcount = 0;
1.77      raeburn   423:     my $expirecount;
                    424:     my %expired;
                    425:     my $activecount;
                    426:     my %activated;
1.106     raeburn   427:     my %loggedin;
                    428:     my $logincount;
1.126     raeburn   429:     my %sessions;
                    430:     my $sessioncount;
1.16      raeburn   431:     my %res_title = ();
1.33      raeburn   432:     my %show = ();
                    433:     my $needitems = 0;
                    434:     my $boxcount = 0;
1.1       raeburn   435: 
1.39      raeburn   436:     my $result;
                    437:     if ($command eq 'newcourseinit') {
                    438:         $result = &store_courseinit_setting($uname,$udom,$cid,$initpage);
                    439:     }
                    440: 
1.64      banghart  441:     my %threshold = ();
1.39      raeburn   442:     my %pagedesc = &Apache::lonlocal::texthash (
                    443:                      firstres => 'First resource',
1.88      hauer     444:                      whatsnew => "What's New Page",
1.39      raeburn   445:                      userpref => 'user preference',
1.56      raeburn   446:                      coursespecific => $lctype.' only',
1.39      raeburn   447:                      default => 'default',
                    448:                    );
                    449: 
                    450:     my ($initcontrol,$initdisp) = &curr_courseinit();
                    451:     my $currinit = $pagedesc{$initdisp}.' ('.$pagedesc{$initcontrol}.')';
1.13      raeburn   452: 
1.36      raeburn   453:     unless ($cid) {
1.73      raeburn   454:         $r->print('<p><span style="text-align: center; font-weight: bold;">'.$lt{'yacc'}.'</span></p>');
1.1       raeburn   455:         return;
                    456:     }
1.33      raeburn   457: 
1.97      bisitz    458:     my $header = '';
1.39      raeburn   459:     if ($refpage eq 'start') {
                    460:         if (tie(my %bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
1.36      raeburn   461:             &GDBM_READER(),0640)) {
1.98      raeburn   462:             my $furl=&HTML::Entities::encode($bighash{'first_url'},'"<>&');
1.39      raeburn   463:             untie(%bighash);
1.97      bisitz    464:             $header .= '<b><a href="'.$furl.'">'.$lt{'gtfr'}.
                    465:                   '</a></b><br />';
1.39      raeburn   466:         }
1.36      raeburn   467:     }
1.97      bisitz    468:     $header .= &mt('Page set to be displayed after you have selected a role in this '.$lctype).'.'
1.74      bisitz    469:               .' <span class="LC_nobreak">'
1.78      bisitz    470:               .&mt('Currently: [_1].','<i>'.$currinit.'</i>')
                    471:               .'&nbsp;&nbsp;'
1.96      bisitz    472:               .&mt('[_1]Change[_2] for just [_3]this '.$lctype.'[_4] or for [_5]all your courses/communities[_6].'
1.81      bisitz    473:                   ,'<b>'
                    474:                   ,'</b>'
1.74      bisitz    475:                   ,'<a href="/adm/whatsnew?command=courseinit&amp;refpage='.$refpage.'">'
1.96      bisitz    476:                   ,'</a>'
1.81      bisitz    477:                   ,'<a href="/adm/preferences?action=changecourseinit&amp;refpage='.$refpage.'">'
                    478:                   ,'</a>')
1.97      bisitz    479:               .' </span>';
                    480: 
                    481:     $r->print(&Apache::loncommon::head_subbox($header));
1.56      raeburn   482: 
1.36      raeburn   483:     if ($command eq 'reset') {
1.119     raeburn   484:         $result = &process_reset($cdom,$crs,$checkallowed);
1.36      raeburn   485:     } elsif ($command eq 'update') {
1.39      raeburn   486:         $result = &process_update($uname,$udom,$threshold_titles);
1.36      raeburn   487:     } elsif ($command eq 'newinterval') {
                    488:         $result = &store_interval_setting($uname,$udom,$cid,$interval_titles);
1.39      raeburn   489:     } elsif ($command eq 'newdiscconf') {
                    490:         $result = &store_discussion_setting($uname,$udom,$cid);
1.36      raeburn   491:     }
                    492: 
                    493:     my $store_result=&store_display_settings($uname,$udom,$cid,$checkallowed);
                    494: 
                    495:     unless ($store_result eq 'ok') { 
1.71      albertel  496:         &Apache::lonnet::logthis('Error saving whatsnew settings: '.
1.56      raeburn   497:             $store_result.' for '.'user '.$uname.':'.$udom.' in '.$lctype.' '.$cid);
1.97      bisitz    498:         $result .= '<span class="LC_error">'
                    499:                   .&mt('Unable to save visibility settings due to [_1]',
                    500:                        $store_result)
                    501:                   .'</span>';
1.36      raeburn   502:     }
                    503: 
                    504:     if ($result) {
1.94      bisitz    505:         $r->print($result.'<hr />');
1.36      raeburn   506:     }
                    507:     $r->rflush();
                    508: 
1.77      raeburn   509:     my (%timediff,%interval);
                    510:     my %display_settings = &get_display_settings($uname,$udom,$cid);
                    511:     $timediff{'versions'} = $display_settings{$cid.':interval'};
                    512:     unless (defined($timediff{'versions'})) { $timediff{'versions'} = 604800; } 
                    513:     $interval{'versions'} = $interval_titles->{'versions'}->{$timediff{'versions'}};
                    514: 
                    515:     my %headings = &Apache::lonlocal::texthash(
                    516:                 coursediscussion => 'Unread '.$lctype.' discussion posts',
                    517:                 handgrading      => 'Problems requiring handgrading',
                    518:                 haserrors        => 'Problems with errors',
                    519:                 coursenormalmail => 'New '.$lctype.' messages',
                    520:                 coursecritmail   => 'New critical messages in '.$lctype,
                    521:     );
                    522: 
                    523:     if ($timediff{'versions'} == -1) {
1.78      bisitz    524:         $headings{'versionchanges'} = &mt('Resources in '.$lctype.' with version changes since start of '.$lctype);
1.77      raeburn   525:     } elsif ($timediff{'versions'} == 2592000) {
1.78      bisitz    526:         $headings{'versionchanges'} = &mt('Resources in '.$lctype.' with version changes since last month');
1.77      raeburn   527:     } elsif ($timediff{'versions'} == 604800) {
1.78      bisitz    528:         $headings{'versionchanges'} = &mt('Resources in '.$lctype.' with version changes since last week');
1.77      raeburn   529:     } elsif ($timediff{'versions'} == 86400) {
1.78      bisitz    530:         $headings{'versionchanges'} = &mt('Resources in '.$lctype.' with version changes since yesterday');
1.77      raeburn   531:     }
                    532: 
                    533:     $timediff{'oldroles'} = $display_settings{$cid.':oldroleinterval'};
                    534:     unless (defined($timediff{'oldroles'})) { $timediff{'oldroles'} = 604800; }
                    535:     $interval{'oldroles'} = $interval_titles->{'oldroles'}->{$timediff{'oldroles'}};
                    536: 
                    537:     if ($timediff{'oldroles'} == -1) {
1.78      bisitz    538:         $headings{'oldroles'} = &mt('Roles for which access to '.$lctype.' has expired since start of '.$lctype);
1.77      raeburn   539:     } elsif ($timediff{'oldroles'} == 2592000) {
1.78      bisitz    540:         $headings{'oldroles'} = &mt('Roles for which access to '.$lctype.' has expired since last month');
1.77      raeburn   541:     } elsif ($timediff{'oldroles'} == 604800) {
1.78      bisitz    542:         $headings{'oldroles'} = &mt('Roles for which access to '.$lctype.' has expired since last week');
1.77      raeburn   543:     } elsif ($timediff{'oldroles'} == 86400) {
1.78      bisitz    544:         $headings{'oldroles'} = &mt('Roles for which access to '.$lctype.' has expired since yesterday');
1.77      raeburn   545:     }
                    546: 
                    547:     $timediff{'newroles'} = $display_settings{$cid.':newroleinterval'};
                    548:     unless (defined($timediff{'newroles'})) { $timediff{'newroles'} = 604800; }
                    549:     $interval{'newroles'} = $interval_titles->{'newroles'}->{$timediff{'newroles'}};
                    550: 
                    551:     if ($timediff{'newroles'} == -1) {
1.78      bisitz    552:         $headings{'newroles'} = &mt('Roles for which access to '.$lctype.' has become available since start of '.$lctype);
1.77      raeburn   553:     } elsif ($timediff{'newroles'} == 2592000) {
1.78      bisitz    554:         $headings{'newroles'} = &mt('Roles for which access to '.$lctype.' has become available since last month');
1.77      raeburn   555:     } elsif ($timediff{'newroles'} == 604800) {
1.78      bisitz    556:         $headings{'newroles'} = &mt('Roles for which access to '.$lctype.' has become available since last week');
1.77      raeburn   557:     } elsif ($timediff{'newroles'} == 86400) {
1.78      bisitz    558:         $headings{'newroles'} = &mt('Roles for which access to '.$lctype.' has become available since yesterday');
1.77      raeburn   559:     }
1.33      raeburn   560: 
1.106     raeburn   561:     $timediff{'crslogin'} = $display_settings{$cid.':crslogininterval'};
                    562:     unless (defined($timediff{'crslogin'})) { $timediff{'crslogin'} = 604800; }
                    563:     $interval{'crslogin'} = $interval_titles->{'crslogin'}->{$timediff{'crslogin'}};
                    564: 
                    565:     if ($timediff{'crslogin'} == -1) {
                    566:         $headings{'crslogin'} = &mt('Last login for anyone who has ever logged in');
                    567:     } elsif ($timediff{'crslogin'} == 2592000) {
                    568:         $headings{'crslogin'} = &mt('Last login for users in last 30 days');
                    569:     } elsif ($timediff{'crslogin'} == 604800) {
                    570:         $headings{'crslogin'} = &mt('Last login for users in last 7 days');
                    571:     } elsif ($timediff{'crslogin'} == 86400) {
                    572:         $headings{'crslogin'} = &mt('Last login for users in last 24 hours');
                    573:     }
                    574: 
1.126     raeburn   575:     $timediff{'sessions'} = $display_settings{$cid.':sessionactivity'};
                    576:     unless (defined($timediff{'sessions'})) { $timediff{'sessions'} = 7200; }
                    577:     $interval{'sessions'} = $interval_titles->{'sessions'}->{$timediff{'sessions'}};
                    578: 
                    579:     if ($timediff{'sessions'} == -7200) {
                    580:         $headings{'sessions'} = &mt('Session with activity more than 2 hours ago');
                    581:     } elsif ($timediff{'sessions'} == 7200) {
                    582:         $headings{'sessions'} = &mt('Session with activity in last 2 hours');
                    583:     } elsif ($timediff{'sessions'} == 1800) {
                    584:         $headings{'sessions'} = &mt('Session with activity in last 30 minutes');
                    585:     } elsif ($timediff{'sessions'} == 600) {
                    586:         $headings{'sessions'} = &mt('Session with activity in last 10 minutes');
                    587:     } elsif ($timediff{'sessions'} == 300) {
                    588:         $headings{'sessions'} = &mt('Session with activity in last 5 minutes');
                    589:     }
                    590: 
1.111     raeburn   591:     my ($now,$starttime,$activatedstart,$expiredstart,$crsloginstart);
                    592:     $now = time;
                    593: 
1.77      raeburn   594:     if ($timediff{'versions'} == -1) {
1.111     raeburn   595:         $starttime = 0;
                    596:     } else {
                    597:         $starttime = $now - $timediff{'versions'};
1.77      raeburn   598:     }
                    599: 
                    600:     if ($timediff{'newroles'} == -1) {
1.111     raeburn   601:         $activatedstart = 0;
                    602:     } else {
                    603:         $activatedstart = $now - $timediff{'newroles'};
1.77      raeburn   604:     }
                    605: 
                    606:     if ($timediff{'oldroles'} == -1) {
1.111     raeburn   607:         $expiredstart = 0;
                    608:     } else {
                    609:         $expiredstart = $now - $timediff{'oldroles'};
1.77      raeburn   610:     }
                    611: 
1.106     raeburn   612:     if ($timediff{'crslogin'} == -1) {
1.111     raeburn   613:         $crsloginstart = 0;
                    614:     } else {
                    615:         $crsloginstart = $now - $timediff{'crslogin'};
1.106     raeburn   616:     }
                    617: 
1.39      raeburn   618:     my $countunread = $display_settings{$cid.':countunread'};
                    619:     unless (defined($countunread)) {
                    620:         $countunread = 'on';
                    621:     }
1.36      raeburn   622:     if ($$checkallowed{'abovethreshold'}) {
1.39      raeburn   623:         &get_curr_thresholds(\%threshold,$uname,$udom,$cid,$cdom,$crs);
1.33      raeburn   624:     }
                    625: 
1.59      albertel  626:     $headings{'abovethreshold'} = 
1.80      raeburn   627: 	&mt('(Problems with av. attempts &ge; [_1] or deg. difficulty &ge; [_2]) [_3] and total number of '.$stulabel{$crstype}.' with submissions &ge; [_4]',
1.59      albertel  628: 	    $threshold{'av_attempts'},$threshold{'degdiff'},
1.80      raeburn   629: 	    '<br />',$threshold{'numstudents'});
1.33      raeburn   630: 
1.126     raeburn   631:     my @actionorder = ('handgrading','haserrors','abovethreshold','versionchanges','coursediscussion','coursenormalmail','coursecritmail','newroles','oldroles','crslogin','sessions');
1.121     raeburn   632:     my %actioncolumn = (
                    633:                          handgrading      => 'left',
                    634:                          haserrors        => 'left',
                    635:                          abovethreshold   => 'left',
                    636:                          versionchanges   => 'left',
                    637:                          coursediscussion => 'right',
                    638:                          coursenormalmail => 'right',
                    639:                          coursecritmail   => 'right',
                    640:                          newroles         => 'right',
                    641:                          oldroles         => 'right',
                    642:                          crslogin         => 'right',
1.126     raeburn   643:                          sessions         => 'right',
1.121     raeburn   644:                        );
1.33      raeburn   645: 
1.36      raeburn   646:     foreach my $key (keys(%{$checkallowed})) {
1.44      albertel  647: 	if ($key =~ /_section$/) { next; }
1.33      raeburn   648:         $show{$key} = 0;
1.36      raeburn   649:         if ($$checkallowed{$key}) {
                    650:             unless ($display_settings{$cid.':'.$key} eq 'hide') {
1.33      raeburn   651:                 $show{$key} = 1;
                    652:             }
                    653:         }
                    654:     }
                    655: 
                    656:     foreach my $item (@actionorder) {
1.77      raeburn   657:         unless ($item eq 'coursenormalmail' || $item eq 'coursecritmail' ||
1.127     raeburn   658:                 $item eq 'newroles' || $item eq 'oldroles' || 
                    659:                 $item eq 'crslogin' || $item eq 'sessions') {
1.33      raeburn   660:             if ($show{$item}) {
                    661:                 $needitems = 1;
                    662:                 last;
                    663:             }
                    664:         }
                    665:     }
                    666: 
1.84      raeburn   667:     my $itemserror;
1.33      raeburn   668:     if ($needitems) {
1.119     raeburn   669:         $itemserror = &getitems(\%unread,\%ungraded,\%bombed,\%triggered,\%changed,\@newdiscussions,\@tograde,\@bombs,\@warnings,\%threshold,$cdom,$crs,\%res_title,\%show,$starttime,$countunread,$checkallowed);
1.1       raeburn   670:     }
1.114     raeburn   671:     my $classlist;
1.126     raeburn   672:     if ($show{'oldroles'} || $show{'newroles'} || $show{'crslogin'} || $show{'sessions'}) {
1.115     raeburn   673:         $classlist = &Apache::loncoursedata::get_classlist();
1.114     raeburn   674:     }
1.33      raeburn   675:     if ($show{'coursenormalmail'}) {
1.50      raeburn   676:         $msgcount = &getnormalmail(\@newmsgs);
1.7       raeburn   677:     }
1.33      raeburn   678:     if ($show{'coursecritmail'}) {
1.50      raeburn   679:         $critmsgcount = &getcritmail(\@critmsgs);
1.11      raeburn   680:     }
1.77      raeburn   681:     if ($show{'oldroles'}) {
1.114     raeburn   682:         $expirecount = &getexpired(\%expired,$expiredstart,'previous',$classlist);
1.77      raeburn   683:     }
                    684:     if ($show{'newroles'}) {
1.114     raeburn   685:         $activecount = &getactivated(\%activated,$activatedstart,'active',$classlist);
1.77      raeburn   686:     }
1.106     raeburn   687:     if ($show{'crslogin'}) {
                    688:         $logincount = &getloggedin($cdom,$crs,\%loggedin,$crsloginstart);
                    689:     }
1.126     raeburn   690:     if ($show{'sessions'}) {
                    691:         $sessioncount = &getsessions($cdom,$crs,\%sessions,$timediff{'sessions'},$classlist);
                    692:     }
1.36      raeburn   693:     $r->print(qq|<a href="javascript:changeAll('hide');">$lt{'hial'}</a>
                    694:      &nbsp;&nbsp;<a href="javascript:changeAll('show');">$lt{'shal'}</a>
                    695:      <form method="post" name="visible" action="/adm/whatsnew">\n|);
                    696:     foreach my $item (keys(%{$checkallowed})) {
1.44      albertel  697: 	if ($item =~ /_section$/) { next; }
1.36      raeburn   698:         if ($$checkallowed{$item}) {
                    699:             $r->print('<input type="hidden" name="display_'.$item.'" />'."\n");
                    700:         }
                    701:     }
1.1       raeburn   702: 
1.106     raeburn   703:     $r->print('<input type="hidden" name="refpage" value="'.$refpage.'" /><table class="LC_double_column"><tr><td class="LC_left_col">');
1.1       raeburn   704: 
1.33      raeburn   705:     my $displayed = 0;
1.40      raeburn   706:     my $totalboxes = 0;
                    707:     foreach my $key (keys(%{$checkallowed})) {
1.44      albertel  708: 	if ($key =~ /_section$/) { next; }
                    709: 	if ($key eq 'whatsnew' ) { next; } # whatsnew check creates no box
1.40      raeburn   710:         if ($$checkallowed{$key}) {
                    711:             $totalboxes ++;
                    712:         }
                    713:     }
1.121     raeburn   714:     my $currcolumn = 'left';
1.77      raeburn   715: #    my $halfway = int($totalboxes/2) + $totalboxes%2;
1.33      raeburn   716:     foreach my $actionitem (@actionorder) {
1.121     raeburn   717:         if ($checkallowed->{$actionitem}) {
                    718:             if (($actioncolumn{$actionitem} eq 'right') && ($currcolumn eq 'left')) {
1.73      raeburn   719:                 $r->print('</td><td>&nbsp;</td><td class="LC_right_col" >');
1.121     raeburn   720:                 $currcolumn = 'right'; 
1.1       raeburn   721:             }
1.126     raeburn   722:             &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,\%loggedin,$logincount,\%sessions,$sessioncount,$classlist);
1.33      raeburn   723:             $displayed ++; 
1.1       raeburn   724:         }
                    725:     }
                    726:     $r->print('
1.33      raeburn   727:       </td>
                    728:     </tr>
1.73      raeburn   729:    </table>
1.106     raeburn   730:    </form>
1.73      raeburn   731: ');
1.1       raeburn   732: }
                    733: 
1.11      raeburn   734: #-------------------------------
1.36      raeburn   735: # display_threshold_config
1.11      raeburn   736: #
1.13      raeburn   737: # Display the threshold setting screen 
1.11      raeburn   738: #
                    739: #-------------------------------
                    740:                                                                                 
1.36      raeburn   741: sub display_threshold_config {
1.69      raeburn   742:     my ($r,$refpage,$threshold_titles,$cdom,$crs) = @_;
1.39      raeburn   743:     my $uname = $env{'user.name'};
                    744:     my $udom = $env{'user.dom'};
                    745:     my $cid = $env{'request.course.id'};
1.13      raeburn   746:     my %threshold = ();
                    747:     my $rowColor1 = "#ffffff";
                    748:     my $rowColor2 = "#eeeeee";
                    749:     my $rowColor;
                    750: 
                    751:     my @thresholditems = ("av_attempts","degdiff","numstudents");
1.39      raeburn   752:     my %threshold_titles = &Apache::lonlocal::texthash(
1.13      raeburn   753:                          av_attempts => 'Average number of attempts',
                    754:                          degdiff => 'Degree of difficulty',
                    755:                          numstudents => 'Total number of students with submissions',
                    756:                          );
1.39      raeburn   757:     &get_curr_thresholds(\%threshold,$uname,$udom,$cid,$cdom,$crs);
1.13      raeburn   758: 
1.68      raeburn   759:     $r->print('<br /><form name="thresholdform" method="post" action="/adm/whatsnew">'.
                    760:               &Apache::loncommon::start_data_table().
                    761:               &Apache::loncommon::start_data_table_header_row().
1.70      raeburn   762:              '<th>'.&mt('Threshold Name').'</th>'."\n".
                    763:              '<th>'.&mt('Current value').'</th>'."\n".
                    764:              '<th>'.&mt('Change?').'</th>'."\n".
1.68      raeburn   765:               &Apache::loncommon::end_data_table_header_row());
1.13      raeburn   766:     foreach my $type (@thresholditems) {
1.39      raeburn   767:         my $parameter = $env{'request.course.id'}.':threshold_'.$type;
1.13      raeburn   768: # onchange is javascript to automatically check the 'Set' button.
1.113     bisitz    769:         my $onchange = 'onfocus="javascript:window.document.forms'.
1.13      raeburn   770:               "['thresholdform'].elements['".$parameter."_setparmval']".
                    771:               '.checked=true;"';
1.68      raeburn   772:         $r->print(&Apache::loncommon::start_data_table_row()."\n".
                    773:                  '<td>'.$threshold_titles{$type}.'</td>'."\n".
                    774:                  '<td>'.&Apache::lonhtmlcommon::textbox($parameter.'_value',
1.13      raeburn   775:                                             $threshold{$type},
1.68      raeburn   776:                                             10,$onchange).'</td>'."\n".
                    777:                  '<td>'.
                    778:                  &Apache::lonhtmlcommon::checkbox($parameter.'_setparmval').
                    779:                  '</td>'."\n".
                    780:                  &Apache::loncommon::end_data_table_row());
1.13      raeburn   781:     }
1.68      raeburn   782:     $r->print(&Apache::loncommon::end_data_table()."\n".
1.87      schafran  783:           '<br /><input type="submit" name="threshold" value="'.&mt('Save').'" />
1.36      raeburn   784:                  <input type="hidden" name="command" value="update" />
1.39      raeburn   785:                  <input type="hidden" name="refpage" value="'.$refpage.'" />
1.13      raeburn   786:                </form>');
1.11      raeburn   787: }
                    788: 
1.36      raeburn   789: #-------------------------------
                    790: # display_interval_config
                    791: #
                    792: # Display the interval setting screen
                    793: #
                    794: #-------------------------------
                    795:                                                                                    
                    796: sub display_interval_config {
1.77      raeburn   797:     my ($r,$refpage,$interval_titles,$context) = @_;
                    798:     my $setting = 'interval';
                    799:     if ($context eq 'oldroles') {
                    800:         $setting = 'oldroleinterval';
                    801:     } elsif ($context eq 'newroles') {
                    802:         $setting = 'newroleinterval'; 
1.126     raeburn   803:     } elsif ($context eq 'sessions') {
                    804:         $setting = 'sessionactivity';
1.77      raeburn   805:     }
1.59      albertel  806:     my $lctype = lc(&Apache::loncommon::course_type());
1.39      raeburn   807:     my $current = &get_current($env{'user.name'},$env{'user.domain'},
1.77      raeburn   808:                                 $env{'request.course.id'},$setting);
                    809:     if ($context eq 'oldroles') {
                    810:         $r->print('<br />'.&mt('Choose the time window to use to display roles for which access to the '.$lctype.' expired.').'<br />');
                    811:     } elsif ($context eq 'newroles') {
                    812:         $r->print('<br />'.&mt('Choose the time window to use to display roles for which access to the '.$lctype.' became available.').'<br />');
1.106     raeburn   813:     } elsif ($context eq 'crslogin') {
                    814:         $r->print('<br />'.&mt('Choose the time window to use to display the last login by a user in the '.$lctype).'<br />');
1.126     raeburn   815:     } elsif ($context eq 'sessions') {
                    816:         $r->print('<br />'.&mt('Choose the time limit to use to display active user sessions in the '.$lctype.'.').'<br />');
1.77      raeburn   817:     } else {
                    818:         $r->print('<br />'.&mt('Choose the time window to use to display resources in the '.$lctype.' with version changes.').'<br />');
                    819:     }
1.36      raeburn   820:     unless ($current eq '') {
1.77      raeburn   821:         if (ref($interval_titles->{$context}) eq 'HASH') {
                    822:             $r->print(' '.&mt('Current value is "[_1]".','<b>'.
                    823:                       $interval_titles->{$context}->{$current}.'</b>').'<br />');
                    824:         }
1.36      raeburn   825:     }
1.77      raeburn   826:     $r->print('<br />
1.36      raeburn   827: <form method="post" name="intervalswitch" action="/adm/whatsnew">
                    828: <input type="hidden" name="command" value="newinterval" />
1.77      raeburn   829: <input type="hidden" name="intervaltype" value="'.$context.'" />
                    830: <input type="hidden" name="refpage" value="'.$refpage.'" />'.
                    831: &mt('Display:').' 
1.36      raeburn   832: <select name="interval">
1.78      bisitz    833: <option value="" selected="selected">'.&mt('Select').'</option>
1.36      raeburn   834: ');
1.77      raeburn   835:     if (ref($interval_titles) eq 'HASH') {
                    836:         if (ref($interval_titles->{$context}) eq 'HASH') {
1.126     raeburn   837:             my @sorted;
                    838:             if ($context eq 'sessions') {
                    839:                 @sorted = sort { $a <=> $b } (keys(%{$interval_titles->{$context}}));
                    840:                 push(@sorted,shift(@sorted));
                    841:             } else {
                    842:                 @sorted = reverse sort ({$a cmp $b} (keys(%{$interval_titles->{$context}})));
                    843:             }
                    844:             foreach my $key (@sorted) {
1.78      bisitz    845:                 $r->print('<option value="'.$key.'">'.&mt($interval_titles->{$context}->{$key}).
1.77      raeburn   846:                           '</option>'."\n");
                    847:             }
                    848:         }
1.36      raeburn   849:     }
                    850:     $r->print('</select>&nbsp;&nbsp;
                    851:                <input type="submit" name="display" value="'.
1.87      schafran  852:                &mt('Save').'" /></form>');
1.36      raeburn   853:     return;
                    854: }
                    855: 
1.39      raeburn   856: #----------------------------------------------
                    857: # display_discussion_config
                    858: #
                    859: # Display the discussion display setting screen
                    860: #
                    861: #----------------------------------------------
                    862:                                                                                   
                    863: sub display_discussion_config {
                    864:     my ($r,$refpage) = @_;
                    865:     my $current = &get_current($env{'user.name'},$env{'user.domain'},
                    866:                                 $env{'request.course.id'},'countunread');
                    867:     if ($current eq '') {
                    868:         $current = 'on';
                    869:     }
1.47      raeburn   870:     my %opposite = ( 
                    871:                       'on' => 'off',
                    872:                       'off' => 'on',
                    873:                     );
                    874:     $r->print('<script type="text/javascript">
                    875: function toggle_countunread(choice) {
                    876:     if (choice == "unchanged") {
                    877:         document.discussionswitch.command.value = "";
                    878:     }
                    879:     document.discussionswitch.submit();
                    880: }
                    881: </script>');
1.81      bisitz    882:     $r->print('<br />'
1.86      schafran  883:              .&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.')
1.81      bisitz    884:              .'<br />'
1.90      hauer     885:              .&mt("This can increase the time taken to gather data for the [_1]What's New Page[_2] by a few seconds.",'<i>','</i>')
1.81      bisitz    886:              .'&nbsp;&nbsp;'
1.116     bisitz    887:              .&mt('Currently set to [_1].','<b>'.$current.'</b>')
1.81      bisitz    888:     );
1.39      raeburn   889:     $r->print('<br /><br />
1.47      raeburn   890: <form method="post" name="discussionswitch" action="/adm/whatsnew">
1.39      raeburn   891: <input type="hidden" name="command" value="newdiscconf" />
                    892: <input type="hidden" name="refpage" value="'.$refpage.'" />
1.47      raeburn   893: <input type="hidden" name="countunread" value="'.$opposite{$current}.'" />
1.39      raeburn   894: ');
1.47      raeburn   895:     $r->print('<br/>
                    896:                <input type="button" name="display" value="'.
1.74      bisitz    897:                &mt('Change to [_1]',&mt($opposite{$current})).'" 
1.83      raeburn   898:                onclick="javascript:toggle_countunread('."'change'".')" />'.
                    899:                ('&nbsp;' x7).
                    900:                '<input type="button" name="nochange" value="'.
1.47      raeburn   901:                &mt("No change").'" 
                    902:                onclick="javascript:toggle_countunread('."'unchanged'".')" />
                    903:                </form>');
1.39      raeburn   904:     return;
                    905: }
                    906: 
                    907: #---------------------------------------------------
                    908: # courseinit_config
                    909: #
                    910: # Set page displayed when course loads after 
                    911: # selecting a role in the course from the roles page. 
                    912: #
                    913: #---------------------------------------------------
                    914: 
                    915: sub courseinit_config {
                    916:     my ($r,$refpage,$initpage) = @_;
                    917:     my ($control,$current) = &curr_courseinit();
                    918:     my @chgstate = ('userpref','coursespecific');
                    919:     my @chgentry = ('firstres','whatsnew');
1.59      albertel  920:     my $lctype = lc(&Apache::loncommon::course_type());
1.39      raeburn   921:     my %lt = &Apache::lonlocal::texthash(
1.56      raeburn   922:                              'chwp' => "Choose which page will be displayed when you enter this $lctype after selecting a role.",
1.39      raeburn   923:                              'cuva' => 'Current value is determined by',
                    924:                              'anis' => 'and is set to display',
                    925:                              'padc' => 'Page display controlled by',
1.56      raeburn   926:                              'chce' => 'Choose '.$lctype.' entry',
1.89      schafran  927:                              'moce' => 'Save',
1.39      raeburn   928:     );
                    929:     $r->print(<<"END"); 
                    930: <br />$lt{'chwp'}
                    931: <br />$lt{'cuva'}: <b>
                    932: $$initpage{$control}</b> $lt{'anis'} <b>
                    933: $$initpage{$current}</b>.<br /><br />
                    934: <form method="post" name="courseinitswitch" action="/adm/whatsnew">
                    935: <input type="hidden" name="command" value="newcourseinit" />
                    936: <input type="hidden" name="refpage" value="$refpage" />
1.56      raeburn   937: $lt{'padc'}:&nbsp;&nbsp;
1.39      raeburn   938: END
                    939:     foreach my $choice (@chgstate) {
1.56      raeburn   940:         my $chkstring;
                    941:         if ($choice eq $control) {
                    942:             $chkstring = ' checked="checked" ';
                    943:         }  
1.73      raeburn   944:         $r->print('<span class="LC_nobreak"><label><input type="radio" name="courseinit_control" value="'.
1.56      raeburn   945:                    $choice.'"'.$chkstring.'/>'.$$initpage{$choice}.
1.73      raeburn   946:                    '&nbsp;&nbsp;</label></span>');
1.39      raeburn   947:     }
                    948:     $r->print('<br /><br />'.&mt('If').' '.$$initpage{'coursespecific'}.
1.56      raeburn   949:               ' - <br />'.$lt{'chce'}.": \n");
1.39      raeburn   950:     foreach my $choice (@chgentry) {
1.56      raeburn   951:         my $chkstring;
                    952:         if (($choice eq $current) && ($control eq 'coursespecific')) {
                    953:             $chkstring = ' checked="checked" ';
                    954:         }
1.73      raeburn   955:         $r->print('<span class="LC_nobreak"><label><input type="radio" name="courseinit_page" value="'.
1.56      raeburn   956:                   $choice.'"'.$chkstring.'/>'.$$initpage{$choice}.
1.73      raeburn   957:                   '&nbsp;&nbsp;</label></span>');
1.39      raeburn   958:     }
                    959:     $r->print('<br /><br /><input type="submit" name="display" value="'.
                    960:                $lt{'moce'}.'" /></form>');
                    961:     return;
                    962: }
                    963: 
                    964: sub curr_courseinit {
                    965:     my $current = &get_current($env{'user.name'},$env{'user.domain'},
                    966:                                 $env{'request.course.id'},'courseinit');
                    967:     my $control;
1.40      raeburn   968:     if ($current) {
                    969:         $control = 'coursespecific';
                    970:     } else {
1.39      raeburn   971:         $control = 'userpref';
1.40      raeburn   972:         my %userenv = &Apache::lonnet::get('environment',
                    973:                                                       ['course_init_display']);
                    974:         if (exists($userenv{'course_init_display'})) {
                    975:             $current = $userenv{'course_init_display'};
                    976:         }
                    977:         unless ($current) {
1.39      raeburn   978:             $current = 'whatsnew';
                    979:         }
                    980:     }
                    981:     return ($control,$current);
                    982: }
                    983: 
1.33      raeburn   984: sub display_launcher {
1.69      raeburn   985:     my ($r,$action,$refpage,$checkallowed,$show,$headings,$res_title,
1.68      raeburn   986:         $tograde,$ungraded,$bombs,$bombed,$changed,$warnings,$triggered,
                    987:         $newdiscussions,$unread,$msgcount,$newmsgs,$critmsgcount,$critmsgs,
1.77      raeburn   988:         $interval,$countunread,$expired,$expirecount,$activated,$activecount,
1.126     raeburn   989:         $crstype,$itemserror,$loggedin,$logincount,$sessions,$sessioncount,
                    990:         $classlist) = @_;
1.33      raeburn   991: 
                    992:     if ($$checkallowed{$action}) {
1.106     raeburn   993:         &start_box($r,$show,$headings,$action,$refpage);
1.33      raeburn   994:         if ($$show{$action}) {
                    995:             if ($action eq 'handgrading') {    # UNGRADED ITEMS
1.84      raeburn   996:                 &display_handgrade($r,$tograde,$ungraded,$itemserror);
1.33      raeburn   997:             } elsif ($action eq 'haserrors') { # BOMBS
1.84      raeburn   998:                 &display_haserrors($r,$bombs,$bombed,$res_title,$itemserror);
1.33      raeburn   999:             } elsif ($action eq 'versionchanges') { # VERSION CHANGES
1.84      raeburn  1000:                 &display_versionchanges($r,$changed,$res_title,$interval->{'versions'},$itemserror);
1.33      raeburn  1001:             } elsif ($action eq 'abovethreshold') { # DEGDIFF/AV. TRIES TRIGGERS
1.39      raeburn  1002:                 &display_abovethreshold($r,$refpage,$warnings,$triggered,
1.119     raeburn  1003: 					$res_title,$itemserror,$checkallowed);
1.33      raeburn  1004:             } elsif ($action eq 'coursediscussion') { # UNREAD COURSE DISCUSSION
                   1005:                 &display_coursediscussion($r,$newdiscussions,$unread,
1.84      raeburn  1006:                                 $countunread,$res_title,$itemserror);
1.33      raeburn  1007:             } elsif ($action eq 'coursenormalmail') { # NORMAL MESSAGES
1.68      raeburn  1008:                 &display_coursenormalmail($r,$msgcount,$newmsgs);
1.33      raeburn  1009:             } elsif ($action eq 'coursecritmail') { # CRITICAL MESSAGES
1.68      raeburn  1010:                 &display_coursecritmail($r,$critmsgcount,$critmsgs);
1.77      raeburn  1011:             } elsif ($action eq 'newroles') { # ACTIVATED ROLES
                   1012:                 &display_rolechanges($r,$activecount,$activated,$interval->{'newroles'},
1.114     raeburn  1013:                                      $crstype,$classlist);
1.77      raeburn  1014:             } elsif ($action eq 'oldroles') { # EXPIRED ROLES
                   1015:                 &display_rolechanges($r,$expirecount,$expired,$interval->{'oldroles'},
1.114     raeburn  1016:                                      $crstype,$classlist);
1.106     raeburn  1017:             } elsif ($action eq 'crslogin') { #LAST LOGIN
1.126     raeburn  1018:                 &display_activity($r,'logins',$logincount,$loggedin,$interval->{'crslogin'},
1.114     raeburn  1019:                                    $crstype,$classlist);
1.126     raeburn  1020:             } elsif ($action eq 'sessions') { #ACTIVE SESSIONS
                   1021:                 &display_activity($r,'sessions',$sessioncount,$sessions,$interval->{'sessions'},
                   1022:                                   $crstype,$classlist);
1.33      raeburn  1023:             }
                   1024:         }
                   1025:         &end_box($r);
                   1026:     }
                   1027:     return;
                   1028: }
                   1029: 
1.1       raeburn  1030: sub getitems {
1.33      raeburn  1031:     my ($unread,$ungraded,$bombed,$triggered,$changed,$newdiscussions,
1.68      raeburn  1032:         $tograde,$bombs,$warnings,$threshold,$cdom,$crs,$res_title,$show,
1.119     raeburn  1033:         $starttime,$countunread,$checkallowed) = @_;
1.1       raeburn  1034:     my $navmap = Apache::lonnavmaps::navmap->new();
1.84      raeburn  1035:     if (!defined($navmap)) {
                   1036:         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>';
                   1037:         return $itemserror;
                   1038:     }
1.26      albertel 1039:     # force retrieve Resource to seed the part id cache we'll need it later
1.37      raeburn  1040:     my @allres=$navmap->retrieveResources(undef,
                   1041:                      sub {if ($_[0]->is_problem) { $_[0]->parts();} return 1;});
1.33      raeburn  1042:     my %resourcetracker;
1.37      raeburn  1043:     my $discussiontime;
1.33      raeburn  1044: 
                   1045: # Resource version changes
                   1046:     if ($$show{'versionchanges'}) {
                   1047:         &checkversions($cdom,$crs,$navmap,$changed,$starttime);
                   1048:     }
                   1049: 
                   1050:     if ($$show{'abovethreshold'}) {
                   1051:         %resourcetracker =  &Apache::lonnet::dump('nohist_resourcetracker',
                   1052:                                                                    $cdom,$crs);
                   1053:     }
1.1       raeburn  1054: 
                   1055:     foreach my $resource (@allres) {
                   1056:         my $result = '';
                   1057:         my $applies = 0;
                   1058:         my $symb = $resource->symb();
1.33      raeburn  1059:         %{$$bombed{$symb}} = ();
1.1       raeburn  1060:         %{$$ungraded{$symb}} = ();
1.11      raeburn  1061:         %{$$triggered{$symb}} = ();
                   1062:         $$triggered{$symb}{numparts} = 0;
1.66      raeburn  1063:         if ($resource->encrypted()) {
                   1064:             $$triggered{$symb}{'enclink'} = $resource->link();
                   1065:             $$triggered{$symb}{'encsymb'} = $resource->shown_symb();
                   1066:         }
1.1       raeburn  1067:         my $title = $resource->compTitle();
1.16      raeburn  1068:         $$res_title{$symb} = $title;
1.8       albertel 1069:         my $ressymb = $resource->wrap_symb();
1.33      raeburn  1070: 
1.37      raeburn  1071: # Check if there are unread discussion postings
1.33      raeburn  1072:         if ($$show{'coursediscussion'}) {
1.51      albertel 1073:             &check_discussions($resource,$symb,$ressymb,$title,
                   1074: 			       $newdiscussions,$unread,$countunread);
1.33      raeburn  1075:         }
1.1       raeburn  1076: 
                   1077: # Check for ungraded problems
                   1078:         if ($resource->is_problem()) {
1.33      raeburn  1079:             if ($$show{'handgrading'}) {
                   1080:                 &check_handgraded($resource,$symb,$title,$cdom,$crs,$ungraded,
                   1081:                                                                      $tograde);
                   1082:             }
1.1       raeburn  1083:         }
                   1084: 
                   1085: # Check for bombs
1.33      raeburn  1086:         if ($$show{'haserrors'}) {
                   1087:             &check_bombed($resource,$symb,$title,$bombs,$bombed);
                   1088:         }
                   1089: 
                   1090: # Maxtries and degree of difficulty for problem parts, unless handgradeable
                   1091:         if ($$show{'abovethreshold'}) {  
1.61      albertel 1092:             &check_thresholds($resource,$symb,\%resourcetracker,
1.119     raeburn  1093: 			      $triggered,$threshold,$warnings,
                   1094:                               $checkallowed);
1.33      raeburn  1095:         }
                   1096:     }
1.84      raeburn  1097:     return; 
1.33      raeburn  1098: }
                   1099: 
                   1100: sub check_discussions {
1.51      albertel 1101:     my ($resource,$symb,$ressymb,$title,$newdiscussions,$unread,
                   1102: 	$countunread) = @_;
                   1103: 
                   1104:     if (!$resource->hasDiscussion()) { return; }
1.37      raeburn  1105: 
1.51      albertel 1106:     %{$$unread{$ressymb}} = ();
                   1107:     $$unread{$ressymb}{'title'} = $title;
                   1108:     $$unread{$ressymb}{'symb'} = $symb;
1.66      raeburn  1109:     if ($resource->encrypted()) {
                   1110:         $$unread{$ressymb}{'enclink'} = $resource->link();
                   1111:         $$unread{$ressymb}{'encsymb'} = $resource->shown_symb();
                   1112:     }
1.51      albertel 1113:     push(@{$newdiscussions}, $ressymb);
                   1114:     
                   1115:     $$unread{$ressymb}{'lastpost'} = $resource->last_post_time();
                   1116:     
                   1117:     if ($countunread eq 'on') {
1.67      raeburn  1118: 	$$unread{$ressymb}{'unreadcount'} = 
                   1119:                             $resource->discussion_info('unread');
1.33      raeburn  1120:     }
                   1121: }
                   1122: 
                   1123: sub check_handgraded {
                   1124:     my ($resource,$symb,$title,$cdom,$cnum,$ungraded,$tograde) = @_;
                   1125:     if ($resource->is_problem()) {
1.128     raeburn  1126:         my ($handgradeable,$is_task);
1.33      raeburn  1127:         my $partlist=$resource->parts();
1.128     raeburn  1128:         if ($resource->is_task()) {
                   1129:             $is_task = 1;
                   1130:             foreach my $part (@$partlist) {
                   1131:                 if ($resource->handgrade($part) eq 'yes') {
                   1132:                     $handgradeable=1;
                   1133:                     last;
                   1134:                 }
                   1135:             }
                   1136:         } else {
                   1137:             foreach my $part (@$partlist) {
                   1138:                 my @types = $resource->responseType($part);
                   1139:                 if (grep(/^essay$/,@types)) {
                   1140:                     $handgradeable=1;
                   1141:                     last;
1.129   ! raeburn  1142:                 } elsif (grep(/^custom$/,@types)) {
        !          1143:                     if ($resource->handgrade($part) eq 'yes') {
        !          1144:                         $handgradeable=1;
        !          1145:                         last;
        !          1146:                     }
1.128     raeburn  1147:                 }
1.31      raeburn  1148:             }
1.33      raeburn  1149:         }
                   1150:         if ($handgradeable) {
1.35      raeburn  1151:             my @ungraded = &Apache::bridgetask::get_queue_symb_status(
1.33      raeburn  1152:                                              'gradingqueue',$symb,$cdom,$cnum);
                   1153:             if (@ungraded > 0) {
                   1154:                 $$ungraded{$symb}{count} = scalar(@ungraded);
                   1155:                 $$ungraded{$symb}{title} = $title;
1.128     raeburn  1156:                 $$ungraded{$symb}{is_task} = $is_task;
1.66      raeburn  1157:                 if ($resource->encrypted()) {
                   1158:                     $$ungraded{$symb}{'enclink'} = $resource->link();
                   1159:                     $$ungraded{$symb}{'encsymb'} = $resource->shown_symb();
                   1160:                 }
                   1161:                 push(@{$tograde},$symb);
1.11      raeburn  1162:             }
                   1163:         }
1.33      raeburn  1164:     }
                   1165: }
                   1166: 
                   1167: sub check_bombed {
                   1168:     my ($resource,$symb,$title,$bombs,$bombed) = @_;
                   1169:     if ($resource->getErrors()) {
                   1170:         my $errors = $resource->getErrors();
                   1171:         $errors =~ s/^,//;
                   1172:         my @bombs = split(/,/, $errors);
                   1173:         my $errorcount = scalar(@bombs);
                   1174:         my $errorlink = '<a href="/adm/email?display='.
1.55      www      1175:                         &escape($bombs[0]).'">'.
1.33      raeburn  1176:                         $title.'</a>';
                   1177:         $$bombed{$symb}{errorcount} = $errorcount;
                   1178:         $$bombed{$symb}{errorlink} = $errorlink;
                   1179:         push(@{$bombs}, $symb);
                   1180:     }
                   1181: }
                   1182: 
                   1183: sub check_thresholds {
1.119     raeburn  1184:     my ($resource,$symb,$resourcetracker,$triggered,$threshold,$warnings,
                   1185:         $checkallowed) = @_;
1.33      raeburn  1186: # Compile maxtries and degree of difficulty for problem parts, unless handgradeable
                   1187:     my @parts = @{$resource->parts()};
                   1188:     my %stats;
                   1189:     my %lastreset = ();
                   1190:     my $warning = 0;
                   1191:     foreach my $part (@parts) {
                   1192:         if ($resource->handgrade($part) eq 'yes') {
                   1193:             next;
                   1194:         }
1.101     raeburn  1195:         if ($resource->is_anonsurvey($part)) {
                   1196:             next;
                   1197:         }
1.48      raeburn  1198:         if ($resource->is_survey($part)) {
                   1199:             next;
                   1200:         }
1.33      raeburn  1201:         %{$stats{$part}} = ();
                   1202:         my ($attempts,$users,$corrects,$degdiff,$av_attempts);
                   1203:         if (exists($$resourcetracker{$symb."\0".$part."\0attempts"})) {
                   1204:             $attempts = $$resourcetracker{$symb."\0".$part."\0attempts"};
                   1205:         }
                   1206:         if (exists($$resourcetracker{$symb."\0".$part."\0users"})) {
                   1207:             $users = $$resourcetracker{$symb."\0".$part."\0users"};
                   1208:         }
                   1209:         if (exists($$resourcetracker{$symb."\0".$part."\0correct"})) {
                   1210:             $corrects = $$resourcetracker{$symb."\0".$part."\0correct"};
                   1211:         }
                   1212:         if ($attempts > 0) {
                   1213:             $degdiff =  1 - ($corrects/$attempts);
                   1214:             $degdiff = sprintf("%.2f",$degdiff);
                   1215:         }
                   1216:         if ($users > 0) {
                   1217:             $av_attempts = $attempts/$users;
                   1218:             $av_attempts = sprintf("%.2f",$av_attempts);
                   1219:         }
1.105     www      1220:         &Apache::lonnet::statslog($symb,$part,$users,$av_attempts,$degdiff);
1.33      raeburn  1221:         if ((($degdiff ne '' && $degdiff >= $$threshold{'degdiff'}) || ($av_attempts ne '' && $av_attempts >= $$threshold{'av_attempts'})) && ($users >= $$threshold{'numstudents'})) {
                   1222:             $stats{$part}{degdiff} = $degdiff;
                   1223:             $stats{$part}{attempts} = $av_attempts;
                   1224:             $stats{$part}{users} = $users;
                   1225:             $lastreset{$part} = $$resourcetracker{$symb."\0".$part."\0resettime"};
                   1226:             if ($lastreset{$part}) {
                   1227:                 $lastreset{$part} = &Apache::lonnavmaps::timeToHumanString($lastreset{$part});
1.11      raeburn  1228:             }
1.33      raeburn  1229:             $warning = 1;
                   1230:         }
                   1231:     }
                   1232:     if ($warning) {
                   1233:         $$triggered{$symb}{title} = $resource->title;
1.62      raeburn  1234:         my $partcount = 0;
                   1235:         @{$$triggered{$symb}{text}} = ();
1.33      raeburn  1236:         foreach my $part (@parts) {
                   1237:             if (exists($stats{$part}{users})) {
1.55      www      1238:                 my $resetname = 'reset_'.&escape($symb."\0".$part);
                   1239:                 my $resettitle = 'title_'.&escape($symb."\0".$part);
1.33      raeburn  1240:                 if (@parts > 1) {
1.62      raeburn  1241:                     $$triggered{$symb}{text}[$partcount] = '
1.74      bisitz   1242:                      <td>'.&mt('part - ').$part.'</td>';
1.33      raeburn  1243:                 } else {
1.62      raeburn  1244:                     $$triggered{$symb}{text}[$partcount] = '
1.74      bisitz   1245:                      <td>'.&mt('single part').'</td>';
1.11      raeburn  1246:                 }
1.62      raeburn  1247:                 $$triggered{$symb}{text}[$partcount] .= '
1.61      albertel 1248:                      <td>'.$stats{$part}{users}.'</td>
                   1249:                      <td>'.$stats{$part}{attempts}.'</td>
                   1250:                      <td>'.$stats{$part}{degdiff}.'</td>
1.119     raeburn  1251:                      <td>'.$lastreset{$part}.'</td>';
1.120     raeburn  1252:                 if ($checkallowed->{'resetcounters'}) {
                   1253:                     $$triggered{$symb}{text}[$partcount] .=
1.119     raeburn  1254:                         '<td><input type="checkbox" name="'.$resetname.'" />'.
                   1255:                         '<input type="hidden" name="'.$resettitle.'" value="'.&escape($$triggered{$symb}{title}).'" /></td>';
                   1256:                 }
1.62      raeburn  1257:                 $partcount ++;
1.11      raeburn  1258:             }
1.62      raeburn  1259:             $$triggered{$symb}{numparts} = $partcount;
1.11      raeburn  1260:         }
1.33      raeburn  1261:         push(@{$warnings},$symb);
1.1       raeburn  1262:     }
                   1263: }
                   1264: 
1.33      raeburn  1265: 
1.13      raeburn  1266: sub get_curr_thresholds {
1.39      raeburn  1267:     my ($threshold,$uname,$udom,$cid,$cdom,$crs) = @_;
1.64      banghart 1268:     # set default values
                   1269:     %$threshold = (av_attempts => 2,
                   1270:                   degdiff => 0.5,
                   1271:                   numstudents => 2
                   1272:                   );
1.39      raeburn  1273:     my %thresholdsettings = &Apache::lonnet::dump('nohist_whatsnew',$udom,
                   1274:                                                      $uname,$cid.':threshold');
                   1275:     my $thresholdcount = 0;
                   1276:     my ($tmp) = %thresholdsettings;
1.40      raeburn  1277:     unless ($tmp =~ /^(con_lost|error|no_such_host)/i) {
1.117     raeburn  1278:         foreach my $item (keys(%{$threshold})) { 
1.39      raeburn  1279:             if (exists($thresholdsettings{$cid.':threshold_'.$item})) {
                   1280:                 $$threshold{$item} = 
                   1281:                              $thresholdsettings{$cid.':threshold_'.$item};
                   1282:                 $thresholdcount ++;
                   1283:             }
                   1284:         }
1.13      raeburn  1285:     }
1.39      raeburn  1286:     if ($thresholdcount == 3) {
                   1287:         return;
1.13      raeburn  1288:     }
1.39      raeburn  1289:     my %coursesettings = &Apache::lonnet::dump('environment',
                   1290:                                               $cdom,$crs,'internal.threshold');
                   1291:     my ($temp) = %coursesettings;
1.40      raeburn  1292:     unless ($temp =~ /^(con_lost|error|no_such_host)/i) {  
1.117     raeburn  1293:         foreach my $item (keys(%{$threshold})) {
1.39      raeburn  1294:             unless (exists($thresholdsettings{$cid.':threshold_'.$item})) {
                   1295:                 if (exists($coursesettings{'internal.threshold_'.$item})) {
                   1296:                     $$threshold{$item} = 
                   1297:                              $coursesettings{'internal.threshold_'.$item};
                   1298:                 }
                   1299:             }
                   1300:         }
1.13      raeburn  1301:     }
1.39      raeburn  1302:     return;
1.13      raeburn  1303: }
                   1304: 
1.39      raeburn  1305: sub get_current {
                   1306:     my ($uname,$udom,$cid,$caller) = @_;
                   1307:     my $currvalue;
                   1308:     my %settings = &Apache::lonnet::dump('nohist_whatsnew',$udom,$uname,$cid.
                   1309:                                                                 ':'.$caller);
1.36      raeburn  1310:     my ($tmp) = %settings;
1.40      raeburn  1311:     unless ($tmp =~ /^(con_lost|error|no_such_host)/i) {
1.39      raeburn  1312:         $currvalue = $settings{$cid.':'.$caller};
1.36      raeburn  1313:     }
1.39      raeburn  1314:     return $currvalue;
1.36      raeburn  1315: }
                   1316: 
1.13      raeburn  1317: sub process_reset {
1.119     raeburn  1318:     my ($dom,$crs,$checkallowed) = @_;
                   1319:     if (!$checkallowed->{'resetcounters'}) {
1.123     raeburn  1320:         return '<b>'.&mt('You do not have the required privileges to reset counters').
1.120     raeburn  1321:                '</b><br />';
1.119     raeburn  1322:     }
1.39      raeburn  1323:     my $result = '<b>'.&mt('Counters reset for following problems (and parts):').
                   1324:                            '</b><br />';
1.13      raeburn  1325:     my @agg_types = ('attempts','users','correct');
1.39      raeburn  1326:     my %agg_titles = &Apache::lonlocal::texthash (
1.13      raeburn  1327:                      attempts => 'Number of submissions',
                   1328:                      users => 'Students with submissions',
                   1329:                      correct => 'Number of correct submissions',
                   1330:                      );
                   1331:     my @resets = ();
                   1332:     my %titles = ();
1.17      albertel 1333:     foreach my $key (keys(%env)) {
1.13      raeburn  1334:         next if ($key !~ /^form\.reset_(.+)$/);
1.55      www      1335:         my $title = &unescape($env{'form.title_'.$1});
                   1336:         my $reset_item = &unescape($1);
1.13      raeburn  1337:         my %curr_aggregates = &Apache::lonnet::dump('nohist_resourcetracker',$dom,$crs,$reset_item);
                   1338:         my %aggregates = ();
1.17      albertel 1339:         my ($symb,$part) = split(/\0/,$reset_item);
1.13      raeburn  1340:         foreach my $type (@agg_types) {
                   1341:             $aggregates{$reset_item."\0".$type} = 0;
                   1342:         }  
1.17      albertel 1343: 	$aggregates{$reset_item."\0".'resettime'} = time;
1.13      raeburn  1344:         my $putresult = &Apache::lonnet::put('nohist_resourcetracker',\%aggregates,
                   1345:                           $dom,$crs);
                   1346:         if ($putresult eq 'ok') {
                   1347:             $result .= $title.' -part '.$part.': ';
                   1348:             my %new_aggregates = &Apache::lonnet::dump('nohist_resourcetracker',$dom,$crs,$reset_item);
                   1349:             foreach my $type (@agg_types) {
                   1350:                 $result .= $agg_titles{$type}.' = '.$new_aggregates{$reset_item."\0".$type}.'; ';
                   1351:             }
                   1352:             $result =~ s/; $//;
                   1353:             $result .= '<br />';
                   1354:         } else {
1.14      albertel 1355:             $result = $title.' -part '.$part.': '.&mt('Unable to reset counters to zero due to [_1]',$putresult).'.<br />'."\n";
1.13      raeburn  1356:         }
                   1357:     }
                   1358:     return $result;
                   1359: }
                   1360: 
                   1361: sub process_update {
1.39      raeburn  1362:     my ($uname,$udom,$threshold_titles) = @_;
1.99      wenzelju 1363:     my $setoutput = '<b>'.&mt('Changes to threshold(s) for problem tracking:').'</b><br/><br />';
1.117     raeburn  1364:     foreach my $key (keys(%env)) {
                   1365:         my $name;
                   1366:         if ($key =~/^form\.(.+)\_setparmval$/) {
                   1367:             $name  = $1;
                   1368:         } else {
                   1369:             next;
                   1370:         }
1.13      raeburn  1371:         my $value = $env{'form.'.$name.'_value'};
1.65      banghart 1372:         if ($name && defined($value) && ($value ne '')) {
1.39      raeburn  1373:             my $put_result = &Apache::lonnet::put('nohist_whatsnew',
                   1374:                                                   {$name=>$value},$udom,$uname);
1.13      raeburn  1375:            
1.39      raeburn  1376:             my ($shortname) = ($name =~ /^\Q$env{'request.course.id'}\E:threshold_(.+)$/);
1.13      raeburn  1377:             if ($put_result eq 'ok') {
1.99      wenzelju 1378:                 $setoutput.= &Apache::lonhtmlcommon::confirm_success(&mt('Set threshold for [_1] to [_2]',
1.14      albertel 1379: 				'<b>'.$$threshold_titles{$shortname}.'</b>',
1.99      wenzelju 1380: 				'<b>'.$value.'</b>').'<br />');
1.14      albertel 1381: 	    } else {
1.99      wenzelju 1382:                 $setoutput.= &Apache::lonhtmlcommon::confirm_success(&mt('Unable to set threshold for [_1] to [_2] due to [_3].',
1.14      albertel 1383: 				'<b>'.$name.'</b>','<b>'.$value.'</b>',
1.99      wenzelju 1384: 				'<tt>'.$put_result.'</tt>').'<br />',1);
1.13      raeburn  1385:             }
                   1386:         }
                   1387:     }
1.99      wenzelju 1388:     return &Apache::loncommon::confirmwrapper($setoutput);
1.13      raeburn  1389: }
                   1390: 
1.33      raeburn  1391: sub getnormalmail {
                   1392:     my ($newmsgs) = @_;
1.118     raeburn  1393: # Check for unread messages in user's INBOX (which were sent in context of current course).
1.1       raeburn  1394:     my $msgcount = 0;
1.118     raeburn  1395:     my @messages = &Apache::lonnet::getkeys('nohist_email');
                   1396:     return $msgcount if (!@messages);
                   1397:     my %emailstatus = &Apache::lonnet::dump('email_status');
                   1398:     foreach my $msgid (sort(@messages)) {
                   1399:         if ((!$emailstatus{$msgid}) || ($emailstatus{$msgid} eq 'new')) {
                   1400:             my $skipstatus;
                   1401:             if ($emailstatus{$msgid} eq 'new') {
                   1402:                 $skipstatus = 1;
                   1403:             }
1.124     raeburn  1404:             my $esc_msgid = &escape($msgid);
1.118     raeburn  1405:             my ($sendtime,$shortsubj,$fromname,$fromdom,$status,$fromcid)=
1.125     raeburn  1406:                 &Apache::lonmsg::unpackmsgid($esc_msgid,undef,$skipstatus,undef,
1.118     raeburn  1407:                                              $env{'request.course.id'});
                   1408:             if (($fromcid) && ($fromcid eq $env{'request.course.id'})) {
                   1409:                 if (defined($sendtime) && $sendtime!~/error/) {
                   1410:                     if (($emailstatus{$msgid} eq 'new') || ($status eq 'new')) {
                   1411:                         $sendtime = &Apache::lonlocal::locallocaltime($sendtime);
                   1412: 		        $msgcount ++;
                   1413:                         if ($shortsubj eq '') {
                   1414:                             $shortsubj = &mt('No subject');
                   1415:                         }
                   1416:                         push(@{$newmsgs}, {
1.124     raeburn  1417:                             msgid    => $esc_msgid,
1.118     raeburn  1418:                             sendtime => $sendtime,
                   1419:                             shortsub => $shortsubj,
                   1420:                             from     => $fromname,
                   1421:                             fromdom  => $fromdom
                   1422:                             });
1.10      raeburn  1423:                     }
1.1       raeburn  1424:                 }
                   1425:             }
                   1426:         }
                   1427:     }
1.33      raeburn  1428:     return $msgcount;
                   1429: }
1.1       raeburn  1430: 
1.33      raeburn  1431: sub getcritmail {
                   1432:     my ($critmsgs) = @_; 
1.118     raeburn  1433: # Check for critical messages which were sent in context of current course.
1.1       raeburn  1434:     my %what=&Apache::lonnet::dump('critical');
                   1435:     my $result = '';
                   1436:     my $critmsgcount = 0;
1.3       albertel 1437:     foreach my $msgid (sort(keys(%what))) {
1.125     raeburn  1438:         my $esc_msgid = &escape($msgid);
1.10      raeburn  1439:         my ($sendtime,$shortsubj,$fromname,$fromdom,$status,$fromcid)=
1.125     raeburn  1440:             &Apache::lonmsg::unpackmsgid($esc_msgid,undef,1,undef,
1.118     raeburn  1441:                                          $env{'request.course.id'});
1.10      raeburn  1442:         if (($fromcid) && ($fromcid eq  $env{'request.course.id'})) {
1.1       raeburn  1443:             if (defined($sendtime) && $sendtime!~/error/) {
1.93      droeschl 1444:                 $sendtime = &Apache::lonlocal::locallocaltime($sendtime);
1.1       raeburn  1445:                 $critmsgcount ++;
1.10      raeburn  1446:                 if ($shortsubj eq '') {
                   1447:                     $shortsubj = &mt('No subject');
                   1448:                 }
1.1       raeburn  1449:                 push(@{$critmsgs}, {
1.125     raeburn  1450:                         msgid    => $esc_msgid,
1.1       raeburn  1451:                         sendtime => $sendtime,
1.10      raeburn  1452:                         shortsub => $shortsubj,
1.1       raeburn  1453:                         from     => $fromname,
                   1454:                         fromdom  => $fromdom
                   1455:                         });
                   1456:             }
                   1457:         }
                   1458:     }
1.33      raeburn  1459:     return $critmsgcount;
                   1460: }
                   1461: 
1.77      raeburn  1462: sub getexpired {
1.114     raeburn  1463:     my ($rolechgs,$rolechgtime,$status,$classlist) = @_;
                   1464:     my $expirecount = &getrolechanges($rolechgs,$rolechgtime,$status,$classlist);
1.77      raeburn  1465:     return $expirecount;
                   1466: }
                   1467: 
                   1468: sub getactivated {
1.114     raeburn  1469:     my ($rolechgs,$rolechgtime,$status,$classlist) = @_;
1.77      raeburn  1470:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   1471:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                   1472:     my $now = time();
                   1473:     my $context = 'course';
                   1474:     my ($permission,$allowed) =
                   1475:         &Apache::lonuserutils::get_permission($context);
                   1476:     my $viewablesec = &Apache::lonuserutils::viewable_section($permission);
                   1477:     my %changes=&Apache::lonnet::dump('nohist_rolelog',$cdom,$cnum);
                   1478:     my (%stucounted,%advcounted);
                   1479:     my $activatedcount = 0;
                   1480:     if (keys(%changes) > 0) {
1.111     raeburn  1481:         foreach my $chg (keys(%changes)) {
1.77      raeburn  1482:             if (ref($changes{$chg}) eq 'HASH') {
1.112     raeburn  1483:                 next if ($changes{$chg}{'delflag'});
1.111     raeburn  1484:                 if ($rolechgtime > 0) {
1.112     raeburn  1485:                     next if ($changes{$chg}{'exe_time'} < $rolechgtime);
1.111     raeburn  1486:                 }
                   1487:                 if ($changes{$chg}{'exe_time'}) {
                   1488:                     my $timestamp = $changes{$chg}{'exe_time'};
1.77      raeburn  1489:                     if (ref($changes{$chg}{'logentry'}) eq 'HASH') {
1.112     raeburn  1490:                         my $end = $changes{$chg}{'logentry'}{'end'};
                   1491:                         next if ($end && $end <= $now);
1.77      raeburn  1492:                         my $start = $changes{$chg}{'logentry'}{'start'};
1.112     raeburn  1493:                         next if ($start >= $timestamp);
1.77      raeburn  1494:                         my $section = $changes{$chg}{'logentry'}{'section'};
1.112     raeburn  1495:                         if (($viewablesec ne '') && ($section ne '')) {
                   1496:                             next if ($viewablesec ne $section);
                   1497:                         }
1.77      raeburn  1498:                         my $role = $changes{$chg}{'logentry'}{'role'};
                   1499:                         my $uname = $changes{$chg}{'uname'};
                   1500:                         my $udom = $changes{$chg}{'udom'};
                   1501:                         if ($role eq 'st') {
                   1502:                             $stucounted{$uname.':'.$udom.':'.$section} = $start.':'.$end;
                   1503:                         } else {
                   1504:                             $advcounted{$uname.':'.$udom.':'.$role.':'.$section} = $start.':'.$end;
                   1505:                         }
                   1506:                         my %chginfo = (
                   1507:                                        'section' => $section,
                   1508:                                        'uname'   => $uname,
                   1509:                                        'udom'    => $udom,
                   1510:                                        'role'    => $role,
                   1511:                                        'status'  => $status,
                   1512:                         );
                   1513:                         $activatedcount ++;
                   1514:                         push (@{$rolechgs->{$timestamp}},\%chginfo);
                   1515:                     }
                   1516:                 }
                   1517:             }
                   1518:         }
                   1519:     }
1.114     raeburn  1520:     $activatedcount += &getrolechanges($rolechgs,$rolechgtime,$status,$classlist,\%stucounted,
                   1521:                                        \%advcounted);
1.77      raeburn  1522:     return $activatedcount;
                   1523: }
                   1524: 
                   1525: sub getrolechanges {
1.114     raeburn  1526:     my ($rolechgs,$rolechgtime,$status,$classlist,$stucountref,$advcountref) = @_;
1.77      raeburn  1527:     my (%stucounted,%advcounted);
                   1528:     if (ref($stucountref) eq 'HASH') {
                   1529:         %stucounted = %{$stucountref};
                   1530:     }
                   1531:     if (ref($advcountref) eq 'HASH') {
                   1532:         %advcounted = %{$advcountref};
                   1533:     }
                   1534:     my $withsec = 1;
                   1535:     my $hidepriv = 1;
                   1536:     my $context = 'course';
                   1537:     my @statuses = ($status);
                   1538:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   1539:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                   1540:     my $now = time();
                   1541:     my ($permission,$allowed) =
                   1542:         &Apache::lonuserutils::get_permission($context);
                   1543:     my $viewablesec = &Apache::lonuserutils::viewable_section($permission);
                   1544:     my $secidx = &Apache::loncoursedata::CL_SECTION();
                   1545:     my $startidx = &Apache::loncoursedata::CL_START();
                   1546:     my $endidx = &Apache::loncoursedata::CL_END();
                   1547:     my $rolechgcount = 0;
1.114     raeburn  1548:     if (ref($classlist) eq 'HASH') {
                   1549:         foreach my $key (keys(%{$classlist})) {
                   1550:             my ($userstatus,$eventtime);   
                   1551:             my $student = $classlist->{$key};
                   1552:             if (ref($student) eq 'ARRAY') {
                   1553:                 my $start = $student->[$startidx];
                   1554:                 my $end = $student->[$endidx];
                   1555:                 my $sec = $student->[$secidx]; 
                   1556:                 my ($stuname,$studom) = split(/:/,$key);
                   1557:                 if ($status eq 'active') {
                   1558:                     if (exists($stucounted{$key.':'.$sec})) {
                   1559:                         next;
                   1560:                     }
1.77      raeburn  1561:                 }
1.114     raeburn  1562:                 if (($end == 0) || ($end > $start)) {
                   1563:                     if ($start <= $now) {
                   1564:                         if ($end && $end < $now) {
                   1565:                             if ($rolechgtime > 0) {
                   1566:                                 if ($end > $rolechgtime) {
                   1567:                                     $userstatus = 'previous';
                   1568:                                 }
                   1569:                             } else {
1.77      raeburn  1570:                                 $userstatus = 'previous';
                   1571:                             }
                   1572:                         } else {
1.114     raeburn  1573:                             if ($rolechgtime > 0) {
                   1574:                                 if ($start >= $rolechgtime) {
                   1575:                                     $userstatus = 'active';
                   1576:                                 }
                   1577:                             } else {
1.77      raeburn  1578:                                 $userstatus = 'active';
                   1579:                             }
                   1580:                         }
                   1581:                     }
                   1582:                 }
1.114     raeburn  1583:                 next if ($userstatus ne $status);
                   1584:                 if ($status eq 'active') {
                   1585:                     $eventtime = $start;
                   1586:                 } else {
                   1587:                     $eventtime = $end;
                   1588:                 }
                   1589:                 if (($viewablesec ne '') && ($sec ne '')) {
                   1590:                     next if ($viewablesec ne $sec);
                   1591:                 }
                   1592:                 my %chginfo = (
                   1593:                                 'section' => $sec,
                   1594:                                 'uname'   => $stuname,
                   1595:                                 'udom'    => $studom,
                   1596:                                 'role'    => 'st', 
                   1597:                                 'status'  => $userstatus,
                   1598:                               );
                   1599:                 $rolechgcount ++;
                   1600:                 push(@{$rolechgs->{$eventtime}},\%chginfo);
1.77      raeburn  1601:             }
                   1602:         }
                   1603:     }
                   1604:     my %advrolehash = &Apache::lonnet::get_my_roles($cnum,$cdom,undef,
                   1605:                               \@statuses,undef,undef,$withsec,$hidepriv);
                   1606:     foreach my $item (keys(%advrolehash)) {
                   1607:         my ($userstatus,$eventtime);
                   1608:         my ($uname,$udom,$role,$section) = split(/:/,$item,-1);
                   1609:         my ($start,$end) = split(/:/,$advrolehash{$item});
                   1610:         if ($start eq '-1' && $end eq '-1') {
                   1611:             next;
                   1612:         } else {
                   1613:             if ($status eq 'active') {
                   1614:                 if (exists($advcounted{$item})) {
                   1615:                     next;
                   1616:                 }
                   1617:             }
                   1618:             if (($end == 0) || ($end > $start)) {
                   1619:                 if ($start <= $now) {
                   1620:                     if ($end && $end < $now) {
                   1621:                         if ($rolechgtime > 0) {
                   1622:                             if ($end > $rolechgtime) {
                   1623:                                 $userstatus = 'previous';
                   1624:                             }
                   1625:                         } else {
                   1626:                             $userstatus = 'previous';
                   1627:                         }
                   1628:                     } else {
                   1629:                         if ($rolechgtime > 0) {
                   1630:                             if ($start >= $rolechgtime) {
                   1631:                                 $userstatus = 'active';
                   1632:                             }
                   1633:                         } else {
                   1634:                             $userstatus = 'active';
                   1635:                         }
                   1636:                     }
                   1637:                 }
                   1638:             }
                   1639:             next if ($userstatus ne $status);
                   1640:             if ($status eq 'active') {
                   1641:                 $eventtime = $start;
                   1642:             } else {
                   1643:                 $eventtime = $end;
                   1644:             }
                   1645:         }
                   1646:         if (($viewablesec ne '') && ($section ne '')) {
                   1647:             next if ($viewablesec ne $section);
                   1648:         }
                   1649:         my %chginfo = ( 
                   1650:                         'section' => $section,
                   1651:                         'uname'   => $uname,
                   1652:                         'udom'    => $udom,
                   1653:                         'role'    => $role,
                   1654:                         'status'  => $userstatus,    
                   1655:                       );
                   1656:         $rolechgcount ++; 
                   1657:         push (@{$rolechgs->{$eventtime}},\%chginfo); 
                   1658:     }
                   1659:     return $rolechgcount;
                   1660: }
1.33      raeburn  1661: 
1.106     raeburn  1662: sub getloggedin {
                   1663:     my ($cdom,$crs,$lastlogins,$starttime) = @_;
                   1664:     my $context = 'course';
                   1665:     my ($permission,$allowed) =
                   1666:         &Apache::lonuserutils::get_permission($context);
                   1667:     my $viewablesec = &Apache::lonuserutils::viewable_section($permission);
                   1668:     my %crslogins=&Apache::lonnet::dump('nohist_crslastlogin',$cdom,$crs);
                   1669:     my $logincount = 0;
                   1670:     my ($tmp) = keys(%crslogins);
                   1671:     unless ($tmp =~ /^(con_lost|error|no_such_host)/i) {
                   1672:         if (keys(%crslogins) > 0) {
                   1673:             foreach my $key (keys(%crslogins)) {
                   1674:                 my ($uname,$udom,$section,$role) = split(/:/,$key);
                   1675:                 my $eventtime = $crslogins{$key};
                   1676:                 if ($eventtime > $starttime) {
                   1677:                     if (($viewablesec ne '') && ($section ne '')) {
                   1678:                         next if ($viewablesec ne $section);
                   1679:                     }
                   1680:                     my %chginfo = (
                   1681:                                    'section' => $section,
                   1682:                                    'uname'   => $uname,
                   1683:                                    'udom'    => $udom,
                   1684:                                    'role'    => $role,
                   1685:                     );
                   1686:                     $logincount ++;
                   1687:                     push (@{$lastlogins->{$eventtime}},\%chginfo);
                   1688:                 }
                   1689:             }
                   1690:         }
                   1691:     }
                   1692:     return $logincount;
                   1693: }
                   1694: 
1.126     raeburn  1695: sub getsessions {
                   1696:     my ($cdom,$cnum,$sessions,$lastactive,$classlist) = @_;
                   1697:     my $context = 'course';
                   1698:     my ($permission,$allowed) =
                   1699:         &Apache::lonuserutils::get_permission($context);
                   1700:     my %crs_sessions = &Apache::lonnet::get_course_sessions($cnum,$cdom,$lastactive);
                   1701:     my $sessioncount = 0;
                   1702:     if (keys(%crs_sessions) > 0) {
                   1703:         if (ref($classlist) eq 'HASH') {
                   1704:             my $viewablesec = &Apache::lonuserutils::viewable_section($permission);
                   1705:             my $secidx = &Apache::loncoursedata::CL_SECTION();
                   1706:             my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'_'.$cnum,1);
                   1707:             my %personnel;
                   1708:             foreach my $role (sort(keys(%coursepersonnel))) {
                   1709:                 my ($rolecode,$section);
                   1710:                 if ($role =~ /:/) {
                   1711:                     ($rolecode,$section) = split(/:/,$role);
                   1712:                 } else {
                   1713:                     $rolecode = $role;
                   1714:                 }
                   1715:                 if ($viewablesec ne '') {
                   1716:                     next if ($viewablesec ne $section);
                   1717:                 }
                   1718:                 foreach my $user (split(/\,/,$coursepersonnel{$role})) {
                   1719:                     push(@{$personnel{$user}{$rolecode}},$section);
                   1720:                 }
                   1721:             }
                   1722:             foreach my $key (keys(%crs_sessions)) {
                   1723:                 if (exists($classlist->{$key})) {
                   1724:                     my $student = $classlist->{$key};
                   1725:                     my $section = $student->[$secidx];
                   1726:                     my $lastaccess = $crs_sessions{$key};
                   1727:                     if ($viewablesec ne '') {
                   1728:                         next if ($viewablesec ne $section);
                   1729:                     }
                   1730:                     my ($stuname,$studom) = split(/:/,$key);
                   1731:                     my %info = (
                   1732:                                  'section' => $section,
                   1733:                                  'role'    => 'st',
                   1734:                                  'uname'   => $stuname,
                   1735:                                  'udom'    => $studom,
                   1736:                     );
                   1737:                     $sessioncount ++;
                   1738:                     push(@{$sessions->{$lastaccess}},\%info);
                   1739:                 } elsif (exists($personnel{$key})) {
                   1740:                     my $lastaccess = $crs_sessions{$key};
                   1741:                     my ($uname,$udom) = split(/:/,$key);
                   1742:                     if (ref($personnel{$key}) eq 'HASH') {
                   1743:                         my ($showrole,$showsec);
                   1744:                         foreach my $possrole ('cc','co','in','ta','ep','ad','st') {
                   1745:                             if (exists($personnel{$key}{$possrole})) {
                   1746:                                 $showrole = $possrole;
                   1747:                                 $showsec = join(', ',@{$personnel{$key}{$possrole}});
                   1748:                                 last;
                   1749:                             }
                   1750:                         }
                   1751:                         my %info = (
                   1752:                                      'section' => $showsec,
                   1753:                                      'role'    => $showrole,
                   1754:                                      'uname'   => $uname,
                   1755:                                      'udom'    => $udom,
                   1756:                         );
                   1757:                         $sessioncount ++;
                   1758:                         push(@{$sessions->{$lastaccess}},\%info);
                   1759:                     }
                   1760:                 }
                   1761:             }
                   1762:         }
                   1763:     }
                   1764:     return $sessioncount;
                   1765: }
                   1766: 
1.33      raeburn  1767: sub checkversions {
                   1768:     my ($cdom,$crs,$navmap,$changed,$starttime) = @_;
                   1769:     my %changes=&Apache::lonnet::dump('versionupdate',$cdom,$crs);
                   1770:     my ($tmp) = keys(%changes);
1.40      raeburn  1771:     unless ($tmp =~ /^(con_lost|error|no_such_host)/i) {
1.33      raeburn  1772:         if (keys(%changes) > 0) {
                   1773:             foreach my $key (sort(keys(%changes))) {
                   1774:                 if ($changes{$key} > $starttime) {
                   1775:                     my $version;
                   1776:                     my ($root,$extension)=($key=~/^(.*)\.(\w+)$/);
                   1777:                     my $currentversion=&Apache::lonnet::getversion($key);
                   1778:                     my $revdate = 
                   1779:                           &Apache::lonnet::metadata($root.'.'.$extension,
                   1780:                                                      'lastrevisiondate');
                   1781:                     $revdate =  &Apache::lonlocal::locallocaltime($revdate);
                   1782:                     my $linkurl=&Apache::lonnet::clutter($key);
1.104     bisitz   1783:                     my $usedversion=$navmap->usedVersion($linkurl);
1.33      raeburn  1784:                     my @resources = $navmap->getResourceByUrl($linkurl,1);
                   1785:                     if (($usedversion) && ($usedversion ne 'mostrecent')) {
                   1786:                         $version = $usedversion;     
                   1787:                     } else {
                   1788:                         $version = $currentversion;
                   1789:                     }
                   1790:                     foreach my $res (@resources) {
1.35      raeburn  1791:                          if (ref($res) eq 'Apache::lonnavmaps::resource') { 
                   1792:                             my $symb = $res->symb();
                   1793:                             %{$$changed{$symb}} = (
1.33      raeburn  1794:                                                 current => $currentversion,
                   1795:                                                 version => $version,
                   1796:                                                 revdate => $revdate,
1.35      raeburn  1797:                             );
                   1798:                         }
1.33      raeburn  1799:                     }
                   1800:                 }
                   1801:             }
                   1802:         }
                   1803:     }
                   1804:     return;
                   1805: }
                   1806: 
                   1807: sub display_handgrade {
1.84      raeburn  1808:     my ($r,$tograde,$ungraded,$itemserror) = @_;
1.33      raeburn  1809:     my %lt = &Apache::lonlocal::texthash(
                   1810:                         'prna' => 'Problem Name',
                   1811:                         'nmun' => 'Number ungraded',
                   1812:                         'nopr' => 'No problems require handgrading',
                   1813:     );
                   1814:     if (@{$tograde} > 0) {
1.68      raeburn  1815:         $r->print('<tr class="LC_info_row"><td class="LC_left_item">'.
                   1816:                   $lt{'prna'}.'</td><td class="LC_right_item">'.
                   1817:                   $lt{'nmun'}.'</td></tr>');
1.33      raeburn  1818:         my $rowNum = 0;
                   1819:         foreach my $res (@{$tograde}) {
1.68      raeburn  1820:             $rowNum ++;
                   1821:             my $css_class = $rowNum%2?' class="LC_odd_row"':'';
1.128     raeburn  1822:             my $linkurl;
                   1823:             if ($$ungraded{$res}{'is_task'}) {
                   1824:                 my ($map,$id,$url)=&Apache::lonnet::decode_symb($res);
                   1825:                 $linkurl=&Apache::lonnet::clutter($url);
                   1826:                 $linkurl .= '?symb='.&escape($res);
                   1827:                 if ($$ungraded{$res}{'enclink'}) {
                   1828:                     $linkurl =
                   1829:                         $$ungraded{$res}{'enclink'}.'?symb='.$$ungraded{$res}{'encsymb'};
                   1830:                 }
1.102     www      1831:             } else {
1.128     raeburn  1832:                 $linkurl='/adm/grades';
                   1833:                 if ($$ungraded{$res}{'enclink'}) {
                   1834:                     $linkurl.='?symb='.$$ungraded{$res}{'encsymb'};
                   1835:                 } else {
                   1836:                     $linkurl.='?symb='.&escape($res);
                   1837:                 }
                   1838:                 $linkurl.='&amp;command=ungraded';
1.102     www      1839:             }
1.68      raeburn  1840:             $r->print('<tr'.$css_class.'><td><a href="'.$linkurl.'">'.$$ungraded{$res}{title}.'</a></td><td class="LC_right_item">'.$$ungraded{$res}{count}.'</td></tr>');
1.33      raeburn  1841:         }
1.84      raeburn  1842:     } elsif ($itemserror) {
                   1843:         $r->print('<tr class="LC_empty_row"><td>'.$itemserror.'</td></tr>');
1.33      raeburn  1844:     } else {
1.68      raeburn  1845:         $r->print('<tr class="LC_empty_row"><td>'.$lt{'nopr'}.'</td></tr>');
1.33      raeburn  1846:     }
                   1847: }
                   1848: 
                   1849: sub display_haserrors {
1.84      raeburn  1850:     my ($r,$bombs,$bombed,$res_title,$itemserror) = @_;
1.33      raeburn  1851:     my $bombnum = 0;
                   1852:     my %lt = &Apache::lonlocal::texthash(
                   1853:                                    reso => 'Resource',
                   1854:                                    nmer => 'Number of errors',
                   1855:                                    noer => 'No problems with errors',
                   1856:     );
                   1857:     if (@{$bombs} > 0) {
1.68      raeburn  1858:         $r->print('<tr class="LC_info_row"><td class="LC_left_item">'.
                   1859:                   $lt{'reso'}.'</td><td class="LC_right_item">'.
                   1860:                   $lt{'nmer'}.'</td></tr>');
1.33      raeburn  1861:         @{$bombs} = sort { &cmp_title($a,$b,$res_title) } @{$bombs};
                   1862:         foreach my $bomb (@{$bombs}) {
                   1863:             $bombnum ++;
1.68      raeburn  1864:             my $css_class = $bombnum%2?' class="LC_odd_row"':'';
                   1865:             $r->print('<tr'.$css_class.'><td>'.$$bombed{$bomb}{errorlink}.
                   1866:                       '</td><td class="LC_right_item">'.
                   1867:                       $$bombed{$bomb}{errorcount}.'</td></tr>');
1.33      raeburn  1868:         }
1.84      raeburn  1869:     } elsif ($itemserror) {
                   1870:         $r->print('<tr class="LC_empty_row"><td>'.$itemserror.'</td></tr>');
1.33      raeburn  1871:     } else {
1.68      raeburn  1872:         $r->print('<tr class="LC_empty_row"><td>'.$lt{'noer'}.'</td></tr>');
1.33      raeburn  1873:     }
                   1874:     return;
                   1875: }
                   1876: 
                   1877: sub display_abovethreshold {
1.119     raeburn  1878:     my ($r,$refpage,$warnings,$triggered,$res_title,$itemserror,$checkallowed) = @_;
1.33      raeburn  1879:     my %lt = &Apache::lonlocal::texthash(
                   1880:                  reso => 'Resource',
                   1881:                  part => 'Part',
                   1882:                  nust => 'Num. students',
                   1883:                  avat => 'Av. Attempts',
                   1884:                  dedi => 'Deg. Diff',
                   1885:                  lare => 'Last Reset',
                   1886:                  reco => 'Reset Count?',
                   1887:                  rese => 'Reset counters to 0',
                   1888:                  nopr => 'No problems satisfy threshold criteria',
                   1889:     );
                   1890:     if (@{$warnings} > 0) {
                   1891:         @{$warnings} = sort { &cmp_title($a,$b,$res_title) } @{$warnings};
1.61      albertel 1892:         $r->print('<tr class="LC_info_row">'.
1.110     raeburn  1893: 		  '<td class="LC_left_item">'.$lt{'reso'}.
                   1894:                   '<input type="hidden" name="command" value="" /></td>'.
1.61      albertel 1895: 		  '<td>'.$lt{'part'}.'</td><td>'.$lt{'nust'}.'</td>'.
                   1896: 		  '<td>'.$lt{'avat'}.'</td><td>'.$lt{'dedi'}.'</td>'.
1.119     raeburn  1897: 		  '<td>'.$lt{'lare'}.'</td>');
                   1898:         if ($checkallowed->{'resetcounters'}) {
                   1899:             $r->print('<td  class="LC_right_item">'.$lt{'reco'}.'</td>');
                   1900:         }
                   1901:         $r->print('</tr>');
1.61      albertel 1902: 	my $row;
1.33      raeburn  1903:         foreach my $res (@{$warnings}) {
1.61      albertel 1904: 	    $row++;
1.33      raeburn  1905:             my ($map,$id,$url)=&Apache::lonnet::decode_symb($res);
                   1906:             my $linkurl=&Apache::lonnet::clutter($url);
                   1907:             my $rowspan;
                   1908:             if ($$triggered{$res}{numparts} > 1) {
                   1909:                 $rowspan = 'rowspan="'.$$triggered{$res}{numparts}.'"';
                   1910:             }
1.55      www      1911:             $linkurl .= '?symb='.&escape($res);
1.66      raeburn  1912:             if ($$triggered{$res}{'enclink'}) {
                   1913:                 $linkurl = 
                   1914:                   $$triggered{$res}{'enclink'}.'?symb='.$$triggered{$res}{'encsymb'};
                   1915:             }
1.68      raeburn  1916:             my $css_class = $row%2?' class="LC_odd_row"':'';
                   1917:             $r->print('<tr'.$css_class.'>'.
1.61      albertel 1918: 		      '<td class="LC_first_item" '.$rowspan.'><a href="'.$linkurl.'">'.
1.62      raeburn  1919: 		      $$triggered{$res}{title}.'</a></td>');
                   1920:                       if (ref($$triggered{$res}{text}) eq 'ARRAY') {
                   1921: 		          $r->print($$triggered{$res}{text}[0]);
                   1922:                       }
                   1923:                       $r->print('</tr>');
                   1924:             if (ref($$triggered{$res}{text}) eq 'ARRAY') {
                   1925:                 if (@{$$triggered{$res}{text}} > 1) {
                   1926:                     for (my $i=1; $i<@{$$triggered{$res}{text}}; $i++) {
1.107     raeburn  1927:                         $r->print('<tr '.$css_class.'>'.
1.62      raeburn  1928:                                   $$triggered{$res}{text}[$i].'</tr>');
                   1929:                     }
                   1930:                 }
                   1931:             }
1.33      raeburn  1932:         }
1.120     raeburn  1933:         if ($checkallowed->{'resetcounters'}) {
1.119     raeburn  1934:             $r->print('<tr class="LC_info_row"><td colspan="7" class="LC_right_item"><br /><input type="button" name="counters" value="'.$lt{'rese'}.'" onclick="javascript:thresholdreset();" /></td></tr>');
                   1935:         }
1.84      raeburn  1936:     } elsif ($itemserror) {
                   1937:         $r->print('<tr class="LC_empty_row"><td>'.$itemserror.'</td></tr>');
1.33      raeburn  1938:     } else {
1.63      albertel 1939:         $r->print('<tr class="LC_empty_row"><td>'.$lt{'nopr'}.'</td></tr>');
1.33      raeburn  1940:     }
                   1941: }
                   1942: 
                   1943: sub display_versionchanges {
1.84      raeburn  1944:     my ($r,$changed,$res_title,$interval,$itemserror) = @_;
1.33      raeburn  1945:     my %lt = &Apache::lonlocal::texthash(
                   1946:         'reso' => 'Resource',
                   1947:         'revd' => 'Last revised',
                   1948:         'newv' => 'New version',
                   1949:         'veru' => 'Version used',
                   1950:     );
                   1951:     if (keys(%{$changed}) > 0) {
1.68      raeburn  1952:         $r->print('<tr class="LC_info_row"><td class="LC_left_item">'.
                   1953:                   $lt{'reso'}.'</td><td>'.$lt{'revd'}.'</td><td>'.
                   1954:                   $lt{'newv'}.'</td><td class="LC_right_item">'.
                   1955:                   $lt{'veru'}.'</td></tr>');
1.33      raeburn  1956:         my @changes = sort { &cmp_title($a,$b,$res_title) } keys(%{$changed});
                   1957:         my $changenum = 0;
                   1958:         foreach my $item (@changes) {
1.68      raeburn  1959:             $changenum ++;
                   1960:             my $css_class = $changenum%2?' class="LC_odd_row"':'';
1.33      raeburn  1961:             my ($map,$id,$url)=&Apache::lonnet::decode_symb($item);
                   1962:             my $linkurl=&Apache::lonnet::clutter($url);
1.55      www      1963:             $linkurl .= '?symb='.&escape($item);
1.33      raeburn  1964: 
1.68      raeburn  1965:             $r->print('<tr'.$css_class.'><td><a href="'.$linkurl.'">'.
                   1966:                       $$res_title{$item}.'</a></td><td>'.
                   1967:                       $$changed{$item}{'revdate'}.'</td><td>'.
                   1968:                       $$changed{$item}{'current'}.'</td><td>'.
                   1969:                       $$changed{$item}{'version'}.'</td></tr>');
1.33      raeburn  1970:         }
1.84      raeburn  1971:     } elsif ($itemserror) {
                   1972:         $r->print('<tr class="LC_empty_row"><td>'.$itemserror.'</td></tr>');
1.33      raeburn  1973:     } else {
1.78      bisitz   1974:         $r->print('<tr class="LC_empty_row"><td>'
                   1975:                  .&mt('No '.$interval).'</td></tr>');
1.33      raeburn  1976:     }
                   1977:     return;
                   1978: }
1.77      raeburn  1979: 
                   1980: sub display_rolechanges {
1.114     raeburn  1981:     my ($r,$chgcount,$changed,$interval,$crstype,$classlist) = @_;
1.77      raeburn  1982:     my $now = time();
                   1983:     my %lt = &Apache::lonlocal::texthash(
                   1984:         'user'  => 'User',
                   1985:         'tich'  => 'Time of change',
                   1986:         'role'  => 'Role',
                   1987:         'sec'   => 'Section',
                   1988:         'status'  => 'Status',
                   1989:     );
                   1990:     if ($chgcount) {
                   1991:         $r->print('<tr class="LC_info_row">'.
                   1992:                   '<td class="LC_left_item">'.$lt{'tich'}.'</td>'.
                   1993:                   '<td class="LC_left_item">'.$lt{'user'}.'</td>'.
                   1994:                   '<td class="LC_left_item">'.$lt{'role'}.'</td>'.
                   1995:                   '<td class="LC_left_item">'.$lt{'sec'}.'</td>'.
                   1996:                   '<td class="LC_left_item">'.$lt{'status'}.'</td></tr>');
                   1997:         if (ref($changed) eq 'HASH') {
                   1998:             my @changes = sort { $b <=> $a } (keys(%{$changed}));
                   1999:             my $changenum = 0;
1.114     raeburn  2000:             my $fullnameidx = &Apache::loncoursedata::CL_FULLNAME();
1.77      raeburn  2001:             foreach my $item (@changes) {
                   2002:                 if (ref($changed->{$item}) eq 'ARRAY') {
                   2003:                     foreach my $chg (@{$changed->{$item}}) {
                   2004:                         if (ref($chg) eq 'HASH') {
                   2005:                             my $section;
                   2006:                             my $role = 
                   2007:                                 &Apache::lonnet::plaintext($chg->{'role'},$crstype);
                   2008:                             my $status = &mt($chg->{'status'});
                   2009:                             if ($chg->{'section'} eq '') {
                   2010:                                 $section = &mt('none');
                   2011:                             } else {
                   2012:                                 $section = $chg->{'section'};
                   2013:                             }
                   2014:                             my $uname = $chg->{'uname'};
                   2015:                             my $udom = $chg->{'udom'};
                   2016:                             $changenum ++;
                   2017:                             my $css_class = $changenum%2?' class="LC_odd_row"':'';
1.114     raeburn  2018:                             my $fullname;
                   2019:                             if (ref($classlist->{$uname.':'.$udom}) eq 'ARRAY') {
                   2020:                                 $fullname = $classlist->{$uname.':'.$udom}->[$fullnameidx];
                   2021:                             } else {
                   2022:                                 $fullname = &Apache::loncommon::plainname($uname,$udom,'lastname');
                   2023:                             }
1.77      raeburn  2024:                             my $link = 
1.114     raeburn  2025:                                 &Apache::loncommon::aboutmewrapper($fullname,$uname,$udom);
1.77      raeburn  2026:                             $r->print('<tr'.$css_class.'>'.
1.93      droeschl 2027:                                       '<td>'.&Apache::lonlocal::locallocaltime($item).'</td>'.
1.77      raeburn  2028:                                       '<td>'.$link.'</td>'.
                   2029:                                       '<td>'.$role.'</td>'.
                   2030:                                       '<td>'.$section.'</td>'.
                   2031:                                       '<td>'.$status.'</td></tr>');
                   2032:                         }
                   2033:                     }
                   2034:                 }
                   2035:             }
                   2036:         }
                   2037:     } else {
1.78      bisitz   2038:         $r->print('<tr class="LC_empty_row"><td>'
                   2039:                  .&mt('There are no '.$interval).'</td></tr>');
1.77      raeburn  2040:     }
                   2041:     return;
                   2042: }
1.106     raeburn  2043: 
1.126     raeburn  2044: sub display_activity {
                   2045:     my ($r,$context,$count,$details,$interval,$crstype,$classlist) = @_;
1.114     raeburn  2046:     return unless (ref($classlist) eq 'HASH');
1.106     raeburn  2047:     my %lt = &Apache::lonlocal::texthash(
                   2048:         'user'   => 'User',
                   2049:         'role'   => 'Role',
                   2050:         'sec'    => 'Section',
                   2051:         'number' => 'Total number of logins',
                   2052:     );
1.126     raeburn  2053:     my $prefix = 'login';
                   2054:     if ($context eq 'sessions') {
                   2055:         $lt{'number'} = &mt('Total number of active user sessions');
                   2056:         $lt{'active'} = &mt('Last active');
                   2057:         $prefix = 'session';
                   2058:     }
                   2059:     if ($count) {
1.106     raeburn  2060: 
1.126     raeburn  2061:         my $hdr = '<tr class="LC_info_row" style="display:none" id="'.$prefix.'titledet">'.
1.106     raeburn  2062:                   '<td class="LC_left_item">'.$lt{'user'}.'</td>'.
                   2063:                   '<td class="LC_left_item">'.$lt{'role'}.'</td>'.
1.126     raeburn  2064:                   '<td class="LC_left_item">'.$lt{'sec'}.'</td>';
                   2065:         if ($context eq 'sessions') {
                   2066:             $hdr .= '<td class="LC_left_item">'.$lt{'active'}.'</td>';
                   2067:         }
                   2068:         $hdr .= '</tr>'."\n".
                   2069:                 '<tr class="LC_info_row" id="'.$prefix.'titlesum">'.
                   2070:                 '<td class="LC_left_item">'.$lt{'number'}.'</td>'.
                   2071:                 '<td class="LC_left_item">'.$lt{'role'}.'</td>'.
                   2072:                 '<td class="LC_left_item">'.$lt{'sec'};
1.106     raeburn  2073:         my (%bylastname,%counts);
1.126     raeburn  2074:         if (ref($details) eq 'HASH') {
                   2075:             my @items = sort { $b <=> $a } (keys(%{$details}));
                   2076:             my $num = 0;
1.114     raeburn  2077:             my $fullnameidx = &Apache::loncoursedata::CL_FULLNAME();
1.126     raeburn  2078:             foreach my $item (@items) {
                   2079:                 if (ref($details->{$item}) eq 'ARRAY') {
                   2080:                     foreach my $user (@{$details->{$item}}) {
1.106     raeburn  2081:                         if (ref($user) eq 'HASH') {
                   2082:                             my $section;
                   2083:                             my $role =
                   2084:                                 &Apache::lonnet::plaintext($user->{'role'},$crstype);
                   2085:                             if ($user->{'section'} eq '') {
                   2086:                                 $section = &mt('none');
                   2087:                             } else {
                   2088:                                 $section = $user->{'section'};
                   2089:                             }
                   2090:                             $counts{$user->{'role'}}{$section} ++;
                   2091:                             my $uname = $user->{'uname'};
                   2092:                             my $udom = $user->{'udom'};
1.114     raeburn  2093:                             my $fullname;
                   2094:                             if (ref($classlist->{$uname.':'.$udom}) eq 'ARRAY') {
1.115     raeburn  2095:                                 $fullname = $classlist->{$uname.':'.$udom}->[$fullnameidx];
1.114     raeburn  2096:                             } else {
                   2097:                                 $fullname = &Apache::loncommon::plainname($uname,$udom,'lastname');
                   2098:                             }
1.106     raeburn  2099:                             my $link =
                   2100:                                 &Apache::loncommon::aboutmewrapper($fullname,$uname,$udom);
1.126     raeburn  2101:                             my $entry = '<td>'.$link.'</td>'.
                   2102:                                         '<td>'.$role.'</td>'.
                   2103:                                         '<td>'.$section.'</td>';
                   2104:                             if ($context eq 'sessions') {
                   2105:                                 $entry .= '<td>'.&Apache::lonlocal::locallocaltime($item).'</td>';
                   2106:                             }
                   2107:                             push(@{$bylastname{$fullname}},$entry);
1.106     raeburn  2108:                         }
                   2109:                     }
                   2110:                 }
                   2111:             }
                   2112:             my $table;
                   2113:             foreach my $person (sort(keys(%bylastname))) {
                   2114:                 if (ref($bylastname{$person}) eq 'ARRAY') {
                   2115:                     foreach my $item (@{$bylastname{$person}}) {
1.126     raeburn  2116:                         $num ++;
                   2117:                         my $css_class = $num%2?' class="LC_odd_row"':'';
                   2118:                         $table .= '<tr'.$css_class.' style="display:none;"  id="'.$prefix.'det_'.$num.'">'.$item.'</tr>';
1.106     raeburn  2119:                     }
                   2120:                 }
                   2121:             }
                   2122:             my $numrow = 0;
                   2123:             foreach my $role (sort(keys(%counts))) {
                   2124:                 my $showrole = &Apache::lonnet::plaintext($role,$crstype);
                   2125:                 if (ref($counts{$role}) eq 'HASH') {
                   2126:                     foreach my $sec (sort { $b <=> $a } (keys(%{$counts{$role}}))) {
                   2127:                         $numrow ++;
                   2128:                         my $css_class = $numrow%2?' class="LC_odd_row"':'';
1.126     raeburn  2129:                         $table .= '<tr '.$css_class.' id="'.$prefix.'sum_'.$numrow.'">'.
1.106     raeburn  2130:                                   '<td>'.$counts{$role}{$sec}.'</td>'.
                   2131:                                   '<td>'.$showrole.'</td>'.
                   2132:                                   '<td>'.$sec.'</td></tr>';
                   2133:                    }
                   2134:                 }
                   2135:             }
1.126     raeburn  2136:             $r->print($hdr.'<input type="hidden" name="'.$prefix.'count" value="'.$num.
                   2137:                       '" /><input type="hidden" name="'.$prefix.'row" value="'.$numrow.
1.106     raeburn  2138:                       '" /></td></tr>'.$table);
                   2139:         }
                   2140:     } else {
                   2141:         $r->print('<tr class="LC_empty_row"><td>'.
                   2142:                   &mt('There are no '.$interval).
1.126     raeburn  2143:                   '<input type="hidden" name="'.$prefix.'count" value="'.$count.
1.106     raeburn  2144:                   '." /></td></tr>');
                   2145:     }
                   2146:     return;
                   2147: }
1.126     raeburn  2148: 
1.33      raeburn  2149: sub display_coursediscussion {
1.84      raeburn  2150:     my ($r,$newdiscussions,$unread,$countunread,$res_title,$itemserror) = @_;
1.59      albertel 2151:     my $lctype = lc(&Apache::loncommon::course_type());
1.33      raeburn  2152:     my %lt = &Apache::lonlocal::texthash(
                   2153:                 'loca' => 'Location',
                   2154:                 'type' => 'Type',
                   2155:                 'numn' => 'Number of new posts',
1.56      raeburn  2156:                 'noun' => 'No unread posts in '.$lctype.' discussions',
1.37      raeburn  2157:                 'tmlp' => 'Time of last post', 
1.33      raeburn  2158:     );
                   2159:     if (@{$newdiscussions} > 0) {
1.68      raeburn  2160:         $r->print('<tr class="LC_info_row"><td class="LC_left_item">'.
                   2161:                   $lt{'loca'}.'</td><td>'.
                   2162:                   $lt{'type'}.'</td>');
1.39      raeburn  2163:         if ($countunread eq 'on') {
1.68      raeburn  2164:             $r->print('<td>'.$lt{'tmlp'}.'</td>'.
                   2165:                       '<td class="LC_right_item">'.$lt{'numn'}.'</td>');
1.37      raeburn  2166:         } else {
1.68      raeburn  2167:             $r->print('<td class="LC_right_item">'.$lt{'tmlp'}.'</td>');
1.37      raeburn  2168:         }
                   2169:         $r->print("</tr>\n");
1.33      raeburn  2170:         @{$newdiscussions} = sort { &cmp_title($a,$b,$res_title) }
                   2171:                                                             @{$newdiscussions};
                   2172:         my $rowNum = 0;
                   2173:         foreach my $ressymb (@{$newdiscussions}) {
1.68      raeburn  2174:             $rowNum ++;
1.33      raeburn  2175:             my $forum_title = $$unread{$ressymb}{'title'};
                   2176:             my $type = 'Resource';
                   2177:             my $feedurl=&Apache::lonfeedback::get_feedurl($ressymb);
1.108     droeschl 2178:             my $disclink = $feedurl.'?symb='. &escape($$unread{$ressymb}{symb});
1.33      raeburn  2179:             if ($feedurl =~ /bulletinboard/) {
1.85      schafran 2180:                 $type = 'Discussion Board';
1.33      raeburn  2181:             }
1.66      raeburn  2182:             if ($$unread{$ressymb}{'enclink'}) {
                   2183:                 $disclink = $$unread{$ressymb}{'enclink'}.'?symb='.$$unread{$ressymb}{'encsymb'};
                   2184:             }
1.68      raeburn  2185:             my $css_class = $rowNum%2?' class="LC_odd_row"':'';
1.37      raeburn  2186:             my $lastpost = &Apache::lonnavmaps::timeToHumanString(
                   2187:                                                $$unread{$ressymb}{'lastpost'});
1.70      raeburn  2188:             $r->print('<tr'.$css_class.'><td><a href="'.$disclink.'">'.$forum_title.'</a>&nbsp;</td><td>'.&mt($type).'&nbsp;</td>');
1.39      raeburn  2189:             if ($countunread eq 'on') {
1.37      raeburn  2190:                 my $unreadnum = $$unread{$ressymb}{'unreadcount'};
1.68      raeburn  2191:                 $r->print('<td>'.$lastpost.'</td><td class="LC_right_item">'.
                   2192:                           $unreadnum.'&nbsp;</td>');
1.37      raeburn  2193:             } else {
1.68      raeburn  2194:                 $r->print('<td class="LC_right_item">'.$lastpost.'</td>');
1.33      raeburn  2195:             }
1.37      raeburn  2196:             $r->print("</tr>\n");
1.33      raeburn  2197:         }
1.84      raeburn  2198:     } elsif ($itemserror) {
                   2199:         $r->print('<tr class="LC_empty_row"><td>'.$itemserror.'</td></tr>');
1.33      raeburn  2200:     } else {
1.68      raeburn  2201:         $r->print('<tr class="LC_empty_row"><td>'.$lt{'noun'}.'</td></tr>');
1.33      raeburn  2202:     }
                   2203: }
                   2204: 
                   2205: sub display_coursenormalmail {
1.68      raeburn  2206:     my ($r,$msgcount,$newmsgs) = @_;
1.59      albertel 2207:     my $lctype = lc(&Apache::loncommon::course_type());
1.33      raeburn  2208:     if ($msgcount > 0) {
1.68      raeburn  2209:         $r->print('<tr class="LC_info_row"><td class="LC_left_item">'.
                   2210:                   &mt('Number').'</td><td>'.&mt('Subject').'</td><td>'.
                   2211:                   &mt('Sender').'</td><td class="LC_right_item">'.
                   2212:                   &mt('Date/Time').'</td></tr>');
                   2213:         my $mailcount = 0;
1.33      raeburn  2214:         foreach my $msg (@{$newmsgs}) {
                   2215:             $mailcount ++;
1.68      raeburn  2216:             my $css_class = $mailcount%2?' class="LC_odd_row"':'';
1.76      raeburn  2217:             $r->print('<tr'.$css_class.'><td>'.$mailcount
                   2218:                       .'.&nbsp;</td><td><a href="/adm/email?display='
                   2219:                       .$msg->{'msgid'}.'">'
                   2220:                       .$msg->{'shortsub'}.'</a>&nbsp;&nbsp;</td><td>&nbsp;'
                   2221:                       .$msg->{'from'}.':'.$msg->{'fromdom'}.'&nbsp;</td><td>'
                   2222:                       .$msg->{'sendtime'}.'</td></tr>');
1.33      raeburn  2223:         }
                   2224:     } else {
1.68      raeburn  2225:         $r->print('<tr class="LC_empty_row"><td>'.
                   2226:                   &mt('No new '.$lctype.' messages').'</td></tr>');
1.33      raeburn  2227:     }
                   2228: }
                   2229: 
                   2230: sub display_coursecritmail {
1.68      raeburn  2231:     my ($r,$critmsgcount,$critmsgs) = @_;
1.59      albertel 2232:     my $lctype = lc(&Apache::loncommon::course_type());
1.33      raeburn  2233:     if ($critmsgcount > 0) {
1.68      raeburn  2234:         $r->print('<tr class="LC_info_row"><td class="LC_left_item">'.
                   2235:                   &mt('Number').'</td><td>'.&mt('Subject').'</td><td>'.
                   2236:                   &mt('Sender').'</td><td class="LC_right_item">'.
                   2237:                   &mt('Date/Time').'</td></tr>');
                   2238:         my $mailcount = 0;
1.33      raeburn  2239:         foreach my $msg (@{$critmsgs}) {
                   2240:             $mailcount ++;
1.68      raeburn  2241:             my $css_class = $mailcount%2?' class="LC_odd_row"':'';
                   2242:             $r->print('<tr'.$css_class.'><td>'.$mailcount.
                   2243:                       '. &nbsp;</td><td><a href="/adm/email?folder=critical">'.
                   2244:                       $msg->{'shortsub'}.'</a>&nbsp; &nbsp;</td><td>&nbsp;'.
1.72      albertel 2245:                       $msg->{'from'}.':'.$msg->{'fromdom'}.'&nbsp;</td><td>'.
1.68      raeburn  2246:                       $msg->{'sendtime'}.'</td></tr>');
1.33      raeburn  2247:         }
                   2248:     } else {
1.68      raeburn  2249:         $r->print('<tr class="LC_empty_row"><td>'.
                   2250:                   &mt('No unread critical messages in '.$lctype).
                   2251:                   '</td></tr>');
1.33      raeburn  2252:     }
1.1       raeburn  2253: }
                   2254: 
                   2255: sub cmp_title {
1.16      raeburn  2256:     my ($a,$b,$res_title) = @_;
                   2257:     my ($atitle,$btitle) = (lc($$res_title{$a}),lc($$res_title{$b}));
1.1       raeburn  2258:     $atitle=~s/^\s*//;
                   2259:     $btitle=~s/^\s*//;
                   2260:     return $atitle cmp $btitle;
                   2261: }
                   2262: 
1.33      raeburn  2263: sub get_display_settings {
1.36      raeburn  2264:     my ($uname,$udom,$cid) = @_;
1.33      raeburn  2265:     my %settings = &Apache::lonnet::dump('nohist_whatsnew',$udom,$uname,$cid); 
                   2266:     my ($tmp) = keys(%settings);
1.40      raeburn  2267:     if ($tmp=~ /^(con_lost|error|no_such_host)/i) {
1.33      raeburn  2268:         %settings = ();
1.41      raeburn  2269:         unless ($tmp =~ /^error: 2 /) {
1.59      albertel 2270: 	    my $lctype = lc(&Apache::loncommon::course_type());
1.41      raeburn  2271:             &Apache::lonnet::logthis('Error retrieving whatsnew settings: '.
1.56      raeburn  2272:             $tmp.' for '.$uname.':'.$udom.' for '.$lctype.': '.$cid);
1.33      raeburn  2273:         }
                   2274:     }
                   2275:     return %settings;
                   2276: }
                   2277: 
1.36      raeburn  2278: sub store_display_settings {
                   2279:     my ($uname,$udom,$cid,$checkallowed) = @_;
                   2280:     my %whatsnew_settings;
                   2281:     my $result;
                   2282:     foreach my $key (keys(%{$checkallowed})) {
1.44      albertel 2283: 	if ($key =~ /_section$/) { next; }
1.36      raeburn  2284:         if (exists($env{'form.display_'.$key})) {
                   2285:             unless ($env{'form.display_'.$key} eq '') {
                   2286:                 $whatsnew_settings{$cid.':'.$key} = $env{'form.display_'.$key};
                   2287:             }
                   2288:         }
                   2289:     }
                   2290:     if (keys(%whatsnew_settings)) {
                   2291:         $result = &Apache::lonnet::put('nohist_whatsnew',\%whatsnew_settings,
                   2292:                                                                  $udom,$uname);
                   2293:     } else {
                   2294:         $result = 'ok';
                   2295:     }
                   2296:     return $result;
                   2297: }
                   2298: 
                   2299: sub store_interval_setting {
                   2300:     my ($uname,$udom,$cid,$interval_titles) = @_;
                   2301:     my %interval_settings = ();
                   2302:     my $result;
1.77      raeburn  2303:     my $context = $env{'form.intervaltype'};
                   2304:     if ($env{'form.interval'} ne '') {
                   2305:         if ($context eq 'oldroles') {
                   2306:             $interval_settings{$cid.':oldroleinterval'} = $env{'form.interval'};
                   2307:         } elsif ($context eq 'newroles') {
                   2308:             $interval_settings{$cid.':newroleinterval'} = $env{'form.interval'};
1.106     raeburn  2309:         } elsif ($context eq 'crslogin') {
                   2310:             $interval_settings{$cid.':crslogininterval'} = $env{'form.interval'};
1.126     raeburn  2311:         } elsif ($context eq 'sessions') {
                   2312:             $interval_settings{$cid.':sessionactivity'} = $env{'form.interval'};
1.77      raeburn  2313:         } else {
                   2314:             $interval_settings{$cid.':interval'} = $env{'form.interval'};
                   2315:         }
1.36      raeburn  2316:         my $outcome = &Apache::lonnet::put('nohist_whatsnew',
                   2317:                                              \%interval_settings,$udom,$uname);
                   2318:         if ($outcome eq 'ok') {
1.77      raeburn  2319:             if (ref($interval_titles->{$context}) eq 'HASH') {
1.99      wenzelju 2320:                 $result = &Apache::lonhtmlcommon::confirm_success(&mt('New filter setting: [_1].','<b>'. 
                   2321:                               $interval_titles->{$context}->{$env{'form.interval'}}.'</b>').'<br />');
1.77      raeburn  2322:             }
1.36      raeburn  2323:         } else {
1.59      albertel 2324: 	    my $lctype = lc(&Apache::loncommon::course_type());
1.77      raeburn  2325:             &Apache::lonnet::logthis('Error saving whatsnew '.$context.' interval setting'.
1.56      raeburn  2326:                 ' '.$outcome.' for '.$uname.':'.$udom.' in '.$lctype.' '.$cid);
1.99      wenzelju 2327:             $result = &Apache::lonhtmlcommon::confirm_success(&mt('Unable to set interval to [_1] due to [_2].',
1.77      raeburn  2328:                          '<b>'.$interval_titles->{$context}->{$env{'form.interval'}}.'</b>',
1.99      wenzelju 2329:                          '<tt>'.$outcome.'</tt>'),1);
1.36      raeburn  2330:         }
                   2331:     }
1.99      wenzelju 2332:     return &Apache::loncommon::confirmwrapper($result);
1.36      raeburn  2333: }
                   2334: 
1.39      raeburn  2335: sub store_discussion_setting {
                   2336:     my ($uname,$udom,$cid) = @_;
                   2337:     my %discussion_settings;
                   2338:     my $result;
                   2339:     if (defined($env{'form.countunread'})) {
                   2340:         $discussion_settings{$cid.':countunread'} = $env{'form.countunread'};
                   2341:         my $outcome = &Apache::lonnet::put('nohist_whatsnew',
                   2342:                                              \%discussion_settings,$udom,$uname);
                   2343:         if ($outcome eq 'ok') {
1.99      wenzelju 2344:             $result = &Apache::lonhtmlcommon::confirm_success(&mt('Count unread posts in discussions display set to [_1]',
                   2345:                   '<b>'.&mt($env{'form.countunread'}).'</b>').'<br />');
1.39      raeburn  2346:                                                                                   
                   2347:         } else {
1.59      albertel 2348: 	    my $lctype = lc(&Apache::loncommon::course_type());
1.71      albertel 2349:             &Apache::lonnet::logthis('Error saving whatsnew countunread setting'.
1.56      raeburn  2350:                 ' '.$outcome.' for '.$uname.':'.$udom.' in '.$lctype.' '.$cid);
1.99      wenzelju 2351:             $result = &Apache::lonhtmlcommon::confirm_success(&mt('Unable to set "number unread posts display" to [_1]'.
1.39      raeburn  2352:                           ' due to [_2].',
1.74      bisitz   2353:                          '<b>'.&mt($env{'form.countunread'}).'</b>',
1.99      wenzelju 2354:                          '<tt>'.$outcome.'</tt>'),1);
1.39      raeburn  2355:         }
                   2356:     }
1.99      wenzelju 2357:     return &Apache::loncommon::confirmwrapper($result);
1.39      raeburn  2358: }
                   2359: 
                   2360: sub store_courseinit_setting {
                   2361:     my ($uname,$udom,$cid,$initpage) = @_;
                   2362:     my %courseinit_settings;
                   2363:     my $page_control;
                   2364:     my $result;
                   2365:     if (defined($env{'form.courseinit_control'})) {
                   2366:         if ($env{'form.courseinit_control'} eq 'userpref') {
                   2367:             $courseinit_settings{$cid.':courseinit'} = '';
                   2368:             $page_control = 'global preferences';
                   2369:         } else {
                   2370:             if (defined($env{'form.courseinit_page'})) {
                   2371:                 $courseinit_settings{$cid.':courseinit'} = 
                   2372:                                                   $env{'form.courseinit_page'};
                   2373:                 $page_control = 'course specific setting';
                   2374:             }
                   2375:         }
                   2376:         if ($page_control) {
1.59      albertel 2377: 	    my $lctype = lc(&Apache::loncommon::course_type());
1.39      raeburn  2378:             my $outcome = &Apache::lonnet::put('nohist_whatsnew',
                   2379:                                            \%courseinit_settings,$udom,$uname);
                   2380:             if ($outcome eq 'ok') {
                   2381:                 if ($page_control eq 'global preferences') {
1.99      wenzelju 2382:                     $result = &Apache::lonhtmlcommon::confirm_success(&mt("Page displayed after role selection in $lctype now set by [_1]user's global preferences[_2].",'<b>','</b>'));
1.39      raeburn  2383:                 } else {
1.99      wenzelju 2384:                     $result = &Apache::lonhtmlcommon::confirm_success(&mt('Page displayed after role selection in this '.$lctype.' set to [_1].'
                   2385:                                  ,'<b>'.$$initpage{$env{'form.courseinit_page'}}.'</b>'));
1.39      raeburn  2386:                 }
                   2387:             } else {
1.71      albertel 2388:                 &Apache::lonnet::logthis('Error saving whatsnew courseinit '.
1.39      raeburn  2389:                                          'setting: '.$outcome.' for '.$uname.
1.56      raeburn  2390:                                          ':'.$udom.' in '.$lctype.' '.$cid);
1.39      raeburn  2391:                 if ($page_control eq 'global preferences') {
1.99      wenzelju 2392:                     $result = &Apache::lonhtmlcommon::confirm_success(&mt('Unable to set control of page display to [_1]'.
1.39      raeburn  2393:                           ' due to [_2].',
                   2394:                          '<b>'.$page_control.'</b>',
1.99      wenzelju 2395:                          '<tt>'.$outcome.'</tt>'),1);
1.39      raeburn  2396:                 } else {
1.99      wenzelju 2397:                     $result = &Apache::lonhtmlcommon::confirm_success(&mt('Unable to set page display, after role selection, for this '.$lctype.' to [_1] due to [_2].'
1.81      bisitz   2398:                                  ,'<b>'.$$initpage{$env{'form.courseinit_page'}}.'</b>'
1.99      wenzelju 2399:                                  ,'<tt>'.$outcome.'</tt>'),1);
1.39      raeburn  2400:                 }
                   2401:             }
                   2402:         }
                   2403:     }
1.99      wenzelju 2404:     return &Apache::loncommon::confirmwrapper($result);
1.39      raeburn  2405: }
                   2406: 
1.33      raeburn  2407: sub start_box {
1.69      raeburn  2408:     my ($r,$show,$heading,$caller,$refpage) = @_;
1.33      raeburn  2409:     my %lt = &Apache::lonlocal::texthash( 
                   2410:                        chth => 'Change thresholds?',
                   2411:                        chin => 'Change interval?',
1.39      raeburn  2412:                        chop => 'Change options?',
1.33      raeburn  2413:     );
1.68      raeburn  2414:     my $showhide;
1.33      raeburn  2415:     if ($$show{$caller}) {
1.36      raeburn  2416:         $showhide = '<b><a href="javascript:change_display(document.visible.'.
1.70      raeburn  2417:                                'display_'.$caller.",'hide'".');">'.
                   2418:                                &mt('Hide').'</a></b>';
1.33      raeburn  2419:    
                   2420:     } else {
1.36      raeburn  2421:         $showhide = '<b><a href="javascript:change_display(document.visible.'.
1.70      raeburn  2422:                                'display_'.$caller.",'show'".');">'.
                   2423:                                &mt('Show').'</a></b>';
1.33      raeburn  2424:     }
                   2425:     
                   2426:     $r->print('
1.68      raeburn  2427:          <table class="LC_nested_outer">
1.33      raeburn  2428:           <tr>
1.73      raeburn  2429:            <th class="LC_left_item">'.$$heading{$caller}.'</th>
1.68      raeburn  2430:            <th class="LC_right_item">'.$showhide.'</th>
                   2431:           </tr>');
1.33      raeburn  2432:      if (($caller eq 'abovethreshold') && ($$show{$caller})) {
1.40      raeburn  2433:          if ($$show{$caller}) {
                   2434:              $r->print('
1.33      raeburn  2435:               <tr>
1.98      raeburn  2436:                 <td class="LC_subheader" colspan="2"><a href="/adm/whatsnew?command=chgthreshold&amp;refpage='.$refpage.'">'.$lt{'chth'}.'</a></td>
1.33      raeburn  2437:               </tr>');
1.40      raeburn  2438:          }
1.33      raeburn  2439:      } elsif (($caller eq 'versionchanges') && ($$show{$caller})) {
1.40      raeburn  2440:          if ($$show{$caller}) {
                   2441:              $r->print('
1.33      raeburn  2442:               <tr>
1.98      raeburn  2443:                 <td class="LC_subheader" colspan="2"><a href="/adm/whatsnew?command=chginterval&amp;refpage='.$refpage.'">'.$lt{'chin'}.'</a></td>
1.39      raeburn  2444:               </tr>');
1.40      raeburn  2445:          }
1.39      raeburn  2446:      } elsif ($caller eq 'coursediscussion') {
1.40      raeburn  2447:          if ($$show{$caller}) {
                   2448:              $r->print('
1.39      raeburn  2449:               <tr>
1.98      raeburn  2450:                 <td class="LC_subheader" colspan="2"><a href="/adm/whatsnew?command=chgdisc&amp;refpage='.$refpage.'">'.$lt{'chop'}.'</a></td>
1.33      raeburn  2451:               </tr>');
1.40      raeburn  2452:          }
1.77      raeburn  2453:      } elsif (($caller eq 'newroles') && ($$show{$caller})) {
                   2454:          if ($$show{$caller}) {
                   2455:              $r->print('
                   2456:               <tr>
1.98      raeburn  2457:                 <td class="LC_subheader" colspan="2"><a href="/adm/whatsnew?command=chgnewroleinterval&amp;refpage='.$refpage.'">'.$lt{'chin'}.'</a></td>
1.77      raeburn  2458:               </tr>');
                   2459:          }
                   2460:      } elsif (($caller eq 'oldroles') && ($$show{$caller})) {
                   2461:          if ($$show{$caller}) {
                   2462:              $r->print('
                   2463:               <tr>
1.98      raeburn  2464:                 <td class="LC_subheader" colspan="2"><a href="/adm/whatsnew?command=chgoldroleinterval&amp;refpage='.$refpage.'">'.$lt{'chin'}.'</a></td>
1.77      raeburn  2465:               </tr>');
                   2466:          }
1.106     raeburn  2467:     } elsif (($caller eq 'crslogin') && ($$show{$caller})) {
                   2468:         if ($$show{$caller}) {
                   2469:             $r->print('
                   2470:               <tr>
1.126     raeburn  2471:                 <td class="LC_subheader" align="left"><span class="LC_nobreak"><label><input type="radio" name="logindetails" value="0" checked="checked" onclick="javascript:toggledetails('."'login'".');" />&nbsp;'.&mt('Summary').'</label><label><input type="radio" name="logindetails" value="1" onclick="javascript:toggledetails('."'login'".');" />&nbsp;'.&mt('Details').'</label></span></td><td class="LC_subheader"><a href="/adm/whatsnew?command=chgcrslogininterval&amp;refpage='.$refpage.'">'.$lt{'chin'}.'</a></td>
                   2472:               </tr>');
                   2473:         }
                   2474:     } elsif (($caller eq 'sessions') && ($$show{$caller})) {
                   2475:         if ($$show{$caller}) {
                   2476:             $r->print('
                   2477:               <tr>
                   2478:                 <td class="LC_subheader" align="left"><span class="LC_nobreak"><label><input type="radio" name="sessiondetails" value="0" checked="checked" onclick="javascript:toggledetails('."'session'".');" />&nbsp;'.&mt('Summary').'</label><label><input type="radio" name="sessiondetails" value="1" onclick="javascript:toggledetails('."'session'".');" />&nbsp;'.&mt('Details').'</label></span></td><td class="LC_subheader"><a href="/adm/whatsnew?command=chgsessionlimit&amp;refpage='.$refpage.'">'.$lt{'chin'}.'</a></td>
1.106     raeburn  2479:               </tr>');
                   2480:         }
                   2481:     }
1.61      albertel 2482:     $r->print('
1.33      raeburn  2483:               <tr>
1.68      raeburn  2484:                <td colspan="2">
                   2485:                 <table class="LC_nested">
1.33      raeburn  2486: ');
                   2487:     return;
                   2488: }
                   2489: 
                   2490: sub end_box {
                   2491:     my ($r) = shift;
                   2492:     $r->print('
                   2493:    </table>
                   2494:   </td>
                   2495:  </tr>
                   2496: </table><br />');
                   2497:     return;
                   2498: }
                   2499: 
1.7       raeburn  2500: 1;

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