File:  [LON-CAPA] / loncom / interface / coursecatalog.pm
Revision 1.60: download - view: text, annotated - select for diffs
Sun Apr 4 15:38:34 2010 UTC (14 years, 2 months ago) by raeburn
Branches: MAIN
CVS tags: PRINT_INCOMPLETE_base, PRINT_INCOMPLETE, HEAD
- C(c)ourse -> C(c)ommunity if listing Communities in Catalog.

    1: # The LearningOnline Network with CAPA
    2: # Handler for displaying the course catalog interface
    3: #
    4: # $Id: coursecatalog.pm,v 1.60 2010/04/04 15:38:34 raeburn Exp $
    5: #
    6: # Copyright Michigan State University Board of Trustees
    7: #
    8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
    9: #
   10: # LON-CAPA is free software; you can redistribute it and/or modify
   11: # it under the terms of the GNU General Public License as published by
   12: # the Free Software Foundation; either version 2 of the License, or
   13: # (at your option) any later version.
   14: #
   15: # LON-CAPA is distributed in the hope that it will be useful,
   16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   18: # GNU General Public License for more details.
   19: #
   20: # You should have received a copy of the GNU General Public License
   21: # along with LON-CAPA; if not, write to the Free Software
   22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   23: #
   24: # /home/httpd/html/adm/gpl.txt
   25: #
   26: # http://www.lon-capa.org/
   27: #
   28: 
   29: package Apache::coursecatalog;
   30: 
   31: use strict;
   32: use lib qw(/home/httpd/lib/perl);
   33: use Apache::Constants qw(:common);
   34: use Apache::loncommon;
   35: use Apache::lonhtmlcommon;
   36: use Apache::lonnet;
   37: use Apache::lonlocal;
   38: use Apache::courseclassifier;
   39: use Apache::lonacc;
   40: use LONCAPA;
   41: 
   42: sub handler {
   43:     my ($r) = @_;
   44:     &Apache::loncommon::content_type($r,'text/html');
   45:     $r->send_http_header;
   46:     if ($r->header_only) {
   47:         return OK;
   48:     }
   49:     my $handle = &Apache::lonnet::check_for_valid_session($r);
   50:     my $lonidsdir=$r->dir_config('lonIDsDir');
   51:     if ($handle ne '') {
   52:         &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);
   53:     }
   54:     &Apache::lonacc::get_posted_cgi($r);
   55:     &Apache::lonlocal::get_language_handle($r);
   56:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
   57:                                             ['sortby','showdom']);
   58: 
   59:     my $codedom = &Apache::lonnet::default_login_domain();
   60: 
   61:     if (($env{'user.domain'} ne '') && ($env{'user.domain'} ne 'public')) { 
   62:         $codedom = $env{'user.domain'};
   63:         if ($env{'request.role.domain'} ne '') {
   64:             $codedom = $env{'request.role.domain'};
   65:         }
   66:     }
   67:     my $formname = 'coursecatalog';
   68:     if ($env{'form.showdom'} ne '') {
   69:         if (&Apache::lonnet::domain($env{'form.showdom'}) ne '') {
   70:             $codedom = $env{'form.showdom'};
   71:         }
   72:     }
   73:     my $domdesc = &Apache::lonnet::domain($codedom,'description');
   74:     &Apache::lonhtmlcommon::clear_breadcrumbs();
   75: 
   76:     my %domconfig =
   77:         &Apache::lonnet::get_dom('configuration',['coursecategories'],$codedom);
   78:     my (@cats,@trails,%allitems,%idx,@jsarray,%subcathash,$cathash);
   79:     if (ref($domconfig{'coursecategories'}) eq 'HASH') {
   80:         $cathash = $domconfig{'coursecategories'}{'cats'};
   81:     } else {
   82:         $cathash = {};
   83:     }
   84:     my $subcats;
   85:     if ($env{'form.withsubcats'}) {
   86:         $subcats = \%subcathash;
   87:     }
   88:     &Apache::loncommon::extract_categories($cathash,\@cats,\@trails,\%allitems,
   89:                                            \%idx,\@jsarray,$subcats);
   90:     if ($env{'form.coursenum'} ne '' && &user_is_known()) {
   91:         &course_details($r,$codedom,$formname,$domdesc,\@trails,\%allitems);
   92:     } else {
   93:         my ($catlinks,$has_subcats,$selitem) = &category_breadcrumbs($codedom,@cats);
   94:         my $catjs = <<"ENDSCRIPT";
   95: 
   96: function setCatDepth(depth) {
   97:     document.coursecats.catalog_maxdepth.value = depth;
   98:     if (depth == '') {
   99:         document.coursecats.currcat_0.value = '';
  100:     }
  101:     document.coursecats.submit();
  102:     return;
  103: }
  104: 
  105: function changeSort(caller) {
  106:     document.$formname.sortby.value = caller;
  107:     document.$formname.submit();
  108: }
  109: 
  110: function setCourseId(caller) {
  111:     document.$formname.coursenum.value = caller;
  112:     document.$formname.submit();
  113: }
  114: 
  115: ENDSCRIPT
  116:         $catjs .= &courselink_javascript(); 
  117:         my $numtitles;
  118:         if ($env{'form.currcat_0'} eq 'instcode::0') {
  119:             $numtitles = &instcode_course_selector($r,$codedom,$formname,$domdesc,
  120:                                                    $catlinks,$catjs);
  121:             if ($env{'form.state'} eq 'listing') {
  122:                 $r->print(&print_course_listing($codedom,$numtitles));
  123:             }
  124:         } else {
  125:             my (%add_entries);
  126:             my ($currdepth,$deeper) = &get_depth_values();
  127:             if ($selitem) {
  128:                 my $alert = &mt('Choose a subcategory to display');
  129:                 if (!$deeper) {
  130:                     $alert = &mt('Choose a category to display');
  131:                 }
  132:                 $catjs .= <<ENDJS;
  133: function check_selected() {
  134:     if (document.coursecats.$selitem.options[document.coursecats.$selitem.selectedIndex].value == "") {
  135:         alert('$alert');
  136:         return false;
  137:     }
  138: }
  139: ENDJS
  140:             }
  141:             $catjs = '<script type="text/javascript">'."\n".$catjs."\n".'</script>';
  142:             &cat_header($r,$codedom,$catjs,\%add_entries,$catlinks);
  143:             if ($env{'form.currcat_0'} ne '') {
  144:                 $r->print('<form name="'.$formname.
  145:                           '" method="post" action="/adm/coursecatalog">'.
  146:                           &additional_filters($codedom,$has_subcats)."\n");
  147:                 $r->print('<input type="hidden" name="catalog_maxdepth" value="'.
  148:                           $deeper.'" />'."\n");
  149:                 for (my $i=0; $i<$deeper; $i++) {
  150:                     $r->print('<input type="hidden" name="currcat_'.$i.'" value="'.$env{'form.currcat_'.$i}.'" />'."\n");
  151:                 }
  152:                 my $display_button;
  153:                 if ($env{'form.currcat_0'} eq 'communities::0') {
  154:                     $display_button = &mt('Display communities');
  155:                 } else {
  156:                     $display_button = &mt('Display courses');
  157:                 }
  158:                 $r->print('<input type="hidden" name="coursenum" value="" />'."\n".
  159:                           '<input type="hidden" name="sortby" value="" />'."\n".
  160:                           '<input type="hidden" name="state" value="listing" />'."\n".
  161:                           '<input type="hidden" name="showdom" value="'.
  162:                           $env{'form.showdom'}.'" />'.
  163:                           '<input type="submit" name="catalogfilter" value="'.
  164:                           $display_button.'" /></form><br /><br />');
  165:             }
  166:             if ($env{'form.state'} eq 'listing') {
  167:                 $r->print(&print_course_listing($codedom,undef,\@trails,\%allitems,$subcats));
  168:             }
  169:         }
  170:     }
  171:     $r->print('<br />'.&Apache::loncommon::end_page());
  172:     return OK;
  173: }
  174: 
  175: sub course_details {
  176:     my ($r,$codedom,$formname,$domdesc,$trails,$allitems) = @_;
  177:     my $output;
  178:     my %add_entries = (topmargin    => "0",
  179:                        marginheight => "0",);
  180:     my $js = '<script type="text/javascript">'."\n".
  181:              &courselink_javascript().'</script>'."\n";
  182:     my $start_page =
  183:         &Apache::loncommon::start_page('Course/Community Catalog',$js,
  184:                                            {'add_entries' => \%add_entries, });
  185:     $r->print($start_page);
  186:     if ($env{'form.numtitles'} > 0) {
  187:         &Apache::lonhtmlcommon::add_breadcrumb
  188:                 ({href=>"/adm/coursecatalog",
  189:                   text=>"Course/Community Catalog"});
  190:     }
  191:     my $brtextone = 'Course listing';
  192:     my $brtexttwo = 'Course details';
  193:     if ($env{'form.currcat_0'} eq 'communities::0') {
  194:         $brtextone = 'Community listing';
  195:         $brtextone = 'Community details';
  196:     }
  197:     &Apache::lonhtmlcommon::add_breadcrumb
  198:              ({href=>"javascript:document.$formname.submit()",
  199:               text=>$brtextone},
  200:              {text=>$brtexttwo});
  201:     $r->print(&Apache::lonhtmlcommon::breadcrumbs('Course/Community Catalog'));
  202:     $r->print('<br />');
  203:     if ($env{'form.currcat_0'} eq 'communities::0') {
  204:         $r->print(&mt('Detailed community information:'));
  205:     } else {
  206:         $r->print(&mt('Detailed course information:'));
  207:     }
  208:     $r->print('<br /><br />'.
  209:               &print_course_listing($codedom,undef,$trails,$allitems).
  210:               '<br /><br />');
  211:     $r->print('<form name="'.$formname.'" method="post" action="/adm/coursecatalog">'.
  212:               '<a href = "javascript:document.coursecatalog.submit()">');
  213:     if ($env{'form.currcat_0'} eq 'communities::0') {
  214:         $r->print(&mt('Back to community listing'));
  215:     } else {
  216:         $r->print(&mt('Back to course listing'));
  217:     }
  218:     $r->print('</a>'.
  219:               &Apache::lonhtmlcommon::echo_form_input(['coursenum','catalogfilter',
  220:                                                        'showdetails','courseid']).'</form>');
  221:     return;
  222: }
  223: 
  224: sub courselink_javascript {
  225:     return <<"END";
  226: 
  227: function ToSyllabus(cdom,cnum) {
  228:     if (cdom == '' || cdom == null) {
  229:         return;
  230:     }
  231:     if (cnum == '' || cnum == null) {
  232:         return;
  233:     }
  234:     document.linklaunch.action = "/public/"+cdom+"/"+cnum+"/syllabus";
  235:     document.linklaunch.submit();
  236: }
  237: 
  238: function ToSelfenroll(courseid) {
  239:     if (courseid == '') {
  240:         return;
  241:     }
  242:     document.linklaunch.action = "/adm/selfenroll";
  243:     document.linklaunch.courseid.value = courseid;
  244:     document.linklaunch.submit();
  245: }
  246: 
  247: END
  248: }
  249: 
  250: sub instcode_course_selector {
  251:     my ($r,$codedom,$formname,$domdesc,$catlinks,$catjs) = @_;
  252:     my %coursecodes = ();
  253:     my %codes = ();
  254:     my @codetitles = ();
  255:     my %cat_titles = ();
  256:     my %cat_order = ();
  257:     my %cat_items;
  258:     my $caller = 'global';
  259:     my $format_reply;
  260:     my %add_entries = (topmargin    => "0",
  261:                        marginheight => "0",);
  262:     my ($jscript,$totcodes,$numtitles,$lasttitle) = 
  263:         &Apache::courseclassifier::instcode_selectors_data($codedom,$formname,
  264:                            \%cat_items,\@codetitles,\%cat_titles,\%cat_order);
  265:     my $js = '<script type"text/javascript">'."\n$jscript\n$catjs\n".
  266:               '</script>';
  267:     if ($totcodes) {
  268:         if (($env{'form.state'} eq 'listing') && ($numtitles > 0)) {
  269:             $add_entries{'onLoad'} = 'setElements()';
  270:         }
  271:         &cat_header($r,$codedom,$js,\%add_entries,$catlinks,$numtitles);
  272:         my $cat_maxdepth = $env{'form.catalog_maxdepth'};
  273:         $r->print('<form name="'.$formname.'" method="post" action="/adm/coursecatalog">'.
  274:                   '<input type="hidden" name="catalog_maxdepth" value="'.$cat_maxdepth.'" />'."\n".
  275:                   '<input type="hidden" name="showdom" value="'.$env{'form.showdom'}.'" />'."\n".
  276:                   '<input type="hidden" name="currcat_0" value="instcode::0" />'.
  277:                   &additional_filters($codedom));
  278:         if ($numtitles > 0) {
  279:             $r->print('<b>'.&mt('Choose which course(s) to list.').'</b><br />'.
  280:                       &Apache::courseclassifier::build_instcode_selectors($numtitles,
  281:                        $lasttitle,\%cat_items,\@codetitles,\%cat_titles,\%cat_order));
  282:         }
  283:         $r->print('<input type="hidden" name="coursenum" value="" />'."\n".
  284:                   '<input type="hidden" name="sortby" value="" />'."\n".
  285:                   '<input type="hidden" name="state" value="listing" />'."\n".
  286:                   '<input type="hidden" name="form.currcat_0" value="instcode::0" />'."\n".
  287:                   '<input type="submit" name="catalogfilter" value="'.
  288:                   &mt('Display courses').'" />'.
  289:                   '<input type="hidden" name="numtitles" value="'.$numtitles.
  290:                   '" /></form><br /><br />');
  291:     } else {
  292:         $js = '<script type"text/javascript">'."\n$catjs\n".'</script>';
  293:         &cat_header($r,$codedom,$js,\%add_entries,$catlinks,$numtitles);
  294:         my $cat_maxdepth = $env{'form.catalog_maxdepth'};
  295:         $r->print('<form name="'.$formname.'" method="post" action="/adm/coursecatalog">'.
  296:                   '<input type="hidden" name="catalog_maxdepth" value="'.$cat_maxdepth.'" />'.
  297:                   '<input type="hidden" name="showdom" value="'.$env{'form.showdom'}.'" />'.
  298:                   '<input type="hidden" name="currcat_0" value="instcode::0" />');
  299:         $r->print('<br />'.&mt('No official courses to display for [_1].',$domdesc).'</form>');
  300:     }
  301:     return $numtitles;
  302: }
  303: 
  304: sub cat_header {
  305:     my ($r,$codedom,$js,$add_entries,$catlinks,$numtitles) = @_;
  306:     my $start_page =
  307:         &Apache::loncommon::start_page('Other',$js,
  308:                                        { 'add_entries' => $add_entries, });
  309:     $r->print($start_page);
  310:     my $brtext = 'Course listing';
  311:     if ($env{'form.currcat_0'} eq 'communities::0') {
  312:         $brtext = 'Community listing';
  313:     }
  314:     if ($env{'form.state'} eq 'listing') {
  315:         if ($numtitles > 0) {
  316:             &Apache::lonhtmlcommon::add_breadcrumb
  317:                 ({href=>"/adm/coursecatalog",
  318:                   text=>"Course/Community Catalog"},
  319:                  {text=>$brtext});
  320:         } else {
  321:             &Apache::lonhtmlcommon::add_breadcrumb
  322:             ({text=>$brtext});
  323:         }
  324:     } else {
  325:         &Apache::lonhtmlcommon::add_breadcrumb
  326:         ({href=>"/adm/coursecatalog",
  327:           text=>"Course/Community Catalog"});
  328:     }
  329:     $r->print(&Apache::lonhtmlcommon::breadcrumbs('Course/Community Catalog'));
  330:     my $onchange;
  331:     unless ($env{'form.interface'} eq 'textual') {
  332:         $onchange = 'this.form.submit()';
  333:     }
  334:     $r->print('<form name="coursecatdom" method="post" action="/adm/coursecatalog">'.
  335:               '<table border="0"><tr><td><b>'.&mt('Domain:').'</b></td><td>'.
  336:               &Apache::loncommon::select_dom_form($codedom,'showdom','',1,$onchange));
  337:     if (!$onchange) {
  338: 	   $r->print('&nbsp;<input type="submit" name="godom" value="'.&mt('Change').'" />');
  339:     }
  340:     $r->print('</td></tr></table></form>'.
  341: 	      '<form name="coursecats" method="post" action="/adm/coursecatalog"'.
  342:               ' onsubmit="return check_selected();">'.
  343:               '<table border="0"><tr>'.$catlinks.'</tr></table></form>');
  344:     return;
  345: }
  346: 
  347: sub category_breadcrumbs {
  348:     my ($dom,@cats) = @_;
  349:     my $crumbsymbol = ' &#x25b6; ';
  350:     my ($currdepth,$deeper) = &get_depth_values();
  351:     my $currcat_str = 
  352:         '<input type="hidden" name="catalog_maxdepth" value="'.$deeper.'" />'.
  353:         '<input type="hidden" name="showdom" value="'.$dom.'" />';
  354:     my $catlinks = '<td valign="top"><b>'.&mt('Catalog:').'</b></td><td><table><tr><td>';
  355:     my $has_subcats;
  356:     my $selitem;
  357:     if (ref($cats[0]) eq 'ARRAY') {
  358:         if (@{$cats[0]} == 0) {
  359:             $catlinks .= &mt('No categories defined in this domain'); 
  360:         } elsif (@{$cats[0]} == 1) {
  361:             if ($cats[0][0] eq 'instcode') {
  362:                 $catlinks .= &mt('Official courses (with institutional codes)');
  363:                 $env{'form.currcat_0'} = 'instcode::0';
  364:             } elsif ($cats[0][0] eq 'communities') {
  365:                 $catlinks .= &mt('Communities');
  366:                 $env{'form.currcat_0'} = 'communities::0';
  367:             } else {
  368:                 my $name = $cats[0][0];
  369:                 my $item = &escape($name).'::0';
  370:                 $catlinks .= $name;
  371:                 $env{'form.currcat_0'} = $item;
  372:             }
  373:             $currcat_str .= '<input type="hidden" name="currcat_0" value="'.$env{'form.currcat_0'}.'" />';
  374:         } else {
  375:             $catlinks .= &main_category_selector(@cats);
  376:             if (($env{'form.currcat_0'} ne '') && 
  377:                 ($env{'form.currcat_0'} ne 'instcode::0')) {
  378:                 $catlinks .= $crumbsymbol;
  379:             } else {
  380:                 $catlinks .= '</td>';
  381:             }
  382:         }
  383:     } else {
  384:         $catlinks .= &mt('Official courses (with institutional codes)');
  385:                      $env{'form.currcat_0'} = 'instcode::0';
  386:          $currcat_str .= '<input type="hidden" name="currcat_0" value="'.$env{'form.currcat_0'}.'" />';
  387:     }
  388:     if ($deeper) {
  389:         for (my $i=1; $i<=$deeper; $i++) {
  390:             my $shallower = $i-1;
  391:             next if ($shallower == 0);
  392:             my ($cat,$container,$depth) = map { &unescape($_); } split(/:/,$env{'form.currcat_'.$shallower});
  393:             if ($cat ne '') {
  394:                 $catlinks .= '<td valign="top">'.
  395:                              '<select name="currcat_'.$shallower.'" onchange="'.
  396:                              'setCatDepth('."'$shallower'".');this.form.submit();">';
  397:                 if (ref($cats[$shallower]{$container}) eq 'ARRAY') {
  398:                     $catlinks .= '<option value="">'.&mt('De-select').'</option>';
  399:                     for (my $j=0; $j<@{$cats[$shallower]{$container}}; $j++) {
  400:                         my $name = $cats[$shallower]{$container}[$j];
  401:                         my $item = &escape($name).':'.$container.':'.$shallower;
  402:                         my $selected = '';
  403:                         if ($item eq $env{'form.currcat_'.$shallower}) {
  404:                             $selected = ' selected="selected"';
  405:                         }
  406:                         $catlinks .= 
  407:                            '<option value="'.$item.'"'.$selected.'>'.$name.'</option>';
  408:                     }
  409:                 }
  410:                 $catlinks .= '</select>';
  411:             }
  412:             unless ($i == $deeper) {
  413:                 $catlinks .= $crumbsymbol;
  414:             } 
  415:         }
  416:         my ($cat,$container,$depth);
  417:         if ($env{'form.currcat_'.$currdepth} eq '') {
  418:             my $shallower = $currdepth - 1;
  419:             ($cat,$container,$depth) = map { &unescape($_); } split(/:/,$env{'form.currcat_'.$shallower});
  420:         } else {
  421:             ($cat,$container,$depth) = map { &unescape($_); } split(/:/,$env{'form.currcat_'.$currdepth});
  422:         }
  423:         my $deeperlevel = $depth +1;
  424:         if (ref($cats[$deeperlevel]{$cat}) eq 'ARRAY') {
  425:             $has_subcats = 1;
  426:             my $buttontext = &mt('Show subcategories');
  427:             my $selitem = 'currcat_'.$deeperlevel;
  428:             $catlinks .= '&nbsp;<select name="'.$selitem.'" onchange="this.form.submit()">';
  429:             if (@{$cats[$deeperlevel]{$cat}}) {
  430:                 $catlinks .= '<option value="" selected="selected">'.
  431:                              &mt('Subcategory ...').'</option>';
  432:             }
  433:             for (my $k=0; $k<@{$cats[$deeperlevel]{$cat}}; $k++) {
  434:                 my $name = $cats[$deeperlevel]{$cat}[$k];
  435:                 my $item = &escape($name).':'.&escape($cat).':'.$deeperlevel;
  436:                 $catlinks .= '<option value="'.$item.'">'.$name.'</option>'."\n";
  437:             }
  438:             $catlinks .= '</select>'."\n";
  439:         } elsif ($cat ne 'instcode') {
  440:             $catlinks .= '&nbsp;'.&mt('(No subcategories)');
  441:         }
  442:     } else {
  443:         $selitem = 'currcat_0';
  444:     }
  445:     $catlinks .= $currcat_str.'</td></tr></table></td>';
  446:     return ($catlinks,$has_subcats,$selitem);
  447: }
  448: 
  449: sub main_category_selector {
  450:     my (@cats) = @_;
  451:     my $maincatlinks = '<select name="currcat_0" onchange="setCatDepth('."'0'".');this.form.submit();">'."\n";
  452:     if (ref($cats[0]) eq 'ARRAY') {
  453:         if (@{$cats[0]} > 1) {
  454:             my $selected = '';
  455:             if ($env{'form.currcat_0'} eq '') {
  456:                 $selected = ' selected="selected"';    
  457:             }
  458:             $maincatlinks .= 
  459:                 '<option value=""'.$selected.'>'.&mt('Select').'</option>'."\n";
  460:         }
  461:         for (my $i=0; $i<@{$cats[0]}; $i++) {
  462:             my $name = $cats[0][$i];
  463:             my $item = &escape($name).'::0';
  464:             my $selected;
  465:             if ($env{'form.currcat_0'} eq $item) {
  466:                 $selected = ' selected="selected"';
  467:             }
  468:             $maincatlinks .= '<option value="'.$item.'"'.$selected.'>';
  469:             if ($name eq 'instcode') {
  470:                 $maincatlinks .= &mt('Official courses (with institutional codes)');
  471:             } elsif ($name eq 'communities') {
  472:                 $maincatlinks .= &mt('Communities');
  473:             } else {
  474:                 $maincatlinks .= $name;
  475:             }
  476:             $maincatlinks .= '</option>'."\n";
  477:         }
  478:         $maincatlinks .= '</select>'."\n";
  479:     }
  480:     return $maincatlinks;
  481: }
  482: 
  483: sub get_depth_values {
  484:     my $currdepth = 0;
  485:     my $deeper = 0;
  486:     if ($env{'form.catalog_maxdepth'} ne '') {
  487:         $currdepth = $env{'form.catalog_maxdepth'};
  488:         if ($env{'form.currcat_'.$currdepth} eq '') {
  489:             $deeper = $currdepth;
  490:         } else {
  491:             $deeper = $currdepth + 1;
  492:         }
  493:     }
  494:     return ($currdepth,$deeper);
  495: }
  496: 
  497: sub additional_filters {
  498:     my ($codedom,$has_subcats) = @_;
  499:     my $output = '<table>';
  500:     if (($env{'form.currcat_0'} ne 'instcode::0') && 
  501:         ($env{'form.currcat_0'} ne '') && ($has_subcats)) {
  502:         my $include_subcat_status;
  503:         if ($env{'form.withsubcats'}) {
  504:             $include_subcat_status = 'checked="checked" ';
  505:         }
  506:         my $counter = $env{'form.catalog_maxdepth'};
  507:         if ($counter > 0) {
  508:             if ($env{'form.state'} eq 'listing') {
  509:                 $counter --;
  510:             } elsif ($env{'form.currcat_'.$counter} eq '') {
  511:                 $counter --;
  512:             }
  513:         }
  514:         my ($catname) = split(/:/,$env{'form.currcat_'.$counter});
  515:         if ($catname ne '') {
  516:             $output .= '<tr><td><label>'.
  517:                        '<input type="checkbox" name="withsubcats" value="1" '.
  518:                        $include_subcat_status.'/>'.
  519:                        &mt('Include subcategories within "[_1]"',
  520:                            &unescape($catname)).'</label></td></tr>';
  521:         }
  522:     }
  523:     my $show_selfenroll_status;
  524:     if ($env{'form.showselfenroll'}) {
  525:         $show_selfenroll_status = 'checked="checked" ';
  526:     }
  527:     my $selfenroll_text;
  528:     if ($env{'form.currcat_0'} eq 'communities::0') {
  529:         $selfenroll_text = &mt('Only show communities which allow self-enrollment');
  530:     } else {
  531:         $selfenroll_text = &mt('Only show courses which allow self-enrollment');
  532:     }
  533:     $output .= '<tr><td>'.
  534:                '<label><input type="checkbox" name="showselfenroll" value="1" '.
  535:                $show_selfenroll_status.'/>'.$selfenroll_text.
  536:                '</label></td></tr>';
  537:     if (&user_is_dc($codedom)) {
  538:         my $showdetails_status;
  539:         if ($env{'form.showdetails'}) {
  540:             $showdetails_status = 'checked="checked" ';
  541:         }
  542:         my $showhidden_status;
  543:         if ($env{'form.showhidden'}) {
  544:              $showhidden_status = 'checked="checked" ';
  545:         }
  546:         my $dc_title = &Apache::lonnet::plaintext('dc');
  547:         my ($details_text,$hidden_text);
  548:         if ($env{'form.currcat_0'} eq 'communities::0') {
  549:             $details_text = &mt('Show full details for each community ([_1] only)',$dc_title);
  550:             $hidden_text = &mt('Include communities set to be hidden from catalog ([_1] only)',$dc_title);
  551:         } else {
  552:             $details_text = &mt('Show full details for each course ([_1] only)',$dc_title);
  553:             $hidden_text = &mt('Include courses set to be hidden from catalog ([_1] only)',$dc_title);
  554:         }
  555:         $output .= '<tr><td>'."\n".
  556:                    '<label><input type="checkbox" name="showdetails" value="1" '.
  557:                    $showdetails_status.'/>'.$details_text.
  558:                    '</label>'."\n".'</td></tr><tr><td>'.
  559:                    '<label><input type="checkbox" name="showhidden" value="1" '.
  560:                    $showhidden_status.'/>'.$hidden_text.
  561:                    '</label>'."\n".'</td></tr>';
  562:     }
  563:     $output .= '</table><br />';
  564:     return $output;
  565: }
  566: 
  567: sub user_is_dc {
  568:     my ($codedom) = @_;
  569:     if (exists($env{'user.role.dc./'.$codedom.'/'})) {
  570:         my $livedc = 1;
  571:         my $now = time;
  572:         my ($start,$end)=split(/\./,$env{'user.role.dc./'.$codedom.'/'});
  573:         if ($start && $start>$now) { $livedc = 0; }
  574:         if ($end   && $end  <$now) { $livedc = 0; }
  575:         return $livedc;
  576:     }
  577:     return;
  578: }
  579: 
  580: sub search_official_courselist {
  581:     my ($domain,$numtitles) = @_;
  582:     my $instcode = &Apache::courseclassifier::instcode_search_str($domain,$numtitles);
  583:     my $showhidden;
  584:     if (&user_is_dc($domain)) {
  585:         $showhidden = $env{'form.showhidden'};
  586:     }
  587:     my %courses = 
  588:         &Apache::lonnet::courseiddump($domain,'.',1,$instcode,'.','.',undef,undef,
  589:                                       'Course',1,$env{'form.showselfenroll'},undef,
  590:                                       $showhidden,'coursecatalog');
  591:     return %courses;
  592: }
  593: 
  594: sub search_courselist {
  595:     my ($domain,$subcats) = @_;
  596:     my $cat_maxdepth = $env{'form.catalog_maxdepth'};
  597:     my $filter = $env{'form.currcat_'.$cat_maxdepth};
  598:     if (($filter eq '') && ($cat_maxdepth > 0)) {
  599:         my $shallower = $cat_maxdepth - 1;
  600:         $filter = $env{'form.currcat_'.$shallower};
  601:     }
  602:     my %courses;
  603:     my $filterstr;
  604:     if ($filter ne '') {
  605:         if ($env{'form.withsubcats'}) {
  606:             if (ref($subcats) eq 'HASH') {
  607:                 if (ref($subcats->{$filter}) eq 'ARRAY') {
  608:                     $filterstr = join('&',@{$subcats->{$filter}});
  609:                     if ($filterstr ne '') {
  610:                         $filterstr = $filter.'&'.$filterstr;
  611:                     }
  612:                 } else {
  613:                     $filterstr = $filter;
  614:                 }
  615:             } else {
  616:                 $filterstr = $filter;
  617:             }  
  618:         } else {
  619:             $filterstr = $filter; 
  620:         }
  621:         my ($showhidden,$typefilter);
  622:         if (&user_is_dc($domain)) {
  623:             $showhidden = $env{'form.showhidden'};
  624:         }
  625:         if ($env{'form.currcat_0'} eq 'communities::0') {
  626:             $typefilter = 'Community';
  627:         } else {
  628:             $typefilter = '.';
  629:         }
  630:         %courses = 
  631:             &Apache::lonnet::courseiddump($domain,'.',1,'.','.','.',undef,undef,
  632:                                           $typefilter,1,$env{'form.showselfenroll'},
  633:                                           $filterstr,$showhidden,'coursecatalog');
  634:     }
  635:     return %courses;
  636: }
  637: 
  638: sub print_course_listing {
  639:     my ($domain,$numtitles,$trails,$allitems,$subcats) = @_;
  640:     my $output;
  641:     my %courses;
  642:     my $knownuser = &user_is_known();
  643:     my $details = $env{'form.coursenum'};
  644:     if (&user_is_dc($domain)) {
  645:         if ($env{'form.showdetails'}) {
  646:             $details = 1;
  647:         }
  648:     }
  649:     if ($env{'form.coursenum'} ne '') {
  650:         %courses = &Apache::lonnet::courseiddump($domain,'.',1,'.','.',
  651:                                                  $env{'form.coursenum'},
  652:                                                  undef,undef,'.',1);
  653:         if (keys(%courses) == 0) {
  654:             if ($env{'form.currcat_0'} eq 'communities::0') {
  655:                 $output .= &mt('The courseID provided does not match a community in this domain.');
  656:             } else { 
  657:                 $output .= &mt('The courseID provided does not match a course in this domain.');
  658:             }
  659:             return $output;
  660:         }
  661:     } else {
  662:         if ($env{'form.currcat_0'} eq 'instcode::0') {
  663:             %courses = &search_official_courselist($domain,$numtitles);
  664:         } else {
  665:             %courses = &search_courselist($domain,$subcats);
  666:         }
  667:         if (keys(%courses) == 0) {
  668:             if ($env{'form.currcat_0'} eq 'communities::0') {
  669:                 $output = &mt('No communities match the criteria you selected.');
  670:             } else {
  671:                 $output = &mt('No courses match the criteria you selected.');
  672:             }
  673:             return $output;
  674:         }
  675:         if (($knownuser) && (!$env{'form.showdetails'}) && (!&user_is_dc($domain))) {
  676:             $output = '<b>'.&mt('Note for students:').'</b> '
  677:                      .&mt('If you are officially enrolled in a course but the course is not listed in your LON-CAPA courses, click the "Show more details" link for the specific course and check the default access dates and/or automated enrollment settings.')
  678:                      .'<br /><br />';
  679:         }
  680:     }
  681:     my $now = time;
  682:     my %domconfig =
  683:         &Apache::lonnet::get_dom('configuration',['usercreation'],$domain);
  684:     $output .= &construct_data_table($knownuser,\%courses,$details,undef,$now,\%domconfig,$trails,$allitems);
  685:     $output .= "\n".'<form name="linklaunch" method="post" action="">'.
  686:                '<input type="hidden" name="backto" value="coursecatalog" />'.
  687:                '<input type="hidden" name="courseid" value="" />'.
  688:                &Apache::lonhtmlcommon::echo_form_input(['catalogfilter','courseid']).'</form>';
  689:     return $output;
  690: }
  691: 
  692: sub construct_data_table {
  693:     my ($knownuser,$courses,$details,$usersections,$now,$domconfig,$trails,
  694:         $allitems) = @_;
  695:     my %sortname;
  696:     if (($details eq '') || ($env{'form.showdetails'})) {
  697:         $sortname{'Code'} = 'code';
  698:         $sortname{'Categories'} = 'cats';
  699:         $sortname{'Title'} = 'title';
  700:         $sortname{'Owner(s)'} = 'owner';
  701:     }
  702:     my $output = &Apache::loncommon::start_data_table().
  703:                  &Apache::loncommon::start_data_table_header_row();
  704:     my @coltitles = ('Count');
  705:     if ($env{'form.currcat_0'} eq 'instcode::0') {
  706:         push(@coltitles,'Code');
  707:     } else {
  708:         push(@coltitles,'Categories');
  709:     }
  710:     push(@coltitles,('Sections','Crosslisted','Title','Owner(s)'));
  711:     if (ref($usersections) eq 'HASH') {
  712:        $coltitles[1] = 'Your Section';
  713:     }
  714:     foreach my $item (@coltitles) {
  715:         $output .= '<th>';
  716:         if (defined($sortname{$item})) {
  717:             $output .= '<a href="javascript:changeSort('."'$sortname{$item}'".')">'.&mt($item).'</a>';
  718:         } elsif ($item eq 'Count') {
  719:             $output .= '&nbsp;&nbsp;';
  720:         } else {
  721:             $output .= &mt($item);
  722:         }
  723:         $output .= '</th>';
  724:     }
  725:     if ($knownuser) {
  726:         if ($details) {
  727:             if ($env{'form.currcat_0'} eq 'communities::0') {
  728:                 $output .= '<th>'.&mt('Default Access Dates for Members').'</th>';
  729:             } else {
  730:                 $output .=
  731:                     '<th>'.&mt('Default Access Dates for Students').'</th>'.
  732:                     '<th>'.&mt('Student Counts').'</th>'.
  733:                     '<th>'.&mt('Auto-enrollment of[_1]registered students','<br />').'</th>';
  734:             }
  735:         } else {
  736:             $output .= '<th>'.&mt('Details').'</th>';
  737:         }
  738:     }
  739:     $output .= '<th>'.&mt('Self-enroll (if permitted)').'</th>';
  740:     &Apache::loncommon::end_data_table_header_row();
  741:     my %courseinfo = &build_courseinfo_hash($courses,$knownuser,$details,
  742:                                             $usersections);
  743:     my %Sortby;
  744:     foreach my $course (sort(keys(%{$courses}))) {
  745:         if ($env{'form.sortby'} eq 'code') {
  746:             push(@{$Sortby{$courseinfo{$course}{'code'}}},$course);
  747:         } elsif ($env{'form.sortby'} eq 'cats') {
  748:             push(@{$Sortby{$courseinfo{$course}{'categories'}}},$course);
  749:         } elsif ($env{'form.sortby'} eq 'owner') {
  750:             push(@{$Sortby{$courseinfo{$course}{'ownerlastnames'}}},$course);
  751:         } else {
  752:             my $clean_title = $courseinfo{$course}{'title'};
  753:             $clean_title =~ s/\W+//g;
  754:             if ($clean_title eq '') {
  755:                 $clean_title = $courseinfo{$course}{'title'};
  756:             }
  757:             push(@{$Sortby{$clean_title}},$course);
  758:         }
  759:     }
  760:     my @sorted_courses;
  761:     if (($env{'form.sortby'} eq 'code') || ($env{'form.sortby'} eq 'owner') ||
  762:         ($env{'form.sortby'} eq 'cats')) {
  763:         @sorted_courses = sort(keys(%Sortby));
  764:     } else {
  765:         @sorted_courses = sort { lc($a) cmp lc($b) } (keys(%Sortby));
  766:     }
  767:     my $count = 1;
  768:     foreach my $item (@sorted_courses) {
  769:         foreach my $course (@{$Sortby{$item}}) {
  770:             $output.=&Apache::loncommon::start_data_table_row(); 
  771:             $output.=&courseinfo_row($courseinfo{$course},$knownuser,$details,
  772:                                      \$count,$now,$course,$trails,$allitems);
  773:             $output.=&Apache::loncommon::end_data_table_row();
  774:         }
  775:     }
  776:     $output .= &Apache::loncommon::end_data_table();
  777:     return $output;
  778: }
  779: 
  780: sub build_courseinfo_hash {
  781:     my ($courses,$knownuser,$details,$usersections) = @_;
  782:     my %courseinfo;
  783:     my $now = time;
  784:     foreach my $course (keys(%{$courses})) {
  785:         my $descr;
  786:         if (ref($courses->{$course}) eq 'HASH') {
  787:             $descr = $courses->{$course}{'description'}; 
  788:         }
  789:         my $cleandesc=&HTML::Entities::encode($descr,'<>&"');
  790:         $cleandesc=~s/'/\\'/g;
  791:         $cleandesc =~ s/^\s+//;
  792:         my ($cdom,$cnum)=split(/\_/,$course);
  793:         my ($instcode,$singleowner,$ttype,$selfenroll_types,
  794:             $selfenroll_start,$selfenroll_end,@owners,%ownernames,$categories);
  795:         if (ref($courses->{$course}) eq 'HASH') {
  796:             $descr = $courses->{$course}{'description'};
  797:             $instcode =  $courses->{$course}{'inst_code'};
  798:             $singleowner = $courses->{$course}{'owner'};
  799:             $ttype =  $courses->{$course}{'type'};
  800:             $selfenroll_types = $courses->{$course}{'selfenroll_types'};
  801:             $selfenroll_start = $courses->{$course}{'selfenroll_start_date'};
  802:             $selfenroll_end = $courses->{$course}{'selfenroll_end_date'};
  803:             $categories = $courses->{$course}{'categories'};
  804:             push(@owners,$singleowner);
  805:             if (ref($courses->{$course}{'co-owners'}) eq 'ARRAY') {
  806:                 foreach my $item (@{$courses->{$course}{'co-owners'}}) {
  807:                     push(@owners,$item);
  808:                 }
  809:             }
  810:         }
  811:         foreach my $owner (@owners) {
  812:             my ($ownername,$ownerdom); 
  813:             if ($owner =~ /:/) {
  814:                 ($ownername,$ownerdom) = split(/:/,$owner);
  815:             } else {
  816:                 $ownername = $owner;
  817:                 if ($owner ne '') {
  818:                     $ownerdom = $cdom;
  819:                 }
  820:             }
  821:             if ($ownername ne '' && $ownerdom ne '') {
  822:                 my %namehash=&Apache::loncommon::getnames($ownername,$ownerdom);
  823:                 $ownernames{$ownername.':'.$ownerdom} = \%namehash; 
  824:             }
  825:         }
  826:         $courseinfo{$course}{'cdom'} = $cdom;
  827:         $courseinfo{$course}{'cnum'} = $cnum;
  828:         $courseinfo{$course}{'code'} = $instcode;
  829:         my @lastnames;
  830:         foreach my $owner (keys(%ownernames)) {
  831:             if (ref($ownernames{$owner}) eq 'HASH') {
  832:                 push(@lastnames,$ownernames{$owner}{'lastname'});
  833:             }
  834:         }
  835:         $courseinfo{$course}{'ownerlastnames'} = join(', ',sort(@lastnames));
  836:         $courseinfo{$course}{'title'} = $cleandesc;
  837:         $courseinfo{$course}{'owner'} = $singleowner;
  838:         $courseinfo{$course}{'selfenroll_types'} = $selfenroll_types;
  839:         $courseinfo{$course}{'selfenroll_start'} = $selfenroll_start;
  840:         $courseinfo{$course}{'selfenroll_end'} = $selfenroll_end;
  841:         $courseinfo{$course}{'categories'} = $categories;
  842: 
  843:         my %coursehash = &Apache::lonnet::dump('environment',$cdom,$cnum);
  844:         my @classids;
  845:         my @crosslistings;
  846:         my ($seclist,$numsec) = 
  847:             &identify_sections($coursehash{'internal.sectionnums'});
  848:         if (ref($usersections) eq 'HASH') {
  849:             if (ref($usersections->{$course}) eq 'ARRAY') {
  850:                 $seclist = join(', ',@{$usersections->{$course}});
  851:             }
  852:         }
  853:         $courseinfo{$course}{'seclist'} = $seclist;
  854:         my ($xlist_items,$numxlist) = 
  855:             &identify_sections($coursehash{'internal.crosslistings'});
  856:         my $showsyllabus = 1; # default is to include a syllabus link
  857:         if (defined($coursehash{'showsyllabus'})) {
  858:             $showsyllabus = $coursehash{'showsyllabus'};
  859:         }
  860:         $courseinfo{$course}{'showsyllabus'} = $showsyllabus;
  861:         if (((defined($env{'form.coursenum'}) && ($cnum eq $env{'form.coursenum'}))) ||
  862:             ($knownuser && ($details == 1))) {
  863:             $courseinfo{$course}{'counts'} =  &count_students($cdom,$cnum,$numsec);
  864:             $courseinfo{$course}{'autoenrollment'} =
  865:                 &autoenroll_info(\%coursehash,$now,$seclist,$xlist_items,
  866:                                  $instcode,\@owners,$cdom,$cnum);
  867: 
  868:             my $startaccess = '';
  869:             my $endaccess = '';
  870:             my $accessdates;
  871:             if ( defined($coursehash{'default_enrollment_start_date'}) ) {
  872:                 $startaccess = &Apache::lonlocal::locallocaltime($coursehash{'default_enrollment_start_date'});
  873:             }
  874:             if ( defined($coursehash{'default_enrollment_end_date'}) ) {
  875:                 $endaccess = &Apache::lonlocal::locallocaltime($coursehash{'default_enrollment_end_date'});
  876:                 if ($coursehash{'default_enrollment_end_date'} == 0) {
  877:                     $endaccess = &mt('No ending date');
  878:                 }
  879:             }
  880:             if ($startaccess) {
  881:                 $accessdates .= '<i>'.&mt('From:[_1]','</i> '.$startaccess).'<br />';
  882:             }
  883:             if ($endaccess) {
  884:                 $accessdates .= '<i>'.&mt('To:[_1]','</i> '.$endaccess).'<br />';
  885:             }
  886:             if (($selfenroll_types ne '') && 
  887:                 ($selfenroll_end > 0 && $selfenroll_end > $now)) {
  888:                 my ($selfenroll_start_access,$selfenroll_end_access);
  889:                 if (($coursehash{'default_enrollment_start_date'} ne 
  890:                      $coursehash{'internal.selfenroll_start_access'}) ||
  891:                    ($coursehash{'default_enrollment_end_date'} ne 
  892:                     $coursehash{'internal.selfenroll_end_access'})) {
  893:                     if ( defined($coursehash{'internal.selfenroll_start_access'}) ) {
  894:                         $selfenroll_start_access = &Apache::lonlocal::locallocaltime($coursehash{'internal.selfenroll_start_access'});
  895:                     }
  896:                     if ( defined($coursehash{'default_enrollment_end_date'}) ) {
  897:                         $selfenroll_end_access = &Apache::lonlocal::locallocaltime($coursehash{'internal.selfenroll_end_access'});
  898:                         if ($coursehash{'internal.selfenroll_end_access'} == 0) {
  899:                             $selfenroll_end_access = &mt('No ending date');
  900:                         }
  901:                     }
  902:                     if ($selfenroll_start_access || $selfenroll_end_access) {
  903:                         $accessdates .= '<br/><br /><i>'.&mt('Self-enrollers:').'</i><br />';
  904:                         if ($selfenroll_start_access) {
  905:                             $accessdates .= '<i>'.&mt('From:[_1]','</i> '.$selfenroll_start_access).'<br />';
  906:                         }
  907:                         if ($selfenroll_end_access) {
  908:                             $accessdates .= '<i>'.&mt('To:[_1]','</i> '.$selfenroll_end_access).'<br />';
  909:                         }
  910:                     }
  911:                 }
  912:             }
  913:             $courseinfo{$course}{'access'} = $accessdates;
  914:         }
  915:         if ($xlist_items eq '') {
  916:             $xlist_items = &mt('No');
  917:         }
  918:         $courseinfo{$course}{'xlist'} = $xlist_items;
  919:     }
  920:     return %courseinfo;
  921: }
  922: 
  923: sub count_students {
  924:     my ($cdom,$cnum,$numsec) = @_;
  925:     my $classlist = &Apache::loncoursedata::get_classlist($cdom,$cnum);
  926:     my %student_count = (
  927:                            Active => 0,
  928:                            Future => 0,
  929:                            Expired => 0,
  930:                        );
  931:     my %idx;
  932:     $idx{'status'} = &Apache::loncoursedata::CL_STATUS();
  933:     my %status_title = &Apache::lonlocal::texthash(
  934:                            Expired => 'Previous access',
  935:                            Active => 'Current access',
  936:                            Future => 'Future access',
  937:                        );
  938: 
  939:     while (my ($student,$data) = each(%$classlist)) {
  940:         $student_count{$data->[$idx{'status'}]} ++;
  941:     }
  942: 
  943:     my $countslist = &mt('[quant,_1,section:,sections:,No sections]',$numsec).'<br />';
  944:     foreach my $status ('Active','Future') {
  945:         $countslist .= '<span class="LC_nobreak">'.$status_title{$status}.': '.
  946:                        $student_count{$status}.'</span><br />';
  947:     }
  948:     return $countslist;
  949: }
  950: 
  951: sub courseinfo_row {
  952:     my ($info,$knownuser,$details,$countref,$now,$course,$trails,$allitems) = @_;
  953:     my ($cdom,$cnum,$title,$ownerlast,$code,$owner,$seclist,$xlist_items,
  954:         $accessdates,$showsyllabus,$counts,$autoenrollment,$output,$categories);
  955:     if (ref($info) eq 'HASH') {
  956:         $cdom = $info->{'cdom'};
  957:         $cnum = $info->{'cnum'};
  958:         $title = $info->{'title'};
  959:         $ownerlast = $info->{'ownerlastnames'};
  960:         $code = $info->{'code'};
  961:         $owner = $info->{'owner'};
  962:         $seclist = $info->{'seclist'};
  963:         $xlist_items = $info->{'xlist'};
  964:         $accessdates = $info->{'access'};
  965:         $counts = $info->{'counts'};
  966:         $autoenrollment = $info->{'autoenrollment'};
  967:         $showsyllabus = $info->{'showsyllabus'};
  968:         $categories = $info->{'categories'};
  969:     } else {
  970:         $output = '<td colspan="8">'.&mt('No information available for [_1].',
  971:                                          $code).'</td>';
  972:         return $output;
  973:     }
  974:     $output .= '<td>'.$$countref.'</td>';
  975:     if ($env{'form.currcat_0'} eq 'instcode::0') {
  976:         $output .= '<td>'.$code.'</td>';
  977:     } else {
  978:         my ($categorylist,@cats);
  979:         if ($categories ne '') {
  980:             @cats = split('&',$categories);
  981:         }
  982:         if ((ref($trails) eq 'ARRAY') && (ref($allitems) eq 'HASH')) {
  983:             my @categories = map { $trails->[$allitems->{$_}]; } @cats;
  984:             $categorylist = join('<br />',@categories);
  985:         }
  986:         if ($categorylist eq '') {
  987:             $categorylist = '&nbsp;';
  988:         }
  989:         $output .= '<td>'.$categorylist.'</td>';
  990:     }
  991:     $output .= '<td>'.$seclist.'</td>'.
  992:                '<td>'.$xlist_items.'</td>'.
  993:                '<td>'.$title.'&nbsp;<font size="-2">';
  994:     if ($showsyllabus) {
  995:         $output .= '<a href="javascript:ToSyllabus('."'$cdom','$cnum'".')">'.&mt('Syllabus').'</a>';
  996:     } else {
  997:         $output .= '&nbsp;';
  998:     }
  999:     $output .= '</font></td>'.
 1000:                '<td>'.$ownerlast.'</td>';
 1001:     if ($knownuser) {
 1002:         if ($details) {
 1003:             if ($env{'form.currcat_0'} eq 'communities::0') {
 1004:                 $output .= '<td>'.$accessdates.'</td>';
 1005:             } else { 
 1006:                 $output .=
 1007:                     '<td>'.$accessdates.'</td>'. 
 1008:                     '<td>'.$counts.'</td>'.
 1009:                     '<td>'.$autoenrollment.'</td>';
 1010:             }
 1011:         } else {
 1012:             $output .= "<td><a href=\"javascript:setCourseId('$cnum')\">".&mt('Show more details').'</a></td>';
 1013:         }
 1014:     }
 1015:     my $selfenroll;
 1016:     if ($info->{'selfenroll_types'}) {
 1017:         my $showstart = &Apache::lonlocal::locallocaltime($info->{'selfenroll_start'});
 1018:         my $showend = &Apache::lonlocal::locallocaltime($info->{'selfenroll_end'});
 1019:         if (($info->{'selfenroll_end'} > 0) && ($info->{'selfenroll_end'} > $now)) {
 1020:             if (($info->{'selfenroll_start'} > 0) && ($info->{'selfenroll_start'} > $now)) {
 1021:                 $output .= '<td>'.&mt('Starts: [_1]','<span class="LC_cusr_emph">'.$showstart.'</span>').'<br />'.&mt('Ends: [_1]','<span class="LC_cusr_emph">'.$showend.'</span>').'</td>';
 1022:             } else { 
 1023:                 $output .= '<td><a href="javascript:ToSelfenroll('."'$course'".')">'.&mt('Enroll in course').'</a></td>';
 1024:             }
 1025:             $selfenroll = 1;
 1026:         }
 1027:     }
 1028:     if (!$selfenroll) {
 1029:         $output .= '<td>&nbsp;</td>';
 1030:     }
 1031:     $$countref ++;
 1032:     return $output;
 1033: }
 1034: 
 1035: sub identify_sections {
 1036:     my ($seclist) = @_;
 1037:     my @secnums;
 1038:     if ($seclist =~ /,/) {
 1039:         my @sections = split(/,/,$seclist);
 1040:         foreach my $sec (@sections) {
 1041:             $sec =~ s/:[^:]*$//;
 1042:             push(@secnums,$sec);
 1043:         }
 1044:     } else {
 1045:         if ($seclist =~ m/^([^:]+):/) {
 1046:             my $sec = $1;
 1047:             if (!grep(/^\Q$sec\E$/,@secnums)) {
 1048:                 push(@secnums,$sec);
 1049:             }
 1050:         }
 1051:     }
 1052:     @secnums = sort {$a <=> $b} @secnums;
 1053:     $seclist = join(', ',@secnums);
 1054:     my $numsec = @secnums;
 1055:     return ($seclist,$numsec);
 1056: }
 1057: 
 1058: sub get_valid_classes {
 1059:     my ($seclist,$xlist_items,$crscode,$owners,$cdom,$cnum) = @_;
 1060:     my $response;
 1061:     my %validations;
 1062:     @{$validations{'sections'}} = ();
 1063:     @{$validations{'xlists'}} = ();
 1064:     my $totalitems = 0;
 1065:     if ($seclist) {
 1066:         foreach my $sec (split(/, /,$seclist)) {
 1067:             my $class = $crscode.$sec;
 1068:             if (&Apache::lonnet::auto_validate_class_sec($cdom,$cnum,$owners,
 1069: 							 $class) eq 'ok') {
 1070:                 if (!grep(/^\Q$sec$\E/,@{$validations{'sections'}})) {
 1071:                     push(@{$validations{'sections'}},$sec);
 1072:                     $totalitems ++;
 1073:                 }
 1074:             }
 1075:         }
 1076:     }
 1077:     if ($xlist_items) {
 1078:         foreach my $item (split(/, /,$xlist_items)) {
 1079:             if (&Apache::lonnet::auto_validate_class_sec($cdom,$cnum,$owners,
 1080: 							 $item) eq 'ok') {
 1081:                 if (!grep(/^\Q$item$\E/,@{$validations{'xlists'}})) {
 1082:                     push(@{$validations{'xlists'}},$item);
 1083:                     $totalitems ++;
 1084:                 }
 1085:             }
 1086:         }
 1087:     }
 1088:     if ($totalitems > 0) {
 1089:         if (@{$validations{'sections'}}) {
 1090:             $response = &mt('Sections:').' '.
 1091:                         join(', ',@{$validations{'sections'}}).'<br />';
 1092:         }
 1093:         if (@{$validations{'xlists'}}) {
 1094:             $response .= &mt('Courses:').' '.
 1095:                         join(', ',@{$validations{'xlists'}});
 1096:         }
 1097:     }
 1098:     return $response;
 1099: }
 1100: 
 1101: sub autoenroll_info {
 1102:     my ($coursehash,$now,$seclist,$xlist_items,$code,$owners,$cdom,$cnum) = @_;
 1103:     my $autoenrolldates = &mt('Not enabled');
 1104:     if (defined($coursehash->{'internal.autoadds'}) && $coursehash->{'internal.autoadds'} == 1) {
 1105:         my ($autostart,$autoend);
 1106:         if ( defined($coursehash->{'internal.autostart'}) ) {
 1107:             $autostart = &Apache::lonlocal::locallocaltime($coursehash->{'internal.autostart'});
 1108:         }
 1109:         if ( defined($coursehash->{'internal.autoend'}) ) {
 1110:             $autoend = &Apache::lonlocal::locallocaltime($coursehash->{'internal.autoend'});
 1111:         }
 1112:         if ($coursehash->{'internal.autostart'} > $now) {
 1113:             if ($coursehash->{'internal.autoend'} && $coursehash->{'internal.autoend'} < $now) {
 1114:                 $autoenrolldates = &mt('Not enabled');
 1115:             } else {
 1116:                 my $valid_classes = 
 1117:                    &get_valid_classes($seclist,$xlist_items,$code,
 1118:                                       $owners,$cdom,$cnum);
 1119:                 if ($valid_classes ne '') {
 1120:                     $autoenrolldates = &mt('Not enabled').'<br />'
 1121:                                       .&mt('Starts: [_1]',$autostart)
 1122:                                       .'<br />'.$valid_classes;
 1123:                 }
 1124:             }
 1125:         } else {
 1126:             if ($coursehash->{'internal.autoend'} && $coursehash->{'internal.autoend'} < $now) {
 1127:                 $autoenrolldates = &mt('Not enabled').'<br />'
 1128:                                   .&mt('Ended: [_1]',$autoend);
 1129:             } else {
 1130:                 my $valid_classes = &get_valid_classes($seclist,$xlist_items,
 1131:                                                        $code,$owners,$cdom,$cnum);
 1132:                 if ($valid_classes ne '') {
 1133:                     $autoenrolldates = &mt('Currently enabled').'<br />'.
 1134:                                        $valid_classes;
 1135:                 }
 1136:             }
 1137:         }
 1138:     }
 1139:     return $autoenrolldates;
 1140: }
 1141: 
 1142: sub user_is_known {
 1143:     my $known = 0;
 1144:     if ($env{'user.name'} ne '' && $env{'user.name'} ne 'public' 
 1145:         && $env{'user.domain'} ne '' && $env{'user.domain'} ne 'public') {
 1146:         $known = 1;
 1147:     }
 1148:     return $known;
 1149: }
 1150: 
 1151: 1;

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