mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Rename exec node hideWin option
This commit is contained in:
parent
04f4a76b41
commit
2baff243ed
@ -41,8 +41,8 @@
|
|||||||
<span data-i18n="exec.label.seconds"></span>
|
<span data-i18n="exec.label.seconds"></span>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="node-input-windowsHide" style="width: auto !important; padding-right:10px"><i class="fa fa-windows"></i> <span data-i18n="exec.label.windowshide"></span></label>
|
<label for="node-input-winHide" style="width: auto !important; padding-right:10px"><i class="fa fa-windows"></i> <span data-i18n="exec.label.winHide"></span></label>
|
||||||
<input type="checkbox" id="node-input-windowsHide" style="display:inline-block; width:auto;">
|
<input type="checkbox" id="node-input-winHide" style="margin-top: 0; display:inline-block; width:auto;">
|
||||||
</div>
|
</div>
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label for="node-input-name"><i class="fa fa-tag"></i> <span data-i18n="common.label.name"></span></label>
|
<label for="node-input-name"><i class="fa fa-tag"></i> <span data-i18n="common.label.name"></span></label>
|
||||||
@ -60,7 +60,7 @@
|
|||||||
append: {value:""},
|
append: {value:""},
|
||||||
useSpawn: {value:"false"},
|
useSpawn: {value:"false"},
|
||||||
timer: {value:""},
|
timer: {value:""},
|
||||||
windowsHide: {value:false},
|
winHide: {value:false},
|
||||||
oldrc: {value:false},
|
oldrc: {value:false},
|
||||||
name: {value:""}
|
name: {value:""}
|
||||||
},
|
},
|
||||||
@ -98,10 +98,10 @@
|
|||||||
|
|
||||||
$("#node-input-addpay-cb").trigger("change")
|
$("#node-input-addpay-cb").trigger("change")
|
||||||
|
|
||||||
if (this.windowsHide === "true" || this.windowsHide === true) {
|
if (this.winHide === "true" || this.winHide === true) {
|
||||||
$("#node-input-windowsHide").prop("checked",true);
|
$("#node-input-winHide").prop("checked",true);
|
||||||
} else {
|
} else {
|
||||||
$("#node-input-windowsHide").prop("checked",false);
|
$("#node-input-winHide").prop("checked",false);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
oneditsave: function() {
|
oneditsave: function() {
|
||||||
|
@ -34,8 +34,8 @@ module.exports = function(RED) {
|
|||||||
this.timer = Number(n.timer || 0)*1000;
|
this.timer = Number(n.timer || 0)*1000;
|
||||||
this.activeProcesses = {};
|
this.activeProcesses = {};
|
||||||
this.oldrc = (n.oldrc || false).toString();
|
this.oldrc = (n.oldrc || false).toString();
|
||||||
this.execOpt = {encoding:'binary', maxBuffer:RED.settings.execMaxBufferSize||10000000, windowsHide: (n.windowsHide === true)};
|
this.execOpt = {encoding:'binary', maxBuffer:RED.settings.execMaxBufferSize||10000000, windowsHide: (n.winHide === true)};
|
||||||
this.spawnOpt = {windowsHide: (n.windowsHide === true) }
|
this.spawnOpt = {windowsHide: (n.winHide === true) }
|
||||||
var node = this;
|
var node = this;
|
||||||
|
|
||||||
if (process.platform === 'linux' && fs.existsSync('/bin/bash')) { node.execOpt.shell = '/bin/bash'; }
|
if (process.platform === 'linux' && fs.existsSync('/bin/bash')) { node.execOpt.shell = '/bin/bash'; }
|
||||||
|
@ -73,6 +73,7 @@
|
|||||||
<p>The returned <code>payload</code> is usually a <i>string</i>, unless non-UTF8 characters are detected, in which
|
<p>The returned <code>payload</code> is usually a <i>string</i>, unless non-UTF8 characters are detected, in which
|
||||||
case it is a <i>buffer</i>.</p>
|
case it is a <i>buffer</i>.</p>
|
||||||
<p>The node's status icon and PID will be visible while the node is active. Changes to this can be read by the <code>Status</code> node.</p>
|
<p>The node's status icon and PID will be visible while the node is active. Changes to this can be read by the <code>Status</code> node.</p>
|
||||||
|
<p>The <code>Hide console</code> option will hide the process console normally shown on Windows systems.</p>
|
||||||
<h4>Killing processes</h4>
|
<h4>Killing processes</h4>
|
||||||
<p>Sending <code>msg.kill</code> will kill a single active process. <code>msg.kill</code> should be a string containing
|
<p>Sending <code>msg.kill</code> will kill a single active process. <code>msg.kill</code> should be a string containing
|
||||||
the type of signal to be sent, for example, <code>SIGINT</code>, <code>SIGQUIT</code> or <code>SIGHUP</code>.
|
the type of signal to be sent, for example, <code>SIGINT</code>, <code>SIGQUIT</code> or <code>SIGHUP</code>.
|
||||||
@ -80,5 +81,4 @@
|
|||||||
<p>If the node has more than one process running then <code>msg.pid</code> must also be set with the value of the PID to be killed.</p>
|
<p>If the node has more than one process running then <code>msg.pid</code> must also be set with the value of the PID to be killed.</p>
|
||||||
<p>If a value is provided in the <code>Timeout</code> field then, if the process has not completed when the specified number of seconds has elapsed, the process will be killed automatically</p>
|
<p>If a value is provided in the <code>Timeout</code> field then, if the process has not completed when the specified number of seconds has elapsed, the process will be killed automatically</p>
|
||||||
<p>Tip: if running a Python app you may need to use the <code>-u</code> parameter to stop the output being buffered.</p>
|
<p>Tip: if running a Python app you may need to use the <code>-u</code> parameter to stop the output being buffered.</p>
|
||||||
<p>The <code>Hide windows</code> option can be set to hide shell windows under Windows. This option will only affect Windows operating systems.</p>
|
|
||||||
</script>
|
</script>
|
||||||
|
@ -199,7 +199,7 @@
|
|||||||
"stdout": "stdout",
|
"stdout": "stdout",
|
||||||
"stderr": "stderr",
|
"stderr": "stderr",
|
||||||
"retcode": "return code",
|
"retcode": "return code",
|
||||||
"windowshide": "Hide windows"
|
"winHide": "Hide console"
|
||||||
},
|
},
|
||||||
"placeholder": {
|
"placeholder": {
|
||||||
"extraparams": "extra input parameters"
|
"extraparams": "extra input parameters"
|
||||||
|
Loading…
Reference in New Issue
Block a user