Diff for /loncom/interface/coursecatalog.pm between versions 1.30 and 1.42

version 1.30, 2008/05/29 19:58:32 version 1.42, 2008/09/23 13:14:32
Line 53  sub handler { Line 53  sub handler {
     }      }
     &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'},
                                               ['sortby','showdom']);
   
     my $codedom = &Apache::lonnet::default_login_domain();      my $codedom = &Apache::lonnet::default_login_domain();
   
Line 71  sub handler { Line 72  sub handler {
     }      }
     my $domdesc = &Apache::lonnet::domain($codedom,'description');      my $domdesc = &Apache::lonnet::domain($codedom,'description');
     &Apache::lonhtmlcommon::clear_breadcrumbs();      &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()) {      if ($env{'form.coursenum'} ne '' && &user_is_known()) {
         &course_details($r,$codedom,$formname,$domdesc);          &course_details($r,$codedom,$formname,$domdesc,\@trails,\%allitems);
     } else {      } else {
         my $catlinks = &category_breadcrumbs($codedom);          my ($catlinks,$has_subcats) = &category_breadcrumbs($codedom,@cats);
         my $catjs = <<"ENDSCRIPT";          my $catjs = <<"ENDSCRIPT";
   
 function setCatDepth(depth) {  function setCatDepth(depth) {
     document.coursecats.catalog_maxdepth.value = depth;      document.coursecats.catalog_maxdepth.value = depth;
       if (depth == '') {
           document.coursecats.currcat_0.value = '';
       }
     document.coursecats.submit();      document.coursecats.submit();
     return;      return;
 }  }
   
   function changeSort(caller) {
       document.$formname.sortby.value = caller;
       document.$formname.submit();
   }
   
   function setCourseId(caller) {
       document.$formname.coursenum.value = caller;
       document.$formname.submit();
   }
   
 ENDSCRIPT  ENDSCRIPT
           $catjs .= &courselink_javascript(); 
         my $numtitles;          my $numtitles;
         if ($env{'form.currcat_0'} eq 'instcode::0') {          if ($env{'form.currcat_0'} eq 'instcode::0') {
             $numtitles = &instcode_course_selector($r,$codedom,$formname,$domdesc,              $numtitles = &instcode_course_selector($r,$codedom,$formname,$domdesc,
Line 96  ENDSCRIPT Line 126  ENDSCRIPT
             $catjs = '<script type="text/javascript">'."\n".$catjs."\n".'</script>';              $catjs = '<script type="text/javascript">'."\n".$catjs."\n".'</script>';
             &cat_header($r,$codedom,$catjs,\%add_entries,$catlinks);              &cat_header($r,$codedom,$catjs,\%add_entries,$catlinks);
             if ($env{'form.currcat_0'} ne '') {              if ($env{'form.currcat_0'} ne '') {
                 $r->print(&print_course_listing($codedom));                  $r->print('<form name="'.$formname.
                             '" method="post" action="/adm/coursecatalog">'.
                             &additional_filters($codedom,$has_subcats)."\n");
                   my ($currdepth,$deeper) = &get_depth_values();
                   $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");
                   }
                   $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="'.
                             &mt('Display courses').'" /></form><br /><br />');
               }
               if ($env{'form.state'} eq 'listing') {
                   $r->print(&print_course_listing($codedom,undef,\@trails,\%allitems,$subcats));
             }              }
         }          }
     }      }
     $r->print(&Apache::loncommon::end_page());      $r->print('<br />'.&Apache::loncommon::end_page());
     return OK;      return OK;
 }  }
   
 sub course_details {  sub course_details {
     my ($r,$codedom,$formname,$domdesc) = @_;      my ($r,$codedom,$formname,$domdesc,$trails,$allitems) = @_;
     my $output;      my $output;
     my %add_entries = (topmargin    => "0",      my %add_entries = (topmargin    => "0",
                        marginheight => "0",);                         marginheight => "0",);
       my $js = '<script type="text/javascript">'."\n".
                &courselink_javascript().'</script>'."\n";
     my $start_page =      my $start_page =
         &Apache::loncommon::start_page('Course Catalog','',          &Apache::loncommon::start_page('Course Catalog',$js,
                                            {                                             {
                                              'add_entries' => \%add_entries,                                               'add_entries' => \%add_entries,
                                              'no_inline_link'   => 1,});                                               'no_inline_link'   => 1,});
Line 126  sub course_details { Line 176  sub course_details {
              {text=>"Course details"});               {text=>"Course details"});
     $r->print(&Apache::lonhtmlcommon::breadcrumbs('Course Details'));      $r->print(&Apache::lonhtmlcommon::breadcrumbs('Course Details'));
     $r->print('<br />'.&mt('Detailed course information:').'<br /><br />'.      $r->print('<br />'.&mt('Detailed course information:').'<br /><br />'.
               '<form name="'.$formname.'" method="post">'.                &print_course_listing($codedom,undef,$trails,$allitems).
               &print_course_listing($codedom).'<br /><br />');                '<br /><br />');
     $r->print('<a href = "javascript:document.coursecatalog.submit()">'.      $r->print('<form name="'.$formname.'" method="post" action="/adm/coursecatalog">'.
                 '<a href = "javascript:document.coursecatalog.submit()">'.
               &mt('Back to course listing').'</a>'.                &mt('Back to course listing').'</a>'.
               '<input type="hidden" name="sortby" value="'.                &Apache::lonhtmlcommon::echo_form_input(['coursenum','catalogfilter',
               $env{'form.sortby'}.'" />'.                                                         'showdetails','courseid']).'</form>');
               '<input type="hidden" name="state" value="listing" /></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 {  sub instcode_course_selector {
     my ($r,$codedom,$formname,$domdesc,$catlinks,$catjs) = @_;      my ($r,$codedom,$formname,$domdesc,$catlinks,$catjs) = @_;
     my %coursecodes = ();      my %coursecodes = ();
Line 212  function setElements() { Line 290  function setElements() {
                     $jscript .= '}';                      $jscript .= '}';
                 }                  }
             }              }
             if ($env{'form.state'} eq 'listing') {  
                 $jscript .= qq|  
 function changeSort(caller) {  
     document.$formname.sortby.value = caller;  
     document.$formname.submit();  
 }  
 function setCourseId(caller) {  
    document.$formname.coursenum.value = caller;  
    document.$formname.submit();   
 }\n|;  
             }  
         }          }
         $js = '<script type"text/javascript">'."\n$jscript\n$catjs\n".          $js = '<script type"text/javascript">'."\n$jscript\n$catjs\n".
               '</script>';                '</script>';
