annotate service/cardReader/index.html @ 1745:d90cb7c06f15

try to crash if mqtt doesn't connect
author drewp@bigasterisk.com
date Thu, 09 Nov 2023 17:21:59 -0800
parents 1ecceb2e92a3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
412
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
1 <!doctype html>
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
2 <html>
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
3 <head>
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
4 <title>rfid</title>
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
5 <meta charset="utf-8" />
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
6 <meta name="mobile-web-app-capable" content="yes">
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
7 <meta name="viewport" content="width=device-width, initial-scale=1">
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
8 <script src="/lib/polymer/1.0.9/webcomponentsjs/webcomponents.min.js"></script>
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
9 <script src="/lib/require/require-2.3.3.js"></script>
475
b264ca970aba refactor common viewer setup
drewp@bigasterisk.com
parents: 432
diff changeset
10 <script src="/rdf/common_paths_and_ns.js"></script>
415
91b4a04a33e7 split console web component
drewp@bigasterisk.com
parents: 412
diff changeset
11 <link rel="import" href="rfid-console.html">
432
f134b64a0ab7 py3, rfid-console rename
drewp@bigasterisk.com
parents: 415
diff changeset
12 <style>
f134b64a0ab7 py3, rfid-console rename
drewp@bigasterisk.com
parents: 415
diff changeset
13 .served-resources {
f134b64a0ab7 py3, rfid-console rename
drewp@bigasterisk.com
parents: 415
diff changeset
14 margin-top: 4em;
f134b64a0ab7 py3, rfid-console rename
drewp@bigasterisk.com
parents: 415
diff changeset
15 border-top: 1px solid gray;
f134b64a0ab7 py3, rfid-console rename
drewp@bigasterisk.com
parents: 415
diff changeset
16 padding-top: 1em;
f134b64a0ab7 py3, rfid-console rename
drewp@bigasterisk.com
parents: 415
diff changeset
17 }
f134b64a0ab7 py3, rfid-console rename
drewp@bigasterisk.com
parents: 415
diff changeset
18 .served-resources a {
f134b64a0ab7 py3, rfid-console rename
drewp@bigasterisk.com
parents: 415
diff changeset
19 padding-right: 2em;
f134b64a0ab7 py3, rfid-console rename
drewp@bigasterisk.com
parents: 415
diff changeset
20 }
f134b64a0ab7 py3, rfid-console rename
drewp@bigasterisk.com
parents: 415
diff changeset
21 </style>
412
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
22 </head>
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
23 <body>
432
f134b64a0ab7 py3, rfid-console rename
drewp@bigasterisk.com
parents: 415
diff changeset
24 <rfid-console></rfid-console>
f134b64a0ab7 py3, rfid-console rename
drewp@bigasterisk.com
parents: 415
diff changeset
25
475
b264ca970aba refactor common viewer setup
drewp@bigasterisk.com
parents: 432
diff changeset
26 <template id="t" is="dom-bind">
b264ca970aba refactor common viewer setup
drewp@bigasterisk.com
parents: 432
diff changeset
27 <streamed-graph url="graph/events" graph="{{graph}}"></streamed-graph>
b264ca970aba refactor common viewer setup
drewp@bigasterisk.com
parents: 432
diff changeset
28 <div id="out"></div>
b264ca970aba refactor common viewer setup
drewp@bigasterisk.com
parents: 432
diff changeset
29 <script type="module" src="/rdf/streamed_graph_view.js"></script>
b264ca970aba refactor common viewer setup
drewp@bigasterisk.com
parents: 432
diff changeset
30 </template>
723
b87b6e9cedb2 whitespace
drewp@bigasterisk.com
parents: 475
diff changeset
31
432
f134b64a0ab7 py3, rfid-console rename
drewp@bigasterisk.com
parents: 415
diff changeset
32 <div class="served-resources">
f134b64a0ab7 py3, rfid-console rename
drewp@bigasterisk.com
parents: 415
diff changeset
33 <a href="stats/">/stats/</a>
f134b64a0ab7 py3, rfid-console rename
drewp@bigasterisk.com
parents: 415
diff changeset
34 <a href="graph">/graph</a>
f134b64a0ab7 py3, rfid-console rename
drewp@bigasterisk.com
parents: 415
diff changeset
35 <a href="graph/events">/graph/events</a>
f134b64a0ab7 py3, rfid-console rename
drewp@bigasterisk.com
parents: 415
diff changeset
36 <a href="output" >(post) /output</a>
f134b64a0ab7 py3, rfid-console rename
drewp@bigasterisk.com
parents: 415
diff changeset
37 <a href="rewrite">(post) /rewrite</a>
f134b64a0ab7 py3, rfid-console rename
drewp@bigasterisk.com
parents: 415
diff changeset
38 </div>
412
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
39 </body>
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
40 </html>