Update of /cvsroot/basedb/basedb/www
In directory sc8-pr-cvs1:/tmp/cvs-serv9484/www
Modified Files:
assay_table.phtml raw_table.phtml
Log Message:
fixed some table cell rendering stuff
Index: assay_table.phtml
===================================================================
RCS file: /cvsroot/basedb/basedb/www/assay_table.phtml,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** assay_table.phtml 11 Feb 2003 14:43:56 -0000 1.25
--- assay_table.phtml 15 Feb 2003 12:39:26 -0000 1.26
***************
*** 294,298 ****
$cols[] = array("geneName", false, "Reporter name", 1,
! 1, $show);
$rep = ReporterColumn::getColumns();
--- 294,298 ----
$cols[] = array("geneName", false, "Reporter name", 1,
! "renderGeneName", $show);
$rep = ReporterColumn::getColumns();
Index: raw_table.phtml
===================================================================
RCS file: /cvsroot/basedb/basedb/www/raw_table.phtml,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** raw_table.phtml 13 Feb 2003 22:29:38 -0000 1.4
--- raw_table.phtml 15 Feb 2003 12:39:26 -0000 1.5
***************
*** 131,135 ****
$spots = $raw->dataSearch($search);
! $cbRaw = $rawid; // For renderSpot()
for($i = 0, $odd = 0; $i < count($spots); $i++, $odd ^= 1)
--- 131,135 ----
$spots = $raw->dataSearch($search);
! $cbRaw = $rawid; // For spot and position rendering
for($i = 0, $odd = 0; $i < count($spots); $i++, $odd ^= 1)
***************
*** 152,156 ****
$gshow = $show && $repLevel < 5 ? 1 : 0;
$cols = array(
! array("rawPosition", false, "Pos", 1, "renderExplorePosition", $show),
array("reporterId", false, "Reporter", 1, 3, $show)
);
--- 152,157 ----
$gshow = $show && $repLevel < 5 ? 1 : 0;
$cols = array(
! array("rawPosition", false, "Pos", 1,
! "renderExplorePositionRaw", $show),
array("reporterId", false, "Reporter", 1, 3, $show)
);
|