node-red-contrib-dynamorse-file-io
Version:
Dynamorse File IO nodes for Node-RED
56 lines (47 loc) • 1.8 kB
HTML
<!--
Copyright 2018 Streampunk Media Ltd.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<script type="text/javascript">
RED.nodes.registerType('mov-in',{
category: 'funnel',
color: '#D79748',
defaults: {
name: { value : '' },
maxBuffer : { value : 10, validate : RED.validators.number() }
},
inputs:0,
outputs:2,
icon: "funnel.png",
label: function() {
return this.name || "mov-in";
}
});
</script>
<script type="text/x-red" data-template-name="mov-in">
<!-- Common to all funnel nodes -->
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> name</label>
<input type="text" id="node-input-name" placeholder="name">
</div>
<div class="form-row">
<label for="node-input-maxBuffer"><i class="fa fa-suitcase"></i> max buffer</label>
<input type="number" id="node-input-maxBuffer" placeholder="10" style="width: 100px">
</div>
</script>
<script type="text/x-red" data-help-name="mov-in">
<h1>MOV file input</h1>
<p>Read grains from a MOV file, creating one or more NMOS flow(s) per
interleaved track.</p>
<h3>Maturity</h3>
<p>Not implemented -
<a href="https://github.com/Streampunk/dynamorse/issues/10">status</a>.
</script>