Diff for /loncom/interface/lonaboutme.pm between versions 1.79 and 1.80

version 1.79, 2008/12/09 11:31:56 version 1.80, 2008/12/09 22:16:23
Line 110  sub handler { Line 110  sub handler {
   
     my $candisplay = 1;      my $candisplay = 1;
     if (!$is_course) {      if (!$is_course) {
         $candisplay = &Apache::lonnet::usertools_access($cnum,$cdom,'aboutme');          if ($action ne 'portfolio') {
         if ((!$candisplay) && ($env{'request.course.id'})) {              $candisplay = &Apache::lonnet::usertools_access($cnum,$cdom,'aboutme');
             $candisplay = &aboutme_access($cnum,$cdom);              if ((!$candisplay) && ($env{'request.course.id'})) {
         }                  $candisplay = &aboutme_access($cnum,$cdom);
         if (!$candisplay) {              }
             if ($target eq 'tex') {              if (!$candisplay) {
                 $r->print('\noindent{\large\textbf{'.&mt('No user home page available').'}}\\\\\\\\');                  if ($target eq 'tex') {
             } else {                      $r->print('\noindent{\large\textbf{'.&mt('No user home page available').'}}\\\\\\\\');
                 $r->print(&Apache::loncommon::start_page("Personal Information"));                  } else {
                 $r->print('<h2>'.&mt('No user home page available') .'</h2>'.                      $r->print(&Apache::loncommon::start_page("Personal Information"));
                           &mt('This is a result of one of the following:').'<ul>'.                      $r->print('<h2>'.&mt('No user home page available') .'</h2>'.
                           '<li>'.&mt('The administrator of this domain has disabled home page functionality for this specific user.').'</li>'.                                &mt('This is a result of one of the following:').'<ul>'.
                           '<li>'.&mt('The domain has been configured to disable, by default, home page functionality for all users in the domain.').'</li>'.                                '<li>'.&mt('The administrator of this domain has disabled home page functionality for this specific user.').'</li>'.
                           '</ul>');                                '<li>'.&mt('The domain has been configured to disable, by default, home page functionality for all users in the domain.').'</li>'.
                 $r->print(&Apache::loncommon::end_page());                                '</ul>');
                       $r->print(&Apache::loncommon::end_page());
                   }
                   return OK;
             }              }
             return OK;  
         }          }
     }      }
   
Line 144  sub handler { Line 146  sub handler {
 # ----------------------------------------------- Available Portfolio file display   # ----------------------------------------------- Available Portfolio file display 
     if (($target ne 'tex') && ($action eq 'portfolio')) {      if (($target ne 'tex') && ($action eq 'portfolio')) {
         &display_portfolio_header($r,$is_course);          &display_portfolio_header($r,$is_course);
         my ($blocked,$blocktext) =           if ((!$is_course) && (!&Apache::lonnet::usertools_access($cnum,$cdom,'portfolio'))) {
            &Apache::loncommon::blocking_status('port',$cnum,$cdom);              $r->print('<h2>'.&mt('No user portfolio available') .'</h2>'.
         if (!$blocked) {                        &mt('This is a result of one of the following:').'<ul>'.
             &display_portfolio_files($r,$is_course);                        '<li>'.&mt('The administrator of this domain has disabled portfolio functionality for this specific user.').'</li>'.
                         '<li>'.&mt('The domain has been configured to disable, by default, portfolio functionality for all users in the domain.').'</li>'.
                         '</ul>');
         } else {          } else {
             $r->print($blocktext);              my ($blocked,$blocktext) = 
                   &Apache::loncommon::blocking_status('port',$cnum,$cdom);
               if (!$blocked) {
                   &display_portfolio_files($r,$is_course);
               } else {
                   $r->print($blocktext);
               }
         }          }
         $r->print(&Apache::loncommon::end_page());          $r->print(&Apache::loncommon::end_page());
         return OK;          return OK;

Removed from v.1.79  
changed lines
  Added in v.1.80


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