This commit is contained in:
2023-05-15 11:42:23 +02:00
parent 52c1620552
commit 8af82e3558
5 changed files with 135 additions and 46 deletions

View File

@@ -1,11 +1,34 @@
/**
* This function is executed after the page is loaded.
*
* @function
* @name init
* @kind function
*/
function init() {
configurePastingInElement("xmlArea");
}
/**
* Function returns processor that will be used to transform XML.
* This solution allows to use one function for sending request from every tool
*
* @function
* @name getProcessor
* @kind function
*/
function getProcessor() {
return "libxml";
}
/**
* Function returns version of XML processor that will be used to transform XML.
* This solution allows to use one function for sending request from every tool
*
* @function
* @name getVersion
* @kind function
*/
function getVersion() {
return "1.0"
}
function init() {
configurePastingInElement("xmlArea");
}