Line 232  function setCourseId(caller) { Line 299  function setCourseId(caller) {
         &cat_header($r,$codedom,$js,\%add_entries,$catlinks,$numtitles);          &cat_header($r,$codedom,$js,\%add_entries,$catlinks,$numtitles);
         my $cat_maxdepth = $env{'form.catalog_maxdepth'};          my $cat_maxdepth = $env{'form.catalog_maxdepth'};
         $r->print('<form name="'.$formname.'" method="post" action="/adm/coursecatalog">'.          $r->print('<form name="'.$formname.'" method="post" action="/adm/coursecatalog">'.
                   '<input type="hidden" name="catalog_maxdepth" value="'.$cat_maxdepth.'" />'.                    '<input type="hidden" name="catalog_maxdepth" value="'.$cat_maxdepth.'" />'."\n".
                   '<input type="hidden" name="showdom" value="'.$env{'form.showdom'}.'" />'.                    '<input type="hidden" name="showdom" value="'.$env{'form.showdom'}.'" />'."\n".
                   '<input type="hidden" name="currcat_0" value="instcode::0" />');                    '<input type="hidden" name="currcat_0" value="instcode::0" />'.
                     &additional_filters($codedom));
         if ($numtitles > 0) {          if ($numtitles > 0) {
             $r->print('<br /><b>'.&mt('Choose which course(s) to list.').'</b><br />');              $r->print('<b>'.&mt('Choose which course(s) to list.').'</b><br />');
             $r->print('<table><tr>');              $r->print('<table><tr>');
             for (my $k=0; $k<$lasttitle-1; $k++) {              for (my $k=0; $k<$lasttitle-1; $k++) {
                 my (@items,@unsorted);                  my (@items,@unsorted);
Line 267  function setCourseId(caller) { Line 335  function setCourseId(caller) {
                       '<select name="'.$codetitles[$lasttitle-1].'">'."\n".                        '<select name="'.$codetitles[$lasttitle-1].'">'."\n".
                       '<option value="0">All'."\n".                        '<option value="0">All'."\n".
                       '</option>'."\n".'</select>'."\n".                        '</option>'."\n".'</select>'."\n".
                  '</td>'                   '</td></tr></table>'."\n");
                 );  
             my $show_selfenroll_status;  
             if ($env{'form.showselfenroll'}) {  
                 $show_selfenroll_status = 'checked="checked" ';  
             }  
             if (&user_is_dc($codedom)) {  
                 my $showdetails_status;  
                 if ($env{'form.showdetails'}) {  
                     $showdetails_status = 'checked="checked" ';  
                 }  
                 $r->print('<td></td><td><label><input type="checkbox" name="showdetails" value="1" '.$showdetails_status.'/>'.&mt('Show full details for each course (DC only)').'</label><br /><label><input type="checkbox" name="showselfenroll" value="1" '.$show_selfenroll_status.'/>'.&mt('Only show courses which allow self-enrollment').'</label></td>');  
             } else {  
                 $r->print('<td></td><td><br /><label><input type="checkbox" name="showselfenroll" value="1" '.$show_selfenroll_status.'/>'.&mt('Only show courses which allow self-enrollment').'</label></td>');  
             }  
             $r->print('</tr></table>');  
             if ($numtitles > 4) {              if ($numtitles > 4) {
                 $r->print('<br /><br />'.$codetitles[$numtitles-1].'<br />'."\n".                  $r->print('<br /><br />'.$codetitles[$numtitles-1].'<br />'."\n".
                 '<input type="text" name="'.$codetitles[$numtitles-1].'" /><br />'."\n");                  '<input type="text" name="'.$codetitles[$numtitles-1].'" /><br />'."\n");
             }              }
             $r->print('<br />');              $r->print('<br />');
         }          }
         $r->print('<input type="hidden" name="coursenum" value="" /><input type="hidden" name="sortby" value="" /><input type="hidden" name="state" value="listing" /><input type="hidden" name="form.currcat_0" value="instcode::0" />');          $r->print('<input type="hidden" name="coursenum" value="" />'."\n".
         if ($numtitles > 0) {                    '<input type="hidden" name="sortby" value="" />'."\n".
             $r->print('<input type="submit" name="catalogfilter" value="'.&mt('Display courses').'" />');                    '<input type="hidden" name="state" value="listing" />'."\n".
         }                    '<input type="hidden" name="form.currcat_0" value="instcode::0" />'."\n".
         $r->print('<input type="hidden" name="numtitles" value="'.                    '<input type="submit" name="catalogfilter" value="'.
                   $numtitles.'" /></form>');                    &mt('Display courses').'" />'.
         if (($numtitles > 0) && ($env{'form.state'} eq 'listing')) {                    '<input type="hidden" name="numtitles" value="'.$numtitles.
             $r->print('<br />');                    '" /></form><br /><br />');
         }  
     } else {      } else {
         &cat_header($r,$codedom,$js,\%add_entries,$catlinks,$numtitles);          &cat_header($r,$codedom,$js,\%add_entries,$catlinks,$numtitles);
         my $cat_maxdepth = $env{'form.catalog_maxdepth'};          my $cat_maxdepth = $env{'form.catalog_maxdepth'};
Line 335  sub cat_header { Line 387  sub cat_header {
           text=>"Select courses"});            text=>"Select courses"});
         $r->print(&Apache::lonhtmlcommon::breadcrumbs('Select courses'));          $r->print(&Apache::lonhtmlcommon::breadcrumbs('Select courses'));
     }      }
     $r->print('<table border="0"><tr>'.      $r->print('<form name="coursecatdom" method="post" action="/adm/coursecatalog">'.
               '<form name="coursecatdom" method="post" action="/adm/coursecatalog">'.                '<table border="0"><tr><td><b>'.&mt('Domain:').'</b></td><td>'.
               '<td><b>'.&mt('Domain:').'</b></td><td>'.  
               &Apache::loncommon::select_dom_form($codedom,'showdom','',1).                &Apache::loncommon::select_dom_form($codedom,'showdom','',1).
       '&nbsp;<input type="submit" name="godom" value="Go"></td></form></tr><tr>'.        '&nbsp;<input type="submit" name="godom" value="'.&mt('Change').'" /></td></tr></table></form>'.
       '<form name="coursecats" method="post" action="/adm/coursecatalog">'.        '<form name="coursecats" method="post" action="/adm/coursecatalog">'.
               $catlinks.'</form></tr></table>');                '<table border="0"><tr>'.$catlinks.'</tr></table></form>');
     return;      return;
 }  }
   
 sub category_breadcrumbs {  sub category_breadcrumbs {
     my ($dom) = @_;      my ($dom,@cats) = @_;
     my %domconfig =      my ($currdepth,$deeper) = &get_depth_values();
         &Apache::lonnet::get_dom('configuration',['coursecategories'],$dom);      my $currcat_str = '<input type="hidden" name="catalog_maxdepth" value="'.$deeper.'" /><input type="hidden" name="showdom" value="'.$dom.'" />';
     my (@cats,@trails,%allitems,%idx,@jsarray);  
     &Apache::loncommon::extract_categories($domconfig{'coursecategories'},\@cats,\@trails,  
                                            \%allitems,\%idx,\@jsarray);  
     my $currdepth = 0;  
     my $deeper = 0;  
     my $currcat_str;  
     if ($env{'form.catalog_maxdepth'} ne '') {  
         $currdepth = $env{'form.catalog_maxdepth'};  
         if ($env{'form.currcat_'.$currdepth} eq '') {  
             $deeper = $currdepth;  
         } else {  
             $deeper = $currdepth + 1;  
         }  
     }  
     $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>';      my $catlinks = '<td valign="top"><b>'.&mt('Catalog:').'</b></td><td><table><tr>';
       my $has_subcats;
     for (my $i=0; $i<$deeper; $i++) {      for (my $i=0; $i<$deeper; $i++) {
         $currcat_str .= '<input type="hidden" name="currcat_'.$i.'" value="'.$env{'form.currcat_'.$i}.'" />';          $currcat_str .= '<input type="hidden" name="currcat_'.$i.'" value="'.$env{'form.currcat_'.$i}.'" />';
         my ($cattitle,$shallower);          my ($cattitle,$shallower);
Line 382  sub category_breadcrumbs { Line 419  sub category_breadcrumbs {
         if (ref($cats[0]) eq 'ARRAY') {          if (ref($cats[0]) eq 'ARRAY') {
             if ((@{$cats[0]} == 1) && ($cats[0][0] eq 'instcode')) {              if ((@{$cats[0]} == 1) && ($cats[0][0] eq 'instcode')) {
                 $catlinks .= &mt('Official courses (with institutional codes)').                  $catlinks .= &mt('Official courses (with institutional codes)').
                              '<input type="hidden" name="currcat_0" value="instcode::0">';                               '<input type="hidden" name="currcat_0" value="instcode::0" />';
                 $env{'form.currcat_0'} = 'instcode::0';                  $env{'form.currcat_0'} = 'instcode::0';
             } else {              } else {
                   $has_subcats = 1;
                 $catlinks .= '<select name="currcat_0">'."\n";                  $catlinks .= '<select name="currcat_0">'."\n";
                 if (@{$cats[0]} > 1) {                  if (@{$cats[0]} > 1) {
                     my $selstr;                      my $selstr;
                     if ($env{'form.currcat_0'} eq '') {                      if ($env{'form.currcat_0'} eq '') {
                         $selstr = ' selected="selected" ';                          $selstr = ' selected="selected" ';
                     }                      }
                     $catlinks .= '<option value=""'.$selstr.'>'.&mt('Select').'</option>'."\n";                      $catlinks .= '<option value=""  selected="selected">'.&mt('Select').'</option>'."\n";
                 }                  }
                 for (my $i=0; $i<@{$cats[0]}; $i++) {                  for (my $i=0; $i<@{$cats[0]}; $i++) {
                     my $name = $cats[0][$i];                      my $name = $cats[0][$i];
                     my $item = &escape($name).'::0';                      my $item = &escape($name).'::0';
                     my $selstr;                      $catlinks .= '<option value="'.$item.'">';
                     if ($env{'form.currcat_'.$i} eq $item) {  
                         $selstr = ' selected="selected" ';  
                     }  
                     $catlinks .= '<option value="'.$item.'"'.$selstr.'>';  
                     if ($name eq 'instcode') {                      if ($name eq 'instcode') {
                         $catlinks .= &mt('Official courses (with institutional codes)');                          $catlinks .= &mt('Official courses (with institutional codes)');
                     } else {                      } else {
Line 409  sub category_breadcrumbs { Line 443  sub category_breadcrumbs {
                     $catlinks .= '</option>'."\n";                      $catlinks .= '</option>'."\n";
                 }                  }
                 $catlinks .= '</select>'."\n".                  $catlinks .= '</select>'."\n".
                              '&nbsp;<input type="submit" name="gocats" value="Go" />';                               '&nbsp;<input type="submit" name="gocats" value="'.&mt('Change').'" />';
             }              }
         } else {          } else {
             $catlinks .= &mt('Official courses (with institutional codes)').              $catlinks .= &mt('Official courses (with institutional codes)').
                          '<input type="hidden" name="currcat_0" value="instcode::0">';                           '<input type="hidden" name="currcat_0" value="instcode::0" />';
             $env{'form.currcat_0'} = 'instcode::0';              $env{'form.currcat_0'} = 'instcode::0';
         }          }
     } else {      } else {
Line 431  sub category_breadcrumbs { Line 465  sub category_breadcrumbs {
         }          }
         $catlinks .= '<td>'.$currcat;          $catlinks .= '<td>'.$currcat;
         if (ref($cats[$deeper]{$cat}) eq 'ARRAY') {          if (ref($cats[$deeper]{$cat}) eq 'ARRAY') {
               $has_subcats = 1;
               my $selstr;
             $catlinks .= ':&nbsp;<select name="currcat_'.$deeper.'">'.              $catlinks .= ':&nbsp;<select name="currcat_'.$deeper.'">'.
                          '<option value="" selected="selected">'.&mt('Select').'</option>';                           '<option value="" selected="selected">'.
                            &mt('Select').'</option>';
             for (my $k=0; $k<@{$cats[$deeper]{$cat}}; $k++) {              for (my $k=0; $k<@{$cats[$deeper]{$cat}}; $k++) {
                 my $name = $cats[$deeper]{$cat}[$k];                  my $name = $cats[$deeper]{$cat}[$k];
                 my $item = &escape($name).':'.&escape($cat).':'.$deeper;                  my $item = &escape($name).':'.&escape($cat).':'.$deeper;
                 $catlinks .= '<option value="'.$item.'">'.$name.'</option>'."\n";                  $catlinks .= '<option value="'.$item.'">'.$name.'</option>'."\n";
             }              }
             $catlinks .= '</select>'."\n".              $catlinks .= '</select>'."\n".
                          '&nbsp;<input type="submit" name="gocats" value="Go" />';                           '&nbsp;<input type="submit" name="gocats" value="'.&mt('Change').'" />';
         }          }
     }      }
     $catlinks .= $currcat_str.'</td></tr></table></td>';      $catlinks .= $currcat_str.'</td></tr></table></td>';
     return $catlinks;      return ($catlinks,$has_subcats);
   }
   
   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 additional_filters {
       my ($codedom,$has_subcats) = @_;
       my $output = '<table>';
       if (($env{'form.currcat_0'} ne 'instcode::0') && 
           ($env{'form.currcat_0'} ne '') && ($has_subcats)) {
           my $include_subcat_status;
           if ($env{'form.withsubcats'}) {
               $include_subcat_status = 'checked="checked" ';
           }
           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" ';
       }
       $output .= '<tr><td>'.
                  '<label><input type="checkbox" name="showselfenroll" value="1" '.
                  $show_selfenroll_status.'/>'.
                  &mt('Only show courses which allow self-enrollment').
                  '</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');
           $output .= '<tr><td>'."\n".
                      '<label><input type="checkbox" name="showdetails" value="1" '.
                      $showdetails_status.'/>'.
                      &mt('Show full details for each course ([_1] only)',$dc_title).
                      '</label>'."\n".'</td></tr><tr><td>'.
                      '<label><input type="checkbox" name="showhidden" value="1" '.
                      $showhidden_status.'/>'.
                      &mt('Include courses set to be hidden from catalog ([_1] only)',$dc_title).
                      '</label>'."\n".'</td></tr>';
       }
       $output .= '</table><br />';
       return $output;
 }  }
   
 sub user_is_dc {  sub user_is_dc {
Line 566  sub search_official_courselist { Line 676  sub search_official_courselist {
             $instcode = '.';              $instcode = '.';
         }          }
     }      }
     my %courses = &Apache::lonnet::courseiddump($domain,'.',1,$instcode,'.','.',      my $showhidden;
                                                 undef,undef,'Course',1,      if (&user_is_dc($domain)) {
                                                 $env{'form.showselfenroll'});          $showhidden = $env{'form.showhidden'};
       }
       my %courses = 
           &Apache::lonnet::courseiddump($domain,'.',1,$instcode,'.','.',undef,undef,
                                         'Course',1,$env{'form.showselfenroll'},undef,
                                         $showhidden,'coursecatalog');
     return %courses;      return %courses;
 }  }
   
 sub search_courselist {  sub search_courselist {
     my ($domain) = @_;      my ($domain,$subcats) = @_;
     my $cat_maxdepth = $env{'form.catalog_maxdepth'};      my $cat_maxdepth = $env{'form.catalog_maxdepth'};
     my $filter = $env{'form.currcat_'.$cat_maxdepth};      my $filter = $env{'form.currcat_'.$cat_maxdepth};
     if (($filter eq '') && ($cat_maxdepth > 0)) {      if (($filter eq '') && ($cat_maxdepth > 0)) {
Line 581  sub search_courselist { Line 696  sub search_courselist {
         $filter = $env{'form.currcat_'.$shallower};          $filter = $env{'form.currcat_'.$shallower};
     }      }
     my %courses;      my %courses;
       my $filterstr;
     if ($filter ne '') {      if ($filter ne '') {
         %courses = &Apache::lonnet::courseiddump($domain,'.',1,'.','.','.',          if ($env{'form.withsubcats'}) {
                                                  undef,undef,'Course',1,              if (ref($subcats) eq 'HASH') {
                                                  $env{'form.showselfenroll'},$filter);                  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;
           if (&user_is_dc($domain)) {
               $showhidden = $env{'form.showhidden'};
           }
           %courses = 
               &Apache::lonnet::courseiddump($domain,'.',1,'.','.','.',undef,undef,
                                             '.',1,$env{'form.showselfenroll'},
                                             $filterstr,$showhidden,'coursecatalog');
     }      }
     return %courses;      return %courses;
 }  }
   
 sub print_course_listing {  sub print_course_listing {
     my ($domain,$numtitles) = @_;      my ($domain,$numtitles,$trails,$allitems,$subcats) = @_;
     my $output;      my $output;
     my %courses;      my %courses;
     my $knownuser = &user_is_known();      my $knownuser = &user_is_known();
Line 603  sub print_course_listing { Line 740  sub print_course_listing {
     if ($env{'form.coursenum'} ne '') {      if ($env{'form.coursenum'} ne '') {
         %courses = &Apache::lonnet::courseiddump($domain,'.',1,'.','.',          %courses = &Apache::lonnet::courseiddump($domain,'.',1,'.','.',
                                                  $env{'form.coursenum'},                                                   $env{'form.coursenum'},
                                                  undef,undef,'Course',1);                                                   undef,undef,'.',1);
         if (keys(%courses) == 0) {          if (keys(%courses) == 0) {
             $output .= &mt('The courseID provided does not match a course in this domain.');              $output .= &mt('The courseID provided does not match a course in this domain.');
             return $output;              return $output;
Line 612  sub print_course_listing { Line 749  sub print_course_listing {
         if ($env{'form.currcat_0'} eq 'instcode::0') {          if ($env{'form.currcat_0'} eq 'instcode::0') {
             %courses = &search_official_courselist($domain,$numtitles);              %courses = &search_official_courselist($domain,$numtitles);
         } else {          } else {
             %courses = &search_courselist($domain);              %courses = &search_courselist($domain,$subcats);
         }          }
         if (keys(%courses) == 0) {          if (keys(%courses) == 0) {
             $output = &mt('No courses match the criteria you selected.');              $output = &mt('No courses match the criteria you selected.');
             return $output;              return $output;
         }          }
         if ($knownuser && !$env{'form.showdetails'}) {          if (($knownuser) && (!$env{'form.showdetails'}) && (!&user_is_dc($domain))) {
             $output = &mt('<b>Note for students:</b> 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 />');              $output = '<b>'.&mt('Note for students:').'</b> '
                        .&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 $now = time;
     my %domconfig =      my %domconfig =
         &Apache::lonnet::get_dom('configuration',['usercreation'],$domain);          &Apache::lonnet::get_dom('configuration',['usercreation'],$domain);
     $output .= &construct_data_table($knownuser,\%courses,$details,undef,$now,\%domconfig);      $output .= &construct_data_table($knownuser,\%courses,$details,undef,$now,\%domconfig,$trails,$allitems);
     $output .= &Apache::lonhtmlcommon::echo_form_input(['coursenum','state','catalogfilter','sortby','showdetails']);      $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;      return $output;
 }  }
   
 sub construct_data_table {  sub construct_data_table {
     my ($knownuser,$courses,$details,$usersections,$now,$domconfig) = @_;      my ($knownuser,$courses,$details,$usersections,$now,$domconfig,$trails,
           $allitems) = @_;
     my %sortname;      my %sortname;
     if (($details eq '') || ($env{'form.showdetails'})) {      if (($details eq '') || ($env{'form.showdetails'})) {
         $sortname{'Code'} = 'code';          $sortname{'Code'} = 'code';
           $sortname{'Categories'} = 'cats';
         $sortname{'Title'} = 'title';          $sortname{'Title'} = 'title';
         $sortname{'Owner(s)'} = 'owner';          $sortname{'Owner(s)'} = 'owner';
     }      }
     my $output = &Apache::loncommon::start_data_table().      my $output = &Apache::loncommon::start_data_table().
                  &Apache::loncommon::start_data_table_header_row();                   &Apache::loncommon::start_data_table_header_row();
     my @coltitles = ('Count','Code','Sections','Crosslisted','Title','Owner(s)');      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') {      if (ref($usersections) eq 'HASH') {
        $coltitles[1] = 'Your Section';         $coltitles[1] = 'Your Section';
     }      }
Line 660  sub construct_data_table { Line 810  sub construct_data_table {
             $output .=              $output .=
               '<th>'.&mt('Default Access Dates for Students').'</th>'.                '<th>'.&mt('Default Access Dates for Students').'</th>'.
               '<th>'.&mt('Student Counts').'</th>'.                '<th>'.&mt('Student Counts').'</th>'.
               '<th>'.&mt('Auto-enrollment of <br />registered students').'</th>';                '<th>'.&mt('Auto-enrollment of[_1]registered students','<br />').'</th>';
         } else {          } else {
             $output .= '<th>'.&mt('Details').'</th>';              $output .= '<th>'.&mt('Details').'</th>';
         }          }
Line 673  sub construct_data_table { Line 823  sub construct_data_table {
     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}{'ownerlastnames'}}},$course);              push(@{$Sortby{$courseinfo{$course}{'ownerlastnames'}}},$course);
         } else {          } else {
Line 685  sub construct_data_table { Line 837  sub construct_data_table {
         }          }
     }      }
     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));
Line 694  sub construct_data_table { Line 847  sub construct_data_table {
     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},$knownuser,              $output.=&courseinfo_row($courseinfo{$course},$knownuser,$details,
                                      $details,\$count,$now,$course);                                       \$count,$now,$course,$trails,$allitems);
             $output.=&Apache::loncommon::end_data_table_row();              $output.=&Apache::loncommon::end_data_table_row();
         }          }
     }      }
Line 716  sub build_courseinfo_hash { Line 869  sub build_courseinfo_hash {
         $cleandesc=~s/'/\\'/g;          $cleandesc=~s/'/\\'/g;
         $cleandesc =~ s/^\s+//;          $cleandesc =~ s/^\s+//;
         my ($cdom,$cnum)=split(/\_/,$course);          my ($cdom,$cnum)=split(/\_/,$course);
         my ($descr,$instcode,$singleowner,$ttype,$selfenroll_types,          my ($instcode,$singleowner,$ttype,$selfenroll_types,
             $selfenroll_start,$selfenroll_end,@owners,%ownernames);              $selfenroll_start,$selfenroll_end,@owners,%ownernames,$categories);
         if (ref($courses->{$course}) eq 'HASH') {          if (ref($courses->{$course}) eq 'HASH') {
             $descr = $courses->{$course}{'description'};              $descr = $courses->{$course}{'description'};
             $instcode =  $courses->{$course}{'inst_code'};              $instcode =  $courses->{$course}{'inst_code'};
Line 726  sub build_courseinfo_hash { Line 879  sub build_courseinfo_hash {
             $selfenroll_types = $courses->{$course}{'selfenroll_types'};              $selfenroll_types = $courses->{$course}{'selfenroll_types'};
             $selfenroll_start = $courses->{$course}{'selfenroll_start_date'};              $selfenroll_start = $courses->{$course}{'selfenroll_start_date'};
             $selfenroll_end = $courses->{$course}{'selfenroll_end_date'};              $selfenroll_end = $courses->{$course}{'selfenroll_end_date'};
               $categories = $courses->{$course}{'categories'};
             push(@owners,$singleowner);              push(@owners,$singleowner);
             if (ref($courses->{$course}{'co-owners'}) eq 'ARRAY') {              if (ref($courses->{$course}{'co-owners'}) eq 'ARRAY') {
                 foreach my $item (@{$courses->{$course}{'co-owners'}}) {                  foreach my $item (@{$courses->{$course}{'co-owners'}}) {
Line 763  sub build_courseinfo_hash { Line 917  sub build_courseinfo_hash {
         $courseinfo{$course}{'selfenroll_types'} = $selfenroll_types;          $courseinfo{$course}{'selfenroll_types'} = $selfenroll_types;
         $courseinfo{$course}{'selfenroll_start'} = $selfenroll_start;          $courseinfo{$course}{'selfenroll_start'} = $selfenroll_start;
         $courseinfo{$course}{'selfenroll_end'} = $selfenroll_end;          $courseinfo{$course}{'selfenroll_end'} = $selfenroll_end;
           $courseinfo{$course}{'categories'} = $categories;
   
         my %coursehash = &Apache::lonnet::dump('environment',$cdom,$cnum);          my %coursehash = &Apache::lonnet::dump('environment',$cdom,$cnum);
         my @classids;          my @classids;
Line 798  sub build_courseinfo_hash { Line 953  sub build_courseinfo_hash {
             if ( defined($coursehash{'default_enrollment_end_date'}) ) {              if ( defined($coursehash{'default_enrollment_end_date'}) ) {
                 $endaccess = &Apache::lonlocal::locallocaltime($coursehash{'default_enrollment_end_date'});                  $endaccess = &Apache::lonlocal::locallocaltime($coursehash{'default_enrollment_end_date'});
                 if ($coursehash{'default_enrollment_end_date'} == 0) {                  if ($coursehash{'default_enrollment_end_date'} == 0) {
                     $endaccess = "No ending date";                      $endaccess = &mt('No ending date');
                 }                  }
             }              }
             if ($startaccess) {              if ($startaccess) {
                 $accessdates .= &mt('<i>From:</i> ').$startaccess.'<br />';                  $accessdates .= '<i>'.&mt('From:[_1]','</i> '.$startaccess).'<br />';
             }              }
             if ($endaccess) {              if ($endaccess) {
                 $accessdates .= &mt('<i>To:</i> ').$endaccess.'<br />';                  $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;              $courseinfo{$course}{'access'} = $accessdates;
         }          }
Line 846  sub count_students { Line 1028  sub count_students {
 }  }
   
 sub courseinfo_row {  sub courseinfo_row {
     my ($info,$knownuser,$details,$countref,$now,$course) = @_;      my ($info,$knownuser,$details,$countref,$now,$course,$trails,$allitems) = @_;
     my ($cdom,$cnum,$title,$ownerlast,$code,$owner,$seclist,$xlist_items,      my ($cdom,$cnum,$title,$ownerlast,$code,$owner,$seclist,$xlist_items,
         $accessdates,$showsyllabus,$counts,$autoenrollment,$output);          $accessdates,$showsyllabus,$counts,$autoenrollment,$output,$categories);
     if (ref($info) eq 'HASH') {      if (ref($info) eq 'HASH') {
         $cdom = $info->{'cdom'};          $cdom = $info->{'cdom'};
         $cnum = $info->{'cnum'};          $cnum = $info->{'cnum'};
Line 862  sub courseinfo_row { Line 1044  sub courseinfo_row {
         $counts = $info->{'counts'};          $counts = $info->{'counts'};
         $autoenrollment = $info->{'autoenrollment'};          $autoenrollment = $info->{'autoenrollment'};
         $showsyllabus = $info->{'showsyllabus'};          $showsyllabus = $info->{'showsyllabus'};
           $categories = $info->{'categories'};
     } else {      } else {
         $output = '<td colspan="8">'.&mt('No information available for [_1].',          $output = '<td colspan="8">'.&mt('No information available for [_1].',
                                          $code).'</td>';                                           $code).'</td>';
         return $output;          return $output;
     }      }
     $output .= '<td>'.$$countref.'</td>'.      $output .= '<td>'.$$countref.'</td>';
                '<td>'.$code.'</td>'.      if ($env{'form.currcat_0'} eq 'instcode::0') {
                '<td>'.$seclist.'</td>'.          $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>'.$xlist_items.'</td>'.
                '<td>'.$title.'&nbsp;<font size="-2">';                 '<td>'.$title.'&nbsp;<font size="-2">';
     if ($showsyllabus) {      if ($showsyllabus) {
         $output .= &Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$cnum,$cdom);          $output .= '<a href="javascript:ToSyllabus('."'$cdom','$cnum'".')">'.&mt('Syllabus').'</a>';
     } else {      } else {
         $output .= '&nbsp;';          $output .= '&nbsp;';
     }      }
Line 897  sub courseinfo_row { Line 1095  sub courseinfo_row {
             if (($info->{'selfenroll_start'} > 0) && ($info->{'selfenroll_start'} > $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>';                  $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 {               } else { 
                 $output .= '<td><a href="/adm/selfenroll?cid='.$course.'">'.&mt('Enroll in course').'</a></td>';                  $output .= '<td><a href="javascript:ToSelfenroll('."'$course'".')">'.&mt('Enroll in course').'</a></td>';
             }              }
             $selfenroll = 1;              $selfenroll = 1;
         }          }
Line 927  sub identify_sections { Line 1125  sub identify_sections {
         }          }
     }      }
     @secnums = sort {$a <=> $b} @secnums;      @secnums = sort {$a <=> $b} @secnums;
     my $seclist = join(', ',@secnums);      $seclist = join(', ',@secnums);
     my $numsec = @secnums;      my $numsec = @secnums;
     return ($seclist,$numsec);      return ($seclist,$numsec);
 }  }
Line 964  sub get_valid_classes { Line 1162  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'}});
         }          }
     }      }
Line 1133  sub autoenroll_info { Line 1331  sub autoenroll_info {
                    &get_valid_classes($seclist,$xlist_items,$code,                     &get_valid_classes($seclist,$xlist_items,$code,
                                       $owners,$cdom,$cnum);                                        $owners,$cdom,$cnum);
                 if ($valid_classes ne '') {                  if ($valid_classes ne '') {
                     $autoenrolldates = &mt('Not enabled<br />Starts: ').                      $autoenrolldates = &mt('Not enabled').'<br />'
                                        $autostart.'<br />'.$valid_classes;                }                                        .&mt('Starts: [_1]',$autostart)
                                         .'<br />'.$valid_classes;
                   }
             }              }
         } else {          } else {
             if ($coursehash->{'internal.autoend'} && $coursehash->{'internal.autoend'} < $now) {              if ($coursehash->{'internal.autoend'} && $coursehash->{'internal.autoend'} < $now) {
                 $autoenrolldates = &mt('Not enabled<br />Ended: ').$autoend;                  $autoenrolldates = &mt('Not enabled').'<br />'
                                     .&mt('Ended: [_1]',$autoend);
             } else {              } else {
                 my $valid_classes = &get_valid_classes($seclist,$xlist_items,                  my $valid_classes = &get_valid_classes($seclist,$xlist_items,
                                                        $code,$owners,$cdom,$cnum);                                                         $code,$owners,$cdom,$cnum);
                 if ($valid_classes ne '') {                  if ($valid_classes ne '') {
                     $autoenrolldates = &mt('Currently enabled<br />').                      $autoenrolldates = &mt('Currently enabled').'<br />'.
                                        $valid_classes;                                         $valid_classes;
                 }                  }
             }              }

Removed from v.1.30  
changed lines
  Added in v.1.42


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