annotate service/arduinoNode/static/index.html @ 978:e9ed6159b5fa

handle compact/full uris better, but still not always right Ignore-this: 10d98f16a659f899528eb86411473b18 darcs-hash:20150417090015-312f9-dd07384187555a6909b9630c98e09ab5f9865f7c
author drewp <drewp@bigasterisk.com>
date Fri, 17 Apr 2015 02:00:15 -0700
parents 6754aa8aab38
children fc5fdcc3ed4a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
1 <!doctype html>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
2 <html>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
3 <head>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
4 <title>arduinoNode</title>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
5 <meta charset="utf-8" />
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
6 <link rel="import" href="/lib/polymer/0.5.2/polymer/polymer.html">
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
7 <link rel="import" href="/lib/polymer/0.5.2/core-ajax/core-ajax.html">
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
8 <link rel="import" href="/room/ari/static/rdf-observe.html">
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
9 <link rel="import" href="/room/ari/static/rdf-oneshot.html">
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
10 <link rel="import" href="static/output-widgets.html">
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
11
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
12 <style>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
13 body {
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
14 font-family: monospace;
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
15 }
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
16 </style>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
17 </head>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
18 <body layout vertical fullbleed>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
19 <script>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
20 window.NS = {
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
21 dev: 'http://projects.bigasterisk.com/device/',
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
22 room: 'http://projects.bigasterisk.com/room/',
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
23 rdfs: 'http://www.w3.org/2000/01/rdf-schema#',
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
24 };
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
25 </script>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
26
978
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
27 <script>
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
28 PolymerExpressions.prototype.tojson = function(input) {
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
29 return JSON.stringify(input);
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
30 };
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
31
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
32 // not well defined for uri prefixes that are string prefixes of each other
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
33 PolymerExpressions.prototype.compactUri = function(uri) {
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
34 if (uri === undefined) {
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
35 return uri;
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
36 }
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
37 for (var short of Object.keys(window.NS)) {
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
38 var prefix = window.NS[short];
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
39 if (uri.indexOf(prefix) == 0) {
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
40 return short + ':' + uri.substr(prefix.length);
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
41 }
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
42 }
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
43 return uri;
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
44 };
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
45 </script>
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
46
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
47 <polymer-element name="linked-uri" noscript attributes="href">
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
48 <template>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
49 <a href="{{href}}">{{href}}</a>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
50 </template>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
51 </polymer-element>
978
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
52
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
53 <!-- subj/pred are compact uris -->
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
54 <polymer-element name="watched-subgraph" noscript attributes="subj pred">
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
55 <template>
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
56 <style>
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
57 .read { font-weight: bold; }
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
58 </style>
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
59
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
60 <rdf-observe
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
61 graph="http://dash:9059/graph" xtodo="get host here"
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
62 subject="{{subj}}"
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
63 predicate="{{pred}}"
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
64 out="{{out}}">
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
65 </rdf-observe>
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
66
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
67 <div>{{subj}}, {{pred}},
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
68 <span class="read">{{out[pred]['@value']}}</span>
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
69 </div>
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
70
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
71 </template>
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
72 </polymer-element>
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
73
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
74 <polymer-element name="arduinonode-boards" noscript>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
75 <template>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
76 <style>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
77 h1 {
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
78 margin: 0;
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
79 font-size: 130%;
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
80 }
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
81 ul {
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
82 padding-left: 5px;
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
83 }
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
84 .board, .device {
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
85 border: 1px solid gray;
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
86 border-radius: 10px;
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
87 margin: 13px;
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
88 padding: 7px;
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
89 box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.14);
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
90 }
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
91 .board {
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
92 background: rgb(244, 244, 244);
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
93 }
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
94 .device {
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
95 background: #fff;
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
96 }
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
97 </style>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
98 <core-ajax
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
99 url="boards"
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
100 auto="true"
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
101 handleAs="json"
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
102 response="{{ret}}"></core-ajax>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
103 <template repeat="{{board in ret.boards}}">
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
104 <div class="board">
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
105 <h1>Board <linked-uri href="{{board.uri}}"></linked-uri></h1>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
106 <h2>Devices</h2>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
107 <ul>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
108 <template repeat="{{dev in board.devices}}">
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
109 <div class="device">
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
110 <h1>
976
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
111 {{dev.className}}
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
112 <linked-uri href="{{dev.uri}}"></linked-uri>
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
113 </h1>
976
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
114
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
115 <template if="{{dev.watchPrefixes.length}}">
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
116 <div>watching:</div>
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
117 <ul>
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
118 <template repeat="{{prefix in dev.watchPrefixes}}">
978
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
119 <watched-subgraph
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
120 subj="{{prefix[0] | compactUri}}"
e9ed6159b5fa handle compact/full uris better, but still not always right
drewp <drewp@bigasterisk.com>
parents: 976
diff changeset
121 pred="{{prefix[1] | compactUri}}"></watched-subgraph>
976
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
122 </template>
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
123 </ul>
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
124 </template>
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
125
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
126 <template if="{{dev.outputWidgets.length}}">
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
127 <div>send output:</div>
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
128 <ul>
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
129 <template repeat="{{out in dev.outputWidgets}}">
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
130 <div>
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
131 <output-widget-any desc="{{out}}"></output-widget-any>
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
132 </div>
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
133 </template>
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
134 </ul>
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
135 </template>
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
136 </div>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
137 </template>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
138 </ul>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
139 </div>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
140 </template>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
141 </template>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
142 </polymer-element>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
143 <arduinonode-boards></arduinonode-boards>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
144
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
145 <polymer-element name="data-dump" noscript>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
146 <template>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
147 <rdf-observe
976
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
148 graph="http://dash:9059/graph"
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
149 subject="http://bigasterisk.com/homeauto/board1/oneWire/"
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
150 predicate="room:temperatureF"
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
151 out="{{out}}">
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
152 </rdf-observe>
976
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
153 <div>sees: {{out['room:temperatureF']['@value']}}</div>
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
154
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
155
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
156 <rdf-observe
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
157 graph="http://dash:9059/graph"
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
158 subject="http://bigasterisk.com/homeauto/board1/oneWire/"
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
159 predicate="http://projects.bigasterisk.com/room/temperatureRetries"
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
160 out="{{out2}}">
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
161 </rdf-observe>
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
162 <div>sees2: {{out2['room:temperatureRetries']['@value']}}</div>
6754aa8aab38 clean up rdf-observe demo ui
drewp <drewp@bigasterisk.com>
parents: 975
diff changeset
163
975
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
164 </template>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
165 </polymer-element>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
166 <!-- <data-dump></data-dump> -->
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
167 </body>
f3023410d875 polymer board debug page with working output widgets
drewp <drewp@bigasterisk.com>
parents:
diff changeset
168 </html>