Skip to content

Commit 9ff31f2

Browse files
author
Dave Conway-Jones
committed
2 parents a931f1c + c5f622f commit 9ff31f2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+307
-507
lines changed

css/front.css

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,17 +229,25 @@ a:hover {
229229
.users ul {
230230
text-align: center;
231231
list-style-type: none;
232-
margin: 0;
233232
padding: 0;
233+
max-width: 800px;
234+
margin: 0 auto;
234235
}
235236
.users ul li {
236237
margin: 10px;
237238
padding: 10px;
238239
display: inline-block;
239-
width: 200px;
240+
width: 100px;
240241
vertical-align: middle;
241242
background: white;
242243
}
244+
.users ul li a {
245+
vertical-align: middle;
246+
filter: grayscale(1) opacity(0.6);
247+
}
248+
.users ul li a:hover {
249+
filter: none;
250+
}
243251
.users ul li img {
244252
width: 100%;
245253
}

docs/api/admin/methods/post/flows/index.md

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,76 @@ The `rev` property, if provided, should reflect the revision of flows that was r
6969
}
7070
{% endhighlight %}
7171

72+
#### Setting node credentials
73+
74+
There are two ways to provide credentials with this request. The individual node
75+
objects in the `flows` array can contain a `credentials` property containing the
76+
credentials for that node.
77+
78+
Alternatively, the top level object can include a `credentials` property that has
79+
credentials for individual nodes, or a complete encrypted set.
80+
81+
**Inline node credentials :**
82+
83+
{% highlight json %}
84+
{
85+
"rev": "abc-123",
86+
"flows": [
87+
{
88+
"type": "tab",
89+
"id": "396c2376.c693dc",
90+
"label": "Sheet 1",
91+
"credentials": {
92+
"user": "my-username",
93+
"pass": "my-password"
94+
}
95+
}
96+
]
97+
}
98+
{% endhighlight %}
99+
100+
**Separate node credentials :**
101+
102+
103+
{% highlight json %}
104+
{
105+
"rev": "abc-123",
106+
"flows": [
107+
{
108+
"type": "tab",
109+
"id": "396c2376.c693dc",
110+
"label": "Sheet 1"
111+
}
112+
],
113+
"credentials": {
114+
"396c2376.c693dc": {
115+
"user": "my-username",
116+
"pass": "my-password"
117+
}
118+
}
119+
}
120+
{% endhighlight %}
121+
122+
**Encrypted node credentials:**
123+
124+
{% highlight json %}
125+
{
126+
"rev": "abc-123",
127+
"flows": [
128+
{
129+
"type": "tab",
130+
"id": "396c2376.c693dc",
131+
"label": "Sheet 1"
132+
}
133+
],
134+
"credentials": {
135+
"$": "beea417990012379ca6d4116bd1fda5bOWbwy7UnQvccxAEH1V1pSEETTfSNerYGvP4Aai6RT/DNpnjCCP/fdzildzlJhFjYcRKdO1Q="
136+
}
137+
}
138+
{% endhighlight %}}
139+
140+
141+
72142
### Response
73143

74144
Status Code | Reason | Response

docs/api/ui/typedInput/index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,14 +221,16 @@ $(".input").typedInput('width', '200px');
221221

222222
### Events
223223

224-
#### <a href="#events-change" name="events-change">change( type, value )</a>
224+
#### <a href="#events-change" name="events-change">change( event, type, value )</a>
225225

226226
Triggered when either the type or value of the input is changed.
227227

228228
```javascript
229229
$(".input").on('change', function(type, value) {} );
230230
```
231231

232+
*Note:* The `value` property was added in Node-RED 1.3
233+
232234
### Types
233235

234236
#### <a href="#types-typedefinition" name="types-typedefinition">TypeDefinition</a>

index.html

