Initial commit
This commit is contained in:
32
testall/index.php
Normal file
32
testall/index.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US" xml:lang="en">
|
||||
<head>
|
||||
<link href="../style.css" rel="stylesheet" type="text/css" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
|
||||
<title>LASUCA Controls </title>
|
||||
|
||||
<script type="text/javascript" src="../script.js"></script>
|
||||
|
||||
<script src="../js/prototype.js" type="text/javascript"></script>
|
||||
<script src="../js/scriptaculous.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
function showHint()
|
||||
{
|
||||
var sid = Math.random();
|
||||
new Ajax.Updater('overview_values', 'main.php?sid=' + sid, {asynchronous:true});
|
||||
}
|
||||
function startShowing()
|
||||
{
|
||||
new PeriodicalExecuter(showHint, 1);
|
||||
new PeriodicalExecuter(function(pe) {}, 5);
|
||||
}
|
||||
startShowing();
|
||||
</script>
|
||||
|
||||
</head>
|
||||
|
||||
<body bgcolor="#000000">
|
||||
<div id='overview_values' name='overview_values'></div>
|
||||
</body>
|
||||
</html>
|
||||
51
testall/main.php
Normal file
51
testall/main.php
Normal file
@@ -0,0 +1,51 @@
|
||||
<?php include("../data/header.php");?>
|
||||
<br>
|
||||
<br>
|
||||
<font color="#e0e802"><i>GENERAL DATA</i></font>
|
||||
<?php include("../data/newgeneral.php");?>
|
||||
<br>
|
||||
<br>
|
||||
<font color="#e0e802"><i>GENERAL DATA WITH STEAM VALUES</i></font>
|
||||
<?php include("../data/newgeneralwithsteam.php");?>
|
||||
<br>
|
||||
<br>
|
||||
<font color="#e0e802"><i>EAST AND WEST TANDEMS FULL DATA</i></font>
|
||||
<?php include("../data/newmills.php");?>
|
||||
<br>
|
||||
<br>
|
||||
<font color="#e0e802"><i>BOILERS SLIM STEAM ONLY</i></font>
|
||||
<?php include("../data/boilersslim.php");?>
|
||||
<br>
|
||||
<br>
|
||||
<font color="#e0e802"><i>BOILERS FULL DATA</i></font>
|
||||
<?php include("../data/boilersfull.php");?>
|
||||
<br>
|
||||
<br>
|
||||
<font color="#e0e802"><i>TANK LEVEL DATA SLIM</i></font>
|
||||
<?php include("../data/tanklevelsbar.php");?>
|
||||
<br>
|
||||
<br>
|
||||
<font color="#e0e802"><i>TANK LEVEL DATA STACKED</i></font>
|
||||
<?php include("../data/tanklevelswrap.php");?>
|
||||
<br>
|
||||
<br>
|
||||
<font color="#e0e802"><i>TANK LEVEL DATA VERTICAL</i></font>
|
||||
<?php include("../data/tanklvlsvert.php");?>
|
||||
<br>
|
||||
<br>
|
||||
<font color="#e0e802"><i>TABLES AND TRUCK DUMP DATA</i></font>
|
||||
<?php include("../data/tablesandtd.php");?>
|
||||
<br>
|
||||
<br>
|
||||
<font color="#e0e802"><i>EVAPORATORS AND PRE-EVAPORATOR DATA</i></font>
|
||||
<?php include("../data/evaporators.php");?>
|
||||
<br>
|
||||
<br>
|
||||
<font color="#e0e802"><i>SHELL AND TUBER HEATER DATA</i></font>
|
||||
<?php include("../data/heaters.php");?>
|
||||
<br>
|
||||
<br>
|
||||
<font color="#e0e802"><i>DRYERS DATA</i></font>
|
||||
<?php include("../data/dryers.php");?>
|
||||
<br>
|
||||
|
||||
Reference in New Issue
Block a user