starting...
-
- starting...
-
-
- Messages
-
-
-
-
-
-
-
-
-
diff --git a/light9/rdfdb/web/style.css b/light9/rdfdb/web/style.css
deleted file mode 100644
--- a/light9/rdfdb/web/style.css
+++ /dev/null
@@ -1,54 +0,0 @@
-body {
- display: flex;
- flex-direction: column;
- position: absolute;
- width: 100%;
- height: 100%;
- padding: 0px;
- margin: 0;
-}
-
-#edits {
- flex-grow: 3;
- display: flex;
- flex-direction: column;
-}
-#messages {
- flex-grow: 1;
- display: flex;
- flex-direction: column;
- margin-bottom: 3px;
-}
-
-/* rdfdb */
-#patches {
- overflow-y: scroll;
- flex: 1 1 0;
-}
-.patch {
- border: 1px solid gray;
- padding: 2px;
- margin: 4px;
-}
-.patch > div {
- font-family: monospace;
- font-size: 90%;
- white-space: pre-wrap;
-}
-.patch .adds {
- color: #3AEA38;
-}
-.patch .deletes {
- color: #FF2828;
-}
-#out {
- white-space: pre-wrap;
- overflow-y: auto;
- /* height: 50px; */
- flex: 1 0 0;
-}
-.patch fieldset {
- color: gray;
- font-family: arial;
- font-size: 75%;
-}
diff --git a/light9/rdfdb/web/syncedgraph.js b/light9/rdfdb/web/syncedgraph.js
deleted file mode 100644
--- a/light9/rdfdb/web/syncedgraph.js
+++ /dev/null
@@ -1,29 +0,0 @@
-function SyncedGraph(label) {
- /*
- like python SyncedGraph but talks over a websocket to
- rdfdb. This one has an API more conducive to reading and
- querying.
-
- light9/web/graph.coffee is the newer attempt
- */
- var self = this;
-
-
-
- self.patch = function (p) {
- throw;
- }
- self.nodesWithSubstring = function (subString) {
-
- }
- self.quads = function (s, p, o, c) {
- // any args can be null for wildcard
- }
-
-
- function onMessage(d) {
- $('#out').append($('').text(JSON.stringify(d)));
- }
-
- reconnectingWebSocket("liveSyncedGraph", onMessage);
-}