Diff for /loncom/interface/coursecatalog.pm between versions 1.27 and 1.28

version 1.27, 2008/03/08 04:00:53 version 1.28, 2008/05/29 04:29:33
Line 54  sub handler { Line 54  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']);
     my $codedom = &Apache::lonnet::default_login_domain();   
       my $codedom = &Apache::lonnet::default_login_domain();
   
     if (($env{'user.domain'} ne '') && ($env{'user.domain'} ne 'public')) {       if (($env{'user.domain'} ne '') && ($env{'user.domain'} ne 'public')) { 
         $codedom = $env{'user.domain'};          $codedom = $env{'user.domain'};
Line 63  sub handler { Line 64  sub handler {
         }          }
     }      }
     my $formname = 'coursecatalog';      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');      my $domdesc = &Apache::lonnet::domain($codedom,'description');
   
     &Apache::lonhtmlcommon::clear_breadcrumbs();      &Apache::lonhtmlcommon::clear_breadcrumbs();
     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);
     } else {      } else {
         my $numtitles = &course_selector($r,$codedom,$formname,$domdesc);          my $catlinks = &category_breadcrumbs($codedom);
         if ($env{'form.state'} eq 'listing') {          my $catjs = <<"ENDSCRIPT";
             $r->print(&print_course_listing($codedom,$numtitles).'<br />');  
   function setCatDepth(depth) {
       document.coursecats.catalog_maxdepth.value = depth;
       document.coursecats.submit();
       return;
   }
   
   ENDSCRIPT
           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);
               $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(&print_course_listing($codedom));
               }
         }          }
     }      }
     $r->print(&Apache::loncommon::end_page());      $r->print(&Apache::loncommon::end_page());
