var localJID = null;
var connection = null;
+var sessionid = null;
+var cmdNode = null;
function log(msg) {
var entry = $('<div></div>').append(document.createTextNode(msg));
$("#output *").remove();
$(result).find("note").each(function(index, e) {
- type = $(e).attr("type");
+ var type = $(e).attr("type");
if (!type) {
type = "info";
}
$("#output").append("<p class='" + type + "Note'>" + $(e).text() + "</p>");
});
if (status == "executing") {
- $("#output").append("<input type='button' disabled='true' id='prevButton' value='prev'/>"+
- "<input type='button' disabled='true' id='nextButton' value='next'/>"+
- "<input type='button' disabled='true' id='completeButton' value='complete'/>"+
- "<input type='button' id='executeButton' value='execute'/>");
+ $("#output").append("<input type='button' disabled='true' id='prevButton' value='Prev'/>"+
+ "<input type='button' disabled='true' id='nextButton' value='Next'/>"+
+ "<input type='button' disabled='true' id='completeButton' value='Complete'/>"+
+ "<input type='button' id='executeButton' value='Execute'/>"+
+ "<input type='button' id='cancelButton' value='Cancel'/>");
for (kind in ['prev', 'next', 'complete']) {
if ($(result).find('actions ' + kind).length > 0)
$('#' + kind + 'Button').attr("disabled", "false");
}
+ $('#cancelButton').bind("click", function() {
+ var cancelIQ = $iq({ type: "set", to: "localhost", id: connection.getUniqueId() })
+ .c("command", { xmlns: Strophe.NS.ADHOC, node: cmdNode, sessionid: sessionid, action: "cancel" });
+ cmdNode = null
+ sessionid = null;
+ connection.sendIQ(cancelIQ, displayResult);
+ });
} else {
input = $("<input type='button' value='Restart'/>").bind("click", function() {
$('#output *').remove();
+ sessionid = null;
+ cmdNode = null;
getCommandNodes();
});
$("#output").append(input);
}
function runCommand() {
- execIQ = $iq({ type: "set", to: "localhost", id: connection.getUniqueId() })
- .c("command", { xmlns: Strophe.NS.ADHOC, node: $(this).attr("id"),
- action: "execute" });
- connection.sendIQ(execIQ, displayResult);
+ cmdNode = $(this).attr("id"); // Save not of executed command (in global)
+ var execIQ = $iq({ type: "set", to: "localhost", id: connection.getUniqueId() })
+ .c("command", { xmlns: Strophe.NS.ADHOC, node: cmdNode, action: "execute" });
+ connection.sendIQ(execIQ, function(result) {
+ sessionid = $(result).find("command").attr("sessionid");
+ displayResult(result);
+ });
}
function getCommandNodes() {
- nodesIQ = $iq({ type: "get", to: "localhost", id: "nodes1" }).c("query", {xmlns: Strophe.NS.DISCO_ITEMS, node: Strophe.NS.ADHOC});
+ var nodesIQ = $iq({ type: "get", to: "localhost", id: "nodes1" }).c("query", {xmlns: Strophe.NS.DISCO_ITEMS, node: Strophe.NS.ADHOC});
connection.sendIQ(nodesIQ, function(result) {
$('#output').append("<ul id='items'></ul>");
$(result).find("item").each(function(index, e) {