--- loncom/interface/lonaboutme.pm 2004/05/12 19:00:20 1.26 +++ loncom/interface/lonaboutme.pm 2004/08/26 21:42:40 1.31 @@ -1,7 +1,7 @@ # The LearningOnline Network # "About Me" Personal Information # -# $Id: lonaboutme.pm,v 1.26 2004/05/12 19:00:20 sakharuk Exp $ +# $Id: lonaboutme.pm,v 1.31 2004/08/26 21:42:40 matthew Exp $ # # Copyright Michigan State University Board of Trustees # @@ -153,13 +153,12 @@ ENDDOCUMENT if ($syllabus{'uploaded.photourl'}) { &Apache::lonnet::allowuploaded('/adm/aboutme', $syllabus{'uploaded.photourl'}); - if ($target ne 'tex') { - $r->print(''); - } else { - $r->print(&Apache::lonxml::xmlparse($r,'tex','')); + my $image=''; + if ($target eq 'tex') { + $image=&Apache::lonxml::xmlparse($r,'tex',$image); } + $r->print($image); } if ($allowed) { $r->print( @@ -175,6 +174,9 @@ ENDDOCUMENT $message=~s/\n/\
/g; $message =~s/(http\:\/\/[^\s]+)/\\$1\<\/tt\>\<\/a\>/g; + if ($allowed) { + $message=&Apache::lonspeller::markeduptext($message); + } $message=&Apache::lontexconvert::msgtexconverted($message); if ($target ne 'tex') { $r->print('

'.$syllabusfields{$_}.'

'. @@ -201,13 +203,24 @@ ENDDOCUMENT if ($ENV{'request.course.id'}) { if (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) { if ($target ne 'tex') { + $r->print(''); $r->print('

'. &mt('User Notes, Records of Face-To-Face Discussions, and Critical Messages in Course').'

'. &mt('Shared by course faculty and staff'). &Apache::loncommon::help_open_topic("Course_Face_To_Face_Records,Course_Critical_Message"). '
'); - &Apache::lonmsg::disfacetoface($r,$cnum,$cdom); - $r->print(&Apache::loncommon::noteswrapper('Add Records',$cnum,$cdom)); + &Apache::lonmsg::disfacetoface($r,$cnum,$cdom); + $r->print('
'); + if (&Apache::lonnet::allowed('vsa', + $ENV{'request.course.id'}) || + &Apache::lonnet::allowed('vsa', + $ENV{'request.course.id'}.'/'. + $ENV{'request.course.sec'})) { + $r->print(&Apache::loncommon::track_student_link + ('View recent activity by this student', + $cnum,$cdom).(' 'x2)); + } + $r->print(&Apache::loncommon::noteswrapper('Add Records',$cnum,$cdom)); } else { $r->print('\\\\\textbf{'.&mt('User Notes, Records of Face-To-Face Discussions, and Critical Messages in Course').'}\\\\'.&mt('Shared by course faculty and staff').'\\\\\\\\'); &Apache::lonmsg::disfacetoface($r,$cnum,$cdom);