Update of /cvsroot/basedb/basedb/www
In directory sc8-pr-cvs1:/tmp/cvs-serv20970
Modified Files:
arraytype_gal.phtml
Log Message:
Added error for reporter mapped designs
Index: arraytype_gal.phtml
===================================================================
RCS file: /cvsroot/basedb/basedb/www/arraytype_gal.phtml,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** arraytype_gal.phtml 2 Feb 2003 13:44:01 -0000 1.4
--- arraytype_gal.phtml 13 Feb 2003 08:58:24 -0000 1.5
***************
*** 38,41 ****
--- 38,47 ----
else if(!$at->getPrinted())
$err = "That array design doesn't have a print map yet";
+ else if($at->getPrinted() == 2)
+ {
+ $err = "The array design has a reporter map rather than a print ".
+ "map. You can download that file directly from the array ".
+ "design page.";
+ }
else
{
***************
*** 51,56 ****
{
$b =& $blocks[$i];
! echo "\"Block$b[blockNum]=$b[xOrigin], $b[yOrigin], $b[featureDiameter], ".
! "$b[xFeatures], $b[xSpacing], $b[yFeatures], $b[ySpacing]\"\n";
}
unset($b);
--- 57,63 ----
{
$b =& $blocks[$i];
! echo "\"Block$b[blockNum]=$b[xOrigin], $b[yOrigin], ".
! "$b[featureDiameter], $b[xFeatures], $b[xSpacing], ".
! "$b[yFeatures], $b[ySpacing]\"\n";
}
unset($b);
|