view service/wifi/index.html @ 674:2b9865bf1737

streamed-graph finally imports and builds. polymer bindings don't work in a <dom-bind> though Ignore-this: afcf4436ac3d7b88c0d7fc88de81d8e4
author drewp@bigasterisk.com
date Thu, 02 Jan 2020 00:23:36 -0800
parents f2215949c0c9
children 9ae34280218b
line wrap: on
line source

<!DOCTYPE html>
<html>
  <head>
    <title>wifi</title>
    <meta charset="utf-8" />
    <script src="/lib/webcomponents/2.4.0/webcomponents-bundle.js"></script>
    <script src="/rdf/common_paths_and_ns.js?v3"></script>
    <script type="module" src="build/bundle.js"></script>
  </head>
  <link rel="stylesheet" href="/rdf/streamed-graph.css" />
  <body class="rdfBrowsePage">
    <hr />
    <dom-bind>
      <template>
        <style>
          body {
            background: #3a3a3a;
          }
          #subjectRequest {
            width: 50em;
          }
        </style>
        <streamed-graph
          url="/sse_collector/graph/env"
          n="network"
          static="['demo.n3']"
          graph="{{graph}}"
          expanded="{{e}}"
        ></streamed-graph>
        g={{graph.version}} e={{e}}
        <wifi-display graph="{{graph}}" show-groups="true"></wifi-display>
      </template>
    </dom-bind>
    <form method="POST" action="remoteSuspend">
      <button>Suspend windows/VR machine</button>
    </form>
    <!-- also put wakeonlan actions down here -->
  </body>
</html>