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/lib/wigDataStream.c src/hg/lib/wigDataStream.c
index 66a2e23..179e658 100644
--- src/hg/lib/wigDataStream.c
+++ src/hg/lib/wigDataStream.c
@@ -122,32 +122,31 @@
 }
 
 void wigStatsHeader(struct wiggleDataStream *wds, FILE * fh, boolean htmlOut)
 /*	begin wiggle stats table */
 {
 if (htmlOut)
     {
     /* For some reason BORDER=1 does not work in our web.c nested table
      * scheme.  So use web.c's trick of using an enclosing table
      *	to provide a border.  
      */
     fprintf(fh,"<P><!--outer table is for border purposes-->" "\n"
 	"<TABLE BGCOLOR=\"#" HG_COL_BORDER
 	"\" BORDER=\"0\" CELLSPACING=\"0\" CELLPADDING=\"1\"><TR><TD>");
 
-    fprintf (fh, "<TABLE COLS=12 BORDER=1 BGCOLOR=\"" HG_COL_INSIDE
-	"\" ALIGN=CENTER HSPACE=0><TR>");
+    fprintf(fh, "<TABLE COLS=12 BORDER=1 BGCOLOR='#" HG_COL_INSIDE "' ALIGN=CENTER HSPACE=0><TR>");
     if (wds->db)
 	fprintf(fh, "<TH COLSPAN=6 ALIGN=LEFT> Database: %s </TH><TH COLSPAN=6 ALIGN=RIGHT> Table: %s </TH></TR>\n", wds->db, wds->tblName);
     if (wds->isFile)
 	{
 	if ( (stringIn("trash/ct_",wds->tblName)) ||
 		(stringIn("trash/hgtct_",wds->tblName)))
 	    fprintf(fh, "<TH COLSPAN=12 ALIGN=LEFT> custom track </TH></TR>\n" );
 	else
 	    fprintf(fh, "<TH COLSPAN=12 ALIGN=LEFT> from file %s </TH></TR>\n", wds->tblName);
 	}
     wigStatsTableHeading(fh, htmlOut);
     }
 else
     {
     if (wds->db)