Added XQuery Tool and refactored tools-service #220

Merged
bema merged 30 commits from bema/func/xquery into master 2023-06-12 10:53:24 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit e172e6c77c - Show all commits

View File

@@ -99,6 +99,6 @@ public class Saxon implements XmlEngine{
* @return version of the processor
*/
public String getVersion() {
return new Processor(false).getSaxonProductVersion();
return "Saxon " + new Processor(false).getSaxonProductVersion();
}
}

View File

@@ -318,7 +318,7 @@ function performRequest(endpoint, checkXML, checkTransform) {
if (result.status == "OK") {
document.getElementById("procinfo").innerText += " (" + result.time + "ms)";
document.getElementById("procinfo").innerText += " (" + result.duration + "ms)";
if (result.type)
document.getElementById("procinfo").innerText += ". Returned: " + result.type;
else