diff options
Diffstat (limited to 'src/pmwebapi/jsdemos/jsbrowser/index.html')
-rw-r--r-- | src/pmwebapi/jsdemos/jsbrowser/index.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/pmwebapi/jsdemos/jsbrowser/index.html b/src/pmwebapi/jsdemos/jsbrowser/index.html new file mode 100644 index 0000000..bf79522 --- /dev/null +++ b/src/pmwebapi/jsdemos/jsbrowser/index.html @@ -0,0 +1,34 @@ +<html> + <head> + <script type="text/javascript" src="../jquery-1.7.2.js"></script> + <script type="text/javascript" src="jsbrowser.js"></script> + <title>pcp metric browser</title> + </head> + <body> + + <!-- metadata about current context --> + + <div id="context"> + </div> + + <!-- forms associated with connecting to new context --> + + <div id="new_context"> + <h1>pcp metric browser: host-local connection</h1> + <input type="submit" value="submit"></input> + <h1>pcp metric browser: remote connection</h1> + <input type="text" name="hostname"></input> + <h1>pcp metric browser: archive file</h1> + <input type="text" name="archivefile"></input> + </div> + + <!-- checkboxed list of metrics --> + + <div id="metrics"> + </div> + + <!-- metric values --> + <div id="values"> + </div> + </body> +</html> |