version 1.13, 2007/12/03 22:58:46
|
version 1.18, 2008/11/17 14:11:24
|
Line 43 sub handler {
|
Line 43 sub handler {
|
return OK if $r->header_only; |
return OK if $r->header_only; |
|
|
&Apache::lonacc::get_posted_cgi($r); |
&Apache::lonacc::get_posted_cgi($r); |
|
if (!$Apache::lonlocal::lh) { |
|
&Apache::lonlocal::get_language_handle($r); |
|
} |
my $title = $env{'form.sendinfo'} ? 'Sending Error Report' |
my $title = $env{'form.sendinfo'} ? 'Sending Error Report' |
: 'Could Not Process Request'; |
: 'Could Not Process Request'; |
$r->print(&Apache::loncommon::start_page($title)); |
$r->print(&Apache::loncommon::start_page($title)); |
Line 81 $env{'form.environment'}
|
Line 83 $env{'form.environment'}
|
ENDMESSAGE |
ENDMESSAGE |
my $sysmail = $r->dir_config('lonSysEMail'); |
my $sysmail = $r->dir_config('lonSysEMail'); |
my $defdom = $r->dir_config('lonDefDomain'); |
my $defdom = $r->dir_config('lonDefDomain'); |
my $recipients = &Apache::loncommon::build_recipient_list($r,$sysmail, |
my $origmail = $r->dir_config('lonAdmEMail'); |
'errormail',$defdom); |
my $recipients = &Apache::loncommon::build_recipient_list($sysmail, |
|
'errormail',$defdom,$origmail); |
if ($recipients ne '') { |
if ($recipients ne '') { |
&Apache::lonmsg::sendemail($recipients,'ERROR REPORT',$message); |
&Apache::lonmsg::sendemail($recipients,'ERROR REPORT',$message); |
$r->print('<h2>'.&mt('Report submitted').'</h2>'.&mt('Thank you!')); |
$r->print('<h2>'.&mt('Report submitted').'</h2>'.&mt('Thank you!')); |
} else { |
} else { |
$r->print('<h2>'.&mt('Warning: Report not submitted').'</h2>'. |
$r->print('<h2>'.&mt('Warning: Report not submitted').'</h2>'. |
'<span class="LC_error">'.&mt("The administrators of |
'<span class="LC_error">' |
the domain ($defdom) have not set any e-mail addresses |
.&mt('The administrators of the domain [_1] have not set' |
for receipt of your error report.").'</span>'); |
.' any e-mail addresses for receipt of your error report.' |
|
,'<tt>'.$defdom.'</tt>') |
|
.'</span>'); |
} |
} |
} else { |
} else { |
# ------------------------------------------------------------- Get environment |
# ------------------------------------------------------------- Get environment |
Line 113 ENDMESSAGE
|
Line 118 ENDMESSAGE
|
my $version=$r->dir_config('lonVersion'); |
my $version=$r->dir_config('lonVersion'); |
|
|
# ----------------------------------------------------------- Print error form |
# ----------------------------------------------------------- Print error form |
$r->print('<h2>'. |
$r->print('<h2 class="LC_error">' |
&mt('Somewhere something went wrong - please help us to find out what.').'</h2>'. |
.&mt('Somewhere something went wrong') |
&mt('Please take a moment to fill out the form below.').' '.&mt('Your information, |
.'</h2>' |
together with internal debugging information, will be emailed to the system and |
.'<p>'.&mt('Please help us to find out what.').'</p>' |
server administrators.').' |
.'<p>'.&mt('Please take a moment to fill out the form below.').' ' |
|
.&mt('Your information, together with internal debugging information, ' |
|
.'will be emailed to the system and server administrators.') |
|
.'</p> |
<form action="/adm/errorhandler" method="post"> |
<form action="/adm/errorhandler" method="post"> |
<input type="submit" value="'.&mt('Send Information').'" /> |
|
<h3>'.&mt('Please describe what you did just before this screen came up').'</h3> |
<h3>'.&mt('Please describe what you did just before this screen came up').'</h3> |
<textarea name="prioraction" cols="50" rows="5"> |
<textarea name="prioraction" cols="50" rows="5"> |
</textarea> |
</textarea> |
Line 135 server administrators.').'
|
Line 142 server administrators.').'
|
<input type="hidden" name="syllabus" value="'.$syllabus.'" /> |
<input type="hidden" name="syllabus" value="'.$syllabus.'" /> |
<input type="hidden" name="sendinfo" value="1" /> |
<input type="hidden" name="sendinfo" value="1" /> |
<p> |
<p> |
<input type="submit" value="'.&mt('Send Information').'" /> |
<input type="submit" title="Send Information" value="'.&mt('Send').'" /> |
</p> |
</p> |
</form> |
</form> |
<h1>'.&mt('Thank you for your help!').'</h1> |
<h1>'.&mt('Thank you for your help!').'</h1> |
<font size="-1"> |
<div><font size="-1"> |
<pre> |
|
'.&mt('Internal info:'). |
'.&mt('Internal info:'). |
|
'<pre>'. |
$syllabus.' |
$syllabus.' |
</pre> |
</pre> |
</font> |
</font></div> |
'); |
'); |
# -------------------------- Better terminate this in case something was sticky |
# -------------------------- Better terminate this in case something was sticky |
|
|