aab4f66a2aca5293f3536cc1d1438b17d2b09dfd
tdreszer
  Thu May 5 16:14:15 2011 -0700
A large set of tiny changes.  These fix a lot of discrepencies with bgcolor and font color declarations which were tripping up docttype 4.01.
diff --git src/hg/hgc/expClick.c src/hg/hgc/expClick.c
index 68d73e0..cded732 100644
--- src/hg/hgc/expClick.c
+++ src/hg/hgc/expClick.c
@@ -152,31 +152,31 @@
      int expIndex, char *expName, float maxScore,
      enum expColorType colorScheme)
 /* print the name of the experiment and color the 
    background of individual cells using the score to 
    create false two color display */
 {
 char buff[32];
 struct bed *bed = bedList;
 struct expRecord *er = NULL;
 int square = 10;
 snprintf(buff, sizeof(buff), "%d", expIndex);
 er = hashMustFindVal(erHash, buff);
 
 printf("<tr>\n");
 if(strstr(er->name, expName))
-    printf("<td align=left bgcolor=\"D9E4F8\"> %s</td>\n",er->name);
+    printf("<td align=left bgcolor='#D9E4F8'> %s</td>\n",er->name);
 else
     {
     if (isCancerGenomicsTrack)
 	{
     	printf("<td align=left><A HREF=\"../cgi-bin/subjectView?sv_dataset=%s&sv_subjectId=%s\" TARGET=_blank>%s</A></td>\n",
 	cartString(cart, "g"), er->name, er->name);
     	}
     else
 	{
     	printf("<td align=left> %s</td>\n", er->name);
     	}
     }
 for(bed = bedList;bed != NULL; bed = bed->next)
     {
     /* use the background colors to creat patterns */
@@ -474,15 +474,16 @@
 	safef(id, sizeof(id), "%d", i);
 	hashAdd(erHash, id, er);
 	}
     puts("<h2></h2><p>\n");
     msBedPrintTable(bedList, erHash, itemName, expName, -1*maxScore, maxScore,
 	stepSize, 2, msBedDefaultPrintHeader, msBedExpressionPrintRow,
 	printExprssnColorKey, getColorForExprBed, colorScheme);
     hashTraverseEls(erHash, erHashElFree);
     hashFree(&erHash);
     microarrayGroupsFree(&groupings);
     }
 puts("<h2></h2><p>\n");
 bedFreeList(&bedList);
 }
 
+
\ No newline at end of file