summaryrefslogtreecommitdiff
path: root/html/ajax/index.html
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2006-08-30 21:18:01 +0000
committerStef Walter <stef@memberwebs.com>2006-08-30 21:18:01 +0000
commit96e3074f9de2b0c7ba8b0b11edfa42ffd2803037 (patch)
treec7b5addc5b6f0b14fe028b54fae6384e1cd1f2a6 /html/ajax/index.html
parente228b6ac441b5a9ceff398d874ba7b4a118c819b (diff)
Reorganize things, and build and install them properly
Diffstat (limited to 'html/ajax/index.html')
-rw-r--r--html/ajax/index.html50
1 files changed, 50 insertions, 0 deletions
diff --git a/html/ajax/index.html b/html/ajax/index.html
new file mode 100644
index 0000000..3ed3264
--- /dev/null
+++ b/html/ajax/index.html
@@ -0,0 +1,50 @@
+<html>
+ <head>
+
+ <!-- CUSTOMIZE: Configure these settings -->
+ <script language="javascript">
+
+ // Specify settings here
+ var ENDPOINT = "/rrdui-back/";
+
+ // The background and foregrond colors of the graph
+ var GRAPH_COLOR_BACK = ":252424";
+ var GRAPH_COLOR_FONT = ":E7E1CC";
+
+ // The graph size
+ var GRAPH_WIDTH = 450;
+ var GRAPH_HEIGHT = 120
+
+ // Amount of space on the right and left of a graph
+ var GRAPH_MARGIN_LEFT = 67;
+ var GRAPH_MARGIN_RIGHT = 27;
+
+ </script>
+ <title>Statistics Monitoring</title>
+ <link href="style.css" type="text/css" rel="stylesheet"/>
+ </head>
+ <body>
+ <table id="main-table" cellspacing="0" cellpadding="0">
+ <tr id="top-row"><td>
+
+ <table border="0" width="100%">
+ <tr><td id="headers" width="60%">
+ <span class="header" id="header-template">Text</span>
+ </td>
+ <td align="right" id="logo">
+
+ <!-- CUSTOMIZE: Add your logo or title here -->
+ Network Statistics
+
+ </td></tr>
+ </table>
+
+ </td></tr>
+ <tr id="main-row"><td colspan="2" id="main-cell">
+ <iframe id="main-frame" src="frame.html"
+ border="0" frameborder="0"></iframe>
+ </td></tr>
+ </table>
+ <script language="javascript" src="rrdui.js"></script>
+ </body>
+</html>