Lines changed: 30 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -120,16 +120,27 @@ <h4>In the cloud</h4>
120120
<div class="grid">
121121
<div class="content">
122122
<h3>Who's using Node-RED?</h3>
123-
<ul>
124-
<li><a href="/users/sensetecnic"><img src="users/sensetecnic/sensetecnic_logo.jpg"/></a></li>
125-
<li><a href="/users/agilit-e"><img src="users/agilit-e/Agilit-e-logo.jpg"/></a></li>
126-
<li><a href="/users/go-iot"><img src="users/go-iot/Logo-large.png"/></a></li>
127-
<li><a href="/users/spiritai"><img src="users/spiritai/spiritai.png"/></a></li>
128-
<li><a href="/users/multitech"><img src="users/multitech/multitech.png"/></a></li>
129-
<li><a href="/users/opto22"><img src="users/opto22/images/opto22.png"/></a></li>
130-
<li><a href="/users/iaconnects"><img src="users/iaconnects/iaconnects.png"/></a></li>
123+
<ul id="user-list">
124+
<li><a href="https://www.vigilent.com"><img src="users/vigilent.png"/></a></li>
125+
<li><a href="https://entelligently.com"><img src="users/entelligently.png"/></a></li>
126+
<li><a href="https://st-one.io/"><img src="users/st-one.png"/></a></li>
127+
<li><a href="https://www.aiomeet.com/"><img src="users/aiomeet.png"/></a></li>
128+
<li><a href="https://www.thingtrack.com/"><img src="users/thingtrack.png"/></a></li>
129+
<li><a href="https://www.enebular.com/"><img src="users/enebular.svg"/></a></li>
130+
<li><a href="https://www.victronenergy.com/live/venus-os:large"><img src="users/victron.png"/></a></li>
131+
<li><a href="https://www.yellaumbrella.tv/"><img src="users/yellaUmbrella.svg"/></a></li>
132+
<li><a href="https://www.veritone.com/"><img src="users/veritone.png"/></a></li>
133+
<li><a href="https://www.flowake.com/"><img src="users/flowake.png"/></a></li>
134+
<li><a href="https://sensetecnic.com/"><img src="users/sensetecnic.png"/></a></li>
135+
<li><a href="https://agilite.io/"><img src="users/agilit-e.png"/></a></li>
136+
<li><a href="http://dingo-iot.io/"><img src="users/go-iot.png"/></a></li>
137+
<li><a href="https://www.spiritai.com/"><img src="users/spiritai.png"/></a></li>
138+
<li><a href="https://www.multitech.com/"><img src="users/multitech.png"/></a></li>
139+
<li><a href="https://www.opto22.com/"><img src="users/opto22.png"/></a></li>
140+
<li><a href="https://www.iaconnects.co.uk/"><img src="users/iaconnects.png"/></a></li>
131141
</ul>
132142
<p style="text-align:center;"><a href="/about/community/">Want to feature here? Let us know!</a></p>
143+
<p style="text-align:center; font-size: 0.6em; max-width: 420px; line-height: 1.2em; margin: auto; ">All logos used with permission. These links do not constitute an endorsement or approval by the Node-RED project of any of the products, services or opinions of the companies listed.</p>
133144
</div>
134145
</div>
135146
</div>
@@ -157,3 +168,14 @@ <h3>On the blog <a class="box-link" href="/blog/">more</a></h3>
157168
</div>
158169
</div>
159170
</div>
171+
<script>
172+
$(function() {
173+
var list = $("#user-list");
174+
var items = list.children();
175+
items.sort(function() {
176+
return 0.5 - Math.random();
177+
});
178+
list.empty();
179+
items.appendTo(list);
180+
})
181+
</script>

users/agilit-e.png

64.9 KB
Loading

users/agilit-e/Agilit-e-logo.jpg

-622 KB
Binary file not shown.
-187 KB
Binary file not shown.
-187 KB
Binary file not shown.
-181 KB
Binary file not shown.
-537 KB
Binary file not shown.

0 commit comments

Comments
 (0)