diff --git a/packages/node_modules/@node-red/nodes/core/network/22-websocket.html b/packages/node_modules/@node-red/nodes/core/network/22-websocket.html index 2976342cb..7a0c7c1da 100644 --- a/packages/node_modules/@node-red/nodes/core/network/22-websocket.html +++ b/packages/node_modules/@node-red/nodes/core/network/22-websocket.html @@ -41,14 +41,20 @@ (function() { const headerTypes = [ + /* { value: "Accept", label: "Accept", hasValue: false }, { value: "Accept-Encoding", label: "Accept-Encoding", hasValue: false }, { value: "Accept-Language", label: "Accept-Language", hasValue: false }, + */ { value: "Authorization", label: "Authorization", hasValue: false }, + /* { value: "Content-Type", label: "Content-Type", hasValue: false }, { value: "Cache-Control", label: "Cache-Control", hasValue: false }, + */ { value: "User-Agent", label: "User-Agent", hasValue: false }, + /* { value: "Location", label: "Location", hasValue: false }, + */ { value: "other", label: RED._("node-red:httpin.label.other"), hasValue: true, icon: "red/images/typedInput/az.svg" }, ] @@ -57,9 +63,9 @@ const defaultOptions = [ { value: "other", label: RED._("node-red:httpin.label.other"), hasValue: true, icon: "red/images/typedInput/az.svg" }, - { value: "global", label: "global.", hasValue: true }, { value: "env", label: "env", hasValue: true }, ]; + /* headerOptions["accept"] = [ { value: "text/plain", label: "text/plain", hasValue: false }, { value: "text/html", label: "text/html", hasValue: false }, @@ -67,6 +73,7 @@ { value: "application/xml", label: "application/xml", hasValue: false }, ...defaultOptions, ]; + headerOptions["accept-encoding"] = [ { value: "gzip", label: "gzip", hasValue: false }, { value: "deflate", label: "deflate", hasValue: false }, @@ -114,7 +121,7 @@ { value: "no-cache", label: "no-cache", hasValue: false }, ...defaultOptions, ]; - + */ headerOptions["user-agent"] = [ { value: "Mozilla/5.0", label: "Mozilla/5.0", hasValue: false }, ...defaultOptions, @@ -346,7 +353,7 @@ propertyName.typedInput('value', keyValue); } - if(valueType == "other" || valueType == "flow" || valueType == "global" || valueType == "env" ) { + if(valueType == "other" || valueType == "env" ) { propertyValue.typedInput('type', valueType); propertyValue.typedInput('value', valueValue); } else if (headerValueIsAPreset(propertyName.typedInput('type'), valueType)) { diff --git a/packages/node_modules/@node-red/nodes/core/network/22-websocket.js b/packages/node_modules/@node-red/nodes/core/network/22-websocket.js index 3c2509a8e..fd52e899e 100644 --- a/packages/node_modules/@node-red/nodes/core/network/22-websocket.js +++ b/packages/node_modules/@node-red/nodes/core/network/22-websocket.js @@ -118,7 +118,6 @@ module.exports = function(RED) { break; case 'env': - case 'global': headerValue = RED.util.evaluateNodeProperty(valueValue,valueType,node); break;