Diff for /loncom/interface/coursecatalog.pm between versions 1.6 and 1.59

version 1.6, 2006/10/12 23:15:33 version 1.59, 2010/03/22 20:11:22
Line 1 Line 1
   # The LearningOnline Network with CAPA
   # Handler for displaying the course catalog interface
   #
   # $Id$
 #  #
 # Copyright Michigan State University Board of Trustees  # Copyright Michigan State University Board of Trustees
 #  #
Line 28  use strict; Line 32  use strict;
 use lib qw(/home/httpd/lib/perl);  use lib qw(/home/httpd/lib/perl);
 use Apache::Constants qw(:common);  use Apache::Constants qw(:common);
 use Apache::loncommon;  use Apache::loncommon;
   use Apache::lonhtmlcommon;
 use Apache::lonnet;  use Apache::lonnet;
 use Apache::lonlocal;  use Apache::lonlocal;
 use Apache::courseclassifier;  use Apache::courseclassifier;
 use Apache::lonacc;  use Apache::lonacc;
 use lib '/home/httpd/lib/perl/';  
 use LONCAPA;  use LONCAPA;
   
 sub handler {  sub handler {
Line 42  sub handler { Line 46  sub handler {
     if ($r->header_only) {      if ($r->header_only) {
         return OK;          return OK;
     }      }
       my $handle = &Apache::lonnet::check_for_valid_session($r);
       my $lonidsdir=$r->dir_config('lonIDsDir');
       if ($handle ne '') {
           &Apache::lonnet::transfer_profile_to_env($lonidsdir,$handle);
       }
     &Apache::lonacc::get_posted_cgi($r);      &Apache::lonacc::get_posted_cgi($r);
     &Apache::lonlocal::get_language_handle($r);      &Apache::lonlocal::get_language_handle($r);
     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['sortby']);      &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
     my $codedom = $Apache::lonnet::perlvar{'lonDefDomain'};                                              ['sortby','showdom']);
   
       my $codedom = &Apache::lonnet::default_login_domain();
   
       if (($env{'user.domain'} ne '') && ($env{'user.domain'} ne 'public')) { 
           $codedom = $env{'user.domain'};
           if ($env{'request.role.domain'} ne '') {
               $codedom = $env{'request.role.domain'};
           }
       }
       my $formname = 'coursecatalog';
       if ($env{'form.showdom'} ne '') {
           if (&Apache::lonnet::domain($env{'form.showdom'}) ne '') {
               $codedom = $env{'form.showdom'};
           }
       }
       my $domdesc = &Apache::lonnet::domain($codedom,'description');
       &Apache::lonhtmlcommon::clear_breadcrumbs();
   
       my %domconfig =
           &Apache::lonnet::get_dom('configuration',['coursecategories'],$codedom);
       my (@cats,@trails,%allitems,%idx,@jsarray,%subcathash,$cathash);
       if (ref($domconfig{'coursecategories'}) eq 'HASH') {
           $cathash = $domconfig{'coursecategories'}{'cats'};
       } else {
           $cathash = {};
       }
       my $subcats;
       if ($env{'form.withsubcats'}) {
           $subcats = \%subcathash;
       }
       &Apache::loncommon::extract_categories($cathash,\@cats,\@trails,\%allitems,
                                              \%idx,\@jsarray,$subcats);
       if ($env{'form.coursenum'} ne '' && &user_is_known()) {
           &course_details($r,$codedom,$formname,$domdesc,\@trails,\%allitems);
       } else {
           my ($catlinks,$has_subcats,$selitem) = &category_breadcrumbs($codedom,@cats);
           my $catjs = <<"ENDSCRIPT";
   
   function setCatDepth(depth) {
       document.coursecats.catalog_maxdepth.value = depth;
       if (depth == '') {
           document.coursecats.currcat_0.value = '';
       }
       document.coursecats.submit();
       return;
   }
   
   function changeSort(caller) {
       document.$formname.sortby.value = caller;
       document.$formname.submit();
   }
   
   function setCourseId(caller) {
       document.$formname.coursenum.value = caller;
       document.$formname.submit();
   }
   
   ENDSCRIPT
           $catjs .= &courselink_javascript(); 
           my $numtitles;
           if ($env{'form.currcat_0'} eq 'instcode::0') {
               $numtitles = &instcode_course_selector($r,$codedom,$formname,$domdesc,
                                                      $catlinks,$catjs);
               if ($env{'form.state'} eq 'listing') {
                   $r->print(&print_course_listing($codedom,$numtitles));
               }
           } else {
               my (%add_entries);
               my ($currdepth,$deeper) = &get_depth_values();
               if ($selitem) {
                   my $alert = &mt('Choose a subcategory to display');
                   if (!$deeper) {
                       $alert = &mt('Choose a category to display');
                   }
                   $catjs .= <<ENDJS;
   function check_selected() {
       if (document.coursecats.$selitem.options[document.coursecats.$selitem.selectedIndex].value == "") {
           alert('$alert');
           return false;
       }
   }
   ENDJS
               }
               $catjs = '<script type="text/javascript">'."\n".$catjs."\n".'</script>';
               &cat_header($r,$codedom,$catjs,\%add_entries,$catlinks);
               if ($env{'form.currcat_0'} ne '') {
                   $r->print('<form name="'.$formname.
                             '" method="post" action="/adm/coursecatalog">'.
                             &additional_filters($codedom,$has_subcats)."\n");
                   $r->print('<input type="hidden" name="catalog_maxdepth" value="'.
                             $deeper.'" />'."\n");
                   for (my $i=0; $i<$deeper; $i++) {
                       $r->print('<input type="hidden" name="currcat_'.$i.'" value="'.$env{'form.currcat_'.$i}.'" />'."\n");
                   }
                   my $display_button;
                   if ($env{'form.currcat_0'} eq 'communities::0') {
                       $display_button = &mt('Display communities');
                   } else {
                       $display_button = &mt('Display courses');
                   }
                   $r->print('<input type="hidden" name="coursenum" value="" />'."\n".
                             '<input type="hidden" name="sortby" value="" />'."\n".
                             '<input type="hidden" name="state" value="listing" />'."\n".
                             '<input type="hidden" name="showdom" value="'.
                             $env{'form.showdom'}.'" />'.
                             '<input type="submit" name="catalogfilter" value="'.
                             $display_button.'" /></form><br /><br />');
               }
               if ($env{'form.state'} eq 'listing') {
                   $r->print(&print_course_listing($codedom,undef,\@trails,\%allitems,$subcats));
               }
           }
       }
       $r->print('<br />'.&Apache::loncommon::end_page());
       return OK;
   }
   
   sub course_details {
       my ($r,$codedom,$formname,$domdesc,$trails,$allitems) = @_;
       my $output;
       my %add_entries = (topmargin    => "0",
                          marginheight => "0",);
       my $js = '<script type="text/javascript">'."\n".
                &courselink_javascript().'</script>'."\n";
       my $start_page =
           &Apache::loncommon::start_page('Course/Community Catalog',$js,
                                              {'add_entries' => \%add_entries, });
       $r->print($start_page);
       if ($env{'form.numtitles'} > 0) {
           &Apache::lonhtmlcommon::add_breadcrumb
                   ({href=>"/adm/coursecatalog",
                     text=>"Course/Community Catalog"});
       }
       &Apache::lonhtmlcommon::add_breadcrumb
                ({href=>"javascript:document.$formname.submit()",
                 text=>"Course listing"},
                {text=>"Course details"});
       $r->print(&Apache::lonhtmlcommon::breadcrumbs('Course/Community Catalog'));
       $r->print('<br />'.&mt('Detailed course information:').'<br /><br />'.
                 &print_course_listing($codedom,undef,$trails,$allitems).
                 '<br /><br />');
       $r->print('<form name="'.$formname.'" method="post" action="/adm/coursecatalog">'.
                 '<a href = "javascript:document.coursecatalog.submit()">'.
                 &mt('Back to course listing').'</a>'.
                 &Apache::lonhtmlcommon::echo_form_input(['coursenum','catalogfilter',
                                                          'showdetails','courseid']).'</form>');
       return;
   }
   
   sub courselink_javascript {
       return <<"END";
   
   function ToSyllabus(cdom,cnum) {
       if (cdom == '' || cdom == null) {
           return;
       }
       if (cnum == '' || cnum == null) {
           return;
       }
       document.linklaunch.action = "/public/"+cdom+"/"+cnum+"/syllabus";
       document.linklaunch.submit();
   }
   
   function ToSelfenroll(courseid) {
       if (courseid == '') {
           return;
       }
       document.linklaunch.action = "/adm/selfenroll";
       document.linklaunch.courseid.value = courseid;
       document.linklaunch.submit();
   }
   
   END
   }
   
   sub instcode_course_selector {
       my ($r,$codedom,$formname,$domdesc,$catlinks,$catjs) = @_;
     my %coursecodes = ();      my %coursecodes = ();
     my %codes = ();      my %codes = ();
     my @codetitles = ();      my @codetitles = ();
     my %cat_titles = ();      my %cat_titles = ();
     my %cat_order = ();      my %cat_order = ();
     my %idlist = ();  
     my %idnums = ();  
     my %idlist_titles = ();  
     my %by_year;  
     my %by_sem;  
     my %by_dept;  
     my %cat_items;      my %cat_items;
     my $caller = 'global';      my $caller = 'global';
     my $format_reply;      my $format_reply;
     my $totcodes = 0;      my %add_entries = (topmargin    => "0",
     my $jscript = '';                         marginheight => "0",);
     my ($numtitles,$lasttitle);      my ($jscript,$totcodes,$numtitles,$lasttitle) = 
     my $formname = 'coursecatalog';          &Apache::courseclassifier::instcode_selectors_data($codedom,$formname,
     my $domdesc = $Apache::lonnet::domaindescription{$codedom};                             \%cat_items,\@codetitles,\%cat_titles,\%cat_order);
     $totcodes = &Apache::courseclassifier::retrieve_instcodes(\%coursecodes,$codedom,$totcodes);      my $js = '<script type"text/javascript">'."\n$jscript\n$catjs\n".
     if ($totcodes > 0) {                '</script>';
         $format_reply = &Apache::lonnet::auto_instcode_format($caller,$codedom,\%coursecodes,\%codes,\@codetitles,\%cat_titles,\%cat_order);      if ($totcodes) {
         if ($format_reply eq 'ok') {          if (($env{'form.state'} eq 'listing') && ($numtitles > 0)) {
             my $numtypes = @codetitles;              $add_entries{'onLoad'} = 'setElements()';
             &Apache::courseclassifier::build_code_selections(\%codes,\@codetitles,\%cat_titles,\%cat_order,\%idlist,\%idnums,\%idlist_titles);          }
             my ($scripttext,$longtitles) = &Apache::courseclassifier::javascript_definitions(\@codetitles,\%idlist,\%idlist_titles,\%idnums,\%cat_titles);          &cat_header($r,$codedom,$js,\%add_entries,$catlinks,$numtitles);
             my $longtitles_str = join('","',@{$longtitles});          my $cat_maxdepth = $env{'form.catalog_maxdepth'};
             my $allidlist = $idlist{$codetitles[0]};          $r->print('<form name="'.$formname.'" method="post" action="/adm/coursecatalog">'.
             $numtitles = @codetitles;                    '<input type="hidden" name="catalog_maxdepth" value="'.$cat_maxdepth.'" />'."\n".
             $lasttitle = $numtitles;                    '<input type="hidden" name="showdom" value="'.$env{'form.showdom'}.'" />'."\n".
             if ($numtitles > 4) {                    '<input type="hidden" name="currcat_0" value="instcode::0" />'.
                 $lasttitle = 4;                    &additional_filters($codedom));
             }          if ($numtitles > 0) {
             my @data = ('top');              $r->print('<b>'.&mt('Choose which course(s) to list.').'</b><br />'.
             for (my $k=0; $k<$lasttitle; $k++) {                        &Apache::courseclassifier::build_instcode_selectors($numtitles,
                 my $cat = $codetitles[$k];                         $lasttitle,\%cat_items,\@codetitles,\%cat_titles,\%cat_order));
                 my $level = 1;          }
                 $level = &recurse_options($codetitles[$k],$idlist{$codetitles[$k]},$level,$cat,\%cat_items,\@data,\%by_year,\%by_sem,\%by_dept);        }          $r->print('<input type="hidden" name="coursenum" value="" />'."\n".
             $scripttext .= &build_javascript(\%by_year,\%by_sem,\%by_dept,\%cat_order,\@codetitles);                    '<input type="hidden" name="sortby" value="" />'."\n".
             $jscript .= &javascript_select_filler($formname,$scripttext,\@codetitles,$longtitles_str,$allidlist);                    '<input type="hidden" name="state" value="listing" />'."\n".
         }                    '<input type="hidden" name="form.currcat_0" value="instcode::0" />'."\n".
         if ($env{'form.state'} eq 'listing') {                    '<input type="submit" name="catalogfilter" value="'.
             $jscript .= '                    &mt('Display courses').'" />'.
 function setElements() {                    '<input type="hidden" name="numtitles" value="'.$numtitles.
 ';                    '" /></form><br /><br />');
             for (my $i=0; $i<@codetitles-1; $i++) {      } else {
                 if ($env{'form.'.$codetitles[$i]} != -1) {          $js = '<script type"text/javascript">'."\n$catjs\n".'</script>';
                     $jscript .= '          &cat_header($r,$codedom,$js,\%add_entries,$catlinks,$numtitles);
     for (var j=0; j<document.'.$formname.'.'.$codetitles[$i].'.length; j++) {          my $cat_maxdepth = $env{'form.catalog_maxdepth'};
         if (document.'.$formname.'.'.$codetitles[$i].'[j].value == "'.$env{'form.'.$codetitles[$i]}.'") {          $r->print('<form name="'.$formname.'" method="post" action="/adm/coursecatalog">'.
             document.'.$formname.'.'.$codetitles[$i].'.selectedIndex = j;                    '<input type="hidden" name="catalog_maxdepth" value="'.$cat_maxdepth.'" />'.
         }                    '<input type="hidden" name="showdom" value="'.$env{'form.showdom'}.'" />'.
     }                    '<input type="hidden" name="currcat_0" value="instcode::0" />');
 ';          $r->print('<br />'.&mt('No official courses to display for [_1].',$domdesc).'</form>');
                 }  
             }  
             $jscript .= '   courseSet()'."\n";  
             if ($env{'form.'.$codetitles[-1]} != -1) {  
                 $jscript .= '  
     for (var j=0; j<document.'.$formname.'.'.$codetitles[-1].'.length; j++) {  
         if (document.'.$formname.'.'.$codetitles[-1].'[j].value == "'.$env{'form.'.$codetitles[-1]}.'") {  
             document.'.$formname.'.'.$codetitles[-1].'.selectedIndex = j;  
         }  
     }      }
 ';      return $numtitles;
             }  }
             $jscript .= '}';  
             $jscript .= qq|  sub cat_header {
 function changeSort(caller) {      my ($r,$codedom,$js,$add_entries,$catlinks,$numtitles) = @_;
     document.coursecatalog.sortby.value = caller;      my $start_page =
     document.coursecatalog.submit();          &Apache::loncommon::start_page('Other',$js,
 }\n|;                                         { 'add_entries' => $add_entries, });
         }      $r->print($start_page);
         my $js = '<script type"text/javascript">'."\n$jscript\n".      if ($env{'form.state'} eq 'listing') {
                  '</script>';  
         my %add_entries = (topmargin    => "0",  
                            marginheight => "0",  
                            onLoad       =>"setElements()",);  
         my $start_page =  
             &Apache::loncommon::start_page('Course Catalog',$js,  
                                            {   
                                              'add_entries' => \%add_entries,  
                                              'no_inline_link'   => 1,});  
         $r->print($start_page);  
   
         $r->print('<h3>'.&mt('Display information about official [_1] classes for which LON-CAPA courses have been created:',$domdesc).'</h3>');  
         $r->print(&mt('<b>Choose which course(s) to list.</b><br />'));  
         $r->print('<form name="coursecatalog" method="post">');   
         if ($numtitles > 0) {          if ($numtitles > 0) {
             $r->print('<table><tr>');              &Apache::lonhtmlcommon::add_breadcrumb
             for (my $k=0; $k<$lasttitle-1; $k++) {                  ({href=>"/adm/coursecatalog",
                 my @unsorted = @{$cat_items{$codetitles[$k]}};                    text=>"Course/Community Catalog"},
                 my @items;                   {text=>"Course listing"});
                 &Apache::courseclassifier::sort_cats($k,\%cat_order,\@codetitles,\@unsorted,\@items);          } else {
                 my @longitems;              &Apache::lonhtmlcommon::add_breadcrumb
                 if (defined($cat_titles{$codetitles[$k]})) {              ({text=>"Course listing"});
                     foreach my $item (@items) {          }
                         push(@longitems,$cat_titles{$codetitles[$k]}{$item});      } else {
                     }          &Apache::lonhtmlcommon::add_breadcrumb
                 } else {          ({href=>"/adm/coursecatalog",
                     @longitems = @items;            text=>"Course/Community Catalog"});
                 }      }
                 $r->print('<td align="center">'.$codetitles[$k].'<br />'."\n".      $r->print(&Apache::lonhtmlcommon::breadcrumbs('Course/Community Catalog'));
                           '<select name="'.$codetitles[$k].'" onChange="courseSet()"');      my $onchange;
                 $r->print('>'."\n".'<option value="0" />All'."\n");      unless ($env{'form.interface'} eq 'textual') {
                 for (my $i=0; $i<@items; $i++) {          $onchange = 'this.form.submit()';
                     if ($longitems[$i] eq '') {      }
                         $longitems[$i] = $items[$i];      $r->print('<form name="coursecatdom" method="post" action="/adm/coursecatalog">'.
                 '<table border="0"><tr><td><b>'.&mt('Domain:').'</b></td><td>'.
                 &Apache::loncommon::select_dom_form($codedom,'showdom','',1,$onchange));
       if (!$onchange) {
      $r->print('&nbsp;<input type="submit" name="godom" value="'.&mt('Change').'" />');
       }
       $r->print('</td></tr></table></form>'.
         '<form name="coursecats" method="post" action="/adm/coursecatalog"'.
                 ' onsubmit="return check_selected();">'.
                 '<table border="0"><tr>'.$catlinks.'</tr></table></form>');
       return;
   }
   
   sub category_breadcrumbs {
       my ($dom,@cats) = @_;
       my $crumbsymbol = ' &#x25b6; ';
       my ($currdepth,$deeper) = &get_depth_values();
       my $currcat_str = 
           '<input type="hidden" name="catalog_maxdepth" value="'.$deeper.'" />'.
           '<input type="hidden" name="showdom" value="'.$dom.'" />';
       my $catlinks = '<td valign="top"><b>'.&mt('Catalog:').'</b></td><td><table><tr><td>';
       my $has_subcats;
       my $selitem;
       if (ref($cats[0]) eq 'ARRAY') {
           if (@{$cats[0]} == 0) {
               $catlinks .= &mt('No categories defined in this domain'); 
           } elsif (@{$cats[0]} == 1) {
               if ($cats[0][0] eq 'instcode') {
                   $catlinks .= &mt('Official courses (with institutional codes)');
                   $env{'form.currcat_0'} = 'instcode::0';
               } elsif ($cats[0][0] eq 'communities') {
                   $catlinks .= &mt('Communities');
                   $env{'form.currcat_0'} = 'communities::0';
               } else {
                   my $name = $cats[0][0];
                   my $item = &escape($name).'::0';
                   $catlinks .= $name;
                   $env{'form.currcat_0'} = $item;
               }
               $currcat_str .= '<input type="hidden" name="currcat_0" value="'.$env{'form.currcat_0'}.'" />';
           } else {
               $catlinks .= &main_category_selector(@cats);
               if (($env{'form.currcat_0'} ne '') && 
                   ($env{'form.currcat_0'} ne 'instcode::0')) {
                   $catlinks .= $crumbsymbol;
               } else {
                   $catlinks .= '</td>';
               }
           }
       } else {
           $catlinks .= &mt('Official courses (with institutional codes)');
                        $env{'form.currcat_0'} = 'instcode::0';
            $currcat_str .= '<input type="hidden" name="currcat_0" value="'.$env{'form.currcat_0'}.'" />';
       }
       if ($deeper) {
           for (my $i=1; $i<=$deeper; $i++) {
               my $shallower = $i-1;
               next if ($shallower == 0);
               my ($cat,$container,$depth) = map { &unescape($_); } split(/:/,$env{'form.currcat_'.$shallower});
               if ($cat ne '') {
                   $catlinks .= '<td valign="top">'.
                                '<select name="currcat_'.$shallower.'" onchange="'.
                                'setCatDepth('."'$shallower'".');this.form.submit();">';
                   if (ref($cats[$shallower]{$container}) eq 'ARRAY') {
                       $catlinks .= '<option value="">'.&mt('De-select').'</option>';
                       for (my $j=0; $j<@{$cats[$shallower]{$container}}; $j++) {
                           my $name = $cats[$shallower]{$container}[$j];
                           my $item = &escape($name).':'.$container.':'.$shallower;
                           my $selected = '';
                           if ($item eq $env{'form.currcat_'.$shallower}) {
                               $selected = ' selected="selected"';
                           }
                           $catlinks .= 
                              '<option value="'.$item.'"'.$selected.'>'.$name.'</option>';
                     }                      }
                     $r->print(' <option value="'.$items[$i].'">'.$longitems[$i].'</option>');  
                 }                  }
                 $r->print('</select></td>');                  $catlinks .= '</select>';
             }              }
             $r->print('<td align="center">'.$codetitles[$lasttitle-1].'<br />'."\n".              unless ($i == $deeper) {
                       '<select name="'.$codetitles[$lasttitle-1].'">'."\n".                  $catlinks .= $crumbsymbol;
                       '<option value="0">All'."\n".              } 
                       '</option>'."\n".'</select>'."\n".          }
                  '</td>'          my ($cat,$container,$depth);
                 );          if ($env{'form.currcat_'.$currdepth} eq '') {
             $r->print('</tr></table>');              my $shallower = $currdepth - 1;
             if ($numtitles > 4) {              ($cat,$container,$depth) = map { &unescape($_); } split(/:/,$env{'form.currcat_'.$shallower});
                 $r->print('<br /><br />'.$codetitles[$numtitles-1].'<br />'."\n".          } else {
                 '<input type="text" name="'.$codetitles[$numtitles-1].'" /><br />'."\n");              ($cat,$container,$depth) = map { &unescape($_); } split(/:/,$env{'form.currcat_'.$currdepth});
             }          }
         }          my $deeperlevel = $depth +1;
         $r->print('<br /><input type="hidden" name="state" value="listing" /><input type="hidden" name="sortby" value="" /><input type="submit" name="catalogfilter" value="'.&mt('Display courses').'" /></form>');          if (ref($cats[$deeperlevel]{$cat}) eq 'ARRAY') {
     } else {              $has_subcats = 1;
         $r->print(&Apache::loncommon::start_page('Course Catalog','',              my $buttontext = &mt('Show subcategories');
                   {              my $selitem = 'currcat_'.$deeperlevel;
                    'no_inline_link'   => 1,}));              $catlinks .= '&nbsp;<select name="'.$selitem.'" onchange="this.form.submit()">';
         $r->print('<br />'.&mt('No official courses to display for [_1].',$domdesc));              if (@{$cats[$deeperlevel]{$cat}}) {
     }                  $catlinks .= '<option value="" selected="selected">'.
     if ($env{'form.state'} eq 'listing') {                               &mt('Subcategory ...').'</option>';
         $r->print('<br /><br />'.&print_course_listing($codedom).'<br />');              }
               for (my $k=0; $k<@{$cats[$deeperlevel]{$cat}}; $k++) {
                   my $name = $cats[$deeperlevel]{$cat}[$k];
                   my $item = &escape($name).':'.&escape($cat).':'.$deeperlevel;
                   $catlinks .= '<option value="'.$item.'">'.$name.'</option>'."\n";
               }
               $catlinks .= '</select>'."\n";
           } elsif ($cat ne 'instcode') {
               $catlinks .= '&nbsp;'.&mt('(No subcategories)');
           }
       } else {
           $selitem = 'currcat_0';
     }      }
     $r->print(&Apache::loncommon::end_page());      $catlinks .= $currcat_str.'</td></tr></table></td>';
     return OK;      return ($catlinks,$has_subcats,$selitem);
 }  }
   
 sub recurse_options {  sub main_category_selector {
     my ($currkey,$currlist,$level,$cat,$cat_options,$data,$by_year,$by_sem,$by_dept) = @_;      my (@cats) = @_;
     if (ref($currlist) eq 'HASH') {      my $maincatlinks = '<select name="currcat_0" onchange="setCatDepth('."'0'".');this.form.submit();">'."\n";
         $level ++;      if (ref($cats[0]) eq 'ARRAY') {
         foreach my $key (sort(keys(%{$currlist}))) {          if (@{$cats[0]} > 1) {
             $$data[$level-1]= $key;              my $selected = '';
             &recurse_options($key,$currlist->{$key},$level,$cat,$cat_options,$data,$by_year,$by_sem,$by_dept);              if ($env{'form.currcat_0'} eq '') {
         }                  $selected = ' selected="selected"';    
     } else {              }
         $level --;              $maincatlinks .= 
         my @contents = split(/","/,$currlist);                  '<option value=""'.$selected.'>'.&mt('Select').'</option>'."\n";
         foreach my $item (@contents) {          }
             if (!grep(/^\Q$item\E$/,@{$cat_options->{$cat}})) {          for (my $i=0; $i<@{$cats[0]}; $i++) {
                 push(@{$cat_options->{$cat}},$item);              my $name = $cats[0][$i];
             }              my $item = &escape($name).'::0';
             if ($level == 3) {              my $selected;
                 if (!grep/^\Q$item\E$/,@{$by_year->{$data->[1]}->{$currkey}}) {              if ($env{'form.currcat_0'} eq $item) {
                     push(@{$by_year->{$data->[1]}->{$currkey}},$item);                                   $selected = ' selected="selected"';
                 }              }
                 if (!grep/^\Q$item\E$/,@{$by_sem->{$data->[2]}->{$currkey}}) {              $maincatlinks .= '<option value="'.$item.'"'.$selected.'>';
                     push(@{$by_sem->{$data->[2]}->{$currkey}},$item);              if ($name eq 'instcode') {
                 }                  $maincatlinks .= &mt('Official courses (with institutional codes)');
                 if (!grep/^\Q$item\E$/,@{$by_dept->{$currkey}}) {              } elsif ($name eq 'communities') {
                     push(@{$by_dept->{$currkey}},$item);                  $maincatlinks .= &mt('Communities');
                 }              } else {
                   $maincatlinks .= $name;
             }              }
               $maincatlinks .= '</option>'."\n";
         }          }
           $maincatlinks .= '</select>'."\n";
     }      }
     return $level;      return $maincatlinks;
 }  
   
 sub build_javascript {  
     my ($by_year,$by_sem,$by_dept,$cat_order,$codetitles) = @_;  
     my @unsorted = keys(%{$by_year});  
     my @sorted_yrs;   
     &Apache::courseclassifier::sort_cats('0',$cat_order,$codetitles,\@unsorted,\@sorted_yrs);  
     my $output = 'var idcse_by_yr_year = new Array("'.join('","',@sorted_yrs).'");'."\n".  
                  'var idcse_by_yr_dept = new Array('.scalar(@sorted_yrs).');'."\n".  
                  'var idcse_by_yr_num = new Array('.scalar(@sorted_yrs).');'."\n";  
     for (my $i=0; $i<@sorted_yrs; $i++) {  
         my $numkeys = keys(%{$by_year->{$sorted_yrs[$i]}});  
         $output .= " idcse_by_yr_num[$i] = new Array($numkeys);\n";  
         if (ref($by_year->{$sorted_yrs[$i]}) eq 'HASH') {  
             @unsorted = keys(%{$by_year->{$sorted_yrs[$i]}});  
             my @sorted_depts;  
             &Apache::courseclassifier::sort_cats('2',$cat_order,$codetitles,\@unsorted,\@sorted_depts);  
             $output .= qq| idcse_by_yr_dept[$i] = new Array ("|.join('","',@sorted_depts).'");'."\n";  
             for (my $j=0; $j<@sorted_depts; $j++) {  
                 $output .= qq| idcse_by_yr_num[$i][$j] = new Array ("|;  
                 $output .= join('","',sort(@{$by_year->{$sorted_yrs[$i]}->{$sorted_depts[$j]}})).'");'."\n";  
             }  
         }  
     }  
     @unsorted = keys(%{$by_sem});  
     my @sorted_sems;  
     &Apache::courseclassifier::sort_cats('1',$cat_order,$codetitles,\@unsorted,\@sorted_sems);  
     $output .=  'idcse_by_sem_sems = new Array("'.join('","',@sorted_sems).'");'."\n".  
                 'idcse_by_sem_dept = new Array('.scalar(@sorted_sems).');'."\n".  
                 'idcse_by_sem_num = new Array('.scalar(@sorted_sems).');'."\n";  
     for (my $i=0; $i<@sorted_sems; $i++) {  
         my $numkeys = keys(%{$by_sem->{$sorted_sems[$i]}});  
         $output .= " idcse_by_sem_num[$i] = new Array($numkeys);\n";  
         if (ref($by_sem->{$sorted_sems[$i]}) eq 'HASH') {  
             @unsorted = keys(%{$by_sem->{$sorted_sems[$i]}});  
             my @sorted_depts;  
             &Apache::courseclassifier::sort_cats('2',$cat_order,$codetitles,\@unsorted,\@sorted_depts);  
             $output .= qq| idcse_by_sem_dept[$i] = new Array("|.join('","',@sorted_depts).'");'."\n";  
             for (my $j=0; $j<@sorted_depts; $j++) {  
                 $output .= qq| idcse_by_sem_num[$i][$j] = new Array ("|.join('","',sort(@{$by_sem->{$sorted_sems[$i]}->{$sorted_depts[$j]}})).'");'."\n";  
             }  
         }  
     }  
     @unsorted = keys(%{$by_dept});  
     my @sorted_deps;  
     &Apache::courseclassifier::sort_cats('2',$cat_order,$codetitles,\@unsorted,\@sorted_deps);  
     $output .= 'idcse_by_dep = new Array('.scalar(@sorted_deps).');'."\n";   
     for (my $k=0; $k<@sorted_deps; $k++) {  
         $output .= qq| idcse_by_dep[$k] = new Array ("|.join('","',sort(@{$by_dept->{$sorted_deps[$k]}})).'");'."\n";  
     }  
     return $output;  
 }  }
   
   sub get_depth_values {
       my $currdepth = 0;
       my $deeper = 0;
       if ($env{'form.catalog_maxdepth'} ne '') {
           $currdepth = $env{'form.catalog_maxdepth'};
           if ($env{'form.currcat_'.$currdepth} eq '') {
               $deeper = $currdepth;
           } else {
               $deeper = $currdepth + 1;
           }
       }
       return ($currdepth,$deeper);
   }
   
 sub print_course_listing {  sub additional_filters {
     my ($domain) = @_;      my ($codedom,$has_subcats) = @_;
     my $output;      my $output = '<table>';
     my $year = $env{'form.Year'};      if (($env{'form.currcat_0'} ne 'instcode::0') && 
     my $sem = $env{'form.Semester'};          ($env{'form.currcat_0'} ne '') && ($has_subcats)) {
     my $dept = $env{'form.Department'};          my $include_subcat_status;
     my $coursenum = $env{'form.Number'};          if ($env{'form.withsubcats'}) {
     my $instcode;              $include_subcat_status = 'checked="checked" ';
     if ($sem eq '0' ) {          }
         $instcode .= '^[sfu]s';          my $counter = $env{'form.catalog_maxdepth'};
           if ($counter > 0) {
               if ($env{'form.state'} eq 'listing') {
                   $counter --;
               } elsif ($env{'form.currcat_'.$counter} eq '') {
                   $counter --;
               }
           }
           my ($catname) = split(/:/,$env{'form.currcat_'.$counter});
           if ($catname ne '') {
               $output .= '<tr><td><label>'.
                          '<input type="checkbox" name="withsubcats" value="1" '.
                          $include_subcat_status.'/>'.
                          &mt('Include subcategories within "[_1]"',
                              &unescape($catname)).'</label></td></tr>';
           }
       }
       my $show_selfenroll_status;
       if ($env{'form.showselfenroll'}) {
           $show_selfenroll_status = 'checked="checked" ';
       }
       my $selfenroll_text;
       if ($env{'form.currcat_0'} eq 'communities::0') {
           $selfenroll_text = &mt('Only show communities which allow self-enrollment');
     } else {      } else {
         $instcode .= '^'.$sem;           $selfenroll_text = &mt('Only show courses which allow self-enrollment');
     }      }
     if ($year eq '0') {      $output .= '<tr><td>'.
         $instcode .= '\d{2}';                 '<label><input type="checkbox" name="showselfenroll" value="1" '.
     } else {                 $show_selfenroll_status.'/>'.$selfenroll_text.
         $instcode .= $year;                  '</label></td></tr>';
       if (&user_is_dc($codedom)) {
           my $showdetails_status;
           if ($env{'form.showdetails'}) {
               $showdetails_status = 'checked="checked" ';
           }
           my $showhidden_status;
           if ($env{'form.showhidden'}) {
                $showhidden_status = 'checked="checked" ';
           }
           my $dc_title = &Apache::lonnet::plaintext('dc');
           my ($details_text,$hidden_text);
           if ($env{'form.currcat_0'} eq 'communities::0') {
               $details_text = &mt('Show full details for each community ([_1] only)',$dc_title);
               $hidden_text = &mt('Include communities set to be hidden from catalog ([_1] only)',$dc_title);
           } else {
               $details_text = &mt('Show full details for each course ([_1] only)',$dc_title);
               $hidden_text = &mt('Include courses set to be hidden from catalog ([_1] only)',$dc_title);
           }
           $output .= '<tr><td>'."\n".
                      '<label><input type="checkbox" name="showdetails" value="1" '.
                      $showdetails_status.'/>'.$details_text.
                      '</label>'."\n".'</td></tr><tr><td>'.
                      '<label><input type="checkbox" name="showhidden" value="1" '.
                      $showhidden_status.'/>'.$hidden_text.
                      '</label>'."\n".'</td></tr>';
     }      }
     if ($dept eq '0') {      $output .= '</table><br />';
         $instcode .= '\w{2,3}';      return $output;
     } else {  }
         $instcode .= $dept;  
   sub user_is_dc {
       my ($codedom) = @_;
       if (exists($env{'user.role.dc./'.$codedom.'/'})) {
           my $livedc = 1;
           my $now = time;
           my ($start,$end)=split(/\./,$env{'user.role.dc./'.$codedom.'/'});
           if ($start && $start>$now) { $livedc = 0; }
           if ($end   && $end  <$now) { $livedc = 0; }
           return $livedc;
     }      }
     if ($coursenum ne '0' && $coursenum != -1) {      return;
         $instcode .= $coursenum.'$';   }
   
   sub search_official_courselist {
       my ($domain,$numtitles) = @_;
       my $instcode = &Apache::courseclassifier::instcode_search_str($domain,$numtitles);
       my $showhidden;
       if (&user_is_dc($domain)) {
           $showhidden = $env{'form.showhidden'};
       }
       my %courses = 
           &Apache::lonnet::courseiddump($domain,'.',1,$instcode,'.','.',undef,undef,
                                         'Course',1,$env{'form.showselfenroll'},undef,
                                         $showhidden,'coursecatalog');
       return %courses;
   }
   
   sub search_courselist {
       my ($domain,$subcats) = @_;
       my $cat_maxdepth = $env{'form.catalog_maxdepth'};
       my $filter = $env{'form.currcat_'.$cat_maxdepth};
       if (($filter eq '') && ($cat_maxdepth > 0)) {
           my $shallower = $cat_maxdepth - 1;
           $filter = $env{'form.currcat_'.$shallower};
       }
       my %courses;
       my $filterstr;
       if ($filter ne '') {
           if ($env{'form.withsubcats'}) {
               if (ref($subcats) eq 'HASH') {
                   if (ref($subcats->{$filter}) eq 'ARRAY') {
                       $filterstr = join('&',@{$subcats->{$filter}});
                       if ($filterstr ne '') {
                           $filterstr = $filter.'&'.$filterstr;
                       }
                   } else {
                       $filterstr = $filter;
                   }
               } else {
                   $filterstr = $filter;
               }  
           } else {
               $filterstr = $filter; 
           }
           my ($showhidden,$typefilter);
           if (&user_is_dc($domain)) {
               $showhidden = $env{'form.showhidden'};
           }
           if ($env{'form.currcat_0'} eq 'communities::0') {
               $typefilter = 'Community';
           } else {
               $typefilter = '.';
           }
           %courses = 
               &Apache::lonnet::courseiddump($domain,'.',1,'.','.','.',undef,undef,
                                             $typefilter,1,$env{'form.showselfenroll'},
                                             $filterstr,$showhidden,'coursecatalog');
     }      }
     my %courses = &Apache::lonnet::courseiddump($domain,'.',1,$instcode,'.','.',      return %courses;
                                                 undef,undef,'Course',1);  }
     if (keys(%courses) == 0) {  
         $output = &mt('No courses match the criteria you selected.');  sub print_course_listing {
         return $output;      my ($domain,$numtitles,$trails,$allitems,$subcats) = @_;
       my $output;
       my %courses;
       my $knownuser = &user_is_known();
       my $details = $env{'form.coursenum'};
       if (&user_is_dc($domain)) {
           if ($env{'form.showdetails'}) {
               $details = 1;
           }
     }      }
     $output = &mt('<b>Note for students:</b> If you are officially enrolled in a course but there is no student role for the course in your LON-CAPA roles screen, check the default access dates and/or auto-enrollment settings for the course below.  Your roles screen displays only currently accessible roles.<br /><br />');      if ($env{'form.coursenum'} ne '') {
     $output .= &Apache::loncommon::start_data_table().          %courses = &Apache::lonnet::courseiddump($domain,'.',1,'.','.',
               &Apache::loncommon::start_data_table_header_row().                                                   $env{'form.coursenum'},
               '<th><a href="javascript:changeSort('."'code'".')">'.&mt('Code').'</a></th>'.                                                   undef,undef,'.',1);
               '<th>'.&mt('Sections').'</th>'.          if (keys(%courses) == 0) {
               '<th>'.&mt('Crosslisted').'</th>'.              $output .= &mt('The courseID provided does not match a course in this domain.');
               '<th><a href="javascript:changeSort('."'title'".')">'.&mt('Title').'</a></th>'.              return $output;
               '<th><a href="javascript:changeSort('."'owner'".')">'.&mt('Owner').'</a></th>'.          }
               '<th>'.&mt('Student Status').'</th>'.      } else {
               '<th>'.&mt('Default Access Dates').'</th>'.          if ($env{'form.currcat_0'} eq 'instcode::0') {
               '<th>'.&mt('Auto-enrollment').'</th>'.              %courses = &search_official_courselist($domain,$numtitles);
               &Apache::loncommon::end_data_table_header_row();  
     my %courseinfo;  
     foreach my $course (keys(%courses)) {  
         my $descr;  
         if ($courses{$course} =~ m/^([^:]*):/i) {  
             $descr = &unescape($1);  
         } else {          } else {
             $descr = &unescape($courses{$course});              %courses = &search_courselist($domain,$subcats);
         }          }
         my $cleandesc=&HTML::Entities::encode($descr,'<>&"');          if (keys(%courses) == 0) {
         $cleandesc=~s/'/\\'/g;              if ($env{'form.currcat_0'} eq 'communities::0') {
         my ($cdom,$cnum)=split(/\_/,$course);                  $output = &mt('No communities match the criteria you selected.');
                      } else {
         my ($desc,$instcode,$owner,$ttype) = split(/:/,$courses{$course});                  $output = &mt('No courses match the criteria you selected.');
         $owner = &unescape($owner);  
         my ($ownername,$ownerdom);  
         if ($owner =~ /:/) {  
             ($ownername,$ownerdom) = split(/:/,$owner);  
         } else {  
             $ownername = $owner;  
             if ($owner ne '') {  
                 $ownerdom = $cdom;  
             }              }
               return $output;
         }          }
         my %ownernames;          if (($knownuser) && (!$env{'form.showdetails'}) && (!&user_is_dc($domain))) {
         if ($ownername ne '' && $ownerdom ne '') {              $output = '<b>'.&mt('Note for students:').'</b> '
             %ownernames = &Apache::loncommon::getnames($ownername,$ownerdom);                       .&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.')
                        .'<br /><br />';
           }
       }
       my $now = time;
       my %domconfig =
           &Apache::lonnet::get_dom('configuration',['usercreation'],$domain);
       $output .= &construct_data_table($knownuser,\%courses,$details,undef,$now,\%domconfig,$trails,$allitems);
       $output .= "\n".'<form name="linklaunch" method="post" action="">'.
                  '<input type="hidden" name="backto" value="coursecatalog" />'.
                  '<input type="hidden" name="courseid" value="" />'.
                  &Apache::lonhtmlcommon::echo_form_input(['catalogfilter','courseid']).'</form>';
       return $output;
   }
   
   sub construct_data_table {
       my ($knownuser,$courses,$details,$usersections,$now,$domconfig,$trails,
           $allitems) = @_;
       my %sortname;
       if (($details eq '') || ($env{'form.showdetails'})) {
           $sortname{'Code'} = 'code';
           $sortname{'Categories'} = 'cats';
           $sortname{'Title'} = 'title';
           $sortname{'Owner(s)'} = 'owner';
       }
       my $output = &Apache::loncommon::start_data_table().
                    &Apache::loncommon::start_data_table_header_row();
       my @coltitles = ('Count');
       if ($env{'form.currcat_0'} eq 'instcode::0') {
           push(@coltitles,'Code');
       } else {
           push(@coltitles,'Categories');
       }
       push(@coltitles,('Sections','Crosslisted','Title','Owner(s)'));
       if (ref($usersections) eq 'HASH') {
          $coltitles[1] = 'Your Section';
       }
       foreach my $item (@coltitles) {
           $output .= '<th>';
           if (defined($sortname{$item})) {
               $output .= '<a href="javascript:changeSort('."'$sortname{$item}'".')">'.&mt($item).'</a>';
           } elsif ($item eq 'Count') {
               $output .= '&nbsp;&nbsp;';
           } else {
               $output .= &mt($item);
           }
           $output .= '</th>';
       }
       if ($knownuser) {
           if ($details) {
               $output .=
                 '<th>'.&mt('Default Access Dates for Students').'</th>'.
                 '<th>'.&mt('Student Counts').'</th>'.
                 '<th>'.&mt('Auto-enrollment of[_1]registered students','<br />').'</th>';
           } else {
               $output .= '<th>'.&mt('Details').'</th>';
         }          }
         $courseinfo{$course}{'cdom'} = $cdom;  
         $courseinfo{$course}{'cnum'} = $cnum;  
         $courseinfo{$course}{'code'} = $instcode;  
         $courseinfo{$course}{'ownerlastname'} = $ownernames{'lastname'};  
         $courseinfo{$course}{'title'} = $cleandesc;  
         $courseinfo{$course}{'owner'} = $owner;   
     }      }
       $output .= '<th>'.&mt('Self-enroll (if permitted)').'</th>';
       &Apache::loncommon::end_data_table_header_row();
       my %courseinfo = &build_courseinfo_hash($courses,$knownuser,$details,
                                               $usersections);
     my %Sortby;      my %Sortby;
     foreach my $course (sort(keys(%courses))) {      foreach my $course (sort(keys(%{$courses}))) {
         if ($env{'form.sortby'} eq 'code') {          if ($env{'form.sortby'} eq 'code') {
             push(@{$Sortby{$courseinfo{$course}{'code'}}},$course);              push(@{$Sortby{$courseinfo{$course}{'code'}}},$course);
           } elsif ($env{'form.sortby'} eq 'cats') {
               push(@{$Sortby{$courseinfo{$course}{'categories'}}},$course);
         } elsif ($env{'form.sortby'} eq 'owner') {          } elsif ($env{'form.sortby'} eq 'owner') {
             push(@{$Sortby{$courseinfo{$course}{'ownerlastname'}}},$course);              push(@{$Sortby{$courseinfo{$course}{'ownerlastnames'}}},$course);
         } else {          } else {
             push(@{$Sortby{$courseinfo{$course}{'title'}}},$course);              my $clean_title = $courseinfo{$course}{'title'};
               $clean_title =~ s/\W+//g;
               if ($clean_title eq '') {
                   $clean_title = $courseinfo{$course}{'title'};
               }
               push(@{$Sortby{$clean_title}},$course);
         }          }
     }      }
     my @sorted_courses;      my @sorted_courses;
     if (($env{'form.sortby'} eq 'code') || ($env{'form.sortby'} eq 'owner')) {      if (($env{'form.sortby'} eq 'code') || ($env{'form.sortby'} eq 'owner') ||
           ($env{'form.sortby'} eq 'cats')) {
         @sorted_courses = sort(keys(%Sortby));          @sorted_courses = sort(keys(%Sortby));
     } else {      } else {
         @sorted_courses = sort { lc($a) cmp lc($b) } (keys(%Sortby));          @sorted_courses = sort { lc($a) cmp lc($b) } (keys(%Sortby));
     }      }
       my $count = 1;
     foreach my $item (@sorted_courses) {      foreach my $item (@sorted_courses) {
         foreach my $course (@{$Sortby{$item}}) {          foreach my $course (@{$Sortby{$item}}) {
             $output.=&Apache::loncommon::start_data_table_row();               $output.=&Apache::loncommon::start_data_table_row(); 
             $output.=&courseinfo_row($courseinfo{$course});              $output.=&courseinfo_row($courseinfo{$course},$knownuser,$details,
                                        \$count,$now,$course,$trails,$allitems);
             $output.=&Apache::loncommon::end_data_table_row();              $output.=&Apache::loncommon::end_data_table_row();
         }          }
     }      }
Line 374  sub print_course_listing { Line 748  sub print_course_listing {
     return $output;      return $output;
 }  }
   
 sub courseinfo_row {  sub build_courseinfo_hash {
     my ($info) = @_;      my ($courses,$knownuser,$details,$usersections) = @_;
     my ($cdom,$cnum,$title,$ownerlast,$code,$owner,$output);      my %courseinfo;
     if (ref($info) eq 'HASH') {      my $now = time;
         $cdom = $info->{'cdom'};      foreach my $course (keys(%{$courses})) {
         $cnum = $info->{'cnum'};          my $descr;
         $title = $info->{'title'};          if (ref($courses->{$course}) eq 'HASH') {
         $ownerlast = $info->{'ownerlastname'};              $descr = $courses->{$course}{'description'}; 
         $code = $info->{'code'};          }
         $owner = $info->{'owner'};          my $cleandesc=&HTML::Entities::encode($descr,'<>&"');
     } else {          $cleandesc=~s/'/\\'/g;
         $output = '<td colspan="8">'.&mt('No information available for [_1].',          $cleandesc =~ s/^\s+//;
                                          $code).'</td>';          my ($cdom,$cnum)=split(/\_/,$course);
         return $output;          my ($instcode,$singleowner,$ttype,$selfenroll_types,
               $selfenroll_start,$selfenroll_end,@owners,%ownernames,$categories);
           if (ref($courses->{$course}) eq 'HASH') {
               $descr = $courses->{$course}{'description'};
               $instcode =  $courses->{$course}{'inst_code'};
               $singleowner = $courses->{$course}{'owner'};
               $ttype =  $courses->{$course}{'type'};
               $selfenroll_types = $courses->{$course}{'selfenroll_types'};
               $selfenroll_start = $courses->{$course}{'selfenroll_start_date'};
               $selfenroll_end = $courses->{$course}{'selfenroll_end_date'};
               $categories = $courses->{$course}{'categories'};
               push(@owners,$singleowner);
               if (ref($courses->{$course}{'co-owners'}) eq 'ARRAY') {
                   foreach my $item (@{$courses->{$course}{'co-owners'}}) {
                       push(@owners,$item);
                   }
               }
           }
           foreach my $owner (@owners) {
               my ($ownername,$ownerdom); 
               if ($owner =~ /:/) {
                   ($ownername,$ownerdom) = split(/:/,$owner);
               } else {
                   $ownername = $owner;
                   if ($owner ne '') {
                       $ownerdom = $cdom;
                   }
               }
               if ($ownername ne '' && $ownerdom ne '') {
                   my %namehash=&Apache::loncommon::getnames($ownername,$ownerdom);
                   $ownernames{$ownername.':'.$ownerdom} = \%namehash; 
               }
           }
           $courseinfo{$course}{'cdom'} = $cdom;
           $courseinfo{$course}{'cnum'} = $cnum;
           $courseinfo{$course}{'code'} = $instcode;
           my @lastnames;
           foreach my $owner (keys(%ownernames)) {
               if (ref($ownernames{$owner}) eq 'HASH') {
                   push(@lastnames,$ownernames{$owner}{'lastname'});
               }
           }
           $courseinfo{$course}{'ownerlastnames'} = join(', ',sort(@lastnames));
           $courseinfo{$course}{'title'} = $cleandesc;
           $courseinfo{$course}{'owner'} = $singleowner;
           $courseinfo{$course}{'selfenroll_types'} = $selfenroll_types;
           $courseinfo{$course}{'selfenroll_start'} = $selfenroll_start;
           $courseinfo{$course}{'selfenroll_end'} = $selfenroll_end;
           $courseinfo{$course}{'categories'} = $categories;
   
           my %coursehash = &Apache::lonnet::dump('environment',$cdom,$cnum);
           my @classids;
           my @crosslistings;
           my ($seclist,$numsec) = 
               &identify_sections($coursehash{'internal.sectionnums'});
           if (ref($usersections) eq 'HASH') {
               if (ref($usersections->{$course}) eq 'ARRAY') {
                   $seclist = join(', ',@{$usersections->{$course}});
               }
           }
           $courseinfo{$course}{'seclist'} = $seclist;
           my ($xlist_items,$numxlist) = 
               &identify_sections($coursehash{'internal.crosslistings'});
           my $showsyllabus = 1; # default is to include a syllabus link
           if (defined($coursehash{'showsyllabus'})) {
               $showsyllabus = $coursehash{'showsyllabus'};
           }
           $courseinfo{$course}{'showsyllabus'} = $showsyllabus;
           if (((defined($env{'form.coursenum'}) && ($cnum eq $env{'form.coursenum'}))) ||
               ($knownuser && ($details == 1))) {
               $courseinfo{$course}{'counts'} =  &count_students($cdom,$cnum,$numsec);
               $courseinfo{$course}{'autoenrollment'} =
                   &autoenroll_info(\%coursehash,$now,$seclist,$xlist_items,
                                    $instcode,\@owners,$cdom,$cnum);
   
               my $startaccess = '';
               my $endaccess = '';
               my $accessdates;
               if ( defined($coursehash{'default_enrollment_start_date'}) ) {
                   $startaccess = &Apache::lonlocal::locallocaltime($coursehash{'default_enrollment_start_date'});
               }
               if ( defined($coursehash{'default_enrollment_end_date'}) ) {
                   $endaccess = &Apache::lonlocal::locallocaltime($coursehash{'default_enrollment_end_date'});
                   if ($coursehash{'default_enrollment_end_date'} == 0) {
                       $endaccess = &mt('No ending date');
                   }
               }
               if ($startaccess) {
                   $accessdates .= '<i>'.&mt('From:[_1]','</i> '.$startaccess).'<br />';
               }
               if ($endaccess) {
                   $accessdates .= '<i>'.&mt('To:[_1]','</i> '.$endaccess).'<br />';
               }
               if (($selfenroll_types ne '') && 
                   ($selfenroll_end > 0 && $selfenroll_end > $now)) {
                   my ($selfenroll_start_access,$selfenroll_end_access);
                   if (($coursehash{'default_enrollment_start_date'} ne 
                        $coursehash{'internal.selfenroll_start_access'}) ||
                      ($coursehash{'default_enrollment_end_date'} ne 
                       $coursehash{'internal.selfenroll_end_access'})) {
                       if ( defined($coursehash{'internal.selfenroll_start_access'}) ) {
                           $selfenroll_start_access = &Apache::lonlocal::locallocaltime($coursehash{'internal.selfenroll_start_access'});
                       }
                       if ( defined($coursehash{'default_enrollment_end_date'}) ) {
                           $selfenroll_end_access = &Apache::lonlocal::locallocaltime($coursehash{'internal.selfenroll_end_access'});
                           if ($coursehash{'internal.selfenroll_end_access'} == 0) {
                               $selfenroll_end_access = &mt('No ending date');
                           }
                       }
                       if ($selfenroll_start_access || $selfenroll_end_access) {
                           $accessdates .= '<br/><br /><i>'.&mt('Self-enrollers:').'</i><br />';
                           if ($selfenroll_start_access) {
                               $accessdates .= '<i>'.&mt('From:[_1]','</i> '.$selfenroll_start_access).'<br />';
                           }
                           if ($selfenroll_end_access) {
                               $accessdates .= '<i>'.&mt('To:[_1]','</i> '.$selfenroll_end_access).'<br />';
                           }
                       }
                   }
               }
               $courseinfo{$course}{'access'} = $accessdates;
           }
           if ($xlist_items eq '') {
               $xlist_items = &mt('No');
           }
           $courseinfo{$course}{'xlist'} = $xlist_items;
     }      }
     my %coursehash = &Apache::lonnet::dump('environment',$cdom,$cnum);      return %courseinfo;
   }
   
   sub count_students {
       my ($cdom,$cnum,$numsec) = @_;
     my $classlist = &Apache::loncoursedata::get_classlist($cdom,$cnum);      my $classlist = &Apache::loncoursedata::get_classlist($cdom,$cnum);
       my %student_count = (
                              Active => 0,
                              Future => 0,
                              Expired => 0,
                          );
     my %idx;      my %idx;
     my @classids;  
     my @crosslistings;  
     $idx{'status'} = &Apache::loncoursedata::CL_STATUS();      $idx{'status'} = &Apache::loncoursedata::CL_STATUS();
     my %status_title = &Apache::lonlocal::texthash(      my %status_title = &Apache::lonlocal::texthash(
                            Expired => 'Previous access',                             Expired => 'Previous access',
                            Active => 'Current access',                             Active => 'Current access',
                            Future => 'Future access',                             Future => 'Future access',
                        );                         );
     my %student_count = (  
                            Expired => 0,  
                            Active => 0,  
                            Future => 0,  
                        );  
     while (my ($student,$data) = each(%$classlist)) {      while (my ($student,$data) = each(%$classlist)) {
         $student_count{$data->[$idx{'status'}]} ++;          $student_count{$data->[$idx{'status'}]} ++;
     }      }
     my $seclist = &identify_sections($coursehash{'internal.sectionnums'});  
     my $xlist_items = &identify_sections($coursehash{'internal.crosslistings'});      my $countslist = &mt('[quant,_1,section:,sections:,No sections]',$numsec).'<br />';
     my $countslist;      foreach my $status ('Active','Future') {
     my $startaccess = '';          $countslist .= '<span class="LC_nobreak">'.$status_title{$status}.': '.
     my $endaccess = '';                         $student_count{$status}.'</span><br />';
     my $now;  
     my ($accessdates,$autoenrolldates,$showsyllabus);  
     if ( defined($coursehash{'default_enrollment_start_date'}) ) {  
         $startaccess = &Apache::lonlocal::locallocaltime($coursehash{'default_enrollment_start_date'});  
     }  
     if ( defined($coursehash{'default_enrollment_end_date'}) ) {  
         $endaccess = &Apache::lonlocal::locallocaltime($coursehash{'default_enrollment_end_date'});  
         if ($coursehash{'default_enrollment_end_date'} == 0) {  
             $endaccess = "No ending date";  
         }  
     }      }
     if ($startaccess) {      return $countslist;
         $accessdates .= &mt('From: ').$startaccess.'<br />';  }
   
   sub courseinfo_row {
       my ($info,$knownuser,$details,$countref,$now,$course,$trails,$allitems) = @_;
       my ($cdom,$cnum,$title,$ownerlast,$code,$owner,$seclist,$xlist_items,
           $accessdates,$showsyllabus,$counts,$autoenrollment,$output,$categories);
       if (ref($info) eq 'HASH') {
           $cdom = $info->{'cdom'};
           $cnum = $info->{'cnum'};
           $title = $info->{'title'};
           $ownerlast = $info->{'ownerlastnames'};
           $code = $info->{'code'};
           $owner = $info->{'owner'};
           $seclist = $info->{'seclist'};
           $xlist_items = $info->{'xlist'};
           $accessdates = $info->{'access'};
           $counts = $info->{'counts'};
           $autoenrollment = $info->{'autoenrollment'};
           $showsyllabus = $info->{'showsyllabus'};
           $categories = $info->{'categories'};
       } else {
           $output = '<td colspan="8">'.&mt('No information available for [_1].',
                                            $code).'</td>';
           return $output;
     }      }
     if ($endaccess) {      $output .= '<td>'.$$countref.'</td>';
         $accessdates .= &mt('To: ').$endaccess.'<br />';      if ($env{'form.currcat_0'} eq 'instcode::0') {
           $output .= '<td>'.$code.'</td>';
       } else {
           my ($categorylist,@cats);
           if ($categories ne '') {
               @cats = split('&',$categories);
           }
           if ((ref($trails) eq 'ARRAY') && (ref($allitems) eq 'HASH')) {
               my @categories = map { $trails->[$allitems->{$_}]; } @cats;
               $categorylist = join('<br />',@categories);
           }
           if ($categorylist eq '') {
               $categorylist = '&nbsp;';
           }
           $output .= '<td>'.$categorylist.'</td>';
       }
       $output .= '<td>'.$seclist.'</td>'.
                  '<td>'.$xlist_items.'</td>'.
                  '<td>'.$title.'&nbsp;<font size="-2">';
       if ($showsyllabus) {
           $output .= '<a href="javascript:ToSyllabus('."'$cdom','$cnum'".')">'.&mt('Syllabus').'</a>';
       } else {
           $output .= '&nbsp;';
     }      }
     $autoenrolldates = &mt('Not enabled');      $output .= '</font></td>'.
     if (defined($coursehash{'internal.autoadds'}) && $coursehash{'internal.autoadds'} == 1) {                 '<td>'.$ownerlast.'</td>';
         my ($autostart,$autoend);      if ($knownuser) {
         if ( defined($coursehash{'internal.autostart'}) ) {          if ($details) {
             $autostart = &Apache::lonlocal::locallocaltime($coursehash{'internal.autostart'});              $output .=
         }                 '<td>'.$accessdates.'</td>'. 
         if ( defined($coursehash{'internal.autoend'}) ) {                 '<td>'.$counts.'</td>'.
             $autoend = &Apache::lonlocal::locallocaltime($coursehash{'internal.autoend'});                 '<td>'.$autoenrollment.'</td>';
         }  
         if ($coursehash{'internal.autostart'} > $now) {  
             if ($coursehash{'internal.autoend'} && $coursehash{'internal.autoend'} < $now) {  
                 $autoenrolldates = &mt('Not enabled');  
             } else {  
                 my $valid_classes = &get_valid_classes($seclist,$xlist_items,  
                                                        $code,$owner,$cdom,$cnum);  
                 if ($valid_classes ne '') {  
                     $autoenrolldates = &mt('Not enabled<br />Starts: ').  
                                        $autostart.'<br />'.$valid_classes;  
                 }  
             }  
         } else {          } else {
             if ($coursehash{'internal.autoend'} && $coursehash{'internal.autoend'} < $now) {              $output .= "<td><a href=\"javascript:setCourseId('$cnum')\">".&mt('Show more details').'</a></td>';
                 $autoenrolldates = &mt('Not enabled<br />Ended: ').$autoend;          }
             } else {      }
                 my $valid_classes = &get_valid_classes($seclist,$xlist_items,      my $selfenroll;
                                                        $code,$owner,$cdom,$cnum);      if ($info->{'selfenroll_types'}) {
                 if ($valid_classes ne '') {          my $showstart = &Apache::lonlocal::locallocaltime($info->{'selfenroll_start'});
                     $autoenrolldates = &mt('Currently enabled<br />').          my $showend = &Apache::lonlocal::locallocaltime($info->{'selfenroll_end'});
                                        $valid_classes;          if (($info->{'selfenroll_end'} > 0) && ($info->{'selfenroll_end'} > $now)) {
                 }              if (($info->{'selfenroll_start'} > 0) && ($info->{'selfenroll_start'} > $now)) {
                   $output .= '<td>'.&mt('Starts: [_1]','<span class="LC_cusr_emph">'.$showstart.'</span>').'<br />'.&mt('Ends: [_1]','<span class="LC_cusr_emph">'.$showend.'</span>').'</td>';
               } else { 
                   $output .= '<td><a href="javascript:ToSelfenroll('."'$course'".')">'.&mt('Enroll in course').'</a></td>';
             }              }
               $selfenroll = 1;
         }          }
     }      }
     if (defined($coursehash{'showsyllabus'})) {      if (!$selfenroll) {
         $showsyllabus = $coursehash{'showsyllabus'};          $output .= '<td>&nbsp;</td>';
     }   
     foreach my $status ('Active','Future','Expired') {  
         $countslist .= '<nobr>'.$status_title{$status}.': '.  
                        $student_count{$status}.'</nobr><br />';  
     }  
     if ($xlist_items eq '') {  
         $xlist_items = &mt('No');  
     }  
     $output = '<td>'.$coursehash{'internal.coursecode'}.'</td>'.  
               '<td>'.$seclist.'</td>'.  
               '<td>'.$xlist_items.'</td>'.  
               '<td>'.$title.'&nbsp;<font size="-2">';  
     if ($showsyllabus) {  
         $output .= &Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$cnum,$cdom);  
     }      }
     $output .= '</font></td>'.      $$countref ++;
                '<td>'.$ownerlast.'</td>'.  
                '<td>'.$countslist.'</td>'.  
                '<td>'.$accessdates.'</td>'.  
                '<td>'.$autoenrolldates.'</td>';   
     return $output;      return $output;
 }  }
   
Line 506  sub identify_sections { Line 1017  sub identify_sections {
         }          }
     }      }
     @secnums = sort {$a <=> $b} @secnums;      @secnums = sort {$a <=> $b} @secnums;
     my $seclist = join(', ',@secnums);      $seclist = join(', ',@secnums);
     return $seclist;      my $numsec = @secnums;
       return ($seclist,$numsec);
 }  }
   
 sub get_valid_classes {  sub get_valid_classes {
     my ($seclist,$xlist_items,$crscode,$owner,$cdom,$cnum) = @_;      my ($seclist,$xlist_items,$crscode,$owners,$cdom,$cnum) = @_;
     my $response;      my $response;
     my %validations;      my %validations;
     @{$validations{'sections'}} = ();      @{$validations{'sections'}} = ();
     @{$validations{'xlists'}} = ();      @{$validations{'xlists'}} = ();
     my $totalitems = 0;      my $totalitems = 0;
     if ($seclist) {      if ($seclist) {
         foreach my $sec (split(',',$seclist)) {          foreach my $sec (split(/, /,$seclist)) {
             my $class = $crscode.$sec;              my $class = $crscode.$sec;
             if (&Apache::lonnet::auto_validate_class_sec($cdom,$cnum,$owner,              if (&Apache::lonnet::auto_validate_class_sec($cdom,$cnum,$owners,
  $class) eq 'ok') {   $class) eq 'ok') {
                 if (!grep(/^\Q$sec$\E/,@{$validations{'sections'}})) {                  if (!grep(/^\Q$sec$\E/,@{$validations{'sections'}})) {
                     push(@{$validations{'sections'}},$sec);                      push(@{$validations{'sections'}},$sec);
Line 530  sub get_valid_classes { Line 1042  sub get_valid_classes {
         }          }
     }      }
     if ($xlist_items) {      if ($xlist_items) {
         foreach my $item (split(',',$xlist_items)) {          foreach my $item (split(/, /,$xlist_items)) {
             if (&Apache::lonnet::auto_validate_class_sec($cdom,$cnum,$owner,              if (&Apache::lonnet::auto_validate_class_sec($cdom,$cnum,$owners,
  $item) eq 'ok') {   $item) eq 'ok') {
                 if (!grep(/^\Q$item$\E/,@{$validations{'xlists'}})) {                  if (!grep(/^\Q$item$\E/,@{$validations{'xlists'}})) {
                     push(@{$validations{'xlists'}},$item);                      push(@{$validations{'xlists'}},$item);
Line 542  sub get_valid_classes { Line 1054  sub get_valid_classes {
     }      }
     if ($totalitems > 0) {      if ($totalitems > 0) {
         if (@{$validations{'sections'}}) {          if (@{$validations{'sections'}}) {
             $response = &mt('Sections: ').              $response = &mt('Sections:').' '.
                         join(',',@{$validations{'sections'}}).'<br />';                          join(', ',@{$validations{'sections'}}).'<br />';
         }          }
         if (@{$validations{'xlists'}}) {          if (@{$validations{'xlists'}}) {
             $response .= &mt('Courses: ').              $response .= &mt('Courses:').' '.
                         join(',',@{$validations{'xlists'}});                          join(', ',@{$validations{'xlists'}});
         }          }
     }      }
     return $response;      return $response;
 }  }
   
 sub javascript_select_filler {  sub autoenroll_info {
     my ($formname,$scripttext,$codetitles,$longtitles_str,$allidlist) = @_;      my ($coursehash,$now,$seclist,$xlist_items,$code,$owners,$cdom,$cnum) = @_;
     my $output = <<END;      my $autoenrolldates = &mt('Not enabled');
 function courseSet() {      if (defined($coursehash->{'internal.autoadds'}) && $coursehash->{'internal.autoadds'} == 1) {
     var longtitles = new Array ("$longtitles_str");          my ($autostart,$autoend);
     var valyr = document.$formname.Year.options[document.$formname.Year.selectedIndex].value          if ( defined($coursehash->{'internal.autostart'}) ) {
     var valsem  = document.$formname.Semester.options[document.$formname.Semester.selectedIndex].value              $autostart = &Apache::lonlocal::locallocaltime($coursehash->{'internal.autostart'});
     var valdept = document.$formname.Department.options[document.$formname.Department.selectedIndex].value  
     var valclass = document.$formname.Number.options[document.$formname.Number.selectedIndex].value  
     var idyears = new Array("$allidlist");  
     var idyr = -1;  
     var idsem = -1;  
     var iddept = -1;  
     document.$formname.Number.length = 0;  
   
     $scripttext  
   
     selYear = document.$formname.Year.selectedIndex-1;  
     selSemester = document.$formname.Semester.selectedIndex-1;  
     selDepartment = document.$formname.Department.selectedIndex-1;  
     if (selYear == -1) {  
         if (selSemester == -1) {  
             if (selDepartment > -1) {  
                 document.$formname.Number.options[0] =  new Option('All','0',false,false);  
                 for (var k=0; k<idcse_by_dep[selDepartment].length; k++) {  
                     document.$formname.Number.options[k+1] = new Option(idcse_by_dep[selDepartment][k],idcse_by_dep[selDepartment][k],false,false);  
   
                 }  
             }   
             else {  
                 document.$formname.Number.options[0] = new Option("All","0",true,true);  
             }  
         }  
         else {  
             if (selDepartment > -1) {  
                 for (var i=0; i<idcse_by_sem_sems.length; i++) {  
                     if (idcse_by_sem_sems[i] == valsem) {  
                         idsem = i;  
                     }  
                 }  
                 if (idsem != -1) {  
                     for (var i=0; i<idcse_by_sem_dept[idsem].length; i++) {  
                         if (idcse_by_sem_dept[idsem][i] == valdept) {  
                             iddept = i;  
                         }  
                     }  
                 }  
                 if (iddept != -1) {  
                     document.$formname.Number.options[0] =  new Option('All','0',false,false);  
                     for (var k=0; k<idcse_by_sem_num[idsem][iddept].length; k++) {  
                         document.$formname.Number.options[k+1] = new Option(idcse_by_sem_num[idsem][iddept][k],idcse_by_sem_num[idsem][iddept][k],false,false);  
                     }  
                 }  
                 else {  
                     document.$formname.Number.options[0] =  new Option('No courses','0',true,true);  
                 }  
             }  
             else {  
                 document.$formname.Number.options[0] = new Option("All","0",true,true);  
             }  
         }          }
     }          if ( defined($coursehash->{'internal.autoend'}) ) {
     else {              $autoend = &Apache::lonlocal::locallocaltime($coursehash->{'internal.autoend'});
         if (selSemester == -1) {  
             if (selDepartment > -1) {  
                 for (var i=0; i<idcse_by_yr_year.length; i++) {  
                     if (idcse_by_yr_year[i] == valyr) {  
                         idyr = i;  
                     }  
                 }  
                 if (idyr != -1) {        
                     for (var i=0; i<idcse_by_yr_dept[idyr].length; i++) {  
                         if (idcse_by_yr_dept[idyr][i] == valdept) {  
                             iddept = i;  
                         }  
                     }  
                 }  
                 if (iddept != -1) {  
                     document.$formname.Number.options[0] =  new Option('All','0',false,false);  
                     for (var k=0; k<idcse_by_yr_num[idyr][iddept].length; k++) {  
                         document.$formname.Number.options[k+1] = new Option(idcse_by_yr_num[idyr][iddept][k],idcse_by_yr_num[idyr][iddept][k],false,false);  
                     }  
                 }   
                 else {  
                     document.$formname.Number.options[0] =  new Option('No courses','0',true,true);  
                 }  
             }  
             else {  
                 document.$formname.Number.options[0] = new Option("All","0",true,true);  
             }  
         }          }
         else {          if ($coursehash->{'internal.autostart'} > $now) {
             for (var k=0; k<idyears.length; k++) {              if ($coursehash->{'internal.autoend'} && $coursehash->{'internal.autoend'} < $now) {
                 if (idyears[k] == valyr) {                  $autoenrolldates = &mt('Not enabled');
                     idyr = k;              } else {
                 }                  my $valid_classes = 
             }                     &get_valid_classes($seclist,$xlist_items,$code,
             if (idyr != -1) {                                        $owners,$cdom,$cnum);
                 for (var k=0; k<idsems[idyr].length; k++) {                  if ($valid_classes ne '') {
                     if (idsems[idyr][k] == valsem) {                      $autoenrolldates = &mt('Not enabled').'<br />'
                         idsem = k;                                        .&mt('Starts: [_1]',$autostart)
                     }                                        .'<br />'.$valid_classes;
                 }  
             }  
             if (idsem != -1) {  
                 for (var k=0; k<idcodes[idyr][idsem].length; k++) {  
                     if (idcodes[idyr][idsem][k] == valdept) {  
                         iddept = k;  
                     }  
                 }                  }
             }              }
             if (iddept != -1) {          } else {
                 document.$formname.Number.options[0] =  new Option('All','0',false,false);              if ($coursehash->{'internal.autoend'} && $coursehash->{'internal.autoend'} < $now) {
                 for (var i=0; i<idcourses[idyr][idsem][iddept].length; i++) {                  $autoenrolldates = &mt('Not enabled').'<br />'
                     var display = idcourses[idyr][idsem][iddept][i];                                    .&mt('Ended: [_1]',$autoend);
                     if (longtitles[3] == 1) {              } else {
                         if (idcourseslongs[idyr][idsem][iddept][i] != "") {                  my $valid_classes = &get_valid_classes($seclist,$xlist_items,
                             display = idcourseslongs[idyr][idsem][iddept][i]                                                         $code,$owners,$cdom,$cnum);
                         }                  if ($valid_classes ne '') {
                     }                      $autoenrolldates = &mt('Currently enabled').'<br />'.
                     document.$formname.Number.options[i+1] = new Option(display,idcourses[idyr][idsem][iddept][i],false,false)                                         $valid_classes;
                 }                  }
             }              }
             else {  
                 document.$formname.Number.options[0] =  new Option('No courses','0',true,true);  
             }  
         }          }
         document.$formname.Number.selectedIndex = 0  
     }      }
       return $autoenrolldates;
 }  }
 END  
     return $output;  sub user_is_known {
       my $known = 0;
       if ($env{'user.name'} ne '' && $env{'user.name'} ne 'public' 
           && $env{'user.domain'} ne '' && $env{'user.domain'} ne 'public') {
           $known = 1;
       }
       return $known;
 }  }
   
 1;  1;

Removed from v.1.6  
changed lines
  Added in v.1.59


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