--- loncom/interface/lonaboutme.pm 2002/08/27 12:48:46 1.1 +++ loncom/interface/lonaboutme.pm 2023/09/27 14:52:26 1.166 @@ -1,7 +1,7 @@ # The LearningOnline Network -# About a Person +# Personal Information Page # -# $Id: lonaboutme.pm,v 1.1 2002/08/27 12:48:46 www Exp $ +# $Id: lonaboutme.pm,v 1.166 2023/09/27 14:52:26 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -26,37 +26,813 @@ # http://www.lon-capa.org/ # +=pod + +=head1 NAME + +pache::lonaboutme + +=head1 SYNOPSIS + +(empty) + +This is part of the LearningOnline Network with CAPA project +described at http://www.lon-capa.org. + +=head1 OVERVIEW + +(empty) + + +=head1 SUBROUTINES + +=over + +=item handler() + +=item aboutme_info() + +=item print_portfiles_link() + +=item build_query_string() + +=item display_portfolio_header() + +=item display_portfolio_files() + +=item portfolio_files() + +=item build_hierarchy() + +=item parse_directory() + +=back + +=cut + + package Apache::lonaboutme; use strict; use Apache::Constants qw(:common); use Apache::loncommon; use Apache::lonnet; +use Apache::lontexconvert; +use Apache::lonhtmlgateway; +use Apache::lonrss(); +use Apache::lonlocal; +use Apache::lonmsgdisplay(); +use Apache::lontemplate; +use Apache::longroup; +use Apache::lonhtmlcommon(); +use HTML::Entities(); +use Image::Magick; sub handler { my $r = shift; - $r->content_type('text/html'); + &Apache::loncommon::content_type($r,'text/html'); $r->send_http_header; return OK if $r->header_only; + my $target=$env{'form.grade_target'}; +# ------------------------------------------------------------ Print the screen + if ($target eq 'tex') { + $r->print(&Apache::lonprintout::print_latex_header($env{'form.latex_type'})); + } + my (undef,undef,$cdom,$cnum,undef,$action)=split(/\//,$r->uri); + my $is_course; +# Is this even a user? + if (&Apache::lonnet::homeserver($cnum,$cdom) eq 'no_host') { + &Apache::loncommon::simple_error_page($r,'No info', + 'No user information available'); + return OK; + } else { + $is_course = &Apache::lonnet::is_course($cdom,$cnum); + } + my $clientip = &Apache::lonnet::get_requestor_ip($r); + my $candisplay = 1; + if (!$is_course) { + if ($action ne 'portfolio') { + if (($env{'user.name'} eq $cnum) && ($env{'user.domain'} eq $cdom)) { + $candisplay = &Apache::lonnet::usertools_access($cnum,$cdom,'aboutme'); + } else { + $candisplay = &Apache::loncommon::aboutme_on($cnum,$cdom); + } + if ((!$candisplay) && ($env{'request.course.id'})) { + $candisplay = &aboutme_access($cnum,$cdom); + } + if (!$candisplay) { + if ($target eq 'tex') { + $r->print('\noindent{\large\textbf{'.&mt('No user personal information page available').'}}\\\\\\\\'); + } else { + $r->print(&Apache::loncommon::start_page("Personal Information Page")); + $r->print('
'.&mt('No user personal information page available') .'
'. + &mt('This is a result of one of the following:').''.&mt('No personal information provided').'.
'); + } + + if ($env{'request.course.id'} + && &Apache::lonnet::allowed('srm',$env{'request.course.id'}) + && &Apache::lonnet::in_course($cdom,$cnum,$coursedomain,$coursenum,undef,1)) { + if ($target ne 'tex') { + $r->print(''); + &Apache::lontemplate::print_start_template($r,&mt('User Notes, Records of Face-To-Face Discussions, and Critical Messages in Course'),'LC_Box'); + $r->print(''); + $r->print(&mt('Shared by course faculty and staff').&Apache::loncommon::help_open_topic("Course_Face_To_Face_Records,Course_Critical_Message")); + $r->print(''); + &Apache::lonmsgdisplay::disfacetoface($r,$cnum,$cdom); + &Apache::lontemplate::print_end_template($r); + + } 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::lonmsgdisplay::disfacetoface($r,$cnum,$cdom,$target); + } } + if ($target ne 'tex') { + $r->print('