view rdfdb/web/graphView.html @ 112:be3ee1d50d28

cull some noisy logging, add design note
author drewp@bigasterisk.com
date Mon, 30 May 2022 23:01:50 -0700
parents 22c9679dbf67
children
line wrap: on
line source

<!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>