2014-04-29 18:01:30 +02:00
|
|
|
<!--
|
|
|
|
Copyright 2014 IBM Corp.
|
|
|
|
|
|
|
|
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/x-red" data-template-name="xml">
|
|
|
|
<div class="form-row">
|
2015-05-10 22:47:22 +02:00
|
|
|
<label for="node-input-name"><i class="fa fa-tag"></i> <span data-i18n="common.label.name"></span></label>
|
2016-06-27 00:48:59 +02:00
|
|
|
<input type="text" id="node-input-name" data-i18n="[placeholder]common.label.name">
|
2014-04-29 18:01:30 +02:00
|
|
|
</div>
|
2014-12-15 18:05:18 +01:00
|
|
|
<div class="form-row" id="advanced">
|
|
|
|
</div>
|
|
|
|
<div id="advanced-options">
|
|
|
|
<div class="form-row">
|
2016-06-27 00:48:59 +02:00
|
|
|
<i class="fa fa-key"></i> <span data-i18n="xml.label.represent"></span> <input type="text" id="node-input-attr" style="text-align:center; width:40px" placeholder="$">
|
2014-12-15 18:05:18 +01:00
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2016-06-27 00:48:59 +02:00
|
|
|
<i class="fa fa-key"></i> <span data-i18n="xml.label.prefix"></span> <input type="text" id="node-input-chr" style="text-align:center; width:40px" placeholder="_">
|
2014-12-15 18:05:18 +01:00
|
|
|
</div>
|
2015-05-10 22:47:22 +02:00
|
|
|
<div class="form-tips"><span data-i18n="xml.tip"></span></div>
|
2014-12-15 18:05:18 +01:00
|
|
|
</div>
|
2014-04-29 18:01:30 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/x-red" data-help-name="xml">
|
2016-02-12 14:16:28 +01:00
|
|
|
<p>A function that parses the <code>msg.payload</code> to convert xml to/from a javascript object. Places the result in the payload.</p>
|
2014-04-29 18:01:30 +02:00
|
|
|
<p>If the input is a string it tries to parse it as XML and creates a javascript object.</p>
|
|
|
|
<p>If the input is a javascript object it tries to build an XML string.</p>
|
2016-02-12 14:16:28 +01:00
|
|
|
<p>You can also pass in a <code>msg.options</code> object to overide all the multitude of parameters. See
|
|
|
|
<a href="https://github.com/Leonidas-from-XIV/node-xml2js/blob/master/README.md#options" target="_new">the xml2js docs</a>
|
2015-09-26 14:46:35 +02:00
|
|
|
for more information.</p>
|
|
|
|
<p>If set, options in the edit dialogue override those passed in on the msg.options object.</p>
|
2014-04-29 18:01:30 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
RED.nodes.registerType('xml',{
|
|
|
|
category: 'function',
|
|
|
|
color:"#DEBD5C",
|
|
|
|
defaults: {
|
2015-02-10 17:55:50 +01:00
|
|
|
name: {value:""},
|
2015-09-26 14:46:35 +02:00
|
|
|
attr: {value:""},
|
|
|
|
chr: {value:""}
|
2014-04-29 18:01:30 +02:00
|
|
|
},
|
|
|
|
inputs:1,
|
|
|
|
outputs:1,
|
2016-06-12 23:37:38 +02:00
|
|
|
icon: "parser-xml.png",
|
2014-04-29 18:01:30 +02:00
|
|
|
label: function() {
|
|
|
|
return this.name||"xml";
|
|
|
|
},
|
|
|
|
labelStyle: function() {
|
|
|
|
return this.name?"node_label_italic":"";
|
2015-05-10 22:47:22 +02:00
|
|
|
},
|
|
|
|
oneditprepare: function() {
|
|
|
|
var showadvanced = showadvanced || true;
|
|
|
|
var advanced = this._("xml.label.advanced");
|
|
|
|
var showall = function() {
|
|
|
|
showadvanced = !showadvanced;
|
|
|
|
if (showadvanced) {
|
|
|
|
$("#advanced-options").show();
|
|
|
|
$("#advanced").html('<label for="node-advanced" style="width:200px !important"><i class="fa fa-minus-square"></i> '+advanced+'</label>');
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$("#advanced-options").hide();
|
|
|
|
$("#advanced").html('<label for="node-advanced" style="width:200px !important"><i class="fa fa-plus-square"></i> '+advanced+' ...</label>');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
showall();
|
|
|
|
$("#advanced").click( function() { showall(); });
|
2014-04-29 18:01:30 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|