File:  [LON-CAPA] / loncom / interface / coursecatalog.pm
Revision 1.59: download - view: text, annotated - select for diffs
Mon Mar 22 20:11:22 2010 UTC (14 years, 3 months ago) by droeschl
Branches: MAIN
CVS tags: HEAD
In process of removing remote control, remote navmap and different icon modes code
- removed no_inline_link argument from loncommon::start_page, loncommon::bodytag
- removed subs
    o loncommon::head: it wasn't used
    o loncommon::endheadtag: functionality now covered by loncommon::headtag
    o lonmenu::registerurl: functionality moved to loncommon::headtag, because it was the only function that called registerurl
- removed remote control related translations in de.pm
- refactoring and cleanup

    1: # The LearningOnline Network with CAPA
    2: # Handler for displaying the course catalog interface
    3: #
    4: # $Id: coursecatalog.pm,v 1.59 2010/03/22 20:11:22 droeschl 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:     &Apache::lonhtmlcommon::add_breadcrumb
  192:              ({href=>"javascript:document.$formname.submit()",
  193:               text=>"Course listing"},
  194:              {text=>"Course details"});
  195:     $r->print(&Apache::lonhtmlcommon::breadcrumbs('Course/Community Catalog'));
  196:     $r->print('<br />'.&mt('Detailed course information:').'<br /><br />'.
  197:               &print_course_listing($codedom,undef,$trails,$allitems).
  198:               '<br /><br />');
  199:     $r->print('<form name="'.$formname.'" method="post" action="/adm/coursecatalog">'.
  200:               '<a href = "javascript:document.coursecatalog.submit()">'.
  201:               &mt('Back to course listing').'</a>'.
  202:               &Apache::lonhtmlcommon::echo_form_input(['coursenum','catalogfilter',
  203:                                                        'showdetails','courseid']).'</form>');
  204:     return;
  205: }
  206: 
  207: sub courselink_javascript {
  208:     return <<"END";
  209: 
  210: function ToSyllabus(cdom,cnum) {
  211:     if (cdom == '' || cdom == null) {
  212:         return;
  213:     }
  214:     if (cnum == '' || cnum == null) {
  215:         return;
  216:     }
  217:     document.linklaunch.action = "/public/"+cdom+"/"+cnum+"/syllabus";
  218:     document.linklaunch.submit();
  219: }
  220: 
  221: function ToSelfenroll(courseid) {
  222:     if (courseid == '') {
  223:         return;
  224:     }
  225:     document.linklaunch.action = "/adm/selfenroll";
  226:     document.linklaunch.courseid.value = courseid;
  227:     document.linklaunch.submit();
  228: }
  229: 
  230: END
  231: }
  232: 
  233: sub instcode_course_selector {
  234:     my ($r,$codedom,$formname,$domdesc,$catlinks,$catjs) = @_;
  235:     my %coursecodes = ();
  236:     my %codes = ();
  237:     my @codetitles = ();
  238:     my %cat_titles = ();
  239:     my %cat_order = ();
  240:     my %cat_items;
  241:     my $caller = 'global';
  242:     my $format_reply;
  243:     my %add_entries = (topmargin    => "0",
  244:                        marginheight => "0",);
  245:     my ($jscript,$totcodes,$numtitles,$lasttitle) = 
  246:         &Apache::courseclassifier::instcode_selectors_data($codedom,$formname,
  247:                            \%cat_items,\@codetitles,\%cat_titles,\%cat_order);
  248:     my $js = '<script type"text/javascript">'."\n$jscript\n$catjs\n".
  249:               '</script>';
  250:     if ($totcodes) {
  251:         if (($env{'form.state'} eq 'listing') && ($numtitles > 0)) {
  252:             $add_entries{'onLoad'} = 'setElements()';
  253:         }
  254:         &cat_header($r,$codedom,$js,\%add_entries,$catlinks,$numtitles);
  255:         my $cat_maxdepth = $env{'form.catalog_maxdepth'};
  256:         $r->print('<form name="'.$formname.'" method="post" action="/adm/coursecatalog">'.
  257:                   '<input type="hidden" name="catalog_maxdepth" value="'.$cat_maxdepth.'" />'."\n".
  258:                   '<input type="hidden" name="showdom" value="'.$env{'form.showdom'}.'" />'."\n".
  259:                   '<input type="hidden" name="currcat_0" value="instcode::0" />'.
  260:                   &additional_filters($codedom));
  261:         if ($numtitles > 0) {
  262:             $r->print('<b>'.&mt('Choose which course(s) to list.').'</b><br />'.
  263:                       &Apache::courseclassifier::build_instcode_selectors($numtitles,
  264:                        $lasttitle,\%cat_items,\@codetitles,\%cat_titles,\%cat_order));
  265:         }
  266:         $r->print('<input type="hidden" name="coursenum" value="" />'."\n".
  267:                   '<input type="hidden" name="sortby" value="" />'."\n".
  268:                   '<input type="hidden" name="state" value="listing" />'."\n".
  269:                   '<input type="hidden" name="form.currcat_0" value="instcode::0" />'."\n".
  270:                   '<input type="submit" name="catalogfilter" value="'.
  271:                   &mt('Display courses').'" />'.
  272:                   '<input type="hidden" name="numtitles" value="'.$numtitles.
  273:                   '" /></form><br /><br />');
  274:     } else {
  275:         $js = '<script type"text/javascript">'."\n$catjs\n".'</script>';
  276:         &cat_header($r,$codedom,$js,\%add_entries,$catlinks,$numtitles);
  277:         my $cat_maxdepth = $env{'form.catalog_maxdepth'};
  278:         $r->print('<form name="'.$formname.'" method="post" action="/adm/coursecatalog">'.
  279:                   '<input type="hidden" name="catalog_maxdepth" value="'.$cat_maxdepth.'" />'.
  280:                   '<input type="hidden" name="showdom" value="'.$env{'form.showdom'}.'" />'.
  281:                   '<input type="hidden" name="currcat_0" value="instcode::0" />');
  282:         $r->print('<br />'.&mt('No official courses to display for [_1].',$domdesc).'</form>');
  283:     }
  284:     return $numtitles;
  285: }
  286: 
  287: sub cat_header {
  288:     my ($r,$codedom,$js,$add_entries,$catlinks,$numtitles) = @_;
  289:     my $start_page =
  290:         &Apache::loncommon::start_page('Other',$js,
  291:                                        { 'add_entries' => $add_entries, });
  292:     $r->print($start_page);
  293:     if ($env{'form.state'} eq 'listing') {
  294:         if ($numtitles > 0) {
  295:             &Apache::lonhtmlcommon::add_breadcrumb
  296:                 ({href=>"/adm/coursecatalog",
  297:                   text=>"Course/Community Catalog"},
  298:                  {text=>"Course listing"});
  299:         } else {
  300:             &Apache::lonhtmlcommon::add_breadcrumb
  301:             ({text=>"Course listing"});
  302:         }
  303:     } else {
  304:         &Apache::lonhtmlcommon::add_breadcrumb
  305:         ({href=>"/adm/coursecatalog",
  306:           text=>"Course/Community Catalog"});
  307:     }
  308:     $r->print(&Apache::lonhtmlcommon::breadcrumbs('Course/Community Catalog'));
  309:     my $onchange;
  310:     unless ($env{'form.interface'} eq 'textual') {
  311:         $onchange = 'this.form.submit()';
  312:     }
  313:     $r->print('<form name="coursecatdom" method="post" action="/adm/coursecatalog">'.
  314:               '<table border="0"><tr><td><b>'.&mt('Domain:').'</b></td><td>'.
  315:               &Apache::loncommon::select_dom_form($codedom,'showdom','',1,$onchange));
  316:     if (!$onchange) {
  317: 	   $r->print('&nbsp;<input type="submit" name="godom" value="'.&mt('Change').'" />');
  318:     }
  319:     $r->print('</td></tr></table></form>'.
  320: 	      '<form name="coursecats" method="post" action="/adm/coursecatalog"'.
  321:               ' onsubmit="return check_selected();">'.
  322:               '<table border="0"><tr>'.$catlinks.'</tr></table></form>');
  323:     return;
  324: }
  325: 
  326: sub category_breadcrumbs {
  327:     my ($dom,@cats) = @_;
  328:     my $crumbsymbol = ' &#x25b6; ';
  329:     my ($currdepth,$deeper) = &get_depth_values();
  330:     my $currcat_str = 
  331:         '<input type="hidden" name="catalog_maxdepth" value="'.$deeper.'" />'.
  332:         '<input type="hidden" name="showdom" value="'.$dom.'" />';
  333:     my $catlinks = '<td valign="top"><b>'.&mt('Catalog:').'</b></td><td><table><tr><td>';
  334:     my $has_subcats;
  335:     my $selitem;
  336:     if (ref($cats[0]) eq 'ARRAY') {
  337:         if (@{$cats[0]} == 0) {
  338:             $catlinks .= &mt('No categories defined in this domain'); 
  339:         } elsif (@{$cats[0]} == 1) {
  340:             if ($cats[0][0] eq 'instcode') {
  341:                 $catlinks .= &mt('Official courses (with institutional codes)');
  342:                 $env{'form.currcat_0'} = 'instcode::0';
  343:             } elsif ($cats[0][0] eq 'communities') {
  344:                 $catlinks .= &mt('Communities');
  345:                 $env{'form.currcat_0'} = 'communities::0';
  346:             } else {
  347:                 my $name = $cats[0][0];
  348:                 my $item = &escape($name).'::0';
  349:                 $catlinks .= $name;
  350:                 $env{'form.currcat_0'} = $item;
  351:             }
  352:             $currcat_str .= '<input type="hidden" name="currcat_0" value="'.$env{'form.currcat_0'}.'" />';
  353:         } else {
  354:             $catlinks .= &main_category_selector(@cats);
  355:             if (($env{'form.currcat_0'} ne '') && 
  356:                 ($env{'form.currcat_0'} ne 'instcode::0')) {
  357:                 $catlinks .= $crumbsymbol;
  358:             } else {
  359:                 $catlinks .= '</td>';
  360:             }
  361:         }
  362:     } else {
  363:         $catlinks .= &mt('Official courses (with institutional codes)');
  364:                      $env{'form.currcat_0'} = 'instcode::0';
  365:          $currcat_str .= '<input type="hidden" name="currcat_0" value="'.$env{'form.currcat_0'}.'" />';
  366:     }
  367:     if ($deeper) {
  368:         for (my $i=1; $i<=$deeper; $i++) {
  369:             my $shallower = $i-1;
  370:             next if ($shallower == 0);
  371:             my ($cat,$container,$depth) = map { &unescape($_); } split(/:/,$env{'form.currcat_'.$shallower});
  372:             if ($cat ne '') {
  373:                 $catlinks .= '<td valign="top">'.
  374:                              '<select name="currcat_'.$shallower.'" onchange="'.
  375:                              'setCatDepth('."'$shallower'".');this.form.submit();">';
  376:                 if (ref($cats[$shallower]{$container}) eq 'ARRAY') {
  377:                     $catlinks .= '<option value="">'.&mt('De-select').'</option>';
  378:                     for (my $j=0; $j<@{$cats[$shallower]{$container}}; $j++) {
  379:                         my $name = $cats[$shallower]{$container}[$j];
  380:                         my $item = &escape($name).':'.$container.':'.$shallower;
  381:                         my $selected = '';
  382:                         if ($item eq $env{'form.currcat_'.$shallower}) {
  383:                             $selected = ' selected="selected"';
  384:                         }
  385:                         $catlinks .= 
  386:                            '<option value="'.$item.'"'.$selected.'>'.$name.'</option>';
  387:                     }
  388:                 }
  389:                 $catlinks .= '</select>';
  390:             }
  391:             unless ($i == $deeper) {
  392:                 $catlinks .= $crumbsymbol;
  393:             } 
  394:         }
  395:         my ($cat,$container,$depth);
  396:         if ($env{'form.currcat_'.$currdepth} eq '') {
  397:             my $shallower = $currdepth - 1;
  398:             ($cat,$container,$depth) = map { &unescape($_); } split(/:/,$env{'form.currcat_'.$shallower});
  399:         } else {
  400:             ($cat,$container,$depth) = map { &unescape($_); } split(/:/,$env{'form.currcat_'.$currdepth});
  401:         }
  402:         my $deeperlevel = $depth +1;
  403:         if (ref($cats[$deeperlevel]{$cat}) eq 'ARRAY') {
  404:             $has_subcats = 1;
  405:             my $buttontext = &mt('Show subcategories');
  406:             my $selitem = 'currcat_'.$deeperlevel;
  407:             $catlinks .= '&nbsp;<select name="'.$selitem.'" onchange="this.form.submit()">';
  408:             if (@{$cats[$deeperlevel]{$cat}}) {
  409:                 $catlinks .= '<option value="" selected="selected">'.
  410:                              &mt('Subcategory ...').'</option>';
  411:             }
  412:             for (my $k=0; $k<@{$cats[$deeperlevel]{$cat}}; $k++) {
  413:                 my $name = $cats[$deeperlevel]{$cat}[$k];
  414:                 my $item = &escape($name).':'.&escape($cat).':'.$deeperlevel;
  415:                 $catlinks .= '<option value="'.$item.'">'.$name.'</option>'."\n";
  416:             }
  417:             $catlinks .= '</select>'."\n";
  418:         } elsif ($cat ne 'instcode') {
  419:             $catlinks .= '&nbsp;'.&mt('(No subcategories)');
  420:         }
  421:     } else {
  422:         $selitem = 'currcat_0';
  423:     }
  424:     $catlinks .= $currcat_str.'</td></tr></table></td>';
  425:     return ($catlinks,$has_subcats,$selitem);
  426: }
  427: 
  428: sub main_category_selector {
  429:     my (@cats) = @_;
  430:     my $maincatlinks = '<select name="currcat_0" onchange="setCatDepth('."'0'".');this.form.submit();">'."\n";
  431:     if (ref($cats[0]) eq 'ARRAY') {
  432:         if (@{$cats[0]} > 1) {
  433:             my $selected = '';
  434:             if ($env{'form.currcat_0'} eq '') {
  435:                 $selected = ' selected="selected"';    
  436:             }
  437:             $maincatlinks .= 
  438:                 '<option value=""'.$selected.'>'.&mt('Select').'</option>'."\n";
  439:         }
  440:         for (my $i=0; $i<@{$cats[0]}; $i++) {
  441:             my $name = $cats[0][$i];
  442:             my $item = &escape($name).'::0';
  443:             my $selected;
  444:             if ($env{'form.currcat_0'} eq $item) {
  445:                 $selected = ' selected="selected"';
  446:             }
  447:             $maincatlinks .= '<option value="'.$item.'"'.$selected.'>';
  448:             if ($name eq 'instcode') {
  449:                 $maincatlinks .= &mt('Official courses (with institutional codes)');
  450:             } elsif ($name eq 'communities') {
  451:                 $maincatlinks .= &mt('Communities');
  452:             } else {
  453:                 $maincatlinks .= $name;
  454:             }
  455:             $maincatlinks .= '</option>'."\n";
  456:         }
  457:         $maincatlinks .= '</select>'."\n";
  458:     }
  459:     return $maincatlinks;
  460: }
  461: 
  462: sub get_depth_values {
  463:     my $currdepth = 0;
  464:     my $deeper = 0;
  465:     if ($env{'form.catalog_maxdepth'} ne '') {
  466:         $currdepth = $env{'form.catalog_maxdepth'};
  467:         if ($env{'form.currcat_'.$currdepth} eq '') {
  468:             $deeper = $currdepth;
  469:         } else {
  470:             $deeper = $currdepth + 1;
  471:         }
  472:     }
  473:     return ($currdepth,$deeper);
  474: }
  475: 
  476: sub additional_filters {
  477:     my ($codedom,$has_subcats) = @_;
  478:     my $output = '<table>';
  479:     if (($env{'form.currcat_0'} ne 'instcode::0') && 
  480:         ($env{'form.currcat_0'} ne '') && ($has_subcats)) {
  481:         my $include_subcat_status;
  482:         if ($env{'form.withsubcats'}) {
  483:             $include_subcat_status = 'checked="checked" ';
  484:         }
  485:         my $counter = $env{'form.catalog_maxdepth'};
  486:         if ($counter > 0) {
  487:             if ($env{'form.state'} eq 'listing') {
  488:                 $counter --;
  489:             } elsif ($env{'form.currcat_'.$counter} eq '') {
  490:                 $counter --;
  491:             }
  492:         }
  493:         my ($catname) = split(/:/,$env{'form.currcat_'.$counter});
  494:         if ($catname ne '') {
  495:             $output .= '<tr><td><label>'.
  496:                        '<input type="checkbox" name="withsubcats" value="1" '.
  497:                        $include_subcat_status.'/>'.
  498:                        &mt('Include subcategories within "[_1]"',
  499:                            &unescape($catname)).'</label></td></tr>';
  500:         }
  501:     }
  502:     my $show_selfenroll_status;
  503:     if ($env{'form.showselfenroll'}) {
  504:         $show_selfenroll_status = 'checked="checked" ';
  505:     }
  506:     my $selfenroll_text;
  507:     if ($env{'form.currcat_0'} eq 'communities::0') {
  508:         $selfenroll_text = &mt('Only show communities which allow self-enrollment');
  509:     } else {
  510:         $selfenroll_text = &mt('Only show courses which allow self-enrollment');
  511:     }
  512:     $output .= '<tr><td>'.
  513:                '<label><input type="checkbox" name="showselfenroll" value="1" '.
  514:                $show_selfenroll_status.'/>'.$selfenroll_text.
  515:                '</label></td></tr>';
  516:     if (&user_is_dc($codedom)) {
  517:         my $showdetails_status;
  518:         if ($env{'form.showdetails'}) {
  519:             $showdetails_status = 'checked="checked" ';
  520:         }
  521:         my $showhidden_status;
  522:         if ($env{'form.showhidden'}) {
  523:              $showhidden_status = 'checked="checked" ';
  524:         }
  525:         my $dc_title = &Apache::lonnet::plaintext('dc');
  526:         my ($details_text,$hidden_text);
  527:         if ($env{'form.currcat_0'} eq 'communities::0') {
  528:             $details_text = &mt('Show full details for each community ([_1] only)',$dc_title);
  529:             $hidden_text = &mt('Include communities set to be hidden from catalog ([_1] only)',$dc_title);
  530:         } else {
  531:             $details_text = &mt('Show full details for each course ([_1] only)',$dc_title);
  532:             $hidden_text = &mt('Include courses set to be hidden from catalog ([_1] only)',$dc_title);
  533:         }
  534:         $output .= '<tr><td>'."\n".
  535:                    '<label><input type="checkbox" name="showdetails" value="1" '.
  536:                    $showdetails_status.'/>'.$details_text.
  537:                    '</label>'."\n".'</td></tr><tr><td>'.
  538:                    '<label><input type="checkbox" name="showhidden" value="1" '.
  539:                    $showhidden_status.'/>'.$hidden_text.
  540:                    '</label>'."\n".'</td></tr>';
  541:     }
  542:     $output .= '</table><br />';
  543:     return $output;
  544: }
  545: 
  546: sub user_is_dc {
  547:     my ($codedom) = @_;
  548:     if (exists($env{'user.role.dc./'.$codedom.'/'})) {
  549:         my $livedc = 1;
  550:         my $now = time;
  551:         my ($start,$end)=split(/\./,$env{'user.role.dc./'.$codedom.'/'});
  552:         if ($start && $start>$now) { $livedc = 0; }
  553:         if ($end   && $end  <$now) { $livedc = 0; }
  554:         return $livedc;
  555:     }
  556:     return;
  557: }
  558: 
  559: sub search_official_courselist {
  560:     my ($domain,$numtitles) = @_;
  561:     my $instcode = &Apache::courseclassifier::instcode_search_str($domain,$numtitles);
  562:     my $showhidden;
  563:     if (&user_is_dc($domain)) {
  564:         $showhidden = $env{'form.showhidden'};
  565:     }
  566:     my %courses = 
  567:         &Apache::lonnet::courseiddump($domain,'.',1,$instcode,'.','.',undef,undef,
  568:                                       'Course',1,$env{'form.showselfenroll'},undef,
  569:                                       $showhidden,'coursecatalog');
  570:     return %courses;
  571: }
  572: 
  573: sub search_courselist {
  574:     my ($domain,$subcats) = @_;
  575:     my $cat_maxdepth = $env{'form.catalog_maxdepth'};
  576:     my $filter = $env{'form.currcat_'.$cat_maxdepth};
  577:     if (($filter eq '') && ($cat_maxdepth > 0)) {
  578:         my $shallower = $cat_maxdepth - 1;
  579:         $filter = $env{'form.currcat_'.$shallower};
  580:     }
  581:     my %courses;
  582:     my $filterstr;
  583:     if ($filter ne '') {
  584:         if ($env{'form.withsubcats'}) {
  585:             if (ref($subcats) eq 'HASH') {
  586:                 if (ref($subcats->{$filter}) eq 'ARRAY') {
  587:                     $filterstr = join('&',@{$subcats->{$filter}});
  588:                     if ($filterstr ne '') {
  589:                         $filterstr = $filter.'&'.$filterstr;
  590:                     }
  591:                 } else {
  592:                     $filterstr = $filter;
  593:                 }
  594:             } else {
  595:                 $filterstr = $filter;
  596:             }  
  597:         } else {
  598:             $filterstr = $filter; 
  599:         }
  600:         my ($showhidden,$typefilter);
  601:         if (&user_is_dc($domain)) {
  602:             $showhidden = $env{'form.showhidden'};
  603:         }
  604:         if ($env{'form.currcat_0'} eq 'communities::0') {
  605:             $typefilter = 'Community';
  606:         } else {
  607:             $typefilter = '.';
  608:         }
  609:         %courses = 
  610:             &Apache::lonnet::courseiddump($domain,'.',1,'.','.','.',undef,undef,
  611:                                           $typefilter,1,$env{'form.showselfenroll'},
  612:                                           $filterstr,$showhidden,'coursecatalog');
  613:     }
  614:     return %courses;
  615: }
  616: 
  617: sub print_course_listing {
  618:     my ($domain,$numtitles,$trails,$allitems,$subcats) = @_;
  619:     my $output;
  620:     my %courses;
  621:     my $knownuser = &user_is_known();
  622:     my $details = $env{'form.coursenum'};
  623:     if (&user_is_dc($domain)) {
  624:         if ($env{'form.showdetails'}) {
  625:             $details = 1;
  626:         }
  627:     }
  628:     if ($env{'form.coursenum'} ne '') {
  629:         %courses = &Apache::lonnet::courseiddump($domain,'.',1,'.','.',
  630:                                                  $env{'form.coursenum'},
  631:                                                  undef,undef,'.',1);
  632:         if (keys(%courses) == 0) {
  633:             $output .= &mt('The courseID provided does not match a course in this domain.');
  634:             return $output;
  635:         }
  636:     } else {
  637:         if ($env{'form.currcat_0'} eq 'instcode::0') {
  638:             %courses = &search_official_courselist($domain,$numtitles);
  639:         } else {
  640:             %courses = &search_courselist($domain,$subcats);
  641:         }
  642:         if (keys(%courses) == 0) {
  643:             if ($env{'form.currcat_0'} eq 'communities::0') {
  644:                 $output = &mt('No communities match the criteria you selected.');
  645:             } else {
  646:                 $output = &mt('No courses match the criteria you selected.');
  647:             }
  648:             return $output;
  649:         }
  650:         if (($knownuser) && (!$env{'form.showdetails'}) && (!&user_is_dc($domain))) {
  651:             $output = '<b>'.&mt('Note for students:').'</b> '
  652:                      .&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.')
  653:                      .'<br /><br />';
  654:         }
  655:     }
  656:     my $now = time;
  657:     my %domconfig =
  658:         &Apache::lonnet::get_dom('configuration',['usercreation'],$domain);
  659:     $output .= &construct_data_table($knownuser,\%courses,$details,undef,$now,\%domconfig,$trails,$allitems);
  660:     $output .= "\n".'<form name="linklaunch" method="post" action="">'.
  661:                '<input type="hidden" name="backto" value="coursecatalog" />'.
  662:                '<input type="hidden" name="courseid" value="" />'.
  663:                &Apache::lonhtmlcommon::echo_form_input(['catalogfilter','courseid']).'</form>';
  664:     return $output;
  665: }
  666: 
  667: sub construct_data_table {
  668:     my ($knownuser,$courses,$details,$usersections,$now,$domconfig,$trails,
  669:         $allitems) = @_;
  670:     my %sortname;
  671:     if (($details eq '') || ($env{'form.showdetails'})) {
  672:         $sortname{'Code'} = 'code';
  673:         $sortname{'Categories'} = 'cats';
  674:         $sortname{'Title'} = 'title';
  675:         $sortname{'Owner(s)'} = 'owner';
  676:     }
  677:     my $output = &Apache::loncommon::start_data_table().
  678:                  &Apache::loncommon::start_data_table_header_row();
  679:     my @coltitles = ('Count');
  680:     if ($env{'form.currcat_0'} eq 'instcode::0') {
  681:         push(@coltitles,'Code');
  682:     } else {
  683:         push(@coltitles,'Categories');
  684:     }
  685:     push(@coltitles,('Sections','Crosslisted','Title','Owner(s)'));
  686:     if (ref($usersections) eq 'HASH') {
  687:        $coltitles[1] = 'Your Section';
  688:     }
  689:     foreach my $item (@coltitles) {
  690:         $output .= '<th>';
  691:         if (defined($sortname{$item})) {
  692:             $output .= '<a href="javascript:changeSort('."'$sortname{$item}'".')">'.&mt($item).'</a>';
  693:         } elsif ($item eq 'Count') {
  694:             $output .= '&nbsp;&nbsp;';
  695:         } else {
  696:             $output .= &mt($item);
  697:         }
  698:         $output .= '</th>';
  699:     }
  700:     if ($knownuser) {
  701:         if ($details) {
  702:             $output .=
  703:               '<th>'.&mt('Default Access Dates for Students').'</th>'.
  704:               '<th>'.&mt('Student Counts').'</th>'.
  705:               '<th>'.&mt('Auto-enrollment of[_1]registered students','<br />').'</th>';
  706:         } else {
  707:             $output .= '<th>'.&mt('Details').'</th>';
  708:         }
  709:     }
  710:     $output .= '<th>'.&mt('Self-enroll (if permitted)').'</th>';
  711:     &Apache::loncommon::end_data_table_header_row();
  712:     my %courseinfo = &build_courseinfo_hash($courses,$knownuser,$details,
  713:                                             $usersections);
  714:     my %Sortby;
  715:     foreach my $course (sort(keys(%{$courses}))) {
  716:         if ($env{'form.sortby'} eq 'code') {
  717:             push(@{$Sortby{$courseinfo{$course}{'code'}}},$course);
  718:         } elsif ($env{'form.sortby'} eq 'cats') {
  719:             push(@{$Sortby{$courseinfo{$course}{'categories'}}},$course);
  720:         } elsif ($env{'form.sortby'} eq 'owner') {
  721:             push(@{$Sortby{$courseinfo{$course}{'ownerlastnames'}}},$course);
  722:         } else {
  723:             my $clean_title = $courseinfo{$course}{'title'};
  724:             $clean_title =~ s/\W+//g;
  725:             if ($clean_title eq '') {
  726:                 $clean_title = $courseinfo{$course}{'title'};
  727:             }
  728:             push(@{$Sortby{$clean_title}},$course);
  729:         }
  730:     }
  731:     my @sorted_courses;
  732:     if (($env{'form.sortby'} eq 'code') || ($env{'form.sortby'} eq 'owner') ||
  733:         ($env{'form.sortby'} eq 'cats')) {
  734:         @sorted_courses = sort(keys(%Sortby));
  735:     } else {
  736:         @sorted_courses = sort { lc($a) cmp lc($b) } (keys(%Sortby));
  737:     }
  738:     my $count = 1;
  739:     foreach my $item (@sorted_courses) {
  740:         foreach my $course (@{$Sortby{$item}}) {
  741:             $output.=&Apache::loncommon::start_data_table_row(); 
  742:             $output.=&courseinfo_row($courseinfo{$course},$knownuser,$details,
  743:                                      \$count,$now,$course,$trails,$allitems);
  744:             $output.=&Apache::loncommon::end_data_table_row();
  745:         }
  746:     }
  747:     $output .= &Apache::loncommon::end_data_table();
  748:     return $output;
  749: }
  750: 
  751: sub build_courseinfo_hash {
  752:     my ($courses,$knownuser,$details,$usersections) = @_;
  753:     my %courseinfo;
  754:     my $now = time;
  755:     foreach my $course (keys(%{$courses})) {
  756:         my $descr;
  757:         if (ref($courses->{$course}) eq 'HASH') {
  758:             $descr = $courses->{$course}{'description'}; 
  759:         }
  760:         my $cleandesc=&HTML::Entities::encode($descr,'<>&"');
  761:         $cleandesc=~s/'/\\'/g;
  762:         $cleandesc =~ s/^\s+//;
  763:         my ($cdom,$cnum)=split(/\_/,$course);
  764:         my ($instcode,$singleowner,$ttype,$selfenroll_types,
  765:             $selfenroll_start,$selfenroll_end,@owners,%ownernames,$categories);
  766:         if (ref($courses->{$course}) eq 'HASH') {
  767:             $descr = $courses->{$course}{'description'};
  768:             $instcode =  $courses->{$course}{'inst_code'};
  769:             $singleowner = $courses->{$course}{'owner'};
  770:             $ttype =  $courses->{$course}{'type'};
  771:             $selfenroll_types = $courses->{$course}{'selfenroll_types'};
  772:             $selfenroll_start = $courses->{$course}{'selfenroll_start_date'};
  773:             $selfenroll_end = $courses->{$course}{'selfenroll_end_date'};
  774:             $categories = $courses->{$course}{'categories'};
  775:             push(@owners,$singleowner);
  776:             if (ref($courses->{$course}{'co-owners'}) eq 'ARRAY') {
  777:                 foreach my $item (@{$courses->{$course}{'co-owners'}}) {
  778:                     push(@owners,$item);
  779:                 }
  780:             }
  781:         }
  782:         foreach my $owner (@owners) {
  783:             my ($ownername,$ownerdom); 
  784:             if ($owner =~ /:/) {
  785:                 ($ownername,$ownerdom) = split(/:/,$owner);
  786:             } else {
  787:                 $ownername = $owner;
  788:                 if ($owner ne '') {
  789:                     $ownerdom = $cdom;
  790:                 }
  791:             }
  792:             if ($ownername ne '' && $ownerdom ne '') {
  793:                 my %namehash=&Apache::loncommon::getnames($ownername,$ownerdom);
  794:                 $ownernames{$ownername.':'.$ownerdom} = \%namehash; 
  795:             }
  796:         }
  797:         $courseinfo{$course}{'cdom'} = $cdom;
  798:         $courseinfo{$course}{'cnum'} = $cnum;
  799:         $courseinfo{$course}{'code'} = $instcode;
  800:         my @lastnames;
  801:         foreach my $owner (keys(%ownernames)) {
  802:             if (ref($ownernames{$owner}) eq 'HASH') {
  803:                 push(@lastnames,$ownernames{$owner}{'lastname'});
  804:             }
  805:         }
  806:         $courseinfo{$course}{'ownerlastnames'} = join(', ',sort(@lastnames));
  807:         $courseinfo{$course}{'title'} = $cleandesc;
  808:         $courseinfo{$course}{'owner'} = $singleowner;
  809:         $courseinfo{$course}{'selfenroll_types'} = $selfenroll_types;
  810:         $courseinfo{$course}{'selfenroll_start'} = $selfenroll_start;
  811:         $courseinfo{$course}{'selfenroll_end'} = $selfenroll_end;
  812:         $courseinfo{$course}{'categories'} = $categories;
  813: 
  814:         my %coursehash = &Apache::lonnet::dump('environment',$cdom,$cnum);
  815:         my @classids;
  816:         my @crosslistings;
  817:         my ($seclist,$numsec) = 
  818:             &identify_sections($coursehash{'internal.sectionnums'});
  819:         if (ref($usersections) eq 'HASH') {
  820:             if (ref($usersections->{$course}) eq 'ARRAY') {
  821:                 $seclist = join(', ',@{$usersections->{$course}});
  822:             }
  823:         }
  824:         $courseinfo{$course}{'seclist'} = $seclist;
  825:         my ($xlist_items,$numxlist) = 
  826:             &identify_sections($coursehash{'internal.crosslistings'});
  827:         my $showsyllabus = 1; # default is to include a syllabus link
  828:         if (defined($coursehash{'showsyllabus'})) {
  829:             $showsyllabus = $coursehash{'showsyllabus'};
  830:         }
  831:         $courseinfo{$course}{'showsyllabus'} = $showsyllabus;
  832:         if (((defined($env{'form.coursenum'}) && ($cnum eq $env{'form.coursenum'}))) ||
  833:             ($knownuser && ($details == 1))) {
  834:             $courseinfo{$course}{'counts'} =  &count_students($cdom,$cnum,$numsec);
  835:             $courseinfo{$course}{'autoenrollment'} =
  836:                 &autoenroll_info(\%coursehash,$now,$seclist,$xlist_items,
  837:                                  $instcode,\@owners,$cdom,$cnum);
  838: 
  839:             my $startaccess = '';
  840:             my $endaccess = '';
  841:             my $accessdates;
  842:             if ( defined($coursehash{'default_enrollment_start_date'}) ) {
  843:                 $startaccess = &Apache::lonlocal::locallocaltime($coursehash{'default_enrollment_start_date'});
  844:             }
  845:             if ( defined($coursehash{'default_enrollment_end_date'}) ) {
  846:                 $endaccess = &Apache::lonlocal::locallocaltime($coursehash{'default_enrollment_end_date'});
  847:                 if ($coursehash{'default_enrollment_end_date'} == 0) {
  848:                     $endaccess = &mt('No ending date');
  849:                 }
  850:             }
  851:             if ($startaccess) {
  852:                 $accessdates .= '<i>'.&mt('From:[_1]','</i> '.$startaccess).'<br />';
  853:             }
  854:             if ($endaccess) {
  855:                 $accessdates .= '<i>'.&mt('To:[_1]','</i> '.$endaccess).'<br />';
  856:             }
  857:             if (($selfenroll_types ne '') && 
  858:                 ($selfenroll_end > 0 && $selfenroll_end > $now)) {
  859:                 my ($selfenroll_start_access,$selfenroll_end_access);
  860:                 if (($coursehash{'default_enrollment_start_date'} ne 
  861:                      $coursehash{'internal.selfenroll_start_access'}) ||
  862:                    ($coursehash{'default_enrollment_end_date'} ne 
  863:                     $coursehash{'internal.selfenroll_end_access'})) {
  864:                     if ( defined($coursehash{'internal.selfenroll_start_access'}) ) {
  865:                         $selfenroll_start_access = &Apache::lonlocal::locallocaltime($coursehash{'internal.selfenroll_start_access'});
  866:                     }
  867:                     if ( defined($coursehash{'default_enrollment_end_date'}) ) {
  868:                         $selfenroll_end_access = &Apache::lonlocal::locallocaltime($coursehash{'internal.selfenroll_end_access'});
  869:                         if ($coursehash{'internal.selfenroll_end_access'} == 0) {
  870:                             $selfenroll_end_access = &mt('No ending date');
  871:                         }
  872:                     }
  873:                     if ($selfenroll_start_access || $selfenroll_end_access) {
  874:                         $accessdates .= '<br/><br /><i>'.&mt('Self-enrollers:').'</i><br />';
  875:                         if ($selfenroll_start_access) {
  876:                             $accessdates .= '<i>'.&mt('From:[_1]','</i> '.$selfenroll_start_access).'<br />';
  877:                         }
  878:                         if ($selfenroll_end_access) {
  879:                             $accessdates .= '<i>'.&mt('To:[_1]','</i> '.$selfenroll_end_access).'<br />';
  880:                         }
  881:                     }
  882:                 }
  883:             }
  884:             $courseinfo{$course}{'access'} = $accessdates;
  885:         }
  886:         if ($xlist_items eq '') {
  887:             $xlist_items = &mt('No');
  888:         }
  889:         $courseinfo{$course}{'xlist'} = $xlist_items;
  890:     }
  891:     return %courseinfo;
  892: }
  893: 
  894: sub count_students {
  895:     my ($cdom,$cnum,$numsec) = @_;
  896:     my $classlist = &Apache::loncoursedata::get_classlist($cdom,$cnum);
  897:     my %student_count = (
  898:                            Active => 0,
  899:                            Future => 0,
  900:                            Expired => 0,
  901:                        );
  902:     my %idx;
  903:     $idx{'status'} = &Apache::loncoursedata::CL_STATUS();
  904:     my %status_title = &Apache::lonlocal::texthash(
  905:                            Expired => 'Previous access',
  906:                            Active => 'Current access',
  907:                            Future => 'Future access',
  908:                        );
  909: 
  910:     while (my ($student,$data) = each(%$classlist)) {
  911:         $student_count{$data->[$idx{'status'}]} ++;
  912:     }
  913: 
  914:     my $countslist = &mt('[quant,_1,section:,sections:,No sections]',$numsec).'<br />';
  915:     foreach my $status ('Active','Future') {
  916:         $countslist .= '<span class="LC_nobreak">'.$status_title{$status}.': '.
  917:                        $student_count{$status}.'</span><br />';
  918:     }
  919:     return $countslist;
  920: }
  921: 
  922: sub courseinfo_row {
  923:     my ($info,$knownuser,$details,$countref,$now,$course,$trails,$allitems) = @_;
  924:     my ($cdom,$cnum,$title,$ownerlast,$code,$owner,$seclist,$xlist_items,
  925:         $accessdates,$showsyllabus,$counts,$autoenrollment,$output,$categories);
  926:     if (ref($info) eq 'HASH') {
  927:         $cdom = $info->{'cdom'};
  928:         $cnum = $info->{'cnum'};
  929:         $title = $info->{'title'};
  930:         $ownerlast = $info->{'ownerlastnames'};
  931:         $code = $info->{'code'};
  932:         $owner = $info->{'owner'};
  933:         $seclist = $info->{'seclist'};
  934:         $xlist_items = $info->{'xlist'};
  935:         $accessdates = $info->{'access'};
  936:         $counts = $info->{'counts'};
  937:         $autoenrollment = $info->{'autoenrollment'};
  938:         $showsyllabus = $info->{'showsyllabus'};
  939:         $categories = $info->{'categories'};
  940:     } else {
  941:         $output = '<td colspan="8">'.&mt('No information available for [_1].',
  942:                                          $code).'</td>';
  943:         return $output;
  944:     }
  945:     $output .= '<td>'.$$countref.'</td>';
  946:     if ($env{'form.currcat_0'} eq 'instcode::0') {
  947:         $output .= '<td>'.$code.'</td>';
  948:     } else {
  949:         my ($categorylist,@cats);
  950:         if ($categories ne '') {
  951:             @cats = split('&',$categories);
  952:         }
  953:         if ((ref($trails) eq 'ARRAY') && (ref($allitems) eq 'HASH')) {
  954:             my @categories = map { $trails->[$allitems->{$_}]; } @cats;
  955:             $categorylist = join('<br />',@categories);
  956:         }
  957:         if ($categorylist eq '') {
  958:             $categorylist = '&nbsp;';
  959:         }
  960:         $output .= '<td>'.$categorylist.'</td>';
  961:     }
  962:     $output .= '<td>'.$seclist.'</td>'.
  963:                '<td>'.$xlist_items.'</td>'.
  964:                '<td>'.$title.'&nbsp;<font size="-2">';
  965:     if ($showsyllabus) {
  966:         $output .= '<a href="javascript:ToSyllabus('."'$cdom','$cnum'".')">'.&mt('Syllabus').'</a>';
  967:     } else {
  968:         $output .= '&nbsp;';
  969:     }
  970:     $output .= '</font></td>'.
  971:                '<td>'.$ownerlast.'</td>';
  972:     if ($knownuser) {
  973:         if ($details) {
  974:             $output .=
  975:                '<td>'.$accessdates.'</td>'. 
  976:                '<td>'.$counts.'</td>'.
  977:                '<td>'.$autoenrollment.'</td>';
  978:         } else {
  979:             $output .= "<td><a href=\"javascript:setCourseId('$cnum')\">".&mt('Show more details').'</a></td>';
  980:         }
  981:     }
  982:     my $selfenroll;
  983:     if ($info->{'selfenroll_types'}) {
  984:         my $showstart = &Apache::lonlocal::locallocaltime($info->{'selfenroll_start'});
  985:         my $showend = &Apache::lonlocal::locallocaltime($info->{'selfenroll_end'});
  986:         if (($info->{'selfenroll_end'} > 0) && ($info->{'selfenroll_end'} > $now)) {
  987:             if (($info->{'selfenroll_start'} > 0) && ($info->{'selfenroll_start'} > $now)) {
  988:                 $output .= '<td>'.&mt('Starts: [_1]','<span class="LC_cusr_emph">'.$showstart.'</span>').'<br />'.&mt('Ends: [_1]','<span class="LC_cusr_emph">'.$showend.'</span>').'</td>';
  989:             } else { 
  990:                 $output .= '<td><a href="javascript:ToSelfenroll('."'$course'".')">'.&mt('Enroll in course').'</a></td>';
  991:             }
  992:             $selfenroll = 1;
  993:         }
  994:     }
  995:     if (!$selfenroll) {
  996:         $output .= '<td>&nbsp;</td>';
  997:     }
  998:     $$countref ++;
  999:     return $output;
 1000: }
 1001: 
 1002: sub identify_sections {
 1003:     my ($seclist) = @_;
 1004:     my @secnums;
 1005:     if ($seclist =~ /,/) {
 1006:         my @sections = split(/,/,$seclist);
 1007:         foreach my $sec (@sections) {
 1008:             $sec =~ s/:[^:]*$//;
 1009:             push(@secnums,$sec);
 1010:         }
 1011:     } else {
 1012:         if ($seclist =~ m/^([^:]+):/) {
 1013:             my $sec = $1;
 1014:             if (!grep(/^\Q$sec\E$/,@secnums)) {
 1015:                 push(@secnums,$sec);
 1016:             }
 1017:         }
 1018:     }
 1019:     @secnums = sort {$a <=> $b} @secnums;
 1020:     $seclist = join(', ',@secnums);
 1021:     my $numsec = @secnums;
 1022:     return ($seclist,$numsec);
 1023: }
 1024: 
 1025: sub get_valid_classes {
 1026:     my ($seclist,$xlist_items,$crscode,$owners,$cdom,$cnum) = @_;
 1027:     my $response;
 1028:     my %validations;
 1029:     @{$validations{'sections'}} = ();
 1030:     @{$validations{'xlists'}} = ();
 1031:     my $totalitems = 0;
 1032:     if ($seclist) {
 1033:         foreach my $sec (split(/, /,$seclist)) {
 1034:             my $class = $crscode.$sec;
 1035:             if (&Apache::lonnet::auto_validate_class_sec($cdom,$cnum,$owners,
 1036: 							 $class) eq 'ok') {
 1037:                 if (!grep(/^\Q$sec$\E/,@{$validations{'sections'}})) {
 1038:                     push(@{$validations{'sections'}},$sec);
 1039:                     $totalitems ++;
 1040:                 }
 1041:             }
 1042:         }
 1043:     }
 1044:     if ($xlist_items) {
 1045:         foreach my $item (split(/, /,$xlist_items)) {
 1046:             if (&Apache::lonnet::auto_validate_class_sec($cdom,$cnum,$owners,
 1047: 							 $item) eq 'ok') {
 1048:                 if (!grep(/^\Q$item$\E/,@{$validations{'xlists'}})) {
 1049:                     push(@{$validations{'xlists'}},$item);
 1050:                     $totalitems ++;
 1051:                 }
 1052:             }
 1053:         }
 1054:     }
 1055:     if ($totalitems > 0) {
 1056:         if (@{$validations{'sections'}}) {
 1057:             $response = &mt('Sections:').' '.
 1058:                         join(', ',@{$validations{'sections'}}).'<br />';
 1059:         }
 1060:         if (@{$validations{'xlists'}}) {
 1061:             $response .= &mt('Courses:').' '.
 1062:                         join(', ',@{$validations{'xlists'}});
 1063:         }
 1064:     }
 1065:     return $response;
 1066: }
 1067: 
 1068: sub autoenroll_info {
 1069:     my ($coursehash,$now,$seclist,$xlist_items,$code,$owners,$cdom,$cnum) = @_;
 1070:     my $autoenrolldates = &mt('Not enabled');
 1071:     if (defined($coursehash->{'internal.autoadds'}) && $coursehash->{'internal.autoadds'} == 1) {
 1072:         my ($autostart,$autoend);
 1073:         if ( defined($coursehash->{'internal.autostart'}) ) {
 1074:             $autostart = &Apache::lonlocal::locallocaltime($coursehash->{'internal.autostart'});
 1075:         }
 1076:         if ( defined($coursehash->{'internal.autoend'}) ) {
 1077:             $autoend = &Apache::lonlocal::locallocaltime($coursehash->{'internal.autoend'});
 1078:         }
 1079:         if ($coursehash->{'internal.autostart'} > $now) {
 1080:             if ($coursehash->{'internal.autoend'} && $coursehash->{'internal.autoend'} < $now) {
 1081:                 $autoenrolldates = &mt('Not enabled');
 1082:             } else {
 1083:                 my $valid_classes = 
 1084:                    &get_valid_classes($seclist,$xlist_items,$code,
 1085:                                       $owners,$cdom,$cnum);
 1086:                 if ($valid_classes ne '') {
 1087:                     $autoenrolldates = &mt('Not enabled').'<br />'
 1088:                                       .&mt('Starts: [_1]',$autostart)
 1089:                                       .'<br />'.$valid_classes;
 1090:                 }
 1091:             }
 1092:         } else {
 1093:             if ($coursehash->{'internal.autoend'} && $coursehash->{'internal.autoend'} < $now) {
 1094:                 $autoenrolldates = &mt('Not enabled').'<br />'
 1095:                                   .&mt('Ended: [_1]',$autoend);
 1096:             } else {
 1097:                 my $valid_classes = &get_valid_classes($seclist,$xlist_items,
 1098:                                                        $code,$owners,$cdom,$cnum);
 1099:                 if ($valid_classes ne '') {
 1100:                     $autoenrolldates = &mt('Currently enabled').'<br />'.
 1101:                                        $valid_classes;
 1102:                 }
 1103:             }
 1104:         }
 1105:     }
 1106:     return $autoenrolldates;
 1107: }
 1108: 
 1109: sub user_is_known {
 1110:     my $known = 0;
 1111:     if ($env{'user.name'} ne '' && $env{'user.name'} ne 'public' 
 1112:         && $env{'user.domain'} ne '' && $env{'user.domain'} ne 'public') {
 1113:         $known = 1;
 1114:     }
 1115:     return $known;
 1116: }
 1117: 
 1118: 1;

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