// 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]);
+# 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;