Mercurial > code > home > repos > homeauto
comparison service/rdf_from_mqtt/index.html @ 718:edc14422f128
add rdf_from_mqtt, though at the moment the graph urls may not be in sync and the reqs have just been updated
Ignore-this: 11b16f06340adc7228930f3774323d1a
author | drewp@bigasterisk.com |
---|---|
date | Tue, 04 Feb 2020 23:33:21 -0800 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
717:e9d9b8506cb3 | 718:edc14422f128 |
---|---|
1 <!doctype html> | |
2 <html> | |
3 <head> | |
4 <title>rdf_from_mqtt</title> | |
5 <meta charset="utf-8"> | |
6 <script src="/lib/polymer/1.0.9/webcomponentsjs/webcomponents.min.js"></script> | |
7 <script src="/lib/require/require-2.3.3.js"></script> | |
8 <script src="/rdf/common_paths_and_ns.js"></script> | |
9 | |
10 <link rel="stylesheet" href="/rdf/browse/style.css"> | |
11 | |
12 <link rel="import" href="/rdf/streamed-graph.html"> | |
13 <link rel="import" href="/lib/polymer/1.0.9/polymer/polymer.html"> | |
14 | |
15 <meta name="mobile-web-app-capable" content="yes"> | |
16 <meta name="viewport" content="width=device-width, initial-scale=1"> | |
17 </head> | |
18 <body class="rdfBrowsePage"> | |
19 <template id="t" is="dom-bind"> | |
20 <streamed-graph url="mqtt/events" graph="{{graph}}"></streamed-graph> | |
21 <div id="out"></div> | |
22 <script type="module" src="/rdf/streamed_graph_view.js"></script> | |
23 </template> | |
24 | |
25 <div class="served-resources"> | |
26 <a href="stats/">/stats/</a> | |
27 <a href="mqtt">/mqtt</a> | |
28 <a href="mqtt/events">/mqtt/events</a> | |
29 </div> | |
30 | |
31 </body> | |
32 </html> |