Line 100  sub course_details { Line 126  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="coursecatalog" method="post">'.                '<form name="'.$formname.'" method="post">'.
               &print_course_listing($codedom).'<br /><br />');                &print_course_listing($codedom).'<br /><br />');
     $r->print('<a href = "javascript:document.coursecatalog.submit()">'.      $r->print('<a href = "javascript:document.coursecatalog.submit()">'.
               &mt('Back to course listing').'</a>'.                &mt('Back to course listing').'</a>'.
Line 109  sub course_details { Line 135  sub course_details {
               '<input type="hidden" name="state" value="listing" /></form>');                '<input type="hidden" name="state" value="listing" /></form>');
 }  }
   
 sub course_selector {  sub instcode_course_selector {
     my ($r,$codedom,$formname,$domdesc) = @_;      my ($r,$codedom,$formname,$domdesc,$catlinks,$catjs) = @_;
     my %coursecodes = ();      my %coursecodes = ();
     my %codes = ();      my %codes = ();
     my @codetitles = ();      my @codetitles = ();
Line 195  function setCourseId(caller) { Line 221  function setCourseId(caller) {
 }\n|;  }\n|;
             }              }
         }          }
         my $js = '<script type"text/javascript">'."\n$jscript\n".          my $js = '<script type"text/javascript">'."\n$jscript\n$catjs\n".
                  '</script>';                   '</script>';
         my %add_entries = (topmargin    => "0",          my %add_entries = (topmargin    => "0",
                            marginheight => "0",);                             marginheight => "0",);
         if (($env{'form.state'} eq 'listing') && ($numtitles > 0)) {          if (($env{'form.state'} eq 'listing') && ($numtitles > 0)) {
             $add_entries{'onLoad'} = 'setElements()';              $add_entries{'onLoad'} = 'setElements()';
         }          }
         my $start_page =          &cat_header($r,$codedom,$js,\%add_entries,$catlinks,$numtitles);
             &Apache::loncommon::start_page('Course Catalog',$js,          my $cat_maxdepth = $env{'form.catalog_maxdepth'};
                                            {          $r->print('<form name="'.$formname.'" method="post" action="/adm/coursecatalog">'.
                                              'add_entries' => \%add_entries,                    '<input type="hidden" name="catalog_maxdepth" value="'.$cat_maxdepth.'" />'.
                                              'no_inline_link'   => 1,});                    '<input type="hidden" name="showdom" value="'.$env{'form.showdom'}.'" />'.
         $r->print($start_page);                    '<input type="hidden" name="currcat_0" value="instcode::0" />');
         if ($env{'form.state'} eq 'listing') {  
             if ($numtitles > 0) {  
                 &Apache::lonhtmlcommon::add_breadcrumb  
                 ({href=>"/adm/coursecatalog",  
                   text=>"Select courses"},  
                  {text=>"Course listing"});  
             } else {  
                 &Apache::lonhtmlcommon::add_breadcrumb  
                 ({text=>"Course listing"});  
             }  
             $r->print(&Apache::lonhtmlcommon::breadcrumbs('Course Listing'));  
         } else {  
             &Apache::lonhtmlcommon::add_breadcrumb  
             ({href=>"/adm/coursecatalog",  
               text=>"Select courses"});  
             $r->print(&Apache::lonhtmlcommon::breadcrumbs('Select courses'));  
         }  
         $r->print('<h3>'.&mt('Display information about official [_1] classes for which LON-CAPA courses have been created:',$domdesc).'</h3>');  
         $r->print('<form name="coursecatalog" method="post">');  
         if ($numtitles > 0) {          if ($numtitles > 0) {
             $r->print(&mt('<b>Choose which course(s) to list.</b><br />'));              $r->print('<br /><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 281  function setCourseId(caller) { Line 288  function setCourseId(caller) {
             }              }
             $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" />');          $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" />');
         if ($numtitles > 0) {          if ($numtitles > 0) {
             $r->print('<input type="submit" name="catalogfilter" value="'.&mt('Display courses').'" />');              $r->print('<input type="submit" name="catalogfilter" value="'.&mt('Display courses').'" />');
         }          }
         $r->print('<input type="hidden" name="numtitles" value="'.          $r->print('<input type="hidden" name="numtitles" value="'.
                   $numtitles.'" /></form>');                    $numtitles.'" /></form>');
         if (($numtitles > 0) && ($env{'form.state'} eq 'listing')) {          if (($numtitles > 0) && ($env{'form.state'} eq 'listing')) {
             $r->print('<br /><br />');              $r->print('<br />');
         }          }
     } else {      } else {
         $r->print(&Apache::loncommon::start_page('Course Catalog','',  
                   {  
                    'no_inline_link'   => 1,}));  
         $r->print('<br />'.&mt('No official courses to display for [_1].',$domdesc));          $r->print('<br />'.&mt('No official courses to display for [_1].',$domdesc));
     }      }
     return $numtitles;      return $numtitles;
 }  }
   
   sub cat_header {
       my ($r,$codedom,$js,$add_entries,$catlinks,$numtitles) = @_;
       my $start_page =
           &Apache::loncommon::start_page('Course Catalog',$js,
                                          {
                                            'add_entries' => $add_entries,
                                            'no_inline_link'   => 1,});
       $r->print($start_page);
       if ($env{'form.state'} eq 'listing') {
           if ($numtitles > 0) {
               &Apache::lonhtmlcommon::add_breadcrumb
                   ({href=>"/adm/coursecatalog",
                     text=>"Select courses"},
                    {text=>"Course listing"});
           } else {
               &Apache::lonhtmlcommon::add_breadcrumb
               ({text=>"Course listing"});
           }
           $r->print(&Apache::lonhtmlcommon::breadcrumbs('Course Listing'));
       } else {
           &Apache::lonhtmlcommon::add_breadcrumb
           ({href=>"/adm/coursecatalog",
             text=>"Select courses"});
           $r->print(&Apache::lonhtmlcommon::breadcrumbs('Select courses'));
       }
       $r->print('<table border="0"><tr>'.
                 '<form name="coursecatdom" method="post" action="/adm/coursecatalog">'.
                 '<td><b>'.&mt('Domain:').'</b></td><td>'.
                 &Apache::loncommon::select_dom_form($codedom,'showdom','',1).
         '&nbsp;<input type="submit" name="godom" value="Go"></td></form></tr><tr>'.
         '<form name="coursecats" method="post" action="/adm/coursecatalog">'.
                 $catlinks.'</form></tr></table>');
       return;
   }
   
   sub category_breadcrumbs {
       my ($dom) = @_;
       my %domconfig =
           &Apache::lonnet::get_dom('configuration',['coursecategories'],$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'};
           $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>';
       for (my $i=0; $i<$deeper; $i++) {
           $currcat_str .= '<input type="hidden" name="currcat_'.$i.'" value="'.$env{'form.currcat_'.$i}.'" />';
           my ($cattitle,$shallower);
           if ($i == 0) {
               $cattitle = &mt('Main Categories');
           } else {
               $shallower = $i-1;
               my ($cat,$container,$depth) = map { &unescape($_); } split(/:/,$env{'form.currcat_'.$shallower});
               $cattitle = $cat;
           }
           $catlinks .= '<td valign="top"><a href="javascript:setCatDepth('."'$shallower'".')">'.$cattitle.'</a>-&gt;</td>';
       }
       if ($deeper == 0) {
           $catlinks .= '<td>'.&mt('Main Categories').':&nbsp;';
           if (ref($cats[0]) eq 'ARRAY') {
               if ((@{$cats[0]} == 1) && ($cats[0][0] eq 'instcode')) {
                   $catlinks .= &mt('Official courses (with institutional codes)').
                                '<input type="hidden" name="currcat_0" value="instcode::0">';
                   $env{'form.currcat_0'} = 'instcode::0';
               } else {
                   $catlinks .= '<select name="currcat_0">'."\n";
                   if (@{$cats[0]} > 1) {
                       my $selstr;
                       if ($env{'form.currcat_0'} eq '') {
                           $selstr = ' selected="selected" ';
                       }
                       $catlinks .= '<option value=""'.$selstr.'>'.&mt('Select').'</option>'."\n";
                   }
                   for (my $i=0; $i<@{$cats[0]}; $i++) {
                       my $name = $cats[0][$i];
                       my $item = &escape($name).'::0';
                       my $selstr;
                       if ($env{'form.currcat_'.$i} eq $item) {
                           $selstr = ' selected="selected" ';
                       }
                       $catlinks .= '<option value="'.$item.'"'.$selstr.'>';
                       if ($name eq 'instcode') {
                           $catlinks .= &mt('Official courses (with institutional codes)');
                       } else {
                           $catlinks .= $name;
                       }
                       $catlinks .= '</option>'."\n";
                   }
                   $catlinks .= '</select>'."\n".
                                '&nbsp;<input type="submit" name="gocats" value="Go" />';
               }
           } else {
               $catlinks .= &mt('Official courses (with institutional codes)').
                            '<input type="hidden" name="currcat_0" value="instcode::0">';
               $env{'form.currcat_0'} = 'instcode::0';
           }
       } else {
           my ($cat,$container,$depth) = map { &unescape($_); } split(/:/,$env{'form.currcat_'.$currdepth});
           my $deeper = $depth +1;
           my $currcat = $cat;
           if ($cat eq 'instcode') {
               $currcat = &mt('Official courses (with institutional codes)');
           }
           $catlinks .= '<td>'.$currcat;
           if (ref($cats[$deeper]{$cat}) eq 'ARRAY') {
               $catlinks .= ':&nbsp;<select name="currcat_'.$deeper.'">'.
                            '<option value="" selected="selected">'.&mt('Select').'</option>';
               for (my $k=0; $k<@{$cats[$deeper]{$cat}}; $k++) {
                   my $name = $cats[$deeper]{$cat}[$k];
                   my $item = &escape($name).':'.&escape($cat).':'.$deeper;
                   $catlinks .= '<option value="'.$item.'">'.$name.'</option>'."\n";
               }
               $catlinks .= '</select>'."\n".
                            '&nbsp;<input type="submit" name="gocats" value="Go" />';
           }
       }
       $catlinks .= $currcat_str.'</td></tr></table></td>';
       return $catlinks;
   }
   
 sub user_is_dc {  sub user_is_dc {
     my ($codedom) = @_;      my ($codedom) = @_;
     if (exists($env{'user.role.dc./'.$codedom.'/'})) {      if (exists($env{'user.role.dc./'.$codedom.'/'})) {
Line 395  sub build_javascript { Line 525  sub build_javascript {
     return $output;      return $output;
 }  }
   
 sub search_courselist {  sub search_official_courselist {
     my ($domain,$numtitles) = @_;      my ($domain,$numtitles) = @_;
     my $instcode;      my $instcode;
     if (defined($numtitles) && $numtitles == 0) {      if (defined($numtitles) && $numtitles == 0) {
Line 425  sub search_courselist { Line 555  sub search_courselist {
     return %courses;      return %courses;
 }  }
   
   sub search_courselist {
       my ($domain) = @_;
       my $cat_maxdepth = $env{'form.catalog_maxdepth'};
       my $filter = $env{'form.currcat_'.$cat_maxdepth};
       my %courses;
       if ($filter ne '') {
           %courses = &Apache::lonnet::courseiddump($domain,'.',1,'.','.','.',
                                                    undef,undef,'Course',1,
                                                    $env{'form.showselfenroll'},$filter);
       }
       return %courses;
   }
   
 sub print_course_listing {  sub print_course_listing {
     my ($domain,$numtitles) = @_;      my ($domain,$numtitles) = @_;
Line 446  sub print_course_listing { Line 588  sub print_course_listing {
             return $output;              return $output;
         }          }
     } else {      } else {
         %courses = &search_courselist($domain,$numtitles);          if ($env{'form.currcat_0'} eq 'instcode::0') {
               %courses = &search_official_courselist($domain,$numtitles);
           } else {
               %courses = &search_courselist($domain);
           }
         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;

Removed from v.1.27  
changed lines
  Added in v.1.28


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