Diff for /loncom/interface/coursecatalog.pm between versions 1.81 and 1.82

version 1.81, 2014/03/18 02:03:16 version 1.82, 2014/04/28 01:48:04
Line 76  sub handler { Line 76  sub handler {
     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.catalog_maxdepth'} ne '') {  
         $env{'form.catalog_maxdepth'} =~ s{\D}{}g;  
     }  
   
     my %domconfig =      my %domconfig =
         &Apache::lonnet::get_dom('configuration',['coursecategories'],$codedom);          &Apache::lonnet::get_dom('configuration',['coursecategories'],$codedom);
     my (@cats,@trails,%allitems,%idx,@jsarray,%subcathash,$cathash);      my $knownuser = &user_is_known();
   
       my ($cathash,$cattype);
     if (ref($domconfig{'coursecategories'}) eq 'HASH') {      if (ref($domconfig{'coursecategories'}) eq 'HASH') {
         $cathash = $domconfig{'coursecategories'}{'cats'};          $cathash = $domconfig{'coursecategories'}{'cats'};
           if ($knownuser) {
               $cattype = $domconfig{'coursecategories'}{'auth'};
           } else {
               $cattype = $domconfig{'coursecategories'}{'unauth'};
           }
     } else {      } else {
         $cathash = {};          $cathash = {};
           $cattype eq 'std';
       }
       if ($cattype eq 'none') {
           $r->print(&Apache::loncommon::start_page('Course/Community Catalog'));
           &Apache::lonhtmlcommon::add_breadcrumb
           ({href=>"/adm/coursecatalog",
             text=>"Course/Community Catalog"});
           $r->print(&Apache::lonhtmlcommon::breadcrumbs('Course/Community Catalog'));
           if ($knownuser) {
               $r->print('<div>'.&mt('No catalog of LON-CAPA courses/communities is provided for: [_1]',$domdesc).'</div>');
           } else {
               if ($domconfig{'coursecategories'}{'auth'} eq 'none') {
                   $r->print('<div>'.&mt('No catalog of LON-CAPA courses/communities is provided for: [_1]',$domdesc).'</div>');
               } else {
                   $r->print('<div>'.&mt('The catalog of LON-CAPA courses/communities provided for: "[_1]" is only available to users who are logged in.',$domdesc).'</div>');
               }
           }      
           $r->print(&Apache::loncommon::end_page());
           return OK;
       }
   
       my $cnum; 
       if ($cattype eq 'codesrch') {
           my ($uniquecode,$codemsg,$brtext);
           if ($env{'form.uniquecode'}) {
               $uniquecode = $env{'form.uniquecode'};
               $uniquecode =~ s/^\s+|\s+$//g;
           }
           my $js = '<script type="text/javascript">'."\n".
                    '// <![CDATA['."\n".
                    &courselink_javascript()."\n".
                    '// ]]>'."\n".
                    '</script>'."\n";
           $r->print(&Apache::loncommon::start_page('Search for a Course/Community',$js));
           if ($uniquecode =~ /^\w{6}$/) {
               &Apache::lonhtmlcommon::add_breadcrumb
               ({href=>"/adm/coursecatalog",
                 text=>"Course/Community Catalog"});
               $brtext = 'Search Result';
           } else {
               $brtext = 'Course/Community Catalog';
           }
           &Apache::lonhtmlcommon::add_breadcrumb
           ({href=>"/adm/coursecatalog",
             text=>"$brtext"});
           $r->print(&Apache::lonhtmlcommon::breadcrumbs('Course/Community Catalog'));
           $r->print(&coursesearch($codedom,$domdesc,$uniquecode));
           if ($uniquecode =~ /^\w{6}$/) {
               $r->print('<hr />');
               my $confname = $codedom.'-domainconfig';
               my %codes = &Apache::lonnet::get('uniquecodes',[$uniquecode],$codedom,$confname);
               if ($codes{$uniquecode}) {
                   $cnum = $codes{$uniquecode};
                   my %courses = &Apache::lonnet::courseiddump($codedom,'.',1,'.','.',
                                                               $cnum,undef,undef,'.',1);
                   if (keys(%courses)) {
                       $env{'form.coursenum'} = $cnum;  
                       my %courseinfo = &build_courseinfo_hash(\%courses,$knownuser,$codedom);
                       undef($env{'form.coursenum'});
                       if (ref($courseinfo{$codedom.'_'.$cnum}) eq 'HASH') {
                           $r->print(&Apache::lonhtmlcommon::start_pick_box());
                           my @cols = ('title','ownerlastnames','seclist','access');
                           my %lt = &Apache::lonlocal::texthash(
                                        title          => 'Title',
                                        ownerlastnames => 'Owner & Co-owner(s)',
                                        seclist        => 'Sections',
                                        access         => 'Default Access Dates for Students',
                                    );
                           my @shown;
                           foreach my $item (@cols) {
                               if ($courseinfo{$codedom.'_'.$cnum}{$item}) {
                                   push(@shown,$item);
                               }
                           }
                           my $num = 0;
                           foreach my $item (@shown) {
                               $num ++;
                               $r->print(&Apache::lonhtmlcommon::row_title($lt{$item}).
                                         $courseinfo{$codedom.'_'.$cnum}{$item});
                               if ($item eq 'title') {
                                   if ($courseinfo{$codedom.'_'.$cnum}{'showsyllabus'}) {
                                       $r->print('&nbsp;<font size="-2">'.
                                                 '<a href="javascript:ToSyllabus('."'$codedom','$cnum'".')">'.
                                                 &mt('Syllabus').'</a></font>');
                                   }
                               }
                               my $arg = ( $num == scalar(@shown) ? 1 : '' );
                               $r->print(&Apache::lonhtmlcommon::row_closure($arg));
                           }
                           $r->print(&Apache::lonhtmlcommon::end_pick_box());
                           my $selfenroll = &selfenroll_status($courseinfo{$codedom.'_'.$cnum},$codedom.'_'.$cnum);
                           if ($selfenroll) {
                               $r->print('<br />'.$selfenroll);
                           }
                           $r->print('<form name="linklaunch" method="post" action="">'."\n".
                                     '<input type="hidden" name="backto" value="coursecatalog" />'."\n".
                                     '<input type="hidden" name="courseid" value="" />'."\n".
                                     '</form>'."\n");
   
                       } else {
                           $codemsg = &mt('Code matched, but course ID to which this mapped is invalid.');
                       }
                   } else {
                       $codemsg = &mt('Code matched, but course ID to which this mapped is invalid.');              
                   } 
               } else {
                   $codemsg = &mt('No match');
               }
           }
           $r->print('<br />'.&Apache::loncommon::end_page());
           return OK;
       } else {
           if ($env{'form.coursenum'}) {
               $cnum = $env{'form.coursenum'};
           }
       }
   
       if ($env{'form.catalog_maxdepth'} ne '') {
           $env{'form.catalog_maxdepth'} =~ s{\D}{}g;
     }      }
     my $subcats;  
       my (@cats,@trails,%allitems,%idx,@jsarray,%subcathash,$subcats);
     if ($env{'form.withsubcats'}) {      if ($env{'form.withsubcats'}) {
         $subcats = \%subcathash;          $subcats = \%subcathash;
     }      }
     &Apache::loncommon::extract_categories($cathash,\@cats,\@trails,\%allitems,      &Apache::loncommon::extract_categories($cathash,\@cats,\@trails,\%allitems,
                                            \%idx,\@jsarray,$subcats);                                             \%idx,\@jsarray,$subcats);
     my ($numtitles,@codetitles);      my ($numtitles,@codetitles);
     if ($env{'form.coursenum'} ne '' && &user_is_known()) {      if (($env{'form.coursenum'} ne '') && ($knownuser)) {
         &course_details($r,$codedom,$formname,$domdesc,\@trails,\%allitems,\@codetitles);          &course_details($r,$codedom,$formname,$domdesc,\@trails,\%allitems,\@codetitles);
     } else {      } else {
         my ($catlinks,$has_subcats,$selitem) = &category_breadcrumbs($codedom,@cats);          my ($catlinks,$has_subcats,$selitem) = &category_breadcrumbs($codedom,@cats);
Line 154  ENDTOGGJS Line 277  ENDTOGGJS
         }          }
         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,
                                                    $catlinks,$catjs,\@codetitles);                                                     $catlinks,$catjs,\@codetitles,$cattype);
             if ($env{'form.state'} eq 'listing') {              if ($env{'form.state'} eq 'listing') {
                 $r->print(&print_course_listing($codedom,$numtitles,undef,undef,undef,                  $r->print(&print_course_listing($codedom,$numtitles,undef,undef,undef,
                                                 \@codetitles));                                                  \@codetitles));
Line 177  function check_selected() { Line 300  function check_selected() {
 ENDJS  ENDJS
             }              }
             $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,undef,$cattype);
             if ($env{'form.currcat_0'} ne '') {              if ($env{'form.currcat_0'} ne '') {
                 $r->print('<form name="'.$formname.                  $r->print('<form name="'.$formname.
                           '" method="post" action="/adm/coursecatalog">'.                            '" method="post" action="/adm/coursecatalog">'.
Line 258  sub course_details { Line 381  sub course_details {
     return;      return;
 }  }
   
   sub coursesearch {
       my ($codedom,$domdesc,$uniquecode) = @_;
       my %lt = &Apache::lonlocal::texthash (
                                              crlk => 'Course look-up',  
                                              code => 'Code',
                                              ifyo => 'Enter the character code (six letters and numbers)',
                                              srch => 'Find course',
                                            );
       return <<"END";
   <h3>$lt{'crlk'} ($domdesc)</h3>
   $lt{'ifyo'}
   <form name="searchbycode" method="post" action="">
   <span class="LC_nobreak">
   <input type="text" value="$uniquecode" size="6" name="uniquecode" />&nbsp;
   <br />
   <input type="submit" value="$lt{'srch'}" name="srch" /></span>
   </form>
   END
   }
   
 sub courselink_javascript {  sub courselink_javascript {
     return <<"END";      return <<"END";
   
Line 285  END Line 428  END
 }  }
   
 sub instcode_course_selector {  sub instcode_course_selector {
     my ($r,$codedom,$formname,$domdesc,$catlinks,$catjs,$codetitles) = @_;      my ($r,$codedom,$formname,$domdesc,$catlinks,$catjs,$codetitles,$cattype) = @_;
     my %coursecodes = ();      my %coursecodes = ();
     my %codes = ();      my %codes = ();
     my %cat_titles = ();      my %cat_titles = ();
Line 310  sub instcode_course_selector { Line 453  sub instcode_course_selector {
         if (&user_is_dc($codedom)) {          if (&user_is_dc($codedom)) {
             $add_entries{'onLoad'} .= ' toggleStatuses();toggleWasActive();'              $add_entries{'onLoad'} .= ' toggleStatuses();toggleWasActive();'
         }          }
         &cat_header($r,$codedom,$js,\%add_entries,$catlinks,$numtitles);          &cat_header($r,$codedom,$js,\%add_entries,$catlinks,$numtitles,$cattype);
         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.'" />'."\n".                    '<input type="hidden" name="catalog_maxdepth" value="'.$cat_maxdepth.'" />'."\n".
Line 335  sub instcode_course_selector { Line 478  sub instcode_course_selector {
               "$catjs\n".                "$catjs\n".
               '// ]]>'."\n".                '// ]]>'."\n".
               '</script>';                '</script>';
         &cat_header($r,$codedom,$js,\%add_entries,$catlinks,$numtitles);          &cat_header($r,$codedom,$js,\%add_entries,$catlinks,$numtitles,$cattype);
         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.'" />'.
Line 347  sub instcode_course_selector { Line 490  sub instcode_course_selector {
 }  }
   
 sub cat_header {  sub cat_header {
     my ($r,$codedom,$js,$add_entries,$catlinks,$numtitles) = @_;      my ($r,$codedom,$js,$add_entries,$catlinks,$numtitles,$cattype) = @_;
     my $start_page =      my $start_page =
         &Apache::loncommon::start_page('Course/Community Catalog',$js,          &Apache::loncommon::start_page('Course/Community Catalog',$js,
                                        { 'add_entries' => $add_entries, });                                         { 'add_entries' => $add_entries, });
Line 372  sub cat_header { Line 515  sub cat_header {
           text=>"Course/Community Catalog"});            text=>"Course/Community Catalog"});
     }      }
     $r->print(&Apache::lonhtmlcommon::breadcrumbs('Course/Community Catalog'));      $r->print(&Apache::lonhtmlcommon::breadcrumbs('Course/Community Catalog'));
     my $onchange = 'this.form.submit()';      if ($cattype eq 'std') {
     $r->print('<form name="coursecatdom" method="post" action="/adm/coursecatalog">'.          my $onchange = 'this.form.submit()';
               '<table border="0"><tr><td><b>'.&mt('Domain:').'</b></td><td>'.          $r->print('<form name="coursecatdom" method="post" action="/adm/coursecatalog">'.
               &Apache::loncommon::select_dom_form($codedom,'showdom','',1,$onchange));                    '<table border="0"><tr><td><b>'.&mt('Domain:').'</b></td><td>'.
     if (!$onchange) {                    &Apache::loncommon::select_dom_form($codedom,'showdom','',1,$onchange));
           if (!$onchange) {
    $r->print('&nbsp;<input type="submit" name="godom" value="'.&mt('Change').'" />');     $r->print('&nbsp;<input type="submit" name="godom" value="'.&mt('Change').'" />');
           }
           $r->print('</td></tr></table></form>');
     }      }
     $r->print('</td></tr></table></form>'.      $r->print('<form name="coursecats" method="post" action="/adm/coursecatalog"'.
       '<form name="coursecats" method="post" action="/adm/coursecatalog"'.  
               ' onsubmit="return check_selected();">'.                ' onsubmit="return check_selected();">'.
               '<table border="0"><tr>'.$catlinks.'</tr></table></form>');                '<table border="0"><tr>'.$catlinks.'</tr></table></form>');
     return;      return;
Line 860  sub print_course_listing { Line 1005  sub print_course_listing {
         }          }
     }      }
     my $now = time;      my $now = time;
     my %domconfig =  
         &Apache::lonnet::get_dom('configuration',['usercreation'],$domain);  
     $output .= &construct_data_table($knownuser,$domain,\%courses,$details,undef,      $output .= &construct_data_table($knownuser,$domain,\%courses,$details,undef,
                                      $now,\%domconfig,$trails,$allitems);                                       $now,$trails,$allitems);
     $output .= "\n".'<form name="linklaunch" method="post" action="">'.      $output .= "\n".'<form name="linklaunch" method="post" action="">'.
                '<input type="hidden" name="backto" value="coursecatalog" />'.                 '<input type="hidden" name="backto" value="coursecatalog" />'.
                '<input type="hidden" name="courseid" value="" />'.                 '<input type="hidden" name="courseid" value="" />'.
Line 872  sub print_course_listing { Line 1015  sub print_course_listing {
 }  }
   
 sub construct_data_table {  sub construct_data_table {
     my ($knownuser,$domain,$courses,$details,$usersections,$now,$domconfig,      my ($knownuser,$domain,$courses,$details,$usersections,$now,$trails,$allitems) = @_;
         $trails,$allitems) = @_;  
     my %sortname;      my %sortname;
     if (($details eq '') || ($env{'form.showdetails'})) {      if (($details eq '') || ($env{'form.showdetails'})) {
         $sortname{'Code'} = 'code';          $sortname{'Code'} = 'code';
Line 1378  sub courseinfo_row { Line 1520  sub courseinfo_row {
             $output .= "<td><a href=\"javascript:setCourseId('$cnum')\">".&mt('Show more details').'</a></td>';              $output .= "<td><a href=\"javascript:setCourseId('$cnum')\">".&mt('Show more details').'</a></td>';
         }          }
     }      }
     my $selfenroll;      my $selfenroll = &selfenroll_status($info,$course);
     if ($info->{'selfenroll_types'}) {      if ($selfenroll) {
         my $showstart = &Apache::lonlocal::locallocaltime($info->{'selfenroll_start'});          $output .= '<td>'.$selfenroll.'</td>';
         my $showend = &Apache::lonlocal::locallocaltime($info->{'selfenroll_end'});      } else {
         if (($info->{'selfenroll_end'} > 0) && ($info->{'selfenroll_end'} > $now)) {          $output .= '<td>&nbsp;</td>';
             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>';      $$countref ++;
             } else {       return $output;
                 $output .= '<td><a href="javascript:ToSelfenroll('."'$course'".')">'.&mt('Enroll in course').'</a><br />';  }
                 if ($info->{'selfenroll_end'} == 0) {  
                     $output .= &mt('Available permanently');  sub selfenroll_status {
                 } elsif ($info->{'selfenroll_end'} > $now) {      my ($info,$course) = @_;
                     $output .= &mt('Self-enrollment ends: [_1]','<span class="LC_cusr_emph">'.$showend.'</span>');      my $now = time;
       my $output;
       if (ref($info) eq 'HASH') {
           if ($info->{'selfenroll_types'}) {
               my $showstart = &Apache::lonlocal::locallocaltime($info->{'selfenroll_start'});
               my $showend = &Apache::lonlocal::locallocaltime($info->{'selfenroll_end'});
               if (($info->{'selfenroll_end'} > 0) && ($info->{'selfenroll_end'} > $now)) {
                   if (($info->{'selfenroll_start'} > 0) && ($info->{'selfenroll_start'} > $now)) {
                       $output = &mt('Starts: [_1]','<span class="LC_cusr_emph">'.$showstart.'</span>').'<br />'.&mt('Ends: [_1]','<span class="LC_cusr_emph">'.$showend.'</span>');
                   } else {
                       $output = '<a href="javascript:ToSelfenroll('."'$course'".')">'.
                                 &mt('Enroll in course').'</a><br />';
                       if ($info->{'selfenroll_end'} == 0) {
                           $output .= &mt('Available permanently');
                       } elsif ($info->{'selfenroll_end'} > $now) {
                           $output .= &mt('Self-enrollment ends: [_1]','<span class="LC_cusr_emph">'.$showend.'</span>');
                       }
                 }                  }
                 $output .= '</td>';  
             }              }
             $selfenroll = 1;  
         }          }
     }      }
     if (!$selfenroll) {  
         $output .= '<td>&nbsp;</td>';  
     }  
     $$countref ++;  
     return $output;      return $output;
 }  }
   

Removed from v.1.81  
changed lines
  Added in v.1.82


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