diff light9/rdfdb/web/graphView.html @ 1309:d5c834766ce9

rdfdb xhtml -> html Ignore-this: a82386c15ae7789b56b56ac4e8208d28
author Drew Perttula <drewp@bigasterisk.com>
date Mon, 30 May 2016 22:03:23 +0000
parents light9/rdfdb/web/graphView.xhtml@a36928f7cc35
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/light9/rdfdb/web/graphView.html	Mon May 30 22:03:23 2016 +0000
@@ -0,0 +1,42 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <title>graphview</title>
+    <link rel="stylesheet" type="text/css" href="/style.css">
+
+  </head>
+  <body>
+    <!--
+        this page is another graph client who maintains the whole
+        graph all the time
+    -->
+
+    <div id="status">starting...</div>
+    
+    <fieldset>
+      <legend>Messages</legend>
+      <div id="out"></div>
+    </fieldset>
+
+    <p>URI substring: <input type="text" id="uriSubstring"></p>
+
+    <table>
+      <thead>
+        <tr>
+          <th>subject</th> <th>predicate</th> <th>object</th> <th>context</th>
+        </tr>
+      </thead>
+      <tbody>
+      </tbody>
+    </table>
+
+    <script type="text/javascript" src="/lib/jquery/dist/jquery.min.js"></script>
+    <script type="text/javascript" src="/websocket.js"></script>
+    <script type="text/javascript" src="syncedgraph.js"></script>
+    <script type="text/javascript">
+      $(function(){
+
+      });
+    </script>
+  </body>
+</html>