-
-
-
-
+// var sensorIdHash = new Object();
+
+
+
+
function reloadQuickEditArea(configFile,destId) {
var configFile_ = encodeURIComponent(configFile);
getdata("testgui.pl?action=print_quickEditArea&configFile="+configFile_+"&destId="+destId_,destId,"false");
}
-
\ No newline at end of file
+
+
+
+function run(time) {
+// sensorIdHash["hugo"]="hugo";
+// sensorIdHash["hugo2"]="hugonaut";
+
+ getdata("run.pl","","false");
+ var sensorId;
+ for( sensorId in previewAreaIdHash){
+// alert(laufid+" => "+previewAreaIdHash[laufid]);
+ var sensorId_ = encodeURIComponent(sensorId);
+ getdata("testgui.pl?action=showPlot&sensorId="+sensorId_,previewAreaIdHash[sensorId],"false");
+ }
+}
\ No newline at end of file
my $sensorAreaId;
my $quickEditAreaId;
+my %previewAreaIdHash;
+
#######################
my $destId = $q->param('destId');
$quickEditAreaId = $destId;
print_quickEditArea($configFileName);
+ } elsif ($q->param('action') eq "showPlot") {
+
+ my $sensorId = $q->param('sensorId');
+ my $imgSrc = './preview/image_recalibrated_'.$sensorId.'.png';
+ if (-e $imgSrc) {
+ print img{src=>$imgSrc."?".rand(),title=>$sensorId};
+ } else {
+ print img{src=>"./preview/error.jpg",title=>$sensorId};
+ }
} else {
print start_html(
# print_quickEditArea("0.xml");
# print "</div>";
print_setupStructure();
+print q%<input type='button' onClick='run(0.2)' value='run'>%;
+
+
+
+
+print "<script language='javascript'>\n";
+
+print "var previewAreaIdHash = new Object();\n";
+for my $sensorId (keys %previewAreaIdHash){
+ print "previewAreaIdHash[\"$sensorId\"]=\"".$previewAreaIdHash{$sensorId}."\";\n";
+}
+print "</script>";
+
print end_html;
my $sensorPosition = $sensor->findnodes("./position")->shift();
my $sensorDescription = $sensor->findvalue("./description");
+
$sensorAreaId = $sensorId;
print "<div class='sensorAreaDiv' id='".$sensorAreaId."'>";
print "<table class='sensorAreaTable'>";
print "</tr>";
print "<tr>";
my $previewAreaId = "preview_".$sensorId;
- print "<td id='".$previewAreaId."' class='previewArea' > [not run yet!] </td>";
+ print "<td id='".$previewAreaId."' class='previewArea'> [not run yet!] </td>";
$quickEditAreaId = "quickEdit_".$sensorId;
print "<td id='".$quickEditAreaId."' class='quickEditArea'>";
print_quickEditArea($sensorConfig);
print "</td>";
print "</tr>";
- print "<tr>";
- print "<td colspan=2 align='right'>";
- my $command = "./prevImg.pl";
- print q%<input type='button' onClick='getdata("%.$command.q%","%.$previewAreaId.q%","true")' value='run'>%;
- print "</td>";
- print "</tr>";
- print "<table>";
+# print "<tr>";
+# print "<td colspan=2 align='right'>";
+# my $command = "./prevImg.pl";
+# print q%<input type='button' onClick='getdata("%.$command.q%","%.$previewAreaId.q%","true")' value='run'>%;
+# print "</td>";
+# print "</tr>";
+ print "</table>";
print "</div>";
-
+ $previewAreaIdHash{$sensorId}=$previewAreaId;
}
# description the block that is printed for each sensor,
# containing the preview plot and the quick edit area