]> jspc29.x-matter.uni-frankfurt.de Git - mvdsensorcontrol.git/commitdiff
fix made
authorMichael Wiebusch <stratomaster@gmx.net>
Thu, 1 Aug 2013 16:13:47 +0000 (18:13 +0200)
committerMichael Wiebusch <stratomaster@gmx.net>
Thu, 1 Aug 2013 16:13:47 +0000 (18:13 +0200)
tools/testgui.js
tools/testgui.pl

index 55f0ba7651bdf1cc82018c203d667c9cb36158f1..bb5febe3e76948b7c087e4d4d8889c436b5b2e7e 100644 (file)
@@ -18,7 +18,7 @@ function run(time) {
 //   sensorIdHash["hugo"]="hugo";
 //   sensorIdHash["hugo2"]="hugonaut";
 
-  getdata("run.pl","","false");
+  getdata("run.pl","theConsole","false");
   var sensorId;
   for( sensorId in previewAreaIdHash){
 //     alert(laufid+" => "+previewAreaIdHash[laufid]);
index f3c38e9ae354fc98a1a202c24974916c8528d67d..8a959e479644f5f9ed35d7229dd1e702a30ed4ec 100755 (executable)
@@ -153,13 +153,18 @@ print q%<input type='button' onClick='run(0.2)' value='run'>%;
 
 
 
+# pass a list of sensor Ids to the javascript side
+# more precisely: a hash consisting of $sensorId=>$previewAreaId
+# so the javascript knows which placeholders to fill with actual plots
 print "<script language='javascript'>\n";
-
 print "var previewAreaIdHash = new Object();\n";
 for my $sensorId (keys %previewAreaIdHash){
   print "previewAreaIdHash[\"$sensorId\"]=\"".$previewAreaIdHash{$sensorId}."\";\n";
 }
 print "</script>";
+# end of that story
+
+print "<div id=theConsole>[the \"console\"]</div>";
 
 print end_html;