--- loncom/interface/lonhelpmenu.pm 2006/06/26 22:09:01 1.28 +++ loncom/interface/lonhelpmenu.pm 2025/02/20 03:05:34 1.50 @@ -1,6 +1,8 @@ # The LearningOnline Network with CAPA # generate frame-based help system # +# $Id: lonhelpmenu.pm,v 1.50 2025/02/20 03:05:34 raeburn Exp $ +# # Copyright Michigan State University Board of Trustees # # This file is part of the LearningOnline Network with CAPA (LON-CAPA). @@ -34,10 +36,11 @@ use Apache::lonlocal; use Apache::lonnet; use lib '/home/httpd/lib/perl/'; use LONCAPA; +use HTML::Entities(); sub handler { my ($r) = @_; - &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['page','function','faq','bug','topic','component_help','origurl','stayonpage']); + &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['page','faq','bug','topic','component_help','origurl','stayonpage']); &Apache::loncommon::content_type($r,'text/html'); $r->send_http_header; @@ -47,7 +50,6 @@ sub handler { my $faq = $env{'form.faq'}; my $bug = $env{'form.bug'}; my $topic = $env{'form.topic'}; - my $function = $env{'form.function'}; my $component_help = $env{'form.component_help'}; my $origurl = $env{'form.origurl'}; my $stayOnPage = $env{'form.stayonpage'}; @@ -56,35 +58,47 @@ sub handler { $component_url = '/adm/help/'.$component_url.'.hlp'; } my $bugurl = $Apache::lonnet::perlvar{'BugzillaHost'}; - $bugurl .= 'enter_bug.cgi?product=LON-CAPA&bug_file_loc='.$origurl; + $bugurl .= 'enter_bug.cgi?product=LON-CAPA&bug_file_loc='.$origurl; if ($bug) { - $bugurl .= '&component='.$bug; + $bugurl .= '&component='.$bug; } my $faqbaseurl = $Apache::lonnet::perlvar{'FAQHost'}; - my $requestmail = $Apache::lonnet::perlvar{'lonSupportEMail'}; + my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'}; + $origurl = &unescape($origurl); + my $defdom; + if ($env{'request.course.id'}) { + $defdom = $env{'course.'.$env{'request.course.id'}.'.domain'}; + } elsif ($env{'request.role.domain'}) { + $defdom = $env{'request.role.domain'}; + } else { + $defdom = &Apache::lonnet::default_login_domain(); + } + my $requestmail = &Apache::loncommon::build_recipient_list(undef,'helpdeskmail', + $defdom,$origmail); if ($env{'form.page'} eq 'banner') { - &display_help_banner($r,$function,$faq,$bug,$topic,$component_url,$origurl,$bugurl,$faqbaseurl,$requestmail,$stayOnPage); + &display_help_banner($r,$faq,$bug,$topic,$component_url,$origurl,$bugurl,$faqbaseurl,$requestmail,$stayOnPage); } elsif ($env{'form.page'} eq 'body') { - &display_help_mainpage($r,$function,$faq,$bug,$topic,$component_url,$origurl,$bugurl,$faqbaseurl,$requestmail); + &display_help_mainpage($r,$faq,$bug,$topic,$component_url,$origurl,$bugurl,$faqbaseurl,$requestmail,$stayOnPage); } return OK; } sub display_help_banner { - my ($r,$function,$faq,$bug,$topic,$component_url,$origurl,$bugurl,$faqbaseurl,$requestmail,$stayOnPage) = @_; - my $location=&Apache::loncommon::lonhttpdurl("/adm"); + my ($r,$faq,$bug,$topic,$component_url,$origurl,$bugurl,$faqbaseurl,$requestmail,$stayOnPage) = @_; + my $dom = $env{'request.role.domain'}; my $scripttag = ''; - if ($requestmail =~ m/^[^\@]+\@[^\@]+$/) { + if ($requestmail) { my $displayurl = &escape($origurl); $scripttag = (<<"SCRIPT_ONE"); - SCRIPT_TWO } - my %body_layout = - ('rightmargin' => "0", - 'leftmargin' => "0", - 'marginwidth' => "0", - 'topmargin' => "1", - 'marginheight' => "1"); - my $start_page = - &Apache::loncommon::start_page('',$scripttag, - {'function' => $function, - 'add_entries' => \%body_layout, - 'only_body' => 1,}); - $r->print($start_page); - - my $width = ($stayOnPage) ? '700' : '600'; - - $r->print('
- | - - | -- - |
- |
$lt{'disp'}
"); - } elsif ($env{'user.adv'}) { - $r->print(" -$lt{'coth'}
"); } } } - if ($requestmail =~ m/^[^\@]+\@[^\@]+$/) { + if ($requestmail) { $r->print("$lt{'suhr'}");
unless ($env{'user.adv'}) {
- $r->print('
'.&mt('Note').': '.$lt{'stuq'}.'. '.&mt('This can be done using the').' '.&mt('COM').' '.&mt('button, or the FDBK button when viewing a content page.'));
+ $r->print('
'.
+ &mt('[_1]Note[_2]: questions about course content should not be directed to the support team, but instead should be sent to the course instructor.').
+ ' '.
+ &mt('This can be done by clicking the [_1]Communicate[_2] link or the "Send Feedback" link when viewing a content page.',
+ '',''));
}
$r->print("
$lt{'crea'} $lt{'suim'}
"); } + if ($stayOnPage) { + $r->print(''); + } $r->print(&Apache::loncommon::end_page()); }