version 1.74, 2005/11/09 09:06:59
|
version 1.75, 2006/04/10 22:47:18
|
Line 1273 sub handler {
|
Line 1273 sub handler {
|
&Apache::loncommon::content_type($r,'text/html'); |
&Apache::loncommon::content_type($r,'text/html'); |
$r->send_http_header; |
$r->send_http_header; |
|
|
|
my (%loaditem,$js); |
|
|
if ( ($env{'form.action'} eq 'newdir') && ($env{'form.phase'} eq 'two') && ( ($env{'form.callingmode'} eq 'testbank') || ($env{'form.callingmode'} eq 'imsimport') ) ) { |
if ( ($env{'form.action'} eq 'newdir') && ($env{'form.phase'} eq 'two') && ( ($env{'form.callingmode'} eq 'testbank') || ($env{'form.callingmode'} eq 'imsimport') ) ) { |
my $newdirname = $env{'form.newfilename'}; |
my $newdirname = $env{'form.newfilename'}; |
$r->print('<html><head><title>LON-CAPA Construction Space</title><script language="Javascript">'); |
$js = qq| |
$r->print(qq| |
<script type="text/javascript"> |
function writeDone() { |
function writeDone() { |
var winName = window.opener |
var winName = window.opener |
window.focus(); |
window.focus(); |
Line 1284 function writeDone() {
|
Line 1286 function writeDone() {
|
setTimeout("self.close()",10000) |
setTimeout("self.close()",10000) |
} |
} |
</script> |
</script> |
</head>|); |
|; |
my $loaditem = 'onLoad="writeDone()"'; |
$loaditem{'onload'} => "writeDone()"; |
$r->print(&Apache::loncommon::bodytag('Construction Space File Operation','',$loaditem)); |
|
} else { |
|
$r->print('<html><head><title>LON-CAPA Construction Space</title></head>'); |
|
$r->print(&Apache::loncommon::bodytag('Construction Space File Operation')); |
|
} |
} |
|
|
|
$r->print(&Apache::loncommon::start_page('Construction Space File Operation', |
|
$js, |
|
{'add_entries' => \%loaditem,})); |
|
|
$r->print('<h3>'.&mt('Location').': '.&display($fn).'</h3>'); |
$r->print('<h3>'.&mt('Location').': '.&display($fn).'</h3>'); |
|
|
Line 1325 function writeDone() {
|
Line 1326 function writeDone() {
|
$env{'form.action'} eq 'Select Action' ) { |
$env{'form.action'} eq 'Select Action' ) { |
$r->print('<h3>'.&mt('New Resource').'</h3>'); |
$r->print('<h3>'.&mt('New Resource').'</h3>'); |
} else { |
} else { |
$r->print('<p>'.&mt('Unknown Action').' '.$env{'form.action'}.' </p></body></html>'); |
$r->print('<p>'.&mt('Unknown Action').' '.$env{'form.action'}.' </p>'. |
|
&Apache::loncommon::end_page()); |
return OK; |
return OK; |
} |
} |
if ($env{'form.phase'} eq 'two') { |
if ($env{'form.phase'} eq 'two') { |
Line 1336 function writeDone() {
|
Line 1338 function writeDone() {
|
&phaseone($r,$fn,$uname,$udom); |
&phaseone($r,$fn,$uname,$udom); |
} |
} |
|
|
$r->print('</body></html>'); |
$r->print(&Apache::loncommon::end_page()); |
return OK; |
return OK; |
} |
} |
|
|