From: Michael Wiebusch Date: Thu, 1 Aug 2013 14:01:52 +0000 (+0200) Subject: fixed error with the getdata method, outsourced getdata to getdata.js, added random... X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=9be8e9e1ad633dfa2e9721d81966b3d9b4ca975f;p=mvdsensorcontrol.git fixed error with the getdata method, outsourced getdata to getdata.js, added random number to prevImg.pl to avoid caching of image --- diff --git a/tools/getdata.js b/tools/getdata.js new file mode 100644 index 0000000..3dc5cc4 --- /dev/null +++ b/tools/getdata.js @@ -0,0 +1,24 @@ +function getdata(command,dId,async) { + +// alert("caller is " + arguments.callee.caller.toString()); + + var xmlhttp = null; + //var cb = null; + xmlhttp=new XMLHttpRequest(); + //cb = callback; + var destId = dId; + + xmlhttp.onreadystatechange = function() { + if(xmlhttp.readyState == 4 && xmlhttp.status==200) { + //if(cb) + if(document.getElementById(destId)){ + document.getElementById(destId).innerHTML = xmlhttp.responseText; + } + //cb(xmlhttp.responseText); + //document.getElementById(destId).innerHTML = xmlhttp.responseText; + } + } + + xmlhttp.open("GET",command,async); + xmlhttp.send(null); + } \ No newline at end of file diff --git a/tools/jtageditor.pl b/tools/jtageditor.pl index 3b26c59..51063ce 100755 --- a/tools/jtageditor.pl +++ b/tools/jtageditor.pl @@ -782,29 +782,7 @@ for(var i = 0; i < array.length; i++) - + EOF } diff --git a/tools/testgui.js b/tools/testgui.js index 9e700ba..a6d530d 100644 --- a/tools/testgui.js +++ b/tools/testgui.js @@ -1,24 +1,4 @@ -function getdata(command,dId,async) { - var xmlhttp = null; - //var cb = null; - xmlhttp=new XMLHttpRequest(); - //cb = callback; - var destId = dId; - - xmlhttp.onreadystatechange = function() { - if(xmlhttp.readyState == 4 && xmlhttp.status==200) { - //if(cb) - if(document.getElementById(destId).innerHTML){ - document.getElementById(destId).innerHTML = xmlhttp.responseText; - } - //cb(xmlhttp.responseText); - //document.getElementById(destId).innerHTML = xmlhttp.responseText; - } - } - xmlhttp.open("GET",command,async); - xmlhttp.send(null); - } diff --git a/tools/testgui.pl b/tools/testgui.pl index 16ee6ba..42529fe 100755 --- a/tools/testgui.pl +++ b/tools/testgui.pl @@ -112,6 +112,7 @@ print start_html( ], -script=>[ { -type => 'text/javascript', -src => './testgui.js'}, +{ -type => 'text/javascript', -src => './getdata.js'}, { -type => 'text/javascript', -src => './xmlOperations.js'} ] );