link start!

This commit is contained in:
cherubin
2026-03-17 13:31:18 -07:00
commit 08abe87cfb
5910 changed files with 386288 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html>
<head>
<title>Niagara AX Demo</title>
<style type="text/css">
frame { border: 0; }
</style>
</head>
<frameset rows="75,*">
<frame src="top.html" scrolling="no" />
<frameset cols="200,*">
<frame src="file:^frames/tree.html" />
<!--
Change this ord to point to the initial home page
that you want to display when a user logs in.
-->
<frame src="station:|slot:/PxHome" name="content" />
</frameset>
</frameset>
</html>
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 841 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 910 B

+59
View File
@@ -0,0 +1,59 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>TitleBar</title>
</head>
<body style="background: #3872b2; margin:0; font: 11px Tahoma;">
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td>
<img src="images/mainLogo.gif" alt="" />
</td>
<td width="100%" valign="top">
<img src="images/titleBarBg.gif" width="100%" height="49" alt="" />
</td>
<td align="right" valign="top">
<img src="images/logos.gif" alt="" />
</td>
</tr>
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td>
<div style="width:10px; height:5px;" align="right">
<img src="images/topLeftCorner.gif" width="8" height="5" align="top" alt="" />
</div>
</td>
<td>
<div style="width:150px; height:5px;">
<img src="images/topBorder.gif" width="150" height="5" align="top" alt="" />
</div>
</td>
<td>
<div style="width:8px; height:5px;">
<img src="images/topRightCorner.gif" width="8" height="5" align="top" alt="" />
</div>
</td>
<td>
<div style="width:8px; height:5px;" align="right">
<img src="images/topLeftCorner.gif" width="8" height="5" align="top" alt="" />
</div>
</td>
<td width="100%">
<div style="width:100%; height:5px; margin:0; padding:0;">
<img src="images/topBorder.gif" width="100%" height="5" align="top" alt="" />
</div>
</td>
<td>
<div style="width:10px; height:5px;">
<img src="images/topRightCorner.gif" width="8" height="5" align="top" alt="" />
</div>
</td>
</tr>
</table>
</body>
</html>
+71
View File
@@ -0,0 +1,71 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
To use tree.js - copy this file to your frames directory
and edit the javascript block to build your tree. The
format for Node is:
parent.kids.push(new Node(<name>, <href>, <href_target>));
You may also edit the tree style by modifying the style
block above the javascript block.
Be sure that the tree code is installed under file:^tree.
-->
<html>
<head>
<title>Tree</title>
<script type='text/javascript' src='file:^tree/tree.js'></script>
<style type='text/css'>
body
{
background-color: #fff;
background-image: url(file:^frames/images/treeBg.gif);
background-repeat: repeat-x;
}
#tree { font: 11px Tahoma; }
#tree img { vertical-align: middle; }
#tree img.expander { cursor: pointer; }
#tree a { font-weight: bold; }
#tree a:link { color: black; text-decoration: none; }
#tree a:visited { color: black; text-decoration: none; }
#tree a:hover { color: black; text-decoration: underline; }
#tree a:active { color: black; text-decoration: none; }
</style>
<script type='text/javascript'>
var root = new Node("Home", "/ord?station:|slot:/PxHome", "content");
var n = new Node("Graphics", "/ord?station:|slot:/PxHome/Graphics", "content");
root.kids.push(n);
n.kids.push(n = new Node("Campus", "/ord?station:|slot:/PxHome/Graphics/Campus", "content"));
n.kids.push(n = new Node("Building", "/ord?station:|slot:/PxHome/Graphics/Campus/Building", "content"));
n.kids.push(new Node("Main AHU", "/ord?station:|slot:/PxHome/Graphics/Campus/Building/AirHandler", "content"));
n.kids.push(new Node("Floor 4", "/ord?station:|slot:/PxHome/Graphics/Campus/Building/Floor4", "content"));
n.kids.push(new Node("Floor 3", "/ord?station:|slot:/PxHome/Graphics/Campus/Building/Floor3", "content"));
n.kids.push(new Node("Floor 2", "/ord?station:|slot:/PxHome/Graphics/Campus/Building/Floor2", "content"));
n.kids.push(new Node("Floor 1", "/ord?station:|slot:/PxHome/Graphics/Campus/Building/Floor1", "content"));
n.kids.push(new Node("Meter Room", "/ord?station:|slot:/PxHome/Graphics/Campus/Building/MeterRoom", "content"));
root.kids.push(n = new Node("Alarming", "/ord?station:|slot:/PxHome/Alarm", "content"));
n.kids.push(new Node("Alarm Console", "/ord?station:|slot:/Services/AlarmService/ConsoleRecipient", "content"));
n.kids.push(new Node("Alarm Demo", "/ord?station:|slot:/PxHome/Alarm/AlarmDemo", "content"));
root.kids.push(new Node("Reports", "/ord?station:|slot:/PxHome/Reports", "content"));
root.kids.push(new Node("Schedule", "/ord?station:|slot:/Logic/HousingUnit/Schedule", "content"));
root.kids.push(new Node("History", "/ord?station:|slot:/PxHome/History", "content"));
root.kids.push(new Node("User Service", "/ord?station:|slot:/Services/UserService", "content"));
</script>
</head>
<body onload='initTree(root);'>
<div id='tree'></div>
</body>
</html>