From a24bf8094c0c26b7418ed666fbe409e184245e50 Mon Sep 17 00:00:00 2001 From: Michael Wiebusch Date: Thu, 1 Aug 2013 18:25:04 +0200 Subject: [PATCH] show/hide debug output --- layout/testgui.css | 4 ++++ tools/getdata.js | 3 +++ tools/testgui.js | 16 ++++++++++++++-- tools/testgui.pl | 3 ++- 4 files changed, 23 insertions(+), 3 deletions(-) diff --git a/layout/testgui.css b/layout/testgui.css index f8a141f..678dfb2 100644 --- a/layout/testgui.css +++ b/layout/testgui.css @@ -1,5 +1,9 @@ +#theConsole { + visibility:collapse; +} + .td_solid { border-style : solid; diff --git a/tools/getdata.js b/tools/getdata.js index 3dc5cc4..7a33b4c 100644 --- a/tools/getdata.js +++ b/tools/getdata.js @@ -1,5 +1,8 @@ function getdata(command,dId,async) { + //async==true : do what you can when you can do it :D + //async==false : do the task after you finished the previous task! + // super duper debug line! // alert("caller is " + arguments.callee.caller.toString()); var xmlhttp = null; diff --git a/tools/testgui.js b/tools/testgui.js index 9f7c0ae..820f779 100644 --- a/tools/testgui.js +++ b/tools/testgui.js @@ -8,7 +8,7 @@ function reloadQuickEditArea(configFile,destId) { var configFile_ = encodeURIComponent(configFile); var destId_ = encodeURIComponent(destId); - getdata("testgui.pl?action=print_quickEditArea&configFile="+configFile_+"&destId="+destId_,destId,"false"); + getdata("testgui.pl?action=print_quickEditArea&configFile="+configFile_+"&destId="+destId_,destId,false); } @@ -23,6 +23,18 @@ function run(time) { for( var sensorId in previewAreaIdHash){ // alert(laufid+" => "+previewAreaIdHash[laufid]); var sensorId_ = encodeURIComponent(sensorId); - getdata("testgui.pl?action=showPlot&sensorId="+sensorId_,previewAreaIdHash[sensorId],"false"); + getdata("testgui.pl?action=showPlot&sensorId="+sensorId_,previewAreaIdHash[sensorId],true); } +} + + + +function toggleVis(elementId) { +if(document.getElementById(elementId)){ +if( document.getElementById(elementId).style.visibility == "visible") { + document.getElementById(elementId).style.visibility = "collapse"; +} else { + document.getElementById(elementId).style.visibility = "visible" ; +} +} } \ No newline at end of file diff --git a/tools/testgui.pl b/tools/testgui.pl index 8a959e4..33fda7f 100755 --- a/tools/testgui.pl +++ b/tools/testgui.pl @@ -164,7 +164,8 @@ for my $sensorId (keys %previewAreaIdHash){ print ""; # end of that story -print "
[the \"console\"]
"; +print ""; +print "
[the \"console\"]
"; print end_html; -- 2.43.0