Added XQuery Tool and refactored tools-service #220
@@ -99,6 +99,6 @@ public class Saxon implements XmlEngine{
|
|||||||
* @return version of the processor
|
* @return version of the processor
|
||||||
*/
|
*/
|
||||||
public String getVersion() {
|
public String getVersion() {
|
||||||
return new Processor(false).getSaxonProductVersion();
|
return "Saxon " + new Processor(false).getSaxonProductVersion();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -318,7 +318,7 @@ function performRequest(endpoint, checkXML, checkTransform) {
|
|||||||
|
|
||||||
|
|
||||||
if (result.status == "OK") {
|
if (result.status == "OK") {
|
||||||
document.getElementById("procinfo").innerText += " (" + result.time + "ms)";
|
document.getElementById("procinfo").innerText += " (" + result.duration + "ms)";
|
||||||
if (result.type)
|
if (result.type)
|
||||||
document.getElementById("procinfo").innerText += ". Returned: " + result.type;
|
document.getElementById("procinfo").innerText += ". Returned: " + result.type;
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user