Mercurial > code > home > repos > homeauto
annotate service/cardReader/index.html @ 1708:3cfd3693a4ac
quick fixes for cyclone sse
author | drewp@bigasterisk.com |
---|---|
date | Wed, 17 Nov 2021 14:25:14 -0800 |
parents | 1ecceb2e92a3 |
children |
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 | 10 <script src="/rdf/common_paths_and_ns.js"></script> |
415 | 11 <link rel="import" href="rfid-console.html"> |
432 | 12 <style> |
13 .served-resources { | |
14 margin-top: 4em; | |
15 border-top: 1px solid gray; | |
16 padding-top: 1em; | |
17 } | |
18 .served-resources a { | |
19 padding-right: 2em; | |
20 } | |
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 | 24 <rfid-console></rfid-console> |
25 | |
475 | 26 <template id="t" is="dom-bind"> |
27 <streamed-graph url="graph/events" graph="{{graph}}"></streamed-graph> | |
28 <div id="out"></div> | |
29 <script type="module" src="/rdf/streamed_graph_view.js"></script> | |
30 </template> | |
723 | 31 |
432 | 32 <div class="served-resources"> |
33 <a href="stats/">/stats/</a> | |
34 <a href="graph">/graph</a> | |
35 <a href="graph/events">/graph/events</a> | |
36 <a href="output" >(post) /output</a> | |
37 <a href="rewrite">(post) /rewrite</a> | |
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> |