version 1.60, 2006/12/27 20:42:12
|
version 1.64, 2007/01/17 18:05:57
|
Line 924 sub disfolder {
|
Line 924 sub disfolder {
|
nome => 'No messages have been selected to apply ths action to.', |
nome => 'No messages have been selected to apply ths action to.', |
chec => 'Check the checkbox for at least one message.', |
chec => 'Check the checkbox for at least one message.', |
); |
); |
|
my $jscript = &Apache::loncommon::check_uncheck_jscript(); |
$r->print(<<ENDDISHEADER); |
$r->print(<<ENDDISHEADER); |
<script type="text/javascript"> |
<script type="text/javascript"> |
function checkall() { |
$jscript |
for (i=0; i<document.forms.disall.delmark.length; i++) { |
|
document.forms.disall.delmark[i].checked=true; |
|
} |
|
} |
|
|
|
function uncheckall() { |
|
for (i=0; i<document.forms.disall.delmark.length; i++) { |
|
document.forms.disall.delmark[i].checked=false; |
|
} |
|
} |
|
function checkfoldermove() { |
function checkfoldermove() { |
if (document.disall.checkedaction.options[document.disall.checkedaction.selectedIndex].value == 'markedmove') { |
if (document.disall.checkedaction.options[document.disall.checkedaction.selectedIndex].value == 'markedmove') { |
if (document.disall.movetofolder.options[document.disall.movetofolder.selectedIndex].value == "") { |
if (document.disall.movetofolder.options[document.disall.movetofolder.selectedIndex].value == "") { |
Line 956 sub disfolder {
|
Line 948 sub disfolder {
|
} |
} |
} |
} |
var checktotal = 0; |
var checktotal = 0; |
for (var i=0; i<document.forms.disall.delmark.length; i++) { |
if (document.forms.disall.delmark.length > 0) { |
if (document.forms.disall.delmark[i].checked) { |
for (var i=0; i<document.forms.disall.delmark.length; i++) { |
|
if (document.forms.disall.delmark[i].checked) { |
|
checktotal ++; |
|
} |
|
} |
|
} else { |
|
if (document.forms.disall.delmark.checked) { |
checktotal ++; |
checktotal ++; |
} |
} |
} |
} |
if (checktotal == 0) { |
if (checktotal == 0) { |
alert("$lt{'nome'}\\n$lt{'chec'}"); |
alert("$lt{'nome'}\\n$lt{'chec'}"); |
return; |
return; |
Line 1072 ENDDISHEADER
|
Line 1070 ENDDISHEADER
|
' value="'.$origID.'" /></nobr></td>'); |
' value="'.$origID.'" /></nobr></td>'); |
foreach my $item ($localsenttime,$dis_name,$dis_domain,$shortsubj) { |
foreach my $item ($localsenttime,$dis_name,$dis_domain,$shortsubj) { |
$r->print('<td>'.(($status eq 'new')?'<b>':''). |
$r->print('<td>'.(($status eq 'new')?'<b>':''). |
'<a href="/adm/email?display='.$origID.$sqs.$fsqs.'">'. |
'<a href="/adm/email?display='.$origID.$sqs.'">'. |
$item.(($status eq 'new')?'</b>':'').'</td>'); |
$item.(($status eq 'new')?'</b>':'').'</td>'); |
} |
} |
my $showstatus; |
my $showstatus; |
Line 1097 ENDDISHEADER
|
Line 1095 ENDDISHEADER
|
$r->print('<table border="0" cellspacing="2" cellpadding="2"> |
$r->print('<table border="0" cellspacing="2" cellpadding="2"> |
<tr> |
<tr> |
<td>'. |
<td>'. |
'<input type="button" onclick="javascript:checkall()" value="'.&mt('Check All').'" /><br />'."\n". |
'<input type="button" onclick="javascript:checkAll(document.disall.delmark)" value="'.&mt('Check All').'" /><br />'."\n". |
'<input type="button" onclick="javascript:uncheckall()" value="'.&mt('Uncheck All').'" />'."\n". |
'<input type="button" onclick="javascript:uncheckAll(document.disall.delmark)" value="'.&mt('Uncheck All').'" />'."\n". |
'<input type="hidden" name="sortedby" value="'.$env{'form.sortedby'}.'" /></td><td> </td>'."\n". |
'<input type="hidden" name="sortedby" value="'.$env{'form.sortedby'}.'" /></td><td> </td>'."\n". |
'<td align="center"><b>'.&mt('Action').'</b><br />'."\n". |
'<td align="center"><b>'.&mt('Action').'</b><br />'."\n". |
' <select name="checkedaction" onchange="javascript:checkfoldermove()">'."\n"); |
' <select name="checkedaction" onchange="javascript:checkfoldermove()">'."\n"); |
Line 2045 sub displaymessage {
|
Line 2043 sub displaymessage {
|
if (defined($content{'courseid'}) && defined($env{'request.course.id'})) { |
if (defined($content{'courseid'}) && defined($env{'request.course.id'})) { |
if ($content{'courseid'} eq $env{'request.course.id'}) { |
if ($content{'courseid'} eq $env{'request.course.id'}) { |
my $symblink; |
my $symblink; |
|
my $showsymb = &Apache::lonenc::check_decrypt($symb); |
|
my $showurl = &Apache::lonenc::check_decrypt($baseurl); |
|
my $encrypturl = &Apache::lonnet::EXT('resource.0.encrypturl', |
|
$showsymb,$env{'user.domain'},$env{'user.name'}); |
if ($symb) { |
if ($symb) { |
&Apache::lonenc::check_decrypt(\$symb); |
if ($encrypturl =~ /^yes$/i && !$env{'request.role.adv'}) { |
$symblink = '?symb='.$symb; |
$showsymb = &Apache::lonenc::check_encrypt($symb); |
|
} |
|
$symblink = '?symb='.$showsymb; |
|
} |
|
if ($encrypturl =~ /^yes$/i && !$env{'request.role.adv'}) { |
|
$showurl = $baseurl; |
} |
} |
&Apache::lonenc::check_decrypt(\$baseurl); |
$r->print('<br /><b>'.&mt('Refers to').':</b> <a href="'.$showurl.$symblink.'">'.$restitle.'</a>'); |
$r->print('<br /><b>'.&mt('Refers to').':</b> <a href="'.$baseurl.$symblink.'">'.$restitle.'</a>'); |
|
$refers_to = 1; |
$refers_to = 1; |
} |
} |
} |
} |
if (!$refers_to) { |
if (!$refers_to) { |
if ($baseurl =~ m-^/enc/-) { |
if ($baseurl =~ m-^/enc/-) { |
if (defined($content{'courseid'})) { |
if (defined($content{'courseid'})) { |
my $unencurl = |
if (!$env{'request.course.id'}) { |
&Apache::lonenc::unencrypted($baseurl, |
my $unencurl = |
$content{'courseid'}); |
&Apache::lonenc::unencrypted($baseurl, |
if (defined($unencurl)) { |
$content{'courseid'}); |
if (&Apache::lonnet::allowed('bre',$unencurl)) { |
if ($unencurl ne '') { |
$r->print('<br /><b>'.&mt('Refers to'). |
if (&Apache::lonnet::allowed('bre',$unencurl)) { |
':</b> <a href="'.$unencurl.'">'.$restitle.'</a>'); |
$r->print('<br /><b>'.&mt('Refers to'). |
|
':</b> <a href="'.$unencurl.'">'. |
|
$restitle.'</a>'); |
|
} |
} |
} |
} |
} |
} |
} |