Diff for /loncom/interface/lonaboutme.pm between versions 1.98 and 1.99

version 1.98, 2009/02/19 12:10:44 version 1.99, 2009/02/19 17:32:39
Line 234  sub handler { Line 234  sub handler {
        ($env{'user.domain'} eq $cdom));         ($env{'user.domain'} eq $cdom));
        if ($forcestudent or $target eq 'tex') { $allowed=0; }         if ($forcestudent or $target eq 'tex') { $allowed=0; }
  my $query_string;    my $query_string; 
   
        if ($allowed) {         if ($allowed) {
            $query_string = &build_query_string({'forcestudent' => '1','popup' => $env{'form.popup'}});            
    $r->print('<p><b>'.&mt('Privacy Note').':</b> '.     $r->print('<p><b>'.&mt('Privacy Note').':</b> '.
      &mt('The information you submit can be viewed by anybody who is logged into LON-CAPA. Do not provide information that you are not ready to share publicly.').       &mt('The information you submit can be viewed by anybody who is logged into LON-CAPA. Do not provide information that you are not ready to share publicly.'). '</p><p>'.              
      '</p><p><a href="'.$r->uri.$query_string.'">'.&mt('Show Public View').'</a>'.  
                      &Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView').'</p>'.  
      &Apache::loncommon::help_open_topic('Uploaded_Templates_TextBoxes',&mt('Help with filling in text boxes')).'</p>');       &Apache::loncommon::help_open_topic('Uploaded_Templates_TextBoxes',&mt('Help with filling in text boxes')).'</p>');
        } elsif ($privleged && $target ne 'tex') {         }     
            $query_string = &build_query_string({'forceedit' => '1','popup' => $env{'form.popup'}});  
    $r->print('<p><a href="'.$r->uri.$query_string.'">'.  
      &mt('Edit').'</a></p>');  
        }  
       if (($env{'form.uploaddoc.filename'}) &&        if (($env{'form.uploaddoc.filename'}) &&
           ($env{'form.storeupl'}) && ($allowed)) {            ($env{'form.storeupl'}) && ($allowed)) {
    if ($env{'form.uploaddoc.filename'}=~/\.(gif|jpg|png|jpeg)$/i) {     if ($env{'form.uploaddoc.filename'}=~/\.(gif|jpg|png|jpeg)$/i) {
Line 284  my $image; Line 280  my $image;
        $lastmod=$syllabus{'uploaded.lastmodified'};         $lastmod=$syllabus{'uploaded.lastmodified'};
        $lastmod=($lastmod?&Apache::lonlocal::locallocaltime($lastmod):&mt('never'));         $lastmod=($lastmod?&Apache::lonlocal::locallocaltime($lastmod):&mt('never'));
   $r->print('<br />'.&mt('Last updated').': '.$lastmod);    $r->print('<br />'.&mt('Last updated').': '.$lastmod);
   
   
        if ($syllabus{'uploaded.photourl'}) {         if ($syllabus{'uploaded.photourl'}) {
    &Apache::lonnet::allowuploaded('/adm/aboutme',     &Apache::lonnet::allowuploaded('/adm/aboutme',
   $syllabus{'uploaded.photourl'});    $syllabus{'uploaded.photourl'});
Line 299  my $image; Line 297  my $image;
    }     }
   
        }         }
    if( $target ne 'tex'){
    &Apache::lontemplate::print_start_page_functions($r);
         if($allowed){
    $query_string = &build_query_string({'forcestudent' => '1','popup' => $env{'form.popup'}});
    &Apache::lontemplate::print_functions_content($r,'<a href="'.$r->uri.$query_string.'">'.&mt('Show Public View').'</a>'.&Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView'));
       }elsif($privleged){
    $query_string = &build_query_string({'forceedit' => '1','popup' => $env{'form.popup'}});
    &Apache::lontemplate::print_functions_content($r,'<a href="'.$r->uri.$query_string.'">'. &mt('Edit').'</a>');
    }
    &Apache::lontemplate::print_functions_content($r,&Apache::lontemplate::send_message($r,$cnum,$cdom));
    &Apache::lontemplate::print_end_page_functions($r);
    }
        if ($allowed) {         if ($allowed) {
            $r->print(             $r->print(
  '<form method="post" enctype="multipart/form-data">'.   '<form method="post" enctype="multipart/form-data">'.
Line 318  my $image; Line 328  my $image;
  if($target ne 'tex') #print Image   if($target ne 'tex') #print Image
       {        {
  &Apache::lontemplate::start_ContentBox($r);   &Apache::lontemplate::start_ContentBox($r);
  &Apache::lontemplate::send_message($r,$cnum,$cdom);   #&Apache::lontemplate::send_message($r,$cnum,$cdom);
  &Apache::lontemplate::end_ContentBox($r);   &Apache::lontemplate::end_ContentBox($r);
  $r->print($image);   $r->print($image);
   
Line 337  my $image; Line 347  my $image;
  $r->print('<h4 class="LC_hcell">'.'RSS Feeds and Blogs'.'</h4>');   $r->print('<h4 class="LC_hcell">'.'RSS Feeds and Blogs'.'</h4>');
  $r->print(&Apache::lonrss::advertisefeeds($cnum,$cdom));   $r->print(&Apache::lonrss::advertisefeeds($cnum,$cdom));
  $r->print('</div>');   $r->print('</div>');
  }   }
   
  if($allowed){  
  $r->print('<p><a href="'.$r->uri.$query_string.'">'.&mt('Show Public View').'</a>'.  
                         &Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView').'</p>');  
  }  
        }#End  Print RSS and portfiles         }#End  Print RSS and portfiles
   
        $r->print('</blockquote>');         $r->print('</blockquote>');
Line 356  my $image; Line 362  my $image;
        }         }
        if ($target ne 'tex') {$r->print('<br />');} else {$r->print('\\\\');}         if ($target ne 'tex') {$r->print('<br />');} else {$r->print('\\\\');}
     } else {      } else {
  &Apache::lontemplate::send_message($r,$cnum,$cdom);   # &Apache::lontemplate::send_message($r,$cnum,$cdom);
        $r->print('<p>'.&mt('No personal information provided').'.</p>');         $r->print('<p>'.&mt('No personal information provided').'.</p>');
     }      }
           

Removed from v.1.98  
changed lines
  Added in v.1.99


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