Mercurial > code > home > repos > homeauto
diff service/store/index.html @ 1261:1431cd58803d
change port, put to /values, build updates
Ignore-this: 8ebe7c9293d7ae47f6de73677053cafb
darcs-hash:d871c2ddabe6bf403fc15c7f56a7325a98d45b71
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Sat, 20 Apr 2019 23:30:31 -0700 |
parents | c1792115b1d3 |
children | 92cb3245fdd1 |
line wrap: on
line diff
--- a/service/store/index.html Sat Apr 20 23:29:44 2019 -0700 +++ b/service/store/index.html Sat Apr 20 23:30:31 2019 -0700 @@ -3,10 +3,41 @@ <head> <title>store</title> <meta charset="utf-8" /> + <script src="/lib/polymer/1.0.9/webcomponentsjs/webcomponents.min.js"></script> + <script src="/lib/require/require-2.3.3.js"></script> + <script src="/rdf/common_paths_and_ns.js"></script> + + <link rel="import" href="/rdf/streamed-graph.html"> + <link rel="import" href="/lib/polymer/1.0.9/polymer/polymer.html"> + + <meta name="mobile-web-app-capable" content="yes"> + <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> + <template id="t" is="dom-bind"> - table of statements, creation times, creators, which UI they used - + table of statements, creation times, creators, which UI they used + <streamed-graph url="graph/events" graph="{{graph}}"></streamed-graph> + <div id="out"></div> + <script type="module" src="/rdf/streamed_graph_view.js"></script> + </template> + <style> + .served-resources { + margin-top: 4em; + border-top: 1px solid gray; + padding-top: 1em; + } + .served-resources a { + padding-right: 2em; + } + </style> + + <div class="served-resources"> + <a href="stats/">/stats/</a> + <a href="graph">/graph</a> + <a href="graph/events">/graph/events</a> + <a href="values">/values (put)</a> + </div> + </body> </html>