annotate service/rfid_pn532_py/index.html @ 415:91b4a04a33e7

split console web component Ignore-this: 1af5e69fff09e7e5680ffb25e9236fc0
author drewp@bigasterisk.com
date Sat, 23 Mar 2019 13:57:44 -0700
parents 91162a54553c
children f134b64a0ab7
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>
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
10 <script>
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
11 requirejs.config({
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
12 paths: {
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
13 "streamed-graph": "/rdf/streamed-graph",
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
14 "quadstore": "/rdf/quadstore",
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
15 "async-module": "/lib/async/80f1793/async",
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
16 "async": "/lib/async/80f1793/async",
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
17 "jsonld-module": "/lib/jsonld.js/0.4.11/js/jsonld",
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
18 "jsonld": "/lib/jsonld.js/0.4.11/js/jsonld",
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
19 "rdfstore": "/lib/rdf_store/0.9.7/dist/rdfstore",
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
20 "moment": "/lib/moment.min",
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
21 "underscore": "/lib/underscore-1.5.2.min",
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
22 }
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
23 });
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
24 </script>
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
25 <script>
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
26 window.NS = {
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
27 dev: 'http://projects.bigasterisk.com/device/',
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
28 room: 'http://projects.bigasterisk.com/room/',
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
29 rdfs: 'http://www.w3.org/2000/01/rdf-schema#',
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
30 sensor: 'http://bigasterisk.com/homeauto/sensor/',
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
31 };
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
32 </script>
415
91b4a04a33e7 split console web component
drewp@bigasterisk.com
parents: 412
diff changeset
33 <link rel="import" href="rfid-console.html">
412
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
34 </head>
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
35 <body>
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
36 <rfid-control></rfid-control>
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
37 </body>
91162a54553c copy rest of rfid service from the first try. fix some crashes in tags.py
drewp@bigasterisk.com
parents:
diff changeset
38 </html>