mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Deprecate xml2js and jsn2xml nodes
Replaced by single XML node
This commit is contained in:
parent
789b86b122
commit
0e35b65afd
@ -15,11 +15,12 @@
|
|||||||
**/
|
**/
|
||||||
|
|
||||||
module.exports = function(RED) {
|
module.exports = function(RED) {
|
||||||
|
"use strict";
|
||||||
var util = require("util");
|
var util = require("util");
|
||||||
var parseString = require('xml2js').parseString;
|
var parseString = require('xml2js').parseString;
|
||||||
var useColors = true;
|
var useColors = true;
|
||||||
//util.inspect.styles.boolean = "red";
|
//util.inspect.styles.boolean = "red";
|
||||||
|
|
||||||
function Xml2jsNode(n) {
|
function Xml2jsNode(n) {
|
||||||
RED.nodes.createNode(this,n);
|
RED.nodes.createNode(this,n);
|
||||||
this.useEyes = n.useEyes||false;
|
this.useEyes = n.useEyes||false;
|
@ -15,13 +15,14 @@
|
|||||||
**/
|
**/
|
||||||
|
|
||||||
module.exports = function(RED) {
|
module.exports = function(RED) {
|
||||||
|
"use strict";
|
||||||
var js2xmlparser = require("js2xmlparser");
|
var js2xmlparser = require("js2xmlparser");
|
||||||
|
|
||||||
function Js2XmlNode(n) {
|
function Js2XmlNode(n) {
|
||||||
RED.nodes.createNode(this,n);
|
RED.nodes.createNode(this,n);
|
||||||
this.root = n.root;
|
this.root = n.root;
|
||||||
var node = this;
|
var node = this;
|
||||||
|
|
||||||
this.on("input", function(msg) {
|
this.on("input", function(msg) {
|
||||||
try {
|
try {
|
||||||
var root = node.root || typeof msg.payload;
|
var root = node.root || typeof msg.payload;
|
Loading…
Reference in New Issue
Block a user