version 1.44, 2014/01/05 21:33:58
|
version 1.50, 2025/02/20 03:05:34
|
Line 36 use Apache::lonlocal;
|
Line 36 use Apache::lonlocal;
|
use Apache::lonnet; |
use Apache::lonnet; |
use lib '/home/httpd/lib/perl/'; |
use lib '/home/httpd/lib/perl/'; |
use LONCAPA; |
use LONCAPA; |
|
use HTML::Entities(); |
|
|
sub handler { |
sub handler { |
my ($r) = @_; |
my ($r) = @_; |
Line 63 sub handler {
|
Line 64 sub handler {
|
} |
} |
my $faqbaseurl = $Apache::lonnet::perlvar{'FAQHost'}; |
my $faqbaseurl = $Apache::lonnet::perlvar{'FAQHost'}; |
my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'}; |
my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'}; |
|
$origurl = &unescape($origurl); |
my $defdom; |
my $defdom; |
if ($env{'request.course.id'}) { |
if ($env{'request.course.id'}) { |
$defdom = $env{'course.'.$env{'request.course.id'}.'.domain'}; |
$defdom = $env{'course.'.$env{'request.course.id'}.'.domain'}; |
Line 83 sub handler {
|
Line 85 sub handler {
|
|
|
sub display_help_banner { |
sub display_help_banner { |
my ($r,$faq,$bug,$topic,$component_url,$origurl,$bugurl,$faqbaseurl,$requestmail,$stayOnPage) = @_; |
my ($r,$faq,$bug,$topic,$component_url,$origurl,$bugurl,$faqbaseurl,$requestmail,$stayOnPage) = @_; |
my $location=&Apache::loncommon::lonhttpdurl("/adm"); |
|
my $dom = $env{'request.role.domain'}; |
my $dom = $env{'request.role.domain'}; |
my $scripttag = ''; |
my $scripttag = ''; |
if ($requestmail) { |
if ($requestmail) { |
Line 154 SCRIPT_TWO
|
Line 155 SCRIPT_TWO
|
{'only_body' => 1,})); |
{'only_body' => 1,})); |
} |
} |
my $menu = &helpmenu_items($dom,$faq,$bug,$topic,$component_url,$origurl,$bugurl,$faqbaseurl,$requestmail,$stayOnPage); |
my $menu = &helpmenu_items($dom,$faq,$bug,$topic,$component_url,$origurl,$bugurl,$faqbaseurl,$requestmail,$stayOnPage); |
|
$r->print('<div class="LC_landmark" role="main">'."\n"); |
if ($menu) { |
if ($menu) { |
$r->print("<ul id=\"LC_secondary_menu\">$menu</ul>"); |
$r->print("<ul id=\"LC_secondary_menu\">$menu</ul>"); |
} |
} |
if ($stayOnPage && $env{'user.adv'}) { |
if ($stayOnPage && $env{'user.adv'}) { |
$r->print('<br />'); |
$r->print('<br />'); |
} |
} |
$r->print(&Apache::loncommon::end_page()); |
$r->print('</div>'.&Apache::loncommon::end_page()); |
} |
} |
|
|
sub helpmenu_items { |
sub helpmenu_items { |
Line 179 sub helpmenu_items {
|
Line 181 sub helpmenu_items {
|
lastloc => 'Go back', |
lastloc => 'Go back', |
close => 'Close', |
close => 'Close', |
); |
); |
|
my %alt = &Apache::lonlocal::texthash( |
|
general => 'Intro help icon', |
|
component => 'Topic icon', |
|
faq => 'FAQ icon', |
|
helpdesk => 'Helpdesk form icon', |
|
bugs => 'Bug reporting icon', |
|
manuals_web => 'HTML manuals icon', |
|
manuals_pdf => 'PDF manuals icon', |
|
lastloc => 'Return icon', |
|
close => 'Close help icon', |
|
); |
|
my ($target,$bugs_target); |
|
if ((($env{'request.lti.login'}) && ($env{'request.lti.target'} eq 'iframe')) || |
|
(($env{'request.deeplink.login'}) && ($env{'request.deeplink.target'} eq '_self'))) { |
|
$target = '_parent'; |
|
$bugs_target = '_blank'; |
|
} else { |
|
$target = '_top'; |
|
$bugs_target = '_top'; |
|
} |
my %items = ( |
my %items = ( |
general => { |
general => { |
href => '/adm/help/'.$general_help.'.hlp', |
href => '/adm/help/'.$general_help.'.hlp', |
img => $location.'/help/help.png', |
img => $location.'/help/help.png', |
alt => $lt{'general'}, |
alt => $alt{'general'}, |
text => $lt{'general'}, |
text => $lt{'general'}, |
}, |
}, |
component => { |
component => { |
href => $component_url, |
href => $component_url, |
img => $location.'/help/help.png', |
img => $location.'/help/help.png', |
alt => $lt{'component'}, |
alt => $alt{'component'}, |
text => $topic, |
text => $topic, |
}, |
}, |
faq => { |
faq => { |
href => $faqbaseurl.'fom/cache/'.$faq.'.html', |
href => $faqbaseurl.'fom/cache/'.$faq.'.html', |
img => $location.'/lonMisc/smallFAQ.gif', |
img => $location.'/lonMisc/smallFAQ.gif', |
alt => $lt{'faq'}, |
alt => $alt{'faq'}, |
text => $lt{'faq'}, |
text => $lt{'faq'}, |
}, |
}, |
helpdesk => { |
helpdesk => { |
href => '#', |
href => '#', |
onclick => 'gohelpdesk()', |
onclick => 'gohelpdesk()', |
img => $location.'/lonIcons/helpdesk.gif', |
img => $location.'/lonIcons/helpdesk.gif', |
alt => $lt{'helpdesk'}, |
alt => $alt{'helpdesk'}, |
text => $lt{'helpdesk'}, |
text => $lt{'helpdesk'}, |
}, |
}, |
bugs => { |
bugs => { |
href => $bugurl, |
href => $bugurl, |
img => $location.'/lonMisc/smallBug.gif', |
img => $location.'/lonMisc/smallBug.gif', |
alt => $lt{'bugs'}, |
alt => $alt{'bugs'}, |
text => $lt{'bugs'}, |
text => $lt{'bugs'}, |
|
target => $bugs_target, |
}, |
}, |
manuals_web => { |
manuals_web => { |
href => '', |
href => '', |
img => $location.'/lonIcons/html.gif', |
img => $location.'/lonIcons/html.gif', |
alt => $lt{'manuals_web'}, |
alt => $alt{'manuals_web'}, |
text => $lt{'manuals_web'}, |
text => $lt{'manuals_web'}, |
}, |
}, |
manuals_pdf => { |
manuals_pdf => { |
href => '', |
href => '', |
img => $location.'/lonIcons/pdf.gif', |
img => $location.'/lonIcons/pdf.gif', |
alt => $lt{'manuals_pdf'}, |
alt => $alt{'manuals_pdf'}, |
text => $lt{'manuals_pdf'}, |
text => $lt{'manuals_pdf'}, |
}, |
}, |
lastloc => { |
lastloc => { |
href => $origurl, |
href => &HTML::Entities::encode($origurl,'"&<>'), |
img => '/res/adm/pages/tolastloc.png', |
img => '/res/adm/pages/tolastloc.png', |
alt => $lt{'lastloc'}, |
alt => $alt{'lastloc'}, |
text => $lt{'lastloc'}, |
text => $lt{'lastloc'}, |
target => '_top', |
target => $target, |
}, |
}, |
close => { |
close => { |
href => 'javascript:window.close()', |
href => 'javascript:window.close()', |
img => $location.'/lonIcons/close.gif', |
img => $location.'/lonIcons/close.gif', |
alt => $lt{'close'}, |
alt => $alt{'close'}, |
text => $lt{'close'}, |
text => $lt{'close'}, |
target => '_top', |
target => $target, |
}, |
}, |
); |
); |
my %help_submenu = ( |
my %help_submenu = ( |
Line 338 sub create_submenu {
|
Line 361 sub create_submenu {
|
my $menu = '<li class="LC_hoverable">'.$img. |
my $menu = '<li class="LC_hoverable">'.$img. |
'<a href="'.$link.'"'.$disptarget.'>'. |
'<a href="'.$link.'"'.$disptarget.'>'. |
'<span class="LC_nobreak">'.$title. |
'<span class="LC_nobreak">'.$title. |
'<span class="LC_fontsize_small" style="font-weight:normal;">'. |
'<span class="LC_fontsize_medium" style="font-weight:normal;">'. |
' ▼</span></span></a>'. |
' ▼</span></span></a>'. |
'<ul>'; |
'<ul>'; |
my $count = 0; |
my $count = 0; |
Line 391 sub display_help_mainpage {
|
Line 414 sub display_help_mainpage {
|
$r->print(&Apache::loncommon::start_page('Help Content',undef, |
$r->print(&Apache::loncommon::start_page('Help Content',undef, |
{'only_body' => 1,})); |
{'only_body' => 1,})); |
} |
} |
|
my $target = '_top'; |
|
if ((($env{'request.lti.login'}) && ($env{'request.lti.target'} eq 'iframe')) || |
|
(($env{'request.deeplink.login'}) && ($env{'request.deeplink.target'} eq '_self'))) { |
|
$target = '_parent'; |
|
} |
if ($stayOnPage) { |
if ($stayOnPage) { |
$r->print('<div>'); |
$r->print('<div>'); |
} |
} |
$r->print('<b>'.$lt{'chen'}); |
$r->print('<b>'.$lt{'chen'}); |
if ($requestmail) { |
if ($requestmail) { |
$r->print(', '.$lt{'orto'}); |
$r->print(', '.$lt{'orto'}); |
Line 424 sub display_help_mainpage {
|
Line 452 sub display_help_mainpage {
|
&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('[_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.', |
&mt('This can be done by clicking the [_1]Communicate[_2] link or the "Send Feedback" link when viewing a content page.', |
'<a href="/adm/communicate" target="_top">','</a>')); |
'<a href="/adm/communicate" target="'.$target.'">','</a>')); |
} |
} |
$r->print("</p>"); |
$r->print("</p>"); |
} |
} |