<?php
/****************************************************************/
/* ATutor */
/****************************************************************/
/* Copyright (c) 2002-2004 by Greg Gay & Joel Kronenberg */
/* Adaptive Technology Resource Centre / University of Toronto */
/* http://atutor.ca */
/* */
/* This program is free software. You can redistribute it and/or*/
/* modify it under the terms of the GNU General Public License */
/* as published by the Free Software Foundation. */
/****************************************************************/
$_user_location = 'prog';
$_ignore_page = true; /* used for the close the page option */
define('AC_INCLUDE_PATH', '../');
require(AC_INCLUDE_PATH.'vitals.inc.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="<?php echo $available_languages[$_SESSION['lang']][2]; ?>">
<head>
<title><?php echo _AC('upload_progress'); ?></title>
<?php if ($_GET['frame']) { ?>
<META HTTP-EQUIV="refresh" content="3;URL=prog.php?frame=1">
<?php } ?>
<link rel="stylesheet" href="../../style.css" type="text/css" />
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
</head>
<body <?php
if ($_SESSION['done']) {
echo 'onload="parent.window.close();"';
}
?>>
<?php if (!$_GET['frame']) {
$_SESSION['done'] = 0;
session_write_close();
?>
<a href="javascript:window.close();"><?php echo _AC('close'); ?></a>
<h3><?php echo _AC('upload_progress'); ?></h3>
<p><small><?php echo _AC('window_auto_close'); ?></small></p>
<br /><br />
<table border="0" align="center">
<tr>
<td><img src="../../images/transfer.gif" height="20" width="90" alt="<?php echo _AC('upload_progress'); ?>"></td>
<td valign="middle"><iframe src="prog.php?frame=1" width="100" height="25" frameborder="0" scrolling=no marginwidth="0" marginheight="1">
</iframe>
<?php } else {
if (!$_GET['t']) {
$newest_file_name = '';
$newest_file_time = 0;
// get the name of the temp file.
if ($dir = @opendir('/tmp')) {
while (($file = readdir($dir)) !== false) {
if ((strlen($file) == 9) && (substr($file, 0, 3) == 'php')) {
$filedata = stat('/tmp/'.$file);
if ($filedata['mtime'] > $newest_file_time) {
$newest_file_time = $filedata['mtime'];
$newest_file_name = $file;
$size = $filedata['size'] / 1024;
}
}
}
closedir($dir);
}
} else {
$filedata = stat('/tmp/'.$_GET['t']);
$size = $filedata['size'] / AT_KBYTE_SIZE;
}
echo '<small>';
if ($size == '') {
echo '<em>'._AC('unknown').'</em> KB';
} else {
echo number_format($size, 2).' KB';
}
echo '</small>';
} ?>
</td>
</tr>
</table>
</body>
